2024-02-18 17:22:50 +04:00
|
|
|
|
namespace ProjectAirplaneWithRadar
|
2024-02-10 18:11:15 +04:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Класс, отвечающий за прорисовку и перемещение объекта-сущности
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class DrawingAirplaneWithRadar
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Класс-сущность
|
|
|
|
|
/// </summary>
|
|
|
|
|
public EntityAirplaneWithRadar? EntityAirplaneWithRadar { get; private set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Ширина окна
|
|
|
|
|
/// </summary>
|
|
|
|
|
private int? _pictureWidth;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Высота окна
|
|
|
|
|
/// </summary>
|
|
|
|
|
private int? _pictureHeight;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Левая координата прорисовки
|
|
|
|
|
/// </summary>
|
|
|
|
|
private int? _startPosX;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Верхняя кооридната прорисовки
|
|
|
|
|
/// </summary>
|
|
|
|
|
private int? _startPosY;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-02-18 17:22:50 +04:00
|
|
|
|
/// Ширина прорисовки самолета
|
2024-02-10 18:11:15 +04:00
|
|
|
|
/// </summary>
|
2024-02-24 10:18:22 +04:00
|
|
|
|
public readonly int PlaneWidth = 150;
|
2024-02-10 18:11:15 +04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-02-18 17:22:50 +04:00
|
|
|
|
/// Высота прорисовки самолета
|
2024-02-10 18:11:15 +04:00
|
|
|
|
/// </summary>
|
2024-02-24 10:18:22 +04:00
|
|
|
|
public readonly int PlaneHeight = 95;
|
2024-02-18 17:22:50 +04:00
|
|
|
|
|
2024-02-10 18:11:15 +04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Инициализация свойств
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="speed">Скорость</param>
|
|
|
|
|
/// <param name="weight">Вес</param>
|
|
|
|
|
/// <param name="bodyColor">Основной цвет</param>
|
|
|
|
|
/// <param name="additionalColor">Дополнительный цвет</param>
|
2024-02-18 17:22:50 +04:00
|
|
|
|
/// <param name="wheels">Шасси</param>
|
|
|
|
|
/// <param name="rocket">Ракета</param>
|
|
|
|
|
public void Init(int speed, double weight, Color bodyColor, Color additionalColor, bool wheels, bool rocket)
|
2024-02-10 18:11:15 +04:00
|
|
|
|
{
|
|
|
|
|
EntityAirplaneWithRadar = new EntityAirplaneWithRadar();
|
2024-02-18 17:22:50 +04:00
|
|
|
|
EntityAirplaneWithRadar.Init(speed, weight, bodyColor, additionalColor, wheels, rocket);
|
2024-02-10 18:11:15 +04:00
|
|
|
|
_pictureWidth = null;
|
|
|
|
|
_pictureHeight = null;
|
|
|
|
|
_startPosX = null;
|
|
|
|
|
_startPosY = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Установка границ поля
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="width">Ширина поля</param>
|
|
|
|
|
/// <param name="height">Высота поля</param>
|
|
|
|
|
/// <returns>true - границы заданы, false - проверка не пройдена, нельзя разместить объект в этих размерах</returns>
|
|
|
|
|
public bool SetPictureSize(int width, int height)
|
|
|
|
|
{
|
2024-02-21 16:34:26 +04:00
|
|
|
|
if (PlaneWidth < width && PlaneHeight < height)
|
|
|
|
|
{
|
|
|
|
|
_pictureWidth = width;
|
|
|
|
|
_pictureHeight = height;
|
|
|
|
|
if(_startPosX != null && _startPosY != null)
|
|
|
|
|
{
|
|
|
|
|
if(_startPosX.Value < 0)
|
|
|
|
|
{
|
|
|
|
|
_startPosX = 0;
|
|
|
|
|
}
|
|
|
|
|
if(_startPosY.Value < 0)
|
|
|
|
|
{
|
|
|
|
|
_startPosY = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(_startPosX.Value + PlaneWidth > _pictureWidth)
|
|
|
|
|
{
|
|
|
|
|
_startPosX = _pictureWidth - PlaneWidth;
|
|
|
|
|
}
|
|
|
|
|
if (_startPosY.Value + PlaneHeight > _pictureHeight)
|
|
|
|
|
{
|
|
|
|
|
_startPosY = _pictureHeight - PlaneHeight;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
2024-02-10 18:11:15 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Установка позиции
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="x">Координата X</param>
|
|
|
|
|
/// <param name="y">Координата Y</param>
|
2024-02-18 17:22:50 +04:00
|
|
|
|
public void SetPosition(int x, int y)
|
2024-02-10 18:11:15 +04:00
|
|
|
|
{
|
|
|
|
|
if (!_pictureHeight.HasValue || !_pictureWidth.HasValue)
|
|
|
|
|
{
|
2024-02-18 17:22:50 +04:00
|
|
|
|
return;
|
2024-02-10 18:11:15 +04:00
|
|
|
|
}
|
2024-02-21 16:34:26 +04:00
|
|
|
|
|
2024-02-18 17:22:50 +04:00
|
|
|
|
_startPosX = x;
|
|
|
|
|
_startPosY = y;
|
2024-02-10 18:11:15 +04:00
|
|
|
|
|
2024-02-21 16:34:26 +04:00
|
|
|
|
if (_startPosX.Value < 0)
|
|
|
|
|
{
|
|
|
|
|
_startPosX = 0;
|
|
|
|
|
}
|
|
|
|
|
if(_startPosY.Value < 0)
|
|
|
|
|
{
|
|
|
|
|
_startPosY = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_startPosX.Value + PlaneWidth > _pictureWidth)
|
|
|
|
|
{
|
|
|
|
|
_startPosX = _pictureWidth - PlaneWidth;
|
|
|
|
|
}
|
|
|
|
|
if (_startPosY.Value + PlaneHeight > _pictureHeight)
|
|
|
|
|
{
|
|
|
|
|
_startPosY = _pictureHeight - PlaneHeight;
|
|
|
|
|
}
|
2024-02-10 18:11:15 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Изменение направления перемещения
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="direction">Направление</param>
|
|
|
|
|
/// <returns>true - перемещене выполнено, false - перемещение невозможно</returns>
|
|
|
|
|
public bool MoveTransport(DirectionType direction)
|
|
|
|
|
{
|
|
|
|
|
if (EntityAirplaneWithRadar == null || !_startPosX.HasValue || !_startPosY.HasValue)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int step = (int)EntityAirplaneWithRadar.Step;
|
|
|
|
|
switch (direction)
|
|
|
|
|
{
|
|
|
|
|
//влево
|
|
|
|
|
case DirectionType.Left:
|
|
|
|
|
if (_startPosX.Value - step > 0)
|
|
|
|
|
{
|
|
|
|
|
_startPosX -= step;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
//вверх
|
|
|
|
|
case DirectionType.Up:
|
|
|
|
|
if (_startPosY.Value - step > 0)
|
|
|
|
|
{
|
|
|
|
|
_startPosY -= step;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
// вправо
|
|
|
|
|
case DirectionType.Right:
|
2024-02-18 17:22:50 +04:00
|
|
|
|
if (_startPosX.Value + step < _pictureWidth - PlaneWidth)
|
2024-02-10 18:11:15 +04:00
|
|
|
|
{
|
|
|
|
|
_startPosX += step;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
//вниз
|
|
|
|
|
case DirectionType.Down:
|
|
|
|
|
if (_startPosY.Value + step < _pictureHeight - PlaneHeight)
|
|
|
|
|
{
|
|
|
|
|
_startPosY += step;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Прорисовка объекта
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="g"></param>
|
|
|
|
|
public void DrawTransport(Graphics g)
|
|
|
|
|
{
|
|
|
|
|
if (EntityAirplaneWithRadar == null || !_startPosX.HasValue || !_startPosY.HasValue)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Pen pen = new(Color.Black);
|
|
|
|
|
Brush additionalBrush = new SolidBrush(EntityAirplaneWithRadar.AdditionalColor);
|
|
|
|
|
|
|
|
|
|
//Шасси
|
|
|
|
|
if (EntityAirplaneWithRadar.Wheels)
|
|
|
|
|
{
|
|
|
|
|
//Задняя стойка
|
2024-02-24 10:18:22 +04:00
|
|
|
|
g.DrawRectangle(pen, _startPosX.Value + 30, _startPosY.Value + 80, 5, 10);
|
|
|
|
|
g.FillRectangle(additionalBrush, _startPosX.Value + 30, _startPosY.Value + 80, 5, 10);
|
2024-02-10 18:11:15 +04:00
|
|
|
|
|
2024-02-24 10:18:22 +04:00
|
|
|
|
g.DrawEllipse(pen, _startPosX.Value + 20, _startPosY.Value + 85, 10, 10);
|
|
|
|
|
g.FillEllipse(additionalBrush, _startPosX.Value + 20, _startPosY.Value + 85, 10, 10);
|
2024-02-10 18:11:15 +04:00
|
|
|
|
|
2024-02-24 10:18:22 +04:00
|
|
|
|
g.DrawEllipse(pen, _startPosX.Value + 35, _startPosY.Value + 85, 10, 10);
|
|
|
|
|
g.FillEllipse(additionalBrush, _startPosX.Value + 35, _startPosY.Value + 85, 10, 10);
|
2024-02-10 18:11:15 +04:00
|
|
|
|
|
|
|
|
|
//Передняя стойка
|
2024-02-24 10:18:22 +04:00
|
|
|
|
g.DrawRectangle(pen, _startPosX.Value + 95, _startPosY.Value + 80, 5, 10);
|
|
|
|
|
g.FillRectangle(additionalBrush, _startPosX.Value + 95, _startPosY.Value + 80, 5, 10);
|
2024-02-10 18:11:15 +04:00
|
|
|
|
|
2024-02-24 10:18:22 +04:00
|
|
|
|
g.DrawEllipse(pen, _startPosX.Value + 92, _startPosY.Value + 85, 10, 10);
|
|
|
|
|
g.FillEllipse(additionalBrush, _startPosX.Value + 92, _startPosY.Value + 85, 10, 10);
|
2024-02-10 18:11:15 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Ракета воздух-воздух
|
|
|
|
|
if (EntityAirplaneWithRadar.Rocket)
|
|
|
|
|
{
|
2024-02-24 10:18:22 +04:00
|
|
|
|
g.DrawRectangle(pen, _startPosX.Value + 50, _startPosY.Value + 70, 2, 5);
|
|
|
|
|
g.FillRectangle(additionalBrush, _startPosX.Value + 50, _startPosY.Value + 70, 2, 5);
|
2024-02-10 18:11:15 +04:00
|
|
|
|
|
2024-02-24 10:18:22 +04:00
|
|
|
|
g.DrawRectangle(pen, _startPosX.Value + 80, _startPosY.Value + 70, 2, 5);
|
|
|
|
|
g.FillRectangle(additionalBrush, _startPosX.Value + 80, _startPosY.Value + 70, 2, 5);
|
2024-02-10 18:11:15 +04:00
|
|
|
|
|
2024-02-24 10:18:22 +04:00
|
|
|
|
g.DrawRectangle(pen, _startPosX.Value + 40, _startPosY.Value + 75, 50, 5);
|
|
|
|
|
g.FillRectangle(additionalBrush, _startPosX.Value + 40, _startPosY.Value + 75, 50, 5);
|
2024-02-10 18:11:15 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Корпус
|
2024-02-24 10:18:22 +04:00
|
|
|
|
g.DrawRectangle(pen, _startPosX.Value + 10, _startPosY.Value + 50,100,30);
|
2024-02-10 18:11:15 +04:00
|
|
|
|
|
|
|
|
|
//Хвост
|
|
|
|
|
Point[] points = {
|
|
|
|
|
new Point(_startPosX.Value + 10, _startPosY.Value + 10),
|
2024-02-24 10:18:22 +04:00
|
|
|
|
new Point(_startPosX.Value + 10, _startPosY.Value + 50),
|
|
|
|
|
new Point(_startPosX.Value + 50, _startPosY.Value + 50)
|
2024-02-10 18:11:15 +04:00
|
|
|
|
};
|
|
|
|
|
g.DrawPolygon(pen, points);
|
|
|
|
|
|
|
|
|
|
//Кабина
|
|
|
|
|
Point[] points2 = {
|
2024-02-24 10:18:22 +04:00
|
|
|
|
new Point(_startPosX.Value + 110, _startPosY.Value + 45),
|
|
|
|
|
new Point(_startPosX.Value + 110, _startPosY.Value + 65),
|
|
|
|
|
new Point(_startPosX.Value + 150, _startPosY.Value + 65)
|
2024-02-10 18:11:15 +04:00
|
|
|
|
};
|
|
|
|
|
g.DrawPolygon(pen, points2);
|
|
|
|
|
Point[] points3 = {
|
2024-02-24 10:18:22 +04:00
|
|
|
|
new Point(_startPosX.Value + 110, _startPosY.Value + 65),
|
|
|
|
|
new Point(_startPosX.Value + 110, _startPosY.Value + 85),
|
|
|
|
|
new Point(_startPosX.Value + 150, _startPosY.Value + 65)
|
2024-02-10 18:11:15 +04:00
|
|
|
|
};
|
|
|
|
|
g.DrawPolygon(pen, points3);
|
|
|
|
|
|
|
|
|
|
//Крыло
|
|
|
|
|
Brush brBlack = new SolidBrush(Color.Black);
|
2024-02-24 10:18:22 +04:00
|
|
|
|
g.DrawEllipse(pen, _startPosX.Value + 30, _startPosY.Value + 60, 70, 10);
|
|
|
|
|
g.FillEllipse(brBlack, _startPosX.Value + 30, _startPosY.Value + 60, 70, 10);
|
2024-02-10 18:11:15 +04:00
|
|
|
|
|
|
|
|
|
//Хвостовой элерон
|
2024-02-24 10:18:22 +04:00
|
|
|
|
g.DrawEllipse(pen, _startPosX.Value, _startPosY.Value + 45, 30, 10);
|
|
|
|
|
g.FillEllipse(brBlack, _startPosX.Value, _startPosY.Value + 45, 30, 10);
|
2024-02-10 18:11:15 +04:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|