Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| eca2e72650 | |||
| ca85f1e742 | |||
| a4a92891e4 | |||
| 23aab7e7ff | |||
| 74809ae964 | |||
| 0e5c5075be | |||
| 026b4edb42 |
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
|||||||
# Visual Studio Version 17
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 17.5.33530.505
|
VisualStudioVersion = 17.5.33530.505
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AirBus", "AirBus\AirBus.csproj", "{97F3FB83-880E-4D1D-B941-1FB2F9B5C747}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProjectAirbus", "AirBus\ProjectAirbus.csproj", "{97F3FB83-880E-4D1D-B941-1FB2F9B5C747}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
|||||||
@@ -1,156 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Net.Http.Headers;
|
|
||||||
using System.Security.Cryptography.X509Certificates;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace AirBus
|
|
||||||
{
|
|
||||||
public class DrawningAirBus
|
|
||||||
{
|
|
||||||
public EntityAirBus? EntityAirBus { get; private set; }
|
|
||||||
|
|
||||||
// ширина и высота картинки
|
|
||||||
private int pictureWidht;
|
|
||||||
private int pictureHeight;
|
|
||||||
|
|
||||||
// стартовые точки
|
|
||||||
private int startPosX;
|
|
||||||
private int startPosY;
|
|
||||||
|
|
||||||
private readonly int airbusWidth = 100;
|
|
||||||
private readonly int airbusHeight = 37;
|
|
||||||
|
|
||||||
public bool Init(int speed, double weight, Color bodyColor, Color additionalColor, int width, int height)
|
|
||||||
{
|
|
||||||
pictureWidht = width;
|
|
||||||
pictureHeight = height;
|
|
||||||
|
|
||||||
EntityAirBus = new EntityAirBus();
|
|
||||||
EntityAirBus.Init(speed, weight, bodyColor, additionalColor);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
//установка позиции
|
|
||||||
public void SetPosition(int x, int y)
|
|
||||||
{
|
|
||||||
if (x >= 0 && x + airbusWidth <= pictureWidht && y >= 0 && y + airbusHeight <= pictureHeight)
|
|
||||||
{
|
|
||||||
startPosX = x;
|
|
||||||
startPosY = y;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// изменение направления движения
|
|
||||||
public void MoveTransport(Direction direction)
|
|
||||||
{
|
|
||||||
if (EntityAirBus == null)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
switch (direction)
|
|
||||||
{
|
|
||||||
case Direction.Left:
|
|
||||||
if (startPosX - EntityAirBus.Step > 0)
|
|
||||||
{
|
|
||||||
startPosX -= (int)EntityAirBus.Step;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case Direction.Right:
|
|
||||||
if (startPosX + EntityAirBus.Step <= pictureWidht)
|
|
||||||
{
|
|
||||||
startPosX += (int)EntityAirBus.Step;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case Direction.Up:
|
|
||||||
if (startPosY - EntityAirBus.Step > 0)
|
|
||||||
{
|
|
||||||
startPosY -= (int)EntityAirBus.Step;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case Direction.Down:
|
|
||||||
if (startPosY + EntityAirBus.Step <= pictureHeight)
|
|
||||||
{
|
|
||||||
startPosY += (int)EntityAirBus.Step;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// РИСОВАНИЕ САМОЛЁТА
|
|
||||||
public void DrawTransport(Graphics g)
|
|
||||||
{
|
|
||||||
if ( startPosX < 0 || startPosY < 0 || EntityAirBus == null)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
Pen pen = new(Color.Black);
|
|
||||||
Brush additionalBrush = new SolidBrush(EntityAirBus.AdditionalColor);
|
|
||||||
Brush additionalBrush2 = new SolidBrush(Color.Black);
|
|
||||||
|
|
||||||
// нос
|
|
||||||
Point point1 = new Point(startPosX + 74, startPosY + 15);
|
|
||||||
Point point2 = new Point(startPosX + 88, startPosY + 22);
|
|
||||||
Point point3 = new Point(startPosX + 74, startPosY + 27);
|
|
||||||
Point[] PointsNose = { point1, point2, point3 };
|
|
||||||
|
|
||||||
g.DrawPolygon(pen, PointsNose);
|
|
||||||
g.FillPolygon(additionalBrush, PointsNose);
|
|
||||||
|
|
||||||
// хвост
|
|
||||||
Point point4 = new Point(startPosX + 4, startPosY + 17);
|
|
||||||
Point point5 = new Point(startPosX + 3, startPosY);
|
|
||||||
Point point6 = new Point(startPosX + 21, startPosY + 17);
|
|
||||||
|
|
||||||
Point[] PointsTail = { point4, point5, point6 };
|
|
||||||
g.DrawPolygon(pen, PointsTail);
|
|
||||||
g.FillPolygon(additionalBrush, PointsTail);
|
|
||||||
|
|
||||||
// тело
|
|
||||||
g.DrawRectangle(pen, startPosX + 2, startPosY + 14, 72, 14);
|
|
||||||
g.FillRectangle(additionalBrush, startPosX + 2, startPosY + 14, 72, 14);
|
|
||||||
|
|
||||||
//шасси
|
|
||||||
g.DrawEllipse(pen, startPosX + 21, startPosY + 30, 3, 3);
|
|
||||||
g.FillEllipse(additionalBrush, startPosX + 21, startPosY + 30, 3, 3);
|
|
||||||
|
|
||||||
g.DrawEllipse(pen, startPosX + 25, startPosY + 30, 3, 3);
|
|
||||||
g.FillEllipse(additionalBrush, startPosX + 25, startPosY + 30, 3, 3);
|
|
||||||
|
|
||||||
g.DrawEllipse(pen, startPosX + 70, startPosY + 30, 3, 3);
|
|
||||||
g.FillEllipse(additionalBrush, startPosX + 70, startPosY + 30, 3, 3);
|
|
||||||
|
|
||||||
// Крыло
|
|
||||||
g.DrawEllipse(pen, startPosX + 24, startPosY + 20, 31, 4);
|
|
||||||
g.FillEllipse(additionalBrush, startPosX + 24, startPosY + 20, 31, 4);
|
|
||||||
|
|
||||||
|
|
||||||
// у хвоста
|
|
||||||
g.DrawEllipse(pen, startPosX, startPosY + 14, 14, 5);
|
|
||||||
g.FillEllipse(additionalBrush, startPosX, startPosY + 14, 14, 5);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public void ChangeBorders(int width, int height)
|
|
||||||
{
|
|
||||||
pictureWidht = width;
|
|
||||||
pictureHeight = height;
|
|
||||||
if (pictureWidht <= airbusWidth || pictureHeight <= airbusWidth)
|
|
||||||
{
|
|
||||||
pictureWidht = null;
|
|
||||||
pictureHeight = null;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if ( startPosX + airbusWidth > pictureWidht)
|
|
||||||
{
|
|
||||||
startPosX = pictureWidht.Value - airbusWidth;
|
|
||||||
}
|
|
||||||
if ( startPosY + airbusHeight > pictureHeight)
|
|
||||||
{
|
|
||||||
startPosY = pictureHeight.Value - airbusHeight;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
159
Airbus/Drawnings/DrawningAirbus.cs
Normal file
@@ -0,0 +1,159 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using ProjectAirbus.Entities;
|
||||||
|
using ProjectAirbus.MovementStrategy;
|
||||||
|
|
||||||
|
namespace ProjectAirbus.Drawnings
|
||||||
|
{
|
||||||
|
public class DrawningAirbus
|
||||||
|
{
|
||||||
|
public EntityAirbus? EntityAirbus { get; protected set; }
|
||||||
|
private int _pictureWidth;
|
||||||
|
private int _pictureHeight;
|
||||||
|
|
||||||
|
protected int _startPosX;
|
||||||
|
protected int _startPosY;
|
||||||
|
|
||||||
|
protected readonly int _airbusWidth = 89;
|
||||||
|
protected readonly int _airbusHeight = 34;
|
||||||
|
|
||||||
|
// Получение объекта IMoveableObject из объекта DrawningCar
|
||||||
|
public IMoveableObject GetMoveableObject => new DrawningObjectAirbus(this);
|
||||||
|
|
||||||
|
// доработки для интерфейса
|
||||||
|
public int GetPosX => _startPosX;
|
||||||
|
public int GetPosY => _startPosY;
|
||||||
|
public int GetWidth => _airbusWidth;
|
||||||
|
public int GetHeight => _airbusHeight;
|
||||||
|
|
||||||
|
public DrawningAirbus(int speed, double weight, Color bodyColor, int
|
||||||
|
width, int height)
|
||||||
|
{
|
||||||
|
if (width < _airbusWidth || height < _airbusHeight)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_pictureWidth = width;
|
||||||
|
_pictureHeight = height;
|
||||||
|
EntityAirbus = new EntityAirbus(speed, weight, bodyColor);
|
||||||
|
}
|
||||||
|
protected DrawningAirbus(int speed, double weight, Color bodyColor, int width, int height, int carWidth, int carHeight)
|
||||||
|
{
|
||||||
|
if (width < _airbusWidth || height < _airbusHeight)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_pictureWidth = width;
|
||||||
|
_pictureHeight = height;
|
||||||
|
_airbusWidth = carWidth;
|
||||||
|
_airbusHeight = carHeight;
|
||||||
|
EntityAirbus = new EntityAirbus(speed, weight, bodyColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
// доработка для интерфейса
|
||||||
|
// проверка, что может переместиться
|
||||||
|
public bool CanMove(DirectionType direction)
|
||||||
|
{
|
||||||
|
if (EntityAirbus == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return direction switch
|
||||||
|
{
|
||||||
|
DirectionType.Left => _startPosX - EntityAirbus.Step > 0,
|
||||||
|
DirectionType.Up => _startPosY - EntityAirbus.Step > 0,
|
||||||
|
DirectionType.Right => _startPosX + _airbusWidth + EntityAirbus.Step < _pictureWidth,
|
||||||
|
DirectionType.Down => _startPosY + _airbusHeight + EntityAirbus.Step < _pictureHeight,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public void SetPosition(int x, int y)
|
||||||
|
{
|
||||||
|
if (x >= _pictureWidth || y >= _pictureHeight)
|
||||||
|
{
|
||||||
|
x = _pictureWidth - _airbusWidth;
|
||||||
|
y = _pictureHeight - _airbusHeight;
|
||||||
|
}
|
||||||
|
_startPosX = x;
|
||||||
|
_startPosY = y;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void MoveTransport(DirectionType direction)
|
||||||
|
{
|
||||||
|
if (!CanMove(direction) || EntityAirbus == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
switch (direction)
|
||||||
|
{
|
||||||
|
case DirectionType.Left:
|
||||||
|
_startPosX -= (int)EntityAirbus.Step;
|
||||||
|
break;
|
||||||
|
case DirectionType.Right:
|
||||||
|
_startPosX += (int)EntityAirbus.Step;
|
||||||
|
break;
|
||||||
|
case DirectionType.Up:
|
||||||
|
_startPosY -= (int)EntityAirbus.Step;
|
||||||
|
break;
|
||||||
|
case DirectionType.Down:
|
||||||
|
_startPosY += (int)EntityAirbus.Step;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// прорисовка
|
||||||
|
public virtual void DrawTransport(Graphics g)
|
||||||
|
{
|
||||||
|
if (EntityAirbus == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Pen pen = new(Color.Black);
|
||||||
|
Brush bodyBrush = new SolidBrush(EntityAirbus.BodyColor);
|
||||||
|
Brush brYellow = new SolidBrush(Color.Yellow);
|
||||||
|
|
||||||
|
// нос
|
||||||
|
Point point1 = new Point(_startPosX + 74, _startPosY + 15);
|
||||||
|
Point point2 = new Point(_startPosX + 88, _startPosY + 22);
|
||||||
|
Point point3 = new Point(_startPosX + 74, _startPosY + 27);
|
||||||
|
Point[] PointsNose = { point1, point2, point3 };
|
||||||
|
|
||||||
|
g.DrawPolygon(pen, PointsNose);
|
||||||
|
g.FillPolygon(brYellow, PointsNose);
|
||||||
|
|
||||||
|
// хвост
|
||||||
|
Point point4 = new Point(_startPosX + 4, _startPosY + 17);
|
||||||
|
Point point5 = new Point(_startPosX + 3, _startPosY);
|
||||||
|
Point point6 = new Point(_startPosX + 21, _startPosY + 17);
|
||||||
|
|
||||||
|
Point[] PointsTail = { point4, point5, point6 };
|
||||||
|
g.DrawPolygon(pen, PointsTail);
|
||||||
|
g.FillPolygon(brYellow, PointsTail);
|
||||||
|
|
||||||
|
// тело
|
||||||
|
g.DrawRectangle(pen, _startPosX + 2, _startPosY + 14, 72, 14);
|
||||||
|
g.FillRectangle(bodyBrush, _startPosX + 2, _startPosY + 14, 72, 14);
|
||||||
|
|
||||||
|
//шасси
|
||||||
|
g.DrawEllipse(pen, _startPosX + 21, _startPosY + 30, 3, 3);
|
||||||
|
g.FillEllipse(brYellow, _startPosX + 21, _startPosY + 30, 3, 3);
|
||||||
|
|
||||||
|
g.DrawEllipse(pen, _startPosX + 25, _startPosY + 30, 3, 3);
|
||||||
|
g.FillEllipse(brYellow, _startPosX + 25, _startPosY + 30, 3, 3);
|
||||||
|
|
||||||
|
g.DrawEllipse(pen, _startPosX + 70, _startPosY + 30, 3, 3);
|
||||||
|
g.FillEllipse(brYellow, _startPosX + 70, _startPosY + 30, 3, 3);
|
||||||
|
|
||||||
|
// Крыло
|
||||||
|
g.DrawEllipse(pen, _startPosX + 24, _startPosY + 20, 31, 4);
|
||||||
|
g.FillEllipse(brYellow, _startPosX + 24, _startPosY + 20, 31, 4);
|
||||||
|
|
||||||
|
// двигатель у хвоста
|
||||||
|
g.DrawEllipse(pen, _startPosX, _startPosY + 14, 14, 5);
|
||||||
|
g.FillEllipse(brYellow, _startPosX, _startPosY + 14, 14, 5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
48
Airbus/Drawnings/DrawningPlane.cs
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using ProjectAirbus.Entities;
|
||||||
|
|
||||||
|
namespace ProjectAirbus.Drawnings
|
||||||
|
{
|
||||||
|
public class DrawningPlane : DrawningAirbus
|
||||||
|
{
|
||||||
|
public DrawningPlane(int speed, double weight, Color bodyColor, Color additionalColor,bool isCompartment, bool isAdditionalEngine, int width, int height) :
|
||||||
|
base (speed, weight, bodyColor, width, height, 110, 60)
|
||||||
|
{
|
||||||
|
if (EntityAirbus != null)
|
||||||
|
{
|
||||||
|
EntityAirbus = new EntityPlane(speed, weight, bodyColor, additionalColor, isCompartment, isAdditionalEngine);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void DrawTransport(Graphics g)
|
||||||
|
{
|
||||||
|
if (EntityAirbus is not EntityPlane superAirbus)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Pen pen = new(Color.Black);
|
||||||
|
Brush bodyBrush = new SolidBrush(EntityAirbus.BodyColor);
|
||||||
|
Brush additionalBrush = new SolidBrush(superAirbus.AdditionalColor);
|
||||||
|
|
||||||
|
// доп отсек
|
||||||
|
if (superAirbus.IsCompartment)
|
||||||
|
{
|
||||||
|
g.DrawEllipse(pen, _startPosX + 51, _startPosY + 10, 24, 10);
|
||||||
|
g.FillEllipse(bodyBrush, _startPosX + 51, _startPosY + 10, 24, 10);
|
||||||
|
}
|
||||||
|
|
||||||
|
base.DrawTransport(g);
|
||||||
|
|
||||||
|
// доп двигатель
|
||||||
|
if (superAirbus.IsAdditionalEngine)
|
||||||
|
{
|
||||||
|
g.DrawEllipse(pen, _startPosX, _startPosY + 20, 11, 5);
|
||||||
|
g.FillEllipse(additionalBrush, _startPosX, _startPosY + 20, 11, 5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -4,9 +4,9 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace AirBus
|
namespace ProjectAirbus.Entities
|
||||||
{
|
{
|
||||||
public enum Direction
|
public enum DirectionType
|
||||||
{
|
{
|
||||||
Up = 1,
|
Up = 1,
|
||||||
Down = 2,
|
Down = 2,
|
||||||
24
Airbus/Entities/EntityAirbus.cs
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ProjectAirbus.Entities
|
||||||
|
{
|
||||||
|
public class EntityAirbus
|
||||||
|
{
|
||||||
|
public int Speed { get; private set; }
|
||||||
|
public double Weight { get; private set; }
|
||||||
|
public Color BodyColor { get; private set; }
|
||||||
|
|
||||||
|
public double Step => (double)Speed * 100 / Weight;
|
||||||
|
public EntityAirbus(int speed, double weight, Color bodyColor)
|
||||||
|
{
|
||||||
|
Speed = speed;
|
||||||
|
Weight = weight;
|
||||||
|
BodyColor = bodyColor;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
23
Airbus/Entities/EntityPlane.cs
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ProjectAirbus.Entities
|
||||||
|
{
|
||||||
|
public class EntityPlane : EntityAirbus
|
||||||
|
{
|
||||||
|
public Color AdditionalColor { get; private set; }
|
||||||
|
public bool IsCompartment { get; private set; }
|
||||||
|
public bool IsAdditionalEngine { get; private set; }
|
||||||
|
|
||||||
|
public EntityPlane(int speed, double weight, Color bodyColor, Color additionalColor, bool isCompartment, bool isAdditionalEngine) :
|
||||||
|
base(speed, weight, bodyColor)
|
||||||
|
{
|
||||||
|
AdditionalColor = additionalColor;
|
||||||
|
IsCompartment = isCompartment;
|
||||||
|
IsAdditionalEngine = isAdditionalEngine;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace AirBus
|
|
||||||
{
|
|
||||||
public class EntityAirBus
|
|
||||||
{
|
|
||||||
// Скорость
|
|
||||||
public int Speed { get; private set; }
|
|
||||||
|
|
||||||
// Вес
|
|
||||||
public double Weight { get; private set; }
|
|
||||||
|
|
||||||
// основной цвет
|
|
||||||
public Color BodyColor { get; private set; }
|
|
||||||
|
|
||||||
// доп. цвет
|
|
||||||
public Color AdditionalColor { get; private set; }
|
|
||||||
|
|
||||||
// наличие доп отсека для пассажиров
|
|
||||||
public bool IsCompartment { get; private set; }
|
|
||||||
|
|
||||||
// наличие доп двигателей
|
|
||||||
public bool IsAdditionalEngine { get; private set; }
|
|
||||||
|
|
||||||
// шаг перемещения
|
|
||||||
public double Step => (double)Speed * 100 / Weight;
|
|
||||||
|
|
||||||
public void Init (int speed, double weight, Color bodyColor, Color additionalColor, bool isCompartment, bool isAdditionalEngine)
|
|
||||||
{
|
|
||||||
Speed = speed;
|
|
||||||
Weight = weight;
|
|
||||||
BodyColor = bodyColor;
|
|
||||||
AdditionalColor = additionalColor;
|
|
||||||
IsCompartment = isCompartment;
|
|
||||||
IsAdditionalEngine = isAdditionalEngine;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
145
Airbus/FormAirbus.Designer.cs
generated
@@ -1,145 +0,0 @@
|
|||||||
namespace Airbus
|
|
||||||
{
|
|
||||||
partial class FormAirbus
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Required designer variable.
|
|
||||||
/// </summary>
|
|
||||||
private System.ComponentModel.IContainer components = null;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Clean up any resources being used.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
||||||
protected override void Dispose(bool disposing)
|
|
||||||
{
|
|
||||||
if (disposing && (components != null))
|
|
||||||
{
|
|
||||||
components.Dispose();
|
|
||||||
}
|
|
||||||
base.Dispose(disposing);
|
|
||||||
}
|
|
||||||
|
|
||||||
#region Windows Form Designer generated code
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Required method for Designer support - do not modify
|
|
||||||
/// the contents of this method with the code editor.
|
|
||||||
/// </summary>
|
|
||||||
private void InitializeComponent()
|
|
||||||
{
|
|
||||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAirbus));
|
|
||||||
pictureAirbus = new PictureBox();
|
|
||||||
buttonUp = new Button();
|
|
||||||
buttonLeft = new Button();
|
|
||||||
buttonDown = new Button();
|
|
||||||
buttonRight = new Button();
|
|
||||||
buttonCreate = new Button();
|
|
||||||
((System.ComponentModel.ISupportInitialize)pictureAirbus).BeginInit();
|
|
||||||
SuspendLayout();
|
|
||||||
//
|
|
||||||
// pictureAirbus
|
|
||||||
//
|
|
||||||
pictureAirbus.Dock = DockStyle.Fill;
|
|
||||||
pictureAirbus.Location = new Point(0, 0);
|
|
||||||
pictureAirbus.Name = "pictureAirbus";
|
|
||||||
pictureAirbus.Size = new Size(800, 450);
|
|
||||||
pictureAirbus.SizeMode = PictureBoxSizeMode.AutoSize;
|
|
||||||
pictureAirbus.TabIndex = 0;
|
|
||||||
pictureAirbus.TabStop = false;
|
|
||||||
//
|
|
||||||
// buttonUp
|
|
||||||
//
|
|
||||||
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
||||||
buttonUp.BackgroundImage = (Image)resources.GetObject("buttonUp.BackgroundImage");
|
|
||||||
buttonUp.BackgroundImageLayout = ImageLayout.Zoom;
|
|
||||||
buttonUp.FlatAppearance.BorderColor = Color.Black;
|
|
||||||
buttonUp.FlatAppearance.BorderSize = 7;
|
|
||||||
buttonUp.Location = new Point(679, 313);
|
|
||||||
buttonUp.Name = "buttonUp";
|
|
||||||
buttonUp.Size = new Size(48, 44);
|
|
||||||
buttonUp.TabIndex = 1;
|
|
||||||
buttonUp.UseVisualStyleBackColor = true;
|
|
||||||
buttonUp.Click += buttonMove_Click;
|
|
||||||
//
|
|
||||||
// buttonLeft
|
|
||||||
//
|
|
||||||
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
||||||
buttonLeft.BackgroundImage = (Image)resources.GetObject("buttonLeft.BackgroundImage");
|
|
||||||
buttonLeft.BackgroundImageLayout = ImageLayout.Zoom;
|
|
||||||
buttonLeft.FlatAppearance.BorderColor = Color.Black;
|
|
||||||
buttonLeft.FlatAppearance.BorderSize = 7;
|
|
||||||
buttonLeft.Location = new Point(630, 358);
|
|
||||||
buttonLeft.Name = "buttonLeft";
|
|
||||||
buttonLeft.Size = new Size(48, 44);
|
|
||||||
buttonLeft.TabIndex = 2;
|
|
||||||
buttonLeft.UseVisualStyleBackColor = true;
|
|
||||||
buttonLeft.Click += buttonMove_Click;
|
|
||||||
//
|
|
||||||
// buttonDown
|
|
||||||
//
|
|
||||||
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
||||||
buttonDown.BackgroundImage = (Image)resources.GetObject("buttonDown.BackgroundImage");
|
|
||||||
buttonDown.BackgroundImageLayout = ImageLayout.Zoom;
|
|
||||||
buttonDown.FlatAppearance.BorderColor = Color.Black;
|
|
||||||
buttonDown.FlatAppearance.BorderSize = 7;
|
|
||||||
buttonDown.Location = new Point(679, 358);
|
|
||||||
buttonDown.Name = "buttonDown";
|
|
||||||
buttonDown.Size = new Size(48, 44);
|
|
||||||
buttonDown.TabIndex = 3;
|
|
||||||
buttonDown.UseVisualStyleBackColor = true;
|
|
||||||
buttonDown.Click += buttonMove_Click;
|
|
||||||
//
|
|
||||||
// buttonRight
|
|
||||||
//
|
|
||||||
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
||||||
buttonRight.BackgroundImage = (Image)resources.GetObject("buttonRight.BackgroundImage");
|
|
||||||
buttonRight.BackgroundImageLayout = ImageLayout.Zoom;
|
|
||||||
buttonRight.FlatAppearance.BorderColor = Color.Black;
|
|
||||||
buttonRight.FlatAppearance.BorderSize = 7;
|
|
||||||
buttonRight.Location = new Point(728, 358);
|
|
||||||
buttonRight.Name = "buttonRight";
|
|
||||||
buttonRight.Size = new Size(48, 44);
|
|
||||||
buttonRight.TabIndex = 4;
|
|
||||||
buttonRight.UseVisualStyleBackColor = true;
|
|
||||||
buttonRight.Click += buttonMove_Click;
|
|
||||||
//
|
|
||||||
// buttonCreate
|
|
||||||
//
|
|
||||||
buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
|
||||||
buttonCreate.Location = new Point(12, 387);
|
|
||||||
buttonCreate.Name = "buttonCreate";
|
|
||||||
buttonCreate.Size = new Size(81, 51);
|
|
||||||
buttonCreate.TabIndex = 5;
|
|
||||||
buttonCreate.Text = "Создать";
|
|
||||||
buttonCreate.UseVisualStyleBackColor = true;
|
|
||||||
buttonCreate.Click += buttonCreate_Click;
|
|
||||||
//
|
|
||||||
// FormAirbus
|
|
||||||
//
|
|
||||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
||||||
AutoScaleMode = AutoScaleMode.Font;
|
|
||||||
ClientSize = new Size(800, 450);
|
|
||||||
Controls.Add(buttonCreate);
|
|
||||||
Controls.Add(buttonRight);
|
|
||||||
Controls.Add(buttonDown);
|
|
||||||
Controls.Add(buttonLeft);
|
|
||||||
Controls.Add(buttonUp);
|
|
||||||
Controls.Add(pictureAirbus);
|
|
||||||
Name = "FormAirbus";
|
|
||||||
Text = "FormAirbus";
|
|
||||||
((System.ComponentModel.ISupportInitialize)pictureAirbus).EndInit();
|
|
||||||
ResumeLayout(false);
|
|
||||||
PerformLayout();
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
private PictureBox pictureAirbus;
|
|
||||||
private Button buttonUp;
|
|
||||||
private Button buttonLeft;
|
|
||||||
private Button buttonDown;
|
|
||||||
private Button buttonRight;
|
|
||||||
private Button buttonCreate;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,63 +0,0 @@
|
|||||||
namespace Airbus
|
|
||||||
{
|
|
||||||
public partial class FormAirbus : Form
|
|
||||||
{
|
|
||||||
|
|
||||||
// поле-объект для прористовки самолёта
|
|
||||||
private DrawningAirbus? _drawningAirbus;
|
|
||||||
public FormAirbus()
|
|
||||||
{
|
|
||||||
InitializeComponent();
|
|
||||||
}
|
|
||||||
|
|
||||||
// прорисовка самолёта
|
|
||||||
private void Draw()
|
|
||||||
{
|
|
||||||
if (_drawningAirbus == null)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
Bitmap bmp = new(pictureAirbus.Width, pictureAirbus.Height);
|
|
||||||
Graphics g = Graphics.FromImage(bmp);
|
|
||||||
_drawningAirbus.DrawTransport(g);
|
|
||||||
pictureAirbus.Image = bmp;
|
|
||||||
}
|
|
||||||
|
|
||||||
// кнопка "Создать"
|
|
||||||
private void buttonCreate_Click(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
Random random = new Random();
|
|
||||||
_drawningAirbus = new DrawningAirbus();
|
|
||||||
_drawningAirbus.Init(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)),
|
|
||||||
pictureAirbus.Width, pictureAirbus.Height);
|
|
||||||
|
|
||||||
_drawningAirbus.SetPosition(random.Next(10,100), random.Next(10,100));
|
|
||||||
Draw();
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private void buttonMove_Click(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
if (_drawningAirbus == null)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
string name = ((Button)sender)?.Name ?? string.Empty;
|
|
||||||
switch (name)
|
|
||||||
{
|
|
||||||
case "buttonUp":
|
|
||||||
_drawningAirbus.MoveTransport(Direction.Up); break;
|
|
||||||
case "buttonDown":
|
|
||||||
_drawningAirbus.MoveTransport(Direction.Down); break;
|
|
||||||
case "buttonLeft":
|
|
||||||
_drawningAirbus.MoveTransport(Direction.Left); break;
|
|
||||||
case "buttonRight":
|
|
||||||
_drawningAirbus.MoveTransport(Direction.Right); break;
|
|
||||||
}
|
|
||||||
Draw();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
128
Airbus/FormAirbusCollection.Designer.cs
generated
Normal file
@@ -0,0 +1,128 @@
|
|||||||
|
namespace ProjectAirbus
|
||||||
|
{
|
||||||
|
partial class FormAirbusCollection
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Windows Form Designer generated code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
private void InitializeComponent()
|
||||||
|
{
|
||||||
|
buttonAdd=new Button();
|
||||||
|
pictureBoxCollection=new PictureBox();
|
||||||
|
labelInstruments=new Label();
|
||||||
|
buttonUpdate=new Button();
|
||||||
|
buttonDelete=new Button();
|
||||||
|
colorDialog=new ColorDialog();
|
||||||
|
maskedTextBoxNumber=new MaskedTextBox();
|
||||||
|
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit();
|
||||||
|
SuspendLayout();
|
||||||
|
//
|
||||||
|
// buttonAdd
|
||||||
|
//
|
||||||
|
buttonAdd.Anchor=AnchorStyles.Top|AnchorStyles.Right;
|
||||||
|
buttonAdd.Location=new Point(457, 34);
|
||||||
|
buttonAdd.Name="buttonAdd";
|
||||||
|
buttonAdd.Size=new Size(137, 28);
|
||||||
|
buttonAdd.TabIndex=0;
|
||||||
|
buttonAdd.Text="Добавить самолёт";
|
||||||
|
buttonAdd.UseVisualStyleBackColor=true;
|
||||||
|
buttonAdd.Click+=buttonAdd_Click;
|
||||||
|
//
|
||||||
|
// pictureBoxCollection
|
||||||
|
//
|
||||||
|
pictureBoxCollection.Location=new Point(0, 0);
|
||||||
|
pictureBoxCollection.Name="pictureBoxCollection";
|
||||||
|
pictureBoxCollection.Size=new Size(424, 453);
|
||||||
|
pictureBoxCollection.TabIndex=1;
|
||||||
|
pictureBoxCollection.TabStop=false;
|
||||||
|
//
|
||||||
|
// labelInstruments
|
||||||
|
//
|
||||||
|
labelInstruments.Anchor=AnchorStyles.Top|AnchorStyles.Right;
|
||||||
|
labelInstruments.AutoSize=true;
|
||||||
|
labelInstruments.Location=new Point(449, 9);
|
||||||
|
labelInstruments.Name="labelInstruments";
|
||||||
|
labelInstruments.Size=new Size(83, 15);
|
||||||
|
labelInstruments.TabIndex=2;
|
||||||
|
labelInstruments.Text="Инструменты";
|
||||||
|
//
|
||||||
|
// buttonUpdate
|
||||||
|
//
|
||||||
|
buttonUpdate.Anchor=AnchorStyles.Top|AnchorStyles.Right;
|
||||||
|
buttonUpdate.Location=new Point(457, 212);
|
||||||
|
buttonUpdate.Name="buttonUpdate";
|
||||||
|
buttonUpdate.Size=new Size(137, 28);
|
||||||
|
buttonUpdate.TabIndex=3;
|
||||||
|
buttonUpdate.Text="Обновить коллекцию";
|
||||||
|
buttonUpdate.UseVisualStyleBackColor=true;
|
||||||
|
buttonUpdate.Click+=buttonUpdate_Click;
|
||||||
|
//
|
||||||
|
// buttonDelete
|
||||||
|
//
|
||||||
|
buttonDelete.Anchor=AnchorStyles.Top|AnchorStyles.Right;
|
||||||
|
buttonDelete.Location=new Point(457, 140);
|
||||||
|
buttonDelete.Name="buttonDelete";
|
||||||
|
buttonDelete.Size=new Size(137, 28);
|
||||||
|
buttonDelete.TabIndex=4;
|
||||||
|
buttonDelete.Text="Удалить самолёт";
|
||||||
|
buttonDelete.UseVisualStyleBackColor=true;
|
||||||
|
buttonDelete.Click+=buttonDelete_Click;
|
||||||
|
//
|
||||||
|
// maskedTextBoxNumber
|
||||||
|
//
|
||||||
|
maskedTextBoxNumber.Anchor=AnchorStyles.Top|AnchorStyles.Right;
|
||||||
|
maskedTextBoxNumber.Location=new Point(457, 111);
|
||||||
|
maskedTextBoxNumber.Name="maskedTextBoxNumber";
|
||||||
|
maskedTextBoxNumber.Size=new Size(100, 23);
|
||||||
|
maskedTextBoxNumber.TabIndex=5;
|
||||||
|
//
|
||||||
|
// FormAirbusCollection
|
||||||
|
//
|
||||||
|
AutoScaleDimensions=new SizeF(7F, 15F);
|
||||||
|
AutoScaleMode=AutoScaleMode.Font;
|
||||||
|
ClientSize=new Size(607, 455);
|
||||||
|
Controls.Add(buttonAdd);
|
||||||
|
Controls.Add(maskedTextBoxNumber);
|
||||||
|
Controls.Add(buttonDelete);
|
||||||
|
Controls.Add(buttonUpdate);
|
||||||
|
Controls.Add(labelInstruments);
|
||||||
|
Controls.Add(pictureBoxCollection);
|
||||||
|
Name="FormAirbusCollection";
|
||||||
|
Text="Набор самолётов";
|
||||||
|
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit();
|
||||||
|
ResumeLayout(false);
|
||||||
|
PerformLayout();
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private Button buttonAdd;
|
||||||
|
private PictureBox pictureBoxCollection;
|
||||||
|
private Label labelInstruments;
|
||||||
|
private Button buttonUpdate;
|
||||||
|
private Button buttonDelete;
|
||||||
|
private ColorDialog colorDialog;
|
||||||
|
private MaskedTextBox maskedTextBoxNumber;
|
||||||
|
}
|
||||||
|
}
|
||||||
79
Airbus/FormAirbusCollection.cs
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Data;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
using ProjectAirbus.Generics;
|
||||||
|
using ProjectAirbus.Drawnings;
|
||||||
|
using ProjectAirbus.MovementStrategy;
|
||||||
|
|
||||||
|
namespace ProjectAirbus
|
||||||
|
{
|
||||||
|
public partial class FormAirbusCollection : Form
|
||||||
|
{
|
||||||
|
// Набор объектов
|
||||||
|
private readonly AirbusGenericCollection<DrawningAirbus, DrawningObjectAirbus> _airbus;
|
||||||
|
|
||||||
|
public FormAirbusCollection()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
_airbus = new AirbusGenericCollection<DrawningAirbus, DrawningObjectAirbus>(pictureBoxCollection.Width, pictureBoxCollection.Height);
|
||||||
|
}
|
||||||
|
|
||||||
|
// добавить в набор
|
||||||
|
private void buttonAdd_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
FormPlane form = new();
|
||||||
|
if (form.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
if (_airbus + form.SelectedAirbus != -1)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Объект добавлен");
|
||||||
|
pictureBoxCollection.Image = _airbus.ShowAirbus();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MessageBox.Show("Не удалось добавить объект");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// удалить
|
||||||
|
private void buttonDelete_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
int pos = 0;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
pos = Convert.ToInt32(maskedTextBoxNumber.Text);
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
MessageBox.Show("Ошибка ввода данных");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (_airbus - pos)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Объект удален");
|
||||||
|
pictureBoxCollection.Image = _airbus.ShowAirbus();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MessageBox.Show("Не удалось удалить объект");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// обновить
|
||||||
|
private void buttonUpdate_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
pictureBoxCollection.Image = _airbus.ShowAirbus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
66
Airbus/FormAirbusCollection.resx
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
<root>
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<metadata name="colorDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>79</value>
|
||||||
|
</metadata>
|
||||||
|
</root>
|
||||||
211
Airbus/FormPlane.Designer.cs
generated
Normal file
@@ -0,0 +1,211 @@
|
|||||||
|
namespace ProjectAirbus
|
||||||
|
{
|
||||||
|
partial class FormPlane
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Windows Form Designer generated code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
private void InitializeComponent()
|
||||||
|
{
|
||||||
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPlane));
|
||||||
|
pictureAirBus = new PictureBox();
|
||||||
|
buttonUp = new Button();
|
||||||
|
buttonLeft = new Button();
|
||||||
|
buttonDown = new Button();
|
||||||
|
buttonRight = new Button();
|
||||||
|
buttonCreate = new Button();
|
||||||
|
buttonCreateSuperAirbus = new Button();
|
||||||
|
buttonStep = new Button();
|
||||||
|
comboBoxStrategy = new ComboBox();
|
||||||
|
buttonSelectedAirbus = new Button();
|
||||||
|
((System.ComponentModel.ISupportInitialize)pictureAirBus).BeginInit();
|
||||||
|
SuspendLayout();
|
||||||
|
//
|
||||||
|
// pictureAirBus
|
||||||
|
//
|
||||||
|
pictureAirBus.Dock = DockStyle.Fill;
|
||||||
|
pictureAirBus.Location = new Point(0, 0);
|
||||||
|
pictureAirBus.Margin = new Padding(3, 4, 3, 4);
|
||||||
|
pictureAirBus.Name = "pictureAirBus";
|
||||||
|
pictureAirBus.Size = new Size(903, 547);
|
||||||
|
pictureAirBus.SizeMode = PictureBoxSizeMode.AutoSize;
|
||||||
|
pictureAirBus.TabIndex = 0;
|
||||||
|
pictureAirBus.TabStop = false;
|
||||||
|
//
|
||||||
|
// buttonUp
|
||||||
|
//
|
||||||
|
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||||||
|
buttonUp.BackgroundImage = (Image)resources.GetObject("buttonUp.BackgroundImage");
|
||||||
|
buttonUp.BackgroundImageLayout = ImageLayout.Stretch;
|
||||||
|
buttonUp.FlatAppearance.BorderColor = Color.Black;
|
||||||
|
buttonUp.FlatAppearance.BorderSize = 7;
|
||||||
|
buttonUp.Location = new Point(776, 412);
|
||||||
|
buttonUp.Margin = new Padding(3, 4, 3, 4);
|
||||||
|
buttonUp.Name = "buttonUp";
|
||||||
|
buttonUp.Size = new Size(55, 59);
|
||||||
|
buttonUp.TabIndex = 1;
|
||||||
|
buttonUp.UseVisualStyleBackColor = true;
|
||||||
|
buttonUp.Click += buttonMove_Click;
|
||||||
|
//
|
||||||
|
// buttonLeft
|
||||||
|
//
|
||||||
|
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||||||
|
buttonLeft.BackColor = SystemColors.Control;
|
||||||
|
buttonLeft.BackgroundImage = (Image)resources.GetObject("buttonLeft.BackgroundImage");
|
||||||
|
buttonLeft.BackgroundImageLayout = ImageLayout.Stretch;
|
||||||
|
buttonLeft.FlatAppearance.BorderColor = Color.Black;
|
||||||
|
buttonLeft.FlatAppearance.BorderSize = 7;
|
||||||
|
buttonLeft.Location = new Point(720, 472);
|
||||||
|
buttonLeft.Margin = new Padding(3, 4, 3, 4);
|
||||||
|
buttonLeft.Name = "buttonLeft";
|
||||||
|
buttonLeft.Size = new Size(55, 59);
|
||||||
|
buttonLeft.TabIndex = 2;
|
||||||
|
buttonLeft.UseVisualStyleBackColor = false;
|
||||||
|
buttonLeft.Click += buttonMove_Click;
|
||||||
|
//
|
||||||
|
// buttonDown
|
||||||
|
//
|
||||||
|
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||||||
|
buttonDown.BackgroundImage = (Image)resources.GetObject("buttonDown.BackgroundImage");
|
||||||
|
buttonDown.BackgroundImageLayout = ImageLayout.Stretch;
|
||||||
|
buttonDown.FlatAppearance.BorderColor = Color.Black;
|
||||||
|
buttonDown.FlatAppearance.BorderSize = 7;
|
||||||
|
buttonDown.Location = new Point(776, 472);
|
||||||
|
buttonDown.Margin = new Padding(3, 4, 3, 4);
|
||||||
|
buttonDown.Name = "buttonDown";
|
||||||
|
buttonDown.Size = new Size(55, 59);
|
||||||
|
buttonDown.TabIndex = 3;
|
||||||
|
buttonDown.UseVisualStyleBackColor = true;
|
||||||
|
buttonDown.Click += buttonMove_Click;
|
||||||
|
//
|
||||||
|
// buttonRight
|
||||||
|
//
|
||||||
|
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||||||
|
buttonRight.BackgroundImage = (Image)resources.GetObject("buttonRight.BackgroundImage");
|
||||||
|
buttonRight.BackgroundImageLayout = ImageLayout.Stretch;
|
||||||
|
buttonRight.FlatAppearance.BorderColor = Color.Black;
|
||||||
|
buttonRight.FlatAppearance.BorderSize = 7;
|
||||||
|
buttonRight.Location = new Point(832, 472);
|
||||||
|
buttonRight.Margin = new Padding(3, 4, 3, 4);
|
||||||
|
buttonRight.Name = "buttonRight";
|
||||||
|
buttonRight.Size = new Size(55, 59);
|
||||||
|
buttonRight.TabIndex = 4;
|
||||||
|
buttonRight.UseVisualStyleBackColor = true;
|
||||||
|
buttonRight.Click += buttonMove_Click;
|
||||||
|
//
|
||||||
|
// buttonCreate
|
||||||
|
//
|
||||||
|
buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
||||||
|
buttonCreate.Location = new Point(14, 481);
|
||||||
|
buttonCreate.Margin = new Padding(3, 4, 3, 4);
|
||||||
|
buttonCreate.Name = "buttonCreate";
|
||||||
|
buttonCreate.Size = new Size(146, 50);
|
||||||
|
buttonCreate.TabIndex = 5;
|
||||||
|
buttonCreate.Text = "Создать аэробус";
|
||||||
|
buttonCreate.UseVisualStyleBackColor = true;
|
||||||
|
buttonCreate.Click += buttonCreate_Click;
|
||||||
|
//
|
||||||
|
// buttonCreateSuperAirbus
|
||||||
|
//
|
||||||
|
buttonCreateSuperAirbus.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
||||||
|
buttonCreateSuperAirbus.Location = new Point(166, 481);
|
||||||
|
buttonCreateSuperAirbus.Margin = new Padding(3, 4, 3, 4);
|
||||||
|
buttonCreateSuperAirbus.Name = "buttonCreateSuperAirbus";
|
||||||
|
buttonCreateSuperAirbus.Size = new Size(145, 50);
|
||||||
|
buttonCreateSuperAirbus.TabIndex = 6;
|
||||||
|
buttonCreateSuperAirbus.Text = "Создать самолёт";
|
||||||
|
buttonCreateSuperAirbus.UseVisualStyleBackColor = true;
|
||||||
|
buttonCreateSuperAirbus.Click += buttonCreateSuperAirbus_Click;
|
||||||
|
//
|
||||||
|
// buttonStep
|
||||||
|
//
|
||||||
|
buttonStep.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
||||||
|
buttonStep.Location = new Point(767, 68);
|
||||||
|
buttonStep.Margin = new Padding(3, 4, 3, 4);
|
||||||
|
buttonStep.Name = "buttonStep";
|
||||||
|
buttonStep.Size = new Size(120, 49);
|
||||||
|
buttonStep.TabIndex = 7;
|
||||||
|
buttonStep.Text = "Шаг";
|
||||||
|
buttonStep.UseVisualStyleBackColor = true;
|
||||||
|
buttonStep.Click += buttonStep_Click;
|
||||||
|
//
|
||||||
|
// comboBoxStrategy
|
||||||
|
//
|
||||||
|
comboBoxStrategy.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
||||||
|
comboBoxStrategy.DropDownStyle = ComboBoxStyle.DropDownList;
|
||||||
|
comboBoxStrategy.FormattingEnabled = true;
|
||||||
|
comboBoxStrategy.Items.AddRange(new object[] { "1", "2" });
|
||||||
|
comboBoxStrategy.Location = new Point(711, 29);
|
||||||
|
comboBoxStrategy.Margin = new Padding(3, 4, 3, 4);
|
||||||
|
comboBoxStrategy.Name = "comboBoxStrategy";
|
||||||
|
comboBoxStrategy.Size = new Size(178, 28);
|
||||||
|
comboBoxStrategy.TabIndex = 8;
|
||||||
|
//
|
||||||
|
// buttonSelectedAirbus
|
||||||
|
//
|
||||||
|
buttonSelectedAirbus.Location = new Point(427, 481);
|
||||||
|
buttonSelectedAirbus.Name = "buttonSelectedAirbus";
|
||||||
|
buttonSelectedAirbus.Size = new Size(137, 50);
|
||||||
|
buttonSelectedAirbus.TabIndex = 9;
|
||||||
|
buttonSelectedAirbus.Text = "Выбрать";
|
||||||
|
buttonSelectedAirbus.UseVisualStyleBackColor = true;
|
||||||
|
buttonSelectedAirbus.Click += buttonSelectedAirbus_Click;
|
||||||
|
//
|
||||||
|
// FormPlane
|
||||||
|
//
|
||||||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
||||||
|
AutoScaleMode = AutoScaleMode.Font;
|
||||||
|
ClientSize = new Size(903, 547);
|
||||||
|
Controls.Add(buttonSelectedAirbus);
|
||||||
|
Controls.Add(comboBoxStrategy);
|
||||||
|
Controls.Add(buttonStep);
|
||||||
|
Controls.Add(buttonCreateSuperAirbus);
|
||||||
|
Controls.Add(buttonCreate);
|
||||||
|
Controls.Add(buttonRight);
|
||||||
|
Controls.Add(buttonDown);
|
||||||
|
Controls.Add(buttonLeft);
|
||||||
|
Controls.Add(buttonUp);
|
||||||
|
Controls.Add(pictureAirBus);
|
||||||
|
Margin = new Padding(3, 4, 3, 4);
|
||||||
|
Name = "FormPlane";
|
||||||
|
Text = "FormPlane";
|
||||||
|
((System.ComponentModel.ISupportInitialize)pictureAirBus).EndInit();
|
||||||
|
ResumeLayout(false);
|
||||||
|
PerformLayout();
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private PictureBox pictureAirBus;
|
||||||
|
private Button buttonUp;
|
||||||
|
private Button buttonLeft;
|
||||||
|
private Button buttonDown;
|
||||||
|
private Button buttonRight;
|
||||||
|
private Button buttonCreate;
|
||||||
|
private Button buttonCreateSuperAirbus;
|
||||||
|
private Button buttonStep;
|
||||||
|
private ComboBox comboBoxStrategy;
|
||||||
|
private Button buttonSelectedAirbus;
|
||||||
|
}
|
||||||
|
}
|
||||||
144
Airbus/FormPlane.cs
Normal file
@@ -0,0 +1,144 @@
|
|||||||
|
using ProjectAirbus.Drawnings;
|
||||||
|
using ProjectAirbus.MovementStrategy;
|
||||||
|
using ProjectAirbus.Entities;
|
||||||
|
|
||||||
|
namespace ProjectAirbus
|
||||||
|
{
|
||||||
|
public partial class FormPlane : Form
|
||||||
|
{
|
||||||
|
private DrawningAirbus? _drawningAirbus;
|
||||||
|
private AbstractStrategy? _abstractStrategy;
|
||||||
|
|
||||||
|
// Выбранный автомобиль
|
||||||
|
public DrawningAirbus? SelectedAirbus { get; private set; }
|
||||||
|
|
||||||
|
public FormPlane()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
_abstractStrategy = null;
|
||||||
|
SelectedAirbus = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// прорисовка самолёта
|
||||||
|
private void Draw()
|
||||||
|
{
|
||||||
|
if (_drawningAirbus == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Bitmap bmp = new(pictureAirBus.Width, pictureAirBus.Height);
|
||||||
|
Graphics g = Graphics.FromImage(bmp);
|
||||||
|
_drawningAirbus.DrawTransport(g);
|
||||||
|
pictureAirBus.Image = bmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
// кнопка "Создать самолёт"
|
||||||
|
private void buttonCreate_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
Random random = new Random();
|
||||||
|
Color color = Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256));
|
||||||
|
ColorDialog dialog = new();
|
||||||
|
if (dialog.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
color = dialog.Color;
|
||||||
|
}
|
||||||
|
|
||||||
|
_drawningAirbus = new DrawningAirbus(random.Next(100, 300), random.Next(1000, 3000),
|
||||||
|
color, pictureAirBus.Width, pictureAirBus.Height);
|
||||||
|
|
||||||
|
_drawningAirbus.SetPosition(random.Next(10, 200), random.Next(10, 200));
|
||||||
|
Draw();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// кнопка "Создать суперсамолёт"
|
||||||
|
private void buttonCreateSuperAirbus_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
Random random = new Random();
|
||||||
|
Color color = Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256));
|
||||||
|
//выбор основного цвета
|
||||||
|
ColorDialog dialog = new();
|
||||||
|
if (dialog.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
color = dialog.Color;
|
||||||
|
}
|
||||||
|
|
||||||
|
Color dopColor = Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256));
|
||||||
|
//TODO дополнительного цвета
|
||||||
|
if (dialog.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
dopColor = dialog.Color;
|
||||||
|
}
|
||||||
|
|
||||||
|
_drawningAirbus = new DrawningPlane(random.Next(200, 400), random.Next(1000, 3000),
|
||||||
|
color, dopColor, Convert.ToBoolean(random.Next(0, 2)), Convert.ToBoolean(random.Next(0, 2)),
|
||||||
|
pictureAirBus.Width, pictureAirBus.Height);
|
||||||
|
|
||||||
|
_drawningAirbus.SetPosition(random.Next(10, 200), random.Next(10, 200));
|
||||||
|
Draw();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void buttonMove_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (_drawningAirbus == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
string name = ((Button)sender)?.Name ?? string.Empty;
|
||||||
|
switch (name)
|
||||||
|
{
|
||||||
|
case "buttonUp":
|
||||||
|
_drawningAirbus.MoveTransport(DirectionType.Up); break;
|
||||||
|
case "buttonDown":
|
||||||
|
_drawningAirbus.MoveTransport(DirectionType.Down); break;
|
||||||
|
case "buttonLeft":
|
||||||
|
_drawningAirbus.MoveTransport(DirectionType.Left); break;
|
||||||
|
case "buttonRight":
|
||||||
|
_drawningAirbus.MoveTransport(DirectionType.Right); break;
|
||||||
|
}
|
||||||
|
Draw();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Кнопка "Шаг"
|
||||||
|
private void buttonStep_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (_drawningAirbus == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (comboBoxStrategy.Enabled)
|
||||||
|
{
|
||||||
|
_abstractStrategy = comboBoxStrategy.SelectedIndex
|
||||||
|
switch
|
||||||
|
{
|
||||||
|
0 => new MoveToCenter(),
|
||||||
|
1 => new MoveToBorder(),
|
||||||
|
_ => null,
|
||||||
|
};
|
||||||
|
if (_abstractStrategy == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_abstractStrategy.SetData(new DrawningObjectAirbus(_drawningAirbus), pictureAirBus.Width, pictureAirBus.Height);
|
||||||
|
comboBoxStrategy.Enabled = false;
|
||||||
|
}
|
||||||
|
if (_abstractStrategy == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_abstractStrategy.MakeStep();
|
||||||
|
Draw();
|
||||||
|
if (_abstractStrategy.GetStatus() == Status.Finish)
|
||||||
|
{
|
||||||
|
comboBoxStrategy.Enabled = true;
|
||||||
|
_abstractStrategy = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void buttonSelectedAirbus_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
SelectedAirbus = _drawningAirbus;
|
||||||
|
DialogResult = DialogResult.OK;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,4 +1,64 @@
|
|||||||
<root>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
@@ -133,18 +193,18 @@
|
|||||||
AgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkj
|
AgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkj
|
||||||
M1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5
|
M1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5
|
||||||
eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm
|
eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm
|
||||||
5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A/fyv5Wv2qP8Agvj+2F4U/al+J2kaT8cda0zSdH8X6vp1
|
5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A/fyv5Wv2qf8Agvj+2F4V/al+JukaT8cNZ0zSdH8X6vp1
|
||||||
jZwaJpPl2tvBfTRRRrutSxCoijLEk4ySTk1/VLX8Tv7Y3H7Y3xg/7HvXv/TlcUAfsj/wbMf8FWP2hv22
|
jZwaJpPl2tvBfTRRRrutSxCoijLEk4ySTk1/VLX8Tv7Y3H7Y3xg/7HvXv/TlcUAfsh/wbN/8FV/2hv22
|
||||||
P2/PFXgv4r/E7UvG3hm1+H99rcFldaZp9v5N5DqOmQpKHgt434juZlK7tp3AkEqpH7o1/NX/AMGev/KU
|
f2+/FXgz4rfE7UPGvhm18AXutwWV1pmn2/k3kOo6ZCkoeC3jfiO5mUru2ncCQSqkfulX81f/AAZ6/wDK
|
||||||
7xj/ANkq1T/076LX9KlAH4G/8HMnwL/aQ/Y8+Nsnxv8Ah/8AGf41W/wj8cXMUF/ZaZ411O2t/B2p7Qix
|
U7xj/wBkq1T/ANO+i1/SpQB+Bf8Awcw/Az9pD9j742SfG74f/Gf41W/wj8cXMUF/ZaZ411O2t/B2p7Qi
|
||||||
CKKZVjtbjbmNgNqS74yV3wh/xQ1TU7rXNUur6+urm+vr6Z7m5ubmVpprmV2LPI7sSzOzEsWYkkkkkk1/
|
xCKKZVjtbjbmNgNqS74yV3wh/wAU9U1O61zVLq+vrq6vr6+me5ubm5laaa5ldizyO7EszsxLFmJJJJJJ
|
||||||
b18afgx4X/aJ+FHiDwN420Wz8ReE/FNlJp+qadcg+XcwuMEZUhlYcFXQh0YKylWAI/kc/wCCtH/BMbxR
|
Nf26/Gn4M+F/2iPhR4g8DeNtFs/EXhTxRZSafqmnXIPl3MLjBGVIZWHBV0IdGCspVgCP5IP+CtH/AATH
|
||||||
/wAEr/2rL7wTqv27U/B+riTUPB3iCZBt1qwDAFXZQE+1QFljmQBcEpIFVJo8gHgfwx+MfjD4G+IpdZ8D
|
8Uf8EsP2rL7wTqn27U/B+riTUPB3iCZBt1qwDAFXZQE+1QFljmQBcEpIFVJo8gHgfwx+MnjD4G+IpNZ8
|
||||||
+LvFngvWbi2aykvvDur3OmXk0DujtAZLd0dkZ442KZILIhwSox/VB/wQU/Y1+MH7Ln7KE2vfHT4i/Ebx
|
D+LvFngvWLi2aykvvDur3OmXk0DujtAZLd0dkZ442KZILIhwSox/U9/wQW/Y3+MH7Ln7KE2vfHT4jfEX
|
||||||
j8QviObfU7jRfE2v3eqR+ELZFfyLSMXEjlLllkL3DLtG7y48HyBI/wCcP/Brr/wRkb4n+J9L/af+Jmmx
|
xh8QviMbfU7jRvE+v3eqReELZFfyLSMXEjlLllkL3DLtG7y48HyBI/5w/wDBrx/wRlb4neJtL/ae+Jmm
|
||||||
t4b0K6Mnw/0q5i3f2lexNg6u6kY8qB1It+paZWl+URRNJ/QJQAV4r+3V/wAE+fhb/wAFHfhLZ+C/itoM
|
xt4b0K7Mnw/0q5i3f2lexNg6s6kY8qB1It+paZWl+URRNJ/QNQAV4l+3X/wT5+Fv/BRv4T2fgv4raDJr
|
||||||
mtaPp2pQ6raSW909pd2k0Zw3lzRkOqyRl4nAPKSNjDBWUooA9c8MeGdN8E+G9P0bRtPsdJ0fSbaOysbG
|
Wj6fqUOq2j2909pdWk0Zw3lzRkOqyRl4nAPKSNjDBWUooA9a8MeHdN8F+G9P0bR9PsdJ0fSbWKzsbGyg
|
||||||
ygW3trKCNQkcUUagKiIqhVVQAAAAABV6iigD/9k=
|
W3trKBFCRxRRqAqIiqFVVAAAAAAFadFFAH//2Q==
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="buttonRight.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="buttonRight.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
112
Airbus/Generics/AirbusGenericCollection.cs
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using ProjectAirbus.Drawnings;
|
||||||
|
using ProjectAirbus.MovementStrategy;
|
||||||
|
|
||||||
|
namespace ProjectAirbus.Generics
|
||||||
|
{
|
||||||
|
internal class AirbusGenericCollection<T, U>
|
||||||
|
where T : DrawningAirbus
|
||||||
|
where U : IMoveableObject
|
||||||
|
{
|
||||||
|
private readonly int _pictureWidth;
|
||||||
|
private readonly int _pictureHeight;
|
||||||
|
// Размер занимаемого места
|
||||||
|
private readonly int _placeSizeWidth = 89;
|
||||||
|
private readonly int _placeSizeHeight = 34;
|
||||||
|
// коллекция
|
||||||
|
private readonly SetGeneric<T> _collection;
|
||||||
|
|
||||||
|
public AirbusGenericCollection(int picWidth, int picHeight)
|
||||||
|
{
|
||||||
|
int width = picWidth / _placeSizeWidth;
|
||||||
|
int height = picHeight / _placeSizeHeight;
|
||||||
|
_pictureWidth = picWidth;
|
||||||
|
_pictureHeight = picHeight;
|
||||||
|
|
||||||
|
_collection = new SetGeneric<T>(width * height);
|
||||||
|
}
|
||||||
|
public static int operator +(AirbusGenericCollection<T, U> collect, T? obj)
|
||||||
|
{
|
||||||
|
if (obj != null)
|
||||||
|
{
|
||||||
|
return collect._collection.Insert(obj);
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
public static bool operator -(AirbusGenericCollection<T, U> collect, int pos)
|
||||||
|
{
|
||||||
|
if (collect._collection.Get(pos) == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return collect?._collection.Remove(pos) ?? false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// получение объекта IMoveableObjecr
|
||||||
|
public U? GetU(int pos)
|
||||||
|
{
|
||||||
|
return (U?)_collection.Get(pos)?.GetMoveableObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
// вывод всего набора
|
||||||
|
public Bitmap ShowAirbus()
|
||||||
|
{
|
||||||
|
Bitmap bmp = new(_pictureWidth, _pictureHeight);
|
||||||
|
Graphics gr = Graphics.FromImage(bmp);
|
||||||
|
DrawBackground(gr);
|
||||||
|
DrawObjects(gr);
|
||||||
|
return bmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
// прорисовка фона
|
||||||
|
private void DrawBackground(Graphics gr)
|
||||||
|
{
|
||||||
|
Pen pen = new(Color.Black, 3);
|
||||||
|
for (int i = 0; i < _pictureWidth / _placeSizeWidth; ++i)
|
||||||
|
{
|
||||||
|
for (int j = 0; j < _pictureHeight / _placeSizeHeight + 1; ++j)
|
||||||
|
{
|
||||||
|
// линия разметки
|
||||||
|
gr.DrawLine(pen, i * _placeSizeWidth, j * _placeSizeHeight, i * _placeSizeWidth + _placeSizeWidth / 2, j * _placeSizeHeight);
|
||||||
|
gr.DrawLine(pen, i * _placeSizeWidth, 0, i * _placeSizeWidth, _pictureHeight / _placeSizeHeight * _placeSizeHeight);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// прорисовка объекта
|
||||||
|
private void DrawObjects(Graphics g)
|
||||||
|
{
|
||||||
|
// координаты
|
||||||
|
int x = 0;
|
||||||
|
int y = 0;
|
||||||
|
|
||||||
|
for (int i = 0; i <= _collection.Count; ++i)
|
||||||
|
{
|
||||||
|
DrawningAirbus _airbus = _collection.Get(i);
|
||||||
|
if (_airbus == null)
|
||||||
|
{
|
||||||
|
++x;
|
||||||
|
if (x >= _pictureWidth / _placeSizeWidth)
|
||||||
|
{
|
||||||
|
x = 0;
|
||||||
|
++y;
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
_airbus.SetPosition(_placeSizeWidth * x, _placeSizeHeight * y);
|
||||||
|
_airbus.DrawTransport(g);
|
||||||
|
++x;
|
||||||
|
// новая строка
|
||||||
|
if (x >= _pictureWidth / _placeSizeWidth)
|
||||||
|
{
|
||||||
|
x = 0;
|
||||||
|
++y;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
105
Airbus/Generics/SetGeneric.cs
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ProjectAirbus.Generics
|
||||||
|
{
|
||||||
|
internal class SetGeneric<T>
|
||||||
|
where T : class
|
||||||
|
{
|
||||||
|
// список объекторв
|
||||||
|
private readonly T?[] _places;
|
||||||
|
// кол-во объектов
|
||||||
|
public int Count => _places.Length - 1;
|
||||||
|
public SetGeneric(int count)
|
||||||
|
{
|
||||||
|
_places = new T?[count];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Добавление объекта в набор
|
||||||
|
public int Insert(T airbus)
|
||||||
|
{
|
||||||
|
// проверка, что элемент массива по этой позиции пустой, если нет, то
|
||||||
|
int pos = Count - 1;
|
||||||
|
if (_places[Count] != null)
|
||||||
|
{
|
||||||
|
// проверка, что после вставляемого элемента в массиве есть пустой элемент
|
||||||
|
for (int i = pos; i > 0; --i)
|
||||||
|
{
|
||||||
|
if (_places[i] == null)
|
||||||
|
{
|
||||||
|
pos = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// сдвиг всех объектов, находящихся слева от позиции до первого пустого элемента
|
||||||
|
for (int i = pos + 1; i <= Count; ++i)
|
||||||
|
{
|
||||||
|
_places[i - 1] = _places[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_places[Count] = airbus;
|
||||||
|
return pos;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Добавление объекта в набор на конкретную позицию
|
||||||
|
public bool Insert(T airbus, int position)
|
||||||
|
{
|
||||||
|
// проверка позиции
|
||||||
|
if (position < 0 || position > Count)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// проверка, что элемент массива по этой позиции пустой, если нет, то
|
||||||
|
if (_places[Count] != null)
|
||||||
|
{
|
||||||
|
// проверка, что после вставляемого элемента в массиве есть пустой элемент
|
||||||
|
int pos = Count;
|
||||||
|
for (int i = Count; i > 0; --i)
|
||||||
|
{
|
||||||
|
|
||||||
|
if (_places[i] == null)
|
||||||
|
{
|
||||||
|
pos = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// сдвиг всех объектов, находящихся слева от позиции до первого пустого элемента
|
||||||
|
for (int i = Count; i >= pos; --i)
|
||||||
|
{
|
||||||
|
_places[i - 1] = _places[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_places[Count] = airbus;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Удаление объекта из набора с конкретной позиции
|
||||||
|
public bool Remove(int position)
|
||||||
|
{
|
||||||
|
// проверка позиции
|
||||||
|
if (position < 0 || position > Count)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// удалить объект из массива, присвоив элементу массива значение null
|
||||||
|
_places[position] = null;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Получение объекта из набора по позиции
|
||||||
|
public T? Get(int position)
|
||||||
|
{
|
||||||
|
// проверка позиции
|
||||||
|
if (position < 0 || position > Count)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return _places[position];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
89
Airbus/MovementStrategy/AbstractStrategy.cs
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using ProjectAirbus.Drawnings;
|
||||||
|
using ProjectAirbus.Entities;
|
||||||
|
|
||||||
|
namespace ProjectAirbus.MovementStrategy
|
||||||
|
{
|
||||||
|
internal abstract class AbstractStrategy
|
||||||
|
{
|
||||||
|
// объект
|
||||||
|
private IMoveableObject? _moveableObject;
|
||||||
|
// статус
|
||||||
|
private Status _state = Status.NotInit;
|
||||||
|
// границы окна
|
||||||
|
protected int FieldWidth { get; private set; }
|
||||||
|
protected int FieldHeight { get; private set; }
|
||||||
|
public Status GetStatus() { return _state; }
|
||||||
|
|
||||||
|
// Изменить статус, установить поля
|
||||||
|
public void SetData(IMoveableObject moveableObject, int width, int height)
|
||||||
|
{
|
||||||
|
if (moveableObject == null)
|
||||||
|
{
|
||||||
|
_state = Status.NotInit;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_state = Status.InProgress;
|
||||||
|
_moveableObject = moveableObject;
|
||||||
|
FieldWidth = width;
|
||||||
|
FieldHeight = height;
|
||||||
|
}
|
||||||
|
|
||||||
|
// сделать шаг
|
||||||
|
public void MakeStep()
|
||||||
|
{
|
||||||
|
if (_state != Status.InProgress)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (IsTargetDestination())
|
||||||
|
{
|
||||||
|
_state = Status.Finish;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
MoveToTarget();
|
||||||
|
}
|
||||||
|
|
||||||
|
// перемещения
|
||||||
|
protected bool MoveLeft() => MoveTo(DirectionType.Left);
|
||||||
|
protected bool MoveRight() => MoveTo(DirectionType.Right);
|
||||||
|
protected bool MoveUp() => MoveTo(DirectionType.Up);
|
||||||
|
protected bool MoveDown() => MoveTo(DirectionType.Down);
|
||||||
|
|
||||||
|
// параметры
|
||||||
|
protected ObjectParameters? GetObjectParameters => _moveableObject?.GetObjectPosition;
|
||||||
|
// шаг
|
||||||
|
protected int? GetStep()
|
||||||
|
{
|
||||||
|
if (_state != Status.InProgress)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return _moveableObject?.GetStep;
|
||||||
|
}
|
||||||
|
// перемещение
|
||||||
|
protected abstract void MoveToTarget();
|
||||||
|
|
||||||
|
// достигнута ли цель
|
||||||
|
protected abstract bool IsTargetDestination();
|
||||||
|
|
||||||
|
// попытка перемещения по направлению
|
||||||
|
private bool MoveTo(DirectionType directionType)
|
||||||
|
{
|
||||||
|
if (_state != Status.InProgress)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (_moveableObject?.CheckCanMove(directionType) ?? false)
|
||||||
|
{
|
||||||
|
_moveableObject.MoveObject(directionType);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
39
Airbus/MovementStrategy/DrawningObjectAirbus.cs
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using ProjectAirbus.Drawnings;
|
||||||
|
using ProjectAirbus.Entities;
|
||||||
|
|
||||||
|
namespace ProjectAirbus.MovementStrategy
|
||||||
|
{
|
||||||
|
internal class DrawningObjectAirbus : IMoveableObject
|
||||||
|
{
|
||||||
|
private readonly DrawningAirbus? _drawningAirbus = null;
|
||||||
|
|
||||||
|
public DrawningObjectAirbus(DrawningAirbus drawningAirbus)
|
||||||
|
{
|
||||||
|
_drawningAirbus = drawningAirbus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ObjectParameters? GetObjectPosition
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (_drawningAirbus == null || _drawningAirbus.EntityAirbus == null)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return new ObjectParameters(_drawningAirbus.GetPosX, _drawningAirbus.GetPosY, _drawningAirbus.GetWidth, _drawningAirbus.GetHeight);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public int GetStep => (int)(_drawningAirbus?.EntityAirbus?.Step ?? 0);
|
||||||
|
|
||||||
|
|
||||||
|
public bool CheckCanMove(DirectionType direction) => _drawningAirbus?.CanMove(direction) ?? false;
|
||||||
|
|
||||||
|
public void MoveObject(DirectionType direction) => _drawningAirbus?.MoveTransport(direction);
|
||||||
|
}
|
||||||
|
}
|
||||||
15
Airbus/MovementStrategy/IMoveableObject.cs
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
using ProjectAirbus.Drawnings;
|
||||||
|
using ProjectAirbus.Entities;
|
||||||
|
|
||||||
|
namespace ProjectAirbus.MovementStrategy
|
||||||
|
{
|
||||||
|
public interface IMoveableObject
|
||||||
|
{
|
||||||
|
ObjectParameters? GetObjectPosition { get; }
|
||||||
|
|
||||||
|
int GetStep { get; }
|
||||||
|
bool CheckCanMove(DirectionType direction);
|
||||||
|
void MoveObject(DirectionType direction);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
61
Airbus/MovementStrategy/MoveToBorder.cs
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ProjectAirbus.MovementStrategy
|
||||||
|
{
|
||||||
|
internal class MoveToBorder : AbstractStrategy
|
||||||
|
{
|
||||||
|
|
||||||
|
// достигнута ли цель
|
||||||
|
protected override bool IsTargetDestination()
|
||||||
|
{
|
||||||
|
var objParams = GetObjectParameters;
|
||||||
|
if (objParams == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return objParams.RightBorder <= FieldWidth &&
|
||||||
|
objParams.RightBorder + GetStep() >= FieldWidth &&
|
||||||
|
objParams.DownBorder <= FieldHeight &&
|
||||||
|
objParams.DownBorder + GetStep() >= FieldHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
// движение к цели
|
||||||
|
protected override void MoveToTarget()
|
||||||
|
{
|
||||||
|
var objParams = GetObjectParameters;
|
||||||
|
if (objParams == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var diffX = FieldWidth;
|
||||||
|
if (Math.Abs(diffX) > GetStep())
|
||||||
|
{
|
||||||
|
if (diffX < 0)
|
||||||
|
{
|
||||||
|
MoveLeft();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MoveRight();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var diffY = FieldHeight;
|
||||||
|
if (Math.Abs(diffY) > GetStep())
|
||||||
|
{
|
||||||
|
if (diffY < 0)
|
||||||
|
{
|
||||||
|
MoveUp();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MoveDown();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
59
Airbus/MovementStrategy/MoveToCenter.cs
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ProjectAirbus.MovementStrategy
|
||||||
|
{
|
||||||
|
internal class MoveToCenter : AbstractStrategy
|
||||||
|
{
|
||||||
|
// достигнута ли цель
|
||||||
|
protected override bool IsTargetDestination()
|
||||||
|
{
|
||||||
|
var objParams = GetObjectParameters;
|
||||||
|
if (objParams == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return objParams.ObjectMiddleHorizontal <= FieldWidth / 2 &&
|
||||||
|
objParams.ObjectMiddleHorizontal + GetStep() >= FieldWidth / 2 &&
|
||||||
|
objParams.ObjectMiddleVertical <= FieldHeight / 2 &&
|
||||||
|
objParams.ObjectMiddleVertical + GetStep() >= FieldHeight / 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void MoveToTarget()
|
||||||
|
{
|
||||||
|
var objParams = GetObjectParameters;
|
||||||
|
if (objParams == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var diffX = objParams.ObjectMiddleHorizontal - FieldWidth / 2;
|
||||||
|
if (Math.Abs(diffX) > GetStep())
|
||||||
|
{
|
||||||
|
if (diffX > 0)
|
||||||
|
{
|
||||||
|
MoveLeft();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MoveRight();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var diffY = objParams.ObjectMiddleVertical - FieldHeight / 2;
|
||||||
|
if (Math.Abs(diffY) > GetStep())
|
||||||
|
{
|
||||||
|
if (diffY > 0)
|
||||||
|
{
|
||||||
|
MoveUp();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MoveDown();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
27
Airbus/MovementStrategy/ObjectParameters.cs
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
namespace ProjectAirbus.MovementStrategy
|
||||||
|
{
|
||||||
|
public class ObjectParameters
|
||||||
|
{
|
||||||
|
private readonly int _x;
|
||||||
|
private readonly int _y;
|
||||||
|
private readonly int _width;
|
||||||
|
private readonly int _height;
|
||||||
|
|
||||||
|
// границы
|
||||||
|
public int LeftBorder => _x;
|
||||||
|
public int TopBorder => _y;
|
||||||
|
public int RightBorder => _x + _width;
|
||||||
|
public int DownBorder => _y + _height;
|
||||||
|
// середина
|
||||||
|
public int ObjectMiddleHorizontal => _x + _width / 2;
|
||||||
|
public int ObjectMiddleVertical => _y + _height / 2;
|
||||||
|
|
||||||
|
public ObjectParameters(int x, int y, int width, int height)
|
||||||
|
{
|
||||||
|
_x = x;
|
||||||
|
_y = y;
|
||||||
|
_width = width;
|
||||||
|
_height = height;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
15
Airbus/MovementStrategy/Status.cs
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ProjectAirbus.MovementStrategy
|
||||||
|
{
|
||||||
|
internal enum Status
|
||||||
|
{
|
||||||
|
NotInit,
|
||||||
|
InProgress,
|
||||||
|
Finish
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace AirBus
|
namespace ProjectAirbus
|
||||||
{
|
{
|
||||||
internal static class Program
|
internal static class Program
|
||||||
{
|
{
|
||||||
@@ -11,7 +11,7 @@ namespace AirBus
|
|||||||
// To customize application configuration such as set high DPI settings or default font,
|
// To customize application configuration such as set high DPI settings or default font,
|
||||||
// see https://aka.ms/applicationconfiguration.
|
// see https://aka.ms/applicationconfiguration.
|
||||||
ApplicationConfiguration.Initialize();
|
ApplicationConfiguration.Initialize();
|
||||||
Application.Run(new FormAirBus());
|
Application.Run(new FormAirbusCollection());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
4
Airbus/Properties/Resources.Designer.cs
generated
@@ -8,7 +8,7 @@
|
|||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace AirBus.Properties {
|
namespace ProjectAirbus.Properties {
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@ namespace AirBus.Properties {
|
|||||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||||
get {
|
get {
|
||||||
if (object.ReferenceEquals(resourceMan, null)) {
|
if (object.ReferenceEquals(resourceMan, null)) {
|
||||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AirBus.Properties.Resources", typeof(Resources).Assembly);
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ProjectAirbus.Properties.Resources", typeof(Resources).Assembly);
|
||||||
resourceMan = temp;
|
resourceMan = temp;
|
||||||
}
|
}
|
||||||
return resourceMan;
|
return resourceMan;
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |