Добавление родителей и ввод конструкторов
This commit is contained in:
parent
71156a3ec2
commit
2f34b4bdcf
@ -1,4 +1,4 @@
|
|||||||
namespace ProjectAirFighter;
|
namespace ProjectAirFighter.Drawning;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Направление перемещения
|
/// Направление перемещения
|
||||||
/// </summary>
|
/// </summary>
|
@ -0,0 +1,78 @@
|
|||||||
|
using System.Net.NetworkInformation;
|
||||||
|
using System.Net.Sockets;
|
||||||
|
using ProjectAirFighter.Entities;
|
||||||
|
|
||||||
|
namespace ProjectAirFighter.Drawning;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// класс отвечающий за прорисовку и перемещение объекта-сущности
|
||||||
|
/// </summary>
|
||||||
|
public class DrawningAirFighter : DrawningWarPlane
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Конструктор
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="speed">Скорость</param>
|
||||||
|
/// <param name="weight">Вес</param>
|
||||||
|
/// <param name="bodyColor">Основной цвет</param>
|
||||||
|
/// <param name="additionalColor">Дополнительный цвет</param>
|
||||||
|
/// <param name="bodyKit">Признак наличия корпуса</param>
|
||||||
|
/// <param name="rocket">Признак наличия рокет</param>
|
||||||
|
/// <param name="additionalWing">Признак наличия дополнительных крыльев</param>
|
||||||
|
//public void Init(int speed, double weight, Color bodyColor, Color additionalColor, bool rocket, bool additionalWing)
|
||||||
|
public DrawningAirFighter(int speed, double weight, Color bodyColor, Color additionalColor, bool rocket, bool additionalWing) : base(120,140)
|
||||||
|
{
|
||||||
|
EntityWarPlane = new EntityAirFighter(speed, weight, bodyColor, additionalColor, rocket, additionalWing);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void DrawTransport(Graphics g)
|
||||||
|
{
|
||||||
|
if (EntityWarPlane == null || EntityWarPlane is not EntityAirFighter warPlane||!_startPosX.HasValue || !_startPosY.HasValue)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Pen pen = new(Color.Black, 3);
|
||||||
|
Pen pen_rocket = new(Color.Black);
|
||||||
|
|
||||||
|
Brush brAdd = new SolidBrush(warPlane.AdditionalColor);
|
||||||
|
|
||||||
|
//ракеты
|
||||||
|
if (warPlane.Rocket)
|
||||||
|
{
|
||||||
|
Point[] FirstRocket = { new Point(_startPosX.Value + 55, _startPosY.Value + 110), new Point(_startPosX.Value + 95, _startPosY.Value + 110),
|
||||||
|
new Point(_startPosX.Value + 105, _startPosY.Value + 115),new Point(_startPosX.Value + 95, _startPosY.Value + 120),
|
||||||
|
new Point(_startPosX.Value + 55, _startPosY.Value + 120) };
|
||||||
|
g.DrawPolygon(pen_rocket, FirstRocket);
|
||||||
|
Point[] SecondRocket = { new Point(_startPosX.Value + 55, _startPosY.Value + 30), new Point(_startPosX.Value + 95, _startPosY.Value + 30),
|
||||||
|
new Point(_startPosX.Value + 105, _startPosY.Value + 35),new Point(_startPosX.Value + 95, _startPosY.Value + 40),
|
||||||
|
new Point(_startPosX.Value + 55, _startPosY.Value + 40) };
|
||||||
|
g.DrawPolygon(pen_rocket, SecondRocket);
|
||||||
|
|
||||||
|
g.FillPolygon(brAdd, FirstRocket);
|
||||||
|
g.FillPolygon(brAdd, SecondRocket);
|
||||||
|
}
|
||||||
|
base.DrawTransport(g);
|
||||||
|
if (warPlane.AdditionalWing)
|
||||||
|
{
|
||||||
|
Point[] AddWingLower = { new Point(_startPosX.Value + 60, _startPosY.Value + 80),
|
||||||
|
new Point(_startPosX.Value + 60, _startPosY.Value + 140), new Point(_startPosX.Value + 50, _startPosY.Value + 140),
|
||||||
|
new Point(_startPosX.Value + 40, _startPosY.Value + 80) };
|
||||||
|
g.DrawPolygon(pen, AddWingLower);
|
||||||
|
|
||||||
|
Point[] AddWingUpper = { new Point(_startPosX.Value + 60, _startPosY.Value + 60), new Point(_startPosX.Value + 60, _startPosY.Value),
|
||||||
|
new Point(_startPosX.Value + 50, _startPosY.Value), new Point(_startPosX.Value + 40, _startPosY.Value + 60) };
|
||||||
|
g.DrawPolygon(pen, AddWingUpper);
|
||||||
|
|
||||||
|
g.FillPolygon(brAdd, AddWingUpper);
|
||||||
|
g.FillPolygon(brAdd, AddWingLower);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -1,17 +1,18 @@
|
|||||||
using System.Net.NetworkInformation;
|
using ProjectAirFighter.Entities;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace ProjectAirFighter;
|
namespace ProjectAirFighter.Drawning;
|
||||||
|
|
||||||
/// <summary>
|
public class DrawningWarPlane
|
||||||
/// класс отвечающий за прорисовку и перемещение объекта-сущности
|
|
||||||
/// </summary>
|
|
||||||
public class DrawningAirFighter
|
|
||||||
{
|
{
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Класс-сущность
|
/// Класс-сущность
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public EntityAirFighter? EntityAirFighter { get; private set; }
|
public EntityWarPlane? EntityWarPlane { get; protected set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Ширина окна
|
/// Ширина окна
|
||||||
@ -24,45 +25,53 @@ public class DrawningAirFighter
|
|||||||
private int? _pictureHeight;
|
private int? _pictureHeight;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Левая координата прорисовки истребителя
|
/// Левая координата прорисовки самолета
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private int? _startPosX;
|
protected int? _startPosX;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Верхняя координата прорисовки истребителя
|
/// Верхняя координата прорисовки самолета
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private int? _startPosY;
|
protected int? _startPosY;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Ширина прорисовки истребителя
|
/// Ширина прорисовки самолета
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private int? _drawningAirFlighterWidth = 120;
|
private int? _drawningWarPlaneWidth = 120;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Высота прорисовки истребителя
|
/// Высота прорисовки самолета
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private int? _drawningAirFlighterHeight = 140;
|
private int? _drawningWarPlaneHeight = 140;
|
||||||
|
|
||||||
/// <summary>
|
private DrawningWarPlane() {
|
||||||
/// Иницифлизация полей объекта-класса истребителя
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="speed">Скорость</param>
|
|
||||||
/// <param name="weight">Вес</param>
|
|
||||||
/// <param name="bodyColor">Основной цвет</param>
|
|
||||||
/// <param name="additionalColor">Дополнительный цвет</param>
|
|
||||||
/// <param name="bodyKit">Признак наличия корпуса</param>
|
|
||||||
/// <param name="rocket">Признак наличия рокет</param>
|
|
||||||
/// <param name="additionalWing">Признак наличия дополнительных крыльев</param>
|
|
||||||
//public void Init(int speed, double weight, Color bodyColor, Color additionalColor, bool rocket, bool additionalWing)
|
|
||||||
public void Init(EntityAirFighter entityAirFighter)
|
|
||||||
{
|
|
||||||
EntityAirFighter = entityAirFighter;
|
|
||||||
//EntityAirFighter.Init(speed, weight, bodyColor, additionalColor, rocket, additionalWing);
|
|
||||||
_pictureHeight = null;
|
_pictureHeight = null;
|
||||||
_pictureWidth = null;
|
_pictureWidth = null;
|
||||||
_startPosX = null;
|
_startPosX = null;
|
||||||
_startPosY = null;
|
_startPosY = null;
|
||||||
}
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// Конструктор
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="speed">Скорость</param>
|
||||||
|
/// <param name="weight">Вес</param>
|
||||||
|
/// <param name="bodyColor">Основной цвет</param>
|
||||||
|
public DrawningWarPlane(int speed, double weight, Color bodyColor) : this()
|
||||||
|
{
|
||||||
|
EntityWarPlane = new EntityWarPlane(speed, weight, bodyColor);
|
||||||
|
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// Конструктор для наслдеников
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="drawningWarPlaneHeight">Высота прорисовки самолета</param>
|
||||||
|
/// <param name="drawningWarPlaneWidth">Ширина прорисовки самолета</param>
|
||||||
|
public DrawningWarPlane(int drawningWarPlaneWidth,int drawningWarPlaneHeight) : this()
|
||||||
|
{
|
||||||
|
_drawningWarPlaneWidth = drawningWarPlaneWidth;
|
||||||
|
_drawningWarPlaneHeight = drawningWarPlaneHeight;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -73,7 +82,7 @@ public class DrawningAirFighter
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public bool SetPictureSize(int width, int height)
|
public bool SetPictureSize(int width, int height)
|
||||||
{
|
{
|
||||||
if (width > _drawningAirFlighterWidth && height > _drawningAirFlighterHeight)
|
if (width > _drawningWarPlaneWidth && height > _drawningWarPlaneHeight)
|
||||||
{
|
{
|
||||||
_pictureWidth = width;
|
_pictureWidth = width;
|
||||||
_pictureHeight = height;
|
_pictureHeight = height;
|
||||||
@ -87,13 +96,13 @@ public class DrawningAirFighter
|
|||||||
{
|
{
|
||||||
_startPosY = 0;
|
_startPosY = 0;
|
||||||
}
|
}
|
||||||
if (_startPosX.Value + _drawningAirFlighterWidth > _pictureWidth)
|
if (_startPosX.Value + _drawningWarPlaneWidth > _pictureWidth)
|
||||||
{
|
{
|
||||||
_startPosX = _pictureWidth - _drawningAirFlighterWidth;
|
_startPosX = _pictureWidth - _drawningWarPlaneWidth;
|
||||||
}
|
}
|
||||||
if (_startPosY.Value + _drawningAirFlighterHeight > _pictureHeight)
|
if (_startPosY.Value + _drawningWarPlaneHeight > _pictureHeight)
|
||||||
{
|
{
|
||||||
_startPosY = _pictureHeight - _drawningAirFlighterHeight;
|
_startPosY = _pictureHeight - _drawningWarPlaneHeight;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -126,13 +135,13 @@ public class DrawningAirFighter
|
|||||||
{
|
{
|
||||||
_startPosY = 0;
|
_startPosY = 0;
|
||||||
}
|
}
|
||||||
if (_startPosX + _drawningAirFlighterWidth > _pictureWidth)
|
if (_startPosX + _drawningWarPlaneWidth > _pictureWidth)
|
||||||
{
|
{
|
||||||
_startPosX = _pictureWidth - _drawningAirFlighterWidth;
|
_startPosX = _pictureWidth - _drawningWarPlaneWidth;
|
||||||
}
|
}
|
||||||
if (_startPosY + _drawningAirFlighterHeight > _pictureHeight)
|
if (_startPosY + _drawningWarPlaneHeight > _pictureHeight)
|
||||||
{
|
{
|
||||||
_startPosY = _pictureHeight - _drawningAirFlighterHeight;
|
_startPosY = _pictureHeight - _drawningWarPlaneHeight;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -148,7 +157,7 @@ public class DrawningAirFighter
|
|||||||
/// <returns>true - перемещение выполнено, false - перемещение невозможно </returns>
|
/// <returns>true - перемещение выполнено, false - перемещение невозможно </returns>
|
||||||
public bool MoveTransport(DirectionType direction)
|
public bool MoveTransport(DirectionType direction)
|
||||||
{
|
{
|
||||||
if (EntityAirFighter == null || !_startPosX.HasValue || !_startPosY.HasValue)
|
if (EntityWarPlane == null || !_startPosX.HasValue || !_startPosY.HasValue)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -156,30 +165,30 @@ public class DrawningAirFighter
|
|||||||
{
|
{
|
||||||
//влево
|
//влево
|
||||||
case DirectionType.Left:
|
case DirectionType.Left:
|
||||||
if (_startPosX.Value - EntityAirFighter.Step > 0)
|
if (_startPosX.Value - EntityWarPlane.Step > 0)
|
||||||
{
|
{
|
||||||
_startPosX -= (int)EntityAirFighter.Step;
|
_startPosX -= (int)EntityWarPlane.Step;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
//вверх
|
//вверх
|
||||||
case DirectionType.Up:
|
case DirectionType.Up:
|
||||||
if (_startPosY.Value - EntityAirFighter.Step > 0)
|
if (_startPosY.Value - EntityWarPlane.Step > 0)
|
||||||
{
|
{
|
||||||
_startPosY -= (int)EntityAirFighter.Step;
|
_startPosY -= (int)EntityWarPlane.Step;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
//вниз
|
//вниз
|
||||||
case DirectionType.Down:
|
case DirectionType.Down:
|
||||||
if (_startPosY.Value + EntityAirFighter.Step + _drawningAirFlighterHeight < _pictureHeight)
|
if (_startPosY.Value + EntityWarPlane.Step + _drawningWarPlaneWidth < _pictureHeight)
|
||||||
{
|
{
|
||||||
_startPosY += (int)EntityAirFighter.Step;
|
_startPosY += (int)EntityWarPlane.Step;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
//вправо
|
//вправо
|
||||||
case DirectionType.Right:
|
case DirectionType.Right:
|
||||||
if (_startPosX.Value + EntityAirFighter.Step + _drawningAirFlighterWidth < _pictureWidth)
|
if (_startPosX.Value + EntityWarPlane.Step + _drawningWarPlaneWidth < _pictureWidth)
|
||||||
{
|
{
|
||||||
_startPosX += (int)EntityAirFighter.Step;
|
_startPosX += (int)EntityWarPlane.Step;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
@ -187,34 +196,16 @@ public class DrawningAirFighter
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void DrawTransport(Graphics g)
|
public virtual void DrawTransport(Graphics g)
|
||||||
{
|
{
|
||||||
if (EntityAirFighter == null || !_startPosX.HasValue || !_startPosY.HasValue)
|
if (EntityWarPlane == null || !_startPosX.HasValue || !_startPosY.HasValue)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Pen pen = new(Color.Black,3);
|
Pen pen = new(Color.Black, 3);
|
||||||
Pen pen_rocket = new(Color.Black);
|
Pen pen_rocket = new(Color.Black);
|
||||||
|
|
||||||
Brush brAdd = new SolidBrush(EntityAirFighter.AdditionalColor);
|
|
||||||
|
|
||||||
//ракеты
|
|
||||||
if (EntityAirFighter.Rocket)
|
|
||||||
{
|
|
||||||
Point[] FirstRocket = { new Point(_startPosX.Value + 55, _startPosY.Value + 110), new Point(_startPosX.Value + 95, _startPosY.Value + 110),
|
|
||||||
new Point(_startPosX.Value + 105, _startPosY.Value + 115),new Point(_startPosX.Value + 95, _startPosY.Value + 120),
|
|
||||||
new Point(_startPosX.Value + 55, _startPosY.Value + 120) };
|
|
||||||
g.DrawPolygon(pen_rocket, FirstRocket);
|
|
||||||
Point[] SecondRocket = { new Point(_startPosX.Value + 55, _startPosY.Value + 30), new Point(_startPosX.Value + 95, _startPosY.Value + 30),
|
|
||||||
new Point(_startPosX.Value + 105, _startPosY.Value + 35),new Point(_startPosX.Value + 95, _startPosY.Value + 40),
|
|
||||||
new Point(_startPosX.Value + 55, _startPosY.Value + 40) };
|
|
||||||
g.DrawPolygon(pen_rocket, SecondRocket);
|
|
||||||
|
|
||||||
g.FillPolygon(brAdd, FirstRocket);
|
|
||||||
g.FillPolygon(brAdd, SecondRocket);
|
|
||||||
}
|
|
||||||
|
|
||||||
//корпус
|
//корпус
|
||||||
g.DrawRectangle(pen, _startPosX.Value, _startPosY.Value + 60, 100, 20);
|
g.DrawRectangle(pen, _startPosX.Value, _startPosY.Value + 60, 100, 20);
|
||||||
Point[] body = { new Point(_startPosX.Value + 100, _startPosY.Value + 80),
|
Point[] body = { new Point(_startPosX.Value + 100, _startPosY.Value + 80),
|
||||||
@ -245,7 +236,7 @@ public class DrawningAirFighter
|
|||||||
g.FillPolygon(brBlack, body);
|
g.FillPolygon(brBlack, body);
|
||||||
|
|
||||||
//залив корпуса
|
//залив корпуса
|
||||||
Brush br = new SolidBrush(EntityAirFighter.BodyColor);
|
Brush br = new SolidBrush(EntityWarPlane.BodyColor);
|
||||||
g.FillRectangle(br, _startPosX.Value, _startPosY.Value + 60, 100, 20);
|
g.FillRectangle(br, _startPosX.Value, _startPosY.Value + 60, 100, 20);
|
||||||
|
|
||||||
g.FillPolygon(br, wingLower);
|
g.FillPolygon(br, wingLower);
|
||||||
@ -253,19 +244,6 @@ public class DrawningAirFighter
|
|||||||
g.FillPolygon(br, rearWingUpper);
|
g.FillPolygon(br, rearWingUpper);
|
||||||
g.FillPolygon(br, rearWingLower);
|
g.FillPolygon(br, rearWingLower);
|
||||||
|
|
||||||
if (EntityAirFighter.AdditionalWing)
|
|
||||||
{
|
|
||||||
Point[] AddWingLower = { new Point(_startPosX.Value + 60, _startPosY.Value + 80),
|
|
||||||
new Point(_startPosX.Value + 60, _startPosY.Value + 140), new Point(_startPosX.Value + 50, _startPosY.Value + 140),
|
|
||||||
new Point(_startPosX.Value + 40, _startPosY.Value + 80) };
|
|
||||||
g.DrawPolygon(pen, AddWingLower);
|
|
||||||
|
|
||||||
Point[] AddWingUpper = { new Point(_startPosX.Value + 60, _startPosY.Value + 60), new Point(_startPosX.Value + 60, _startPosY.Value),
|
|
||||||
new Point(_startPosX.Value + 50, _startPosY.Value), new Point(_startPosX.Value + 40, _startPosY.Value + 60) };
|
|
||||||
g.DrawPolygon(pen, AddWingUpper);
|
|
||||||
|
|
||||||
g.FillPolygon(brAdd, AddWingUpper);
|
|
||||||
g.FillPolygon(brAdd, AddWingLower);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,8 +1,8 @@
|
|||||||
namespace ProjectAirFighter;
|
namespace ProjectAirFighter.Entities;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Класс-сущность "Истребитель"
|
/// Класс-сущность "Истребитель"
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class EntityAirFighter
|
public class EntityAirFighter : EntityWarPlane
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Скорость
|
/// Скорость
|
||||||
@ -48,11 +48,9 @@ public class EntityAirFighter
|
|||||||
/// <param name="additionalColor">Дополнительный цвет</param>
|
/// <param name="additionalColor">Дополнительный цвет</param>
|
||||||
/// <param name="rocket">Признак наличия рокет</param>
|
/// <param name="rocket">Признак наличия рокет</param>
|
||||||
/// <param name="additionalWing">Признак наличия дополнительных крыльев</param>
|
/// <param name="additionalWing">Признак наличия дополнительных крыльев</param>
|
||||||
public void Init(int speed, double weight, Color bodyColor, Color additionalColor, bool rocket, bool additionalWing)
|
public EntityAirFighter(int speed, double weight, Color bodyColor, Color additionalColor, bool rocket, bool additionalWing) :base(speed, weight, bodyColor)
|
||||||
{
|
{
|
||||||
Speed = speed;
|
|
||||||
Weight = weight;
|
|
||||||
BodyColor = bodyColor;
|
|
||||||
AdditionalColor = additionalColor;
|
AdditionalColor = additionalColor;
|
||||||
Rocket = rocket;
|
Rocket = rocket;
|
||||||
AdditionalWing = additionalWing;
|
AdditionalWing = additionalWing;
|
@ -0,0 +1,43 @@
|
|||||||
|
namespace ProjectAirFighter.Entities;
|
||||||
|
/// <summary>
|
||||||
|
/// Класс-сущность "Военный самолет"
|
||||||
|
/// </summary>
|
||||||
|
|
||||||
|
public class EntityWarPlane
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Скорость
|
||||||
|
/// </summary>
|
||||||
|
public int Speed { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Вес
|
||||||
|
/// </summary>
|
||||||
|
public double Weight { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Основной цвет
|
||||||
|
/// </summary>
|
||||||
|
public Color BodyColor { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Шаг
|
||||||
|
/// </summary>
|
||||||
|
public double Step => Speed * 100 / Weight;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Конструктор сущности
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="speed">Скорость</param>
|
||||||
|
/// <param name="weight">Вес</param>
|
||||||
|
/// <param name="bodyColor">Основной цвет</param>
|
||||||
|
/// <param name="additionalColor">Дополнительный цвет</param>
|
||||||
|
/// <param name="rocket">Признак наличия рокет</param>
|
||||||
|
/// <param name="additionalWing">Признак наличия дополнительных крыльев</param>
|
||||||
|
public EntityWarPlane(int speed, double weight, Color bodyColor)
|
||||||
|
{
|
||||||
|
Speed = speed;
|
||||||
|
Weight = weight;
|
||||||
|
BodyColor = bodyColor;
|
||||||
|
}
|
||||||
|
}
|
@ -34,6 +34,7 @@
|
|||||||
buttonUp = new Button();
|
buttonUp = new Button();
|
||||||
buttonDown = new Button();
|
buttonDown = new Button();
|
||||||
buttonRight = new Button();
|
buttonRight = new Button();
|
||||||
|
buttonCreateWarPlane = new Button();
|
||||||
((System.ComponentModel.ISupportInitialize)pictureBoxAirFighter).BeginInit();
|
((System.ComponentModel.ISupportInitialize)pictureBoxAirFighter).BeginInit();
|
||||||
SuspendLayout();
|
SuspendLayout();
|
||||||
//
|
//
|
||||||
@ -41,22 +42,19 @@
|
|||||||
//
|
//
|
||||||
pictureBoxAirFighter.Dock = DockStyle.Fill;
|
pictureBoxAirFighter.Dock = DockStyle.Fill;
|
||||||
pictureBoxAirFighter.Location = new Point(0, 0);
|
pictureBoxAirFighter.Location = new Point(0, 0);
|
||||||
pictureBoxAirFighter.Margin = new Padding(3, 4, 3, 4);
|
|
||||||
pictureBoxAirFighter.Name = "pictureBoxAirFighter";
|
pictureBoxAirFighter.Name = "pictureBoxAirFighter";
|
||||||
pictureBoxAirFighter.Size = new Size(1056, 743);
|
pictureBoxAirFighter.Size = new Size(924, 557);
|
||||||
pictureBoxAirFighter.TabIndex = 0;
|
pictureBoxAirFighter.TabIndex = 0;
|
||||||
pictureBoxAirFighter.TabStop = false;
|
pictureBoxAirFighter.TabStop = false;
|
||||||
|
|
||||||
//
|
//
|
||||||
// buttonCreate
|
// buttonCreate
|
||||||
//
|
//
|
||||||
buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
||||||
buttonCreate.Location = new Point(14, 635);
|
buttonCreate.Location = new Point(0, 522);
|
||||||
buttonCreate.Margin = new Padding(3, 4, 3, 4);
|
|
||||||
buttonCreate.Name = "buttonCreate";
|
buttonCreate.Name = "buttonCreate";
|
||||||
buttonCreate.Size = new Size(86, 31);
|
buttonCreate.Size = new Size(232, 23);
|
||||||
buttonCreate.TabIndex = 1;
|
buttonCreate.TabIndex = 1;
|
||||||
buttonCreate.Text = "Создать";
|
buttonCreate.Text = "Создать истребитель";
|
||||||
buttonCreate.UseVisualStyleBackColor = true;
|
buttonCreate.UseVisualStyleBackColor = true;
|
||||||
buttonCreate.Click += ButtonCreate_Click;
|
buttonCreate.Click += ButtonCreate_Click;
|
||||||
//
|
//
|
||||||
@ -65,10 +63,9 @@
|
|||||||
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||||||
buttonLeft.BackgroundImage = Properties.Resources.left;
|
buttonLeft.BackgroundImage = Properties.Resources.left;
|
||||||
buttonLeft.BackgroundImageLayout = ImageLayout.Stretch;
|
buttonLeft.BackgroundImageLayout = ImageLayout.Stretch;
|
||||||
buttonLeft.Location = new Point(897, 680);
|
buttonLeft.Location = new Point(785, 510);
|
||||||
buttonLeft.Margin = new Padding(3, 4, 3, 4);
|
|
||||||
buttonLeft.Name = "buttonLeft";
|
buttonLeft.Name = "buttonLeft";
|
||||||
buttonLeft.Size = new Size(40, 47);
|
buttonLeft.Size = new Size(35, 35);
|
||||||
buttonLeft.TabIndex = 2;
|
buttonLeft.TabIndex = 2;
|
||||||
buttonLeft.UseVisualStyleBackColor = true;
|
buttonLeft.UseVisualStyleBackColor = true;
|
||||||
buttonLeft.ClientSizeChanged += FormAirFighter_SizeChanged;
|
buttonLeft.ClientSizeChanged += FormAirFighter_SizeChanged;
|
||||||
@ -79,10 +76,9 @@
|
|||||||
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||||||
buttonUp.BackgroundImage = Properties.Resources.up;
|
buttonUp.BackgroundImage = Properties.Resources.up;
|
||||||
buttonUp.BackgroundImageLayout = ImageLayout.Stretch;
|
buttonUp.BackgroundImageLayout = ImageLayout.Stretch;
|
||||||
buttonUp.Location = new Point(946, 625);
|
buttonUp.Location = new Point(828, 469);
|
||||||
buttonUp.Margin = new Padding(3, 4, 3, 4);
|
|
||||||
buttonUp.Name = "buttonUp";
|
buttonUp.Name = "buttonUp";
|
||||||
buttonUp.Size = new Size(40, 47);
|
buttonUp.Size = new Size(35, 35);
|
||||||
buttonUp.TabIndex = 3;
|
buttonUp.TabIndex = 3;
|
||||||
buttonUp.UseVisualStyleBackColor = true;
|
buttonUp.UseVisualStyleBackColor = true;
|
||||||
buttonUp.ClientSizeChanged += FormAirFighter_SizeChanged;
|
buttonUp.ClientSizeChanged += FormAirFighter_SizeChanged;
|
||||||
@ -93,10 +89,9 @@
|
|||||||
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||||||
buttonDown.BackgroundImage = Properties.Resources.down;
|
buttonDown.BackgroundImage = Properties.Resources.down;
|
||||||
buttonDown.BackgroundImageLayout = ImageLayout.Stretch;
|
buttonDown.BackgroundImageLayout = ImageLayout.Stretch;
|
||||||
buttonDown.Location = new Point(946, 680);
|
buttonDown.Location = new Point(828, 510);
|
||||||
buttonDown.Margin = new Padding(3, 4, 3, 4);
|
|
||||||
buttonDown.Name = "buttonDown";
|
buttonDown.Name = "buttonDown";
|
||||||
buttonDown.Size = new Size(40, 47);
|
buttonDown.Size = new Size(35, 35);
|
||||||
buttonDown.TabIndex = 4;
|
buttonDown.TabIndex = 4;
|
||||||
buttonDown.UseVisualStyleBackColor = true;
|
buttonDown.UseVisualStyleBackColor = true;
|
||||||
buttonDown.ClientSizeChanged += FormAirFighter_SizeChanged;
|
buttonDown.ClientSizeChanged += FormAirFighter_SizeChanged;
|
||||||
@ -107,27 +102,37 @@
|
|||||||
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||||||
buttonRight.BackgroundImage = Properties.Resources.right;
|
buttonRight.BackgroundImage = Properties.Resources.right;
|
||||||
buttonRight.BackgroundImageLayout = ImageLayout.Stretch;
|
buttonRight.BackgroundImageLayout = ImageLayout.Stretch;
|
||||||
buttonRight.Location = new Point(993, 680);
|
buttonRight.Location = new Point(869, 510);
|
||||||
buttonRight.Margin = new Padding(3, 4, 3, 4);
|
|
||||||
buttonRight.Name = "buttonRight";
|
buttonRight.Name = "buttonRight";
|
||||||
buttonRight.Size = new Size(40, 47);
|
buttonRight.Size = new Size(35, 35);
|
||||||
buttonRight.TabIndex = 5;
|
buttonRight.TabIndex = 5;
|
||||||
buttonRight.UseVisualStyleBackColor = true;
|
buttonRight.UseVisualStyleBackColor = true;
|
||||||
buttonRight.ClientSizeChanged += FormAirFighter_SizeChanged;
|
buttonRight.ClientSizeChanged += FormAirFighter_SizeChanged;
|
||||||
buttonRight.Click += ButtonMove_Click;
|
buttonRight.Click += ButtonMove_Click;
|
||||||
//
|
//
|
||||||
|
// buttonCreateWarPlane
|
||||||
|
//
|
||||||
|
buttonCreateWarPlane.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
||||||
|
buttonCreateWarPlane.Location = new Point(238, 522);
|
||||||
|
buttonCreateWarPlane.Name = "buttonCreateWarPlane";
|
||||||
|
buttonCreateWarPlane.Size = new Size(232, 23);
|
||||||
|
buttonCreateWarPlane.TabIndex = 6;
|
||||||
|
buttonCreateWarPlane.Text = "Создать военный самолет";
|
||||||
|
buttonCreateWarPlane.UseVisualStyleBackColor = true;
|
||||||
|
buttonCreateWarPlane.Click += buttonCreateWarPlane_Click;
|
||||||
|
//
|
||||||
// FormAirFighter
|
// FormAirFighter
|
||||||
//
|
//
|
||||||
AutoScaleDimensions = new SizeF(8F, 20F);
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||||
AutoScaleMode = AutoScaleMode.Font;
|
AutoScaleMode = AutoScaleMode.Font;
|
||||||
ClientSize = new Size(1056, 743);
|
ClientSize = new Size(924, 557);
|
||||||
|
Controls.Add(buttonCreateWarPlane);
|
||||||
Controls.Add(buttonRight);
|
Controls.Add(buttonRight);
|
||||||
Controls.Add(buttonDown);
|
Controls.Add(buttonDown);
|
||||||
Controls.Add(buttonUp);
|
Controls.Add(buttonUp);
|
||||||
Controls.Add(buttonLeft);
|
Controls.Add(buttonLeft);
|
||||||
Controls.Add(buttonCreate);
|
Controls.Add(buttonCreate);
|
||||||
Controls.Add(pictureBoxAirFighter);
|
Controls.Add(pictureBoxAirFighter);
|
||||||
Margin = new Padding(3, 4, 3, 4);
|
|
||||||
Name = "FormAirFighter";
|
Name = "FormAirFighter";
|
||||||
Text = "Истребитель";
|
Text = "Истребитель";
|
||||||
SizeChanged += FormAirFighter_SizeChanged;
|
SizeChanged += FormAirFighter_SizeChanged;
|
||||||
@ -143,5 +148,6 @@
|
|||||||
private Button buttonUp;
|
private Button buttonUp;
|
||||||
private Button buttonDown;
|
private Button buttonDown;
|
||||||
private Button buttonRight;
|
private Button buttonRight;
|
||||||
|
private Button buttonCreateWarPlane;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -7,6 +7,8 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
using ProjectAirFighter.Drawning;
|
||||||
|
using ProjectAirFighter.Entities;
|
||||||
|
|
||||||
namespace ProjectAirFighter
|
namespace ProjectAirFighter
|
||||||
{
|
{
|
||||||
@ -14,43 +16,74 @@ namespace ProjectAirFighter
|
|||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
private DrawningAirFighter? _drawningAirFighter;
|
private DrawningWarPlane? _drawningWarPlane;
|
||||||
|
|
||||||
private EntityAirFighter? _entityAirFighter;
|
|
||||||
|
/// <summary>
|
||||||
|
/// Стратегия перемещения
|
||||||
|
/// </summary>
|
||||||
|
//private AbstractStrategy? _strategy;
|
||||||
|
/// <summary>
|
||||||
|
/// Конструктор формы
|
||||||
|
/// </summary>
|
||||||
public FormAirFighter()
|
public FormAirFighter()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
//_strategy = null;
|
||||||
}
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// Метод прорисовки
|
||||||
|
/// </summary>
|
||||||
private void Draw()
|
private void Draw()
|
||||||
{
|
{
|
||||||
if (_drawningAirFighter == null) return;
|
if (_drawningWarPlane == null) return;
|
||||||
|
|
||||||
Bitmap bmp = new(pictureBoxAirFighter.Width, pictureBoxAirFighter.Height);
|
Bitmap bmp = new(pictureBoxAirFighter.Width, pictureBoxAirFighter.Height);
|
||||||
Graphics gr = Graphics.FromImage(bmp);
|
Graphics gr = Graphics.FromImage(bmp);
|
||||||
_drawningAirFighter.DrawTransport(gr);
|
_drawningWarPlane.DrawTransport(gr);
|
||||||
pictureBoxAirFighter.Image = bmp;
|
pictureBoxAirFighter.Image = bmp;
|
||||||
}
|
}
|
||||||
|
private void CreateObject(string type)
|
||||||
|
{
|
||||||
|
Random random = new();
|
||||||
|
switch (type)
|
||||||
|
{
|
||||||
|
case nameof(DrawningWarPlane):
|
||||||
|
_drawningWarPlane = new DrawningWarPlane(random.Next(100, 300),
|
||||||
|
random.Next(1000, 3000),
|
||||||
|
Color.FromArgb(random.Next(0, 256),
|
||||||
|
random.Next(0, 256), random.Next(0, 256)));
|
||||||
|
break;
|
||||||
|
case nameof(DrawningAirFighter):
|
||||||
|
_drawningWarPlane = new DrawningAirFighter(random.Next(100,
|
||||||
|
300), random.Next(1000, 3000),
|
||||||
|
Color.FromArgb(random.Next(0, 256),
|
||||||
|
random.Next(0, 256), random.Next(0, 256)),
|
||||||
|
Color.FromArgb(random.Next(0, 256),
|
||||||
|
random.Next(0, 256), random.Next(0, 256)),
|
||||||
|
Convert.ToBoolean(random.Next(0, 2)),
|
||||||
|
Convert.ToBoolean(random.Next(0, 2)));
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_drawningWarPlane.SetPictureSize(pictureBoxAirFighter.Width,
|
||||||
|
pictureBoxAirFighter.Height);
|
||||||
|
_drawningWarPlane.SetPosition(random.Next(10, 100), random.Next(10, 100));
|
||||||
|
Draw();
|
||||||
|
}
|
||||||
private void ButtonCreate_Click(object sender, EventArgs e)
|
private void ButtonCreate_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
Random random = new();
|
CreateObject(nameof(DrawningAirFighter));
|
||||||
_drawningAirFighter = new DrawningAirFighter();
|
}
|
||||||
_entityAirFighter = new EntityAirFighter();
|
private void buttonCreateWarPlane_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
_entityAirFighter.Init(random.Next(100, 300), random.Next(1000, 3000),
|
CreateObject(nameof(DrawningWarPlane));
|
||||||
Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)),
|
|
||||||
Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)),
|
|
||||||
Convert.ToBoolean(random.Next(0, 2)), Convert.ToBoolean(random.Next(0, 2)));
|
|
||||||
_drawningAirFighter.Init(_entityAirFighter);
|
|
||||||
_drawningAirFighter.SetPictureSize(pictureBoxAirFighter.Width, pictureBoxAirFighter.Height);
|
|
||||||
_drawningAirFighter.SetPosition(random.Next(40, 100), random.Next(40, 100));
|
|
||||||
|
|
||||||
Draw();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ButtonMove_Click(object sender, EventArgs e)
|
private void ButtonMove_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (_drawningAirFighter == null)
|
if (_drawningWarPlane == null)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -60,16 +93,16 @@ namespace ProjectAirFighter
|
|||||||
switch (name)
|
switch (name)
|
||||||
{
|
{
|
||||||
case "buttonUp":
|
case "buttonUp":
|
||||||
result = _drawningAirFighter.MoveTransport(DirectionType.Up);
|
result = _drawningWarPlane.MoveTransport(DirectionType.Up);
|
||||||
break;
|
break;
|
||||||
case "buttonDown":
|
case "buttonDown":
|
||||||
result = _drawningAirFighter.MoveTransport(DirectionType.Down);
|
result = _drawningWarPlane.MoveTransport(DirectionType.Down);
|
||||||
break;
|
break;
|
||||||
case "buttonLeft":
|
case "buttonLeft":
|
||||||
result = _drawningAirFighter.MoveTransport(DirectionType.Left);
|
result = _drawningWarPlane.MoveTransport(DirectionType.Left);
|
||||||
break;
|
break;
|
||||||
case "buttonRight":
|
case "buttonRight":
|
||||||
result = _drawningAirFighter.MoveTransport(DirectionType.Right);
|
result = _drawningWarPlane.MoveTransport(DirectionType.Right);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (result)
|
if (result)
|
||||||
@ -81,13 +114,13 @@ namespace ProjectAirFighter
|
|||||||
}
|
}
|
||||||
private void FormAirFighter_SizeChanged(object sender, EventArgs e)
|
private void FormAirFighter_SizeChanged(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (_drawningAirFighter == null) return;
|
if (_drawningWarPlane == null) return;
|
||||||
|
|
||||||
|
|
||||||
_drawningAirFighter.SetPictureSize(pictureBoxAirFighter.Width, pictureBoxAirFighter.Height);
|
_drawningWarPlane.SetPictureSize(pictureBoxAirFighter.Width, pictureBoxAirFighter.Height);
|
||||||
|
|
||||||
|
|
||||||
if (_drawningAirFighter.SetPictureSize(pictureBoxAirFighter.Width, pictureBoxAirFighter.Height))
|
if (_drawningWarPlane.SetPictureSize(pictureBoxAirFighter.Width, pictureBoxAirFighter.Height))
|
||||||
{
|
{
|
||||||
Draw();
|
Draw();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user