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