diff --git a/Airbus/Airbus/SecondSimpleMap.cs b/Airbus/Airbus/DesertMap.cs
similarity index 96%
rename from Airbus/Airbus/SecondSimpleMap.cs
rename to Airbus/Airbus/DesertMap.cs
index 888d07a..5e9d1dd 100644
--- a/Airbus/Airbus/SecondSimpleMap.cs
+++ b/Airbus/Airbus/DesertMap.cs
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Airbus
{
- internal class SecondSimpleMap: AbstractMap
+ internal class DesertMap: AbstractMap
{
//цвет закрытого участка
Brush barriedColor = new SolidBrush(Color.DarkRed);
diff --git a/Airbus/Airbus/Direction.cs b/Airbus/Airbus/Direction.cs
index 64adcd1..9abf9bb 100644
--- a/Airbus/Airbus/Direction.cs
+++ b/Airbus/Airbus/Direction.cs
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Airbus
{
- internal enum Direction
+ public enum Direction
{
Up = 1,
Down = 2,
diff --git a/Airbus/Airbus/DrawningAirbus.cs b/Airbus/Airbus/DrawningAirbus.cs
index f457f5a..d2b6097 100644
--- a/Airbus/Airbus/DrawningAirbus.cs
+++ b/Airbus/Airbus/DrawningAirbus.cs
@@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace Airbus
{
//класс, отвечающий за прорисовку и перемещение объект
- internal class DrawningAirbus
+ public class DrawningAirbus
{
public EntityAirbus Airbus { get; protected set; } //класс-сущность
@@ -100,7 +100,7 @@ namespace Airbus
return;
}
Pen pen = new Pen(Color.Black);
- Brush brBlack = new SolidBrush(Color.Black);
+ Brush selectedBrush = new SolidBrush(Airbus.CorpusColor);
Brush br = new SolidBrush(Airbus?.CorpusColor ?? Color.Black);
//хвостовое крыло
@@ -110,7 +110,7 @@ namespace Airbus
PointF point3 = new PointF(_startPosX + 30, _startPosY + 30);
PointF[] nose = { point1, point2, point3 };
g.DrawPolygon(pen, nose);
- g.FillPolygon(brBlack, nose);
+ g.FillPolygon(selectedBrush, nose);
//корпус
@@ -120,7 +120,7 @@ namespace Airbus
PointF point7 = new PointF(_startPosX, _startPosY + 50);
PointF[] rwing = { point4, point5, point6, point7 };
g.DrawPolygon(pen, rwing);
- g.FillPolygon(brBlack, rwing);
+ g.FillPolygon(selectedBrush, rwing);
// нос самолёта
@@ -129,7 +129,7 @@ namespace Airbus
PointF point10 = new PointF(_startPosX + 100, _startPosY + 40);
PointF[] lwing = { point8, point9, point10 };
g.DrawPolygon(pen, lwing);
- g.FillPolygon(brBlack, lwing);
+ g.FillPolygon(selectedBrush, lwing);
//задние шасси
@@ -149,12 +149,12 @@ namespace Airbus
//задние шасси
- g.FillEllipse(brBlack, _startPosX + 10, _startPosY + 55, 10, 10);
- g.FillEllipse(brBlack, _startPosX + 45, _startPosY + 55, 10, 10);
+ g.FillEllipse(selectedBrush, _startPosX + 10, _startPosY + 55, 10, 10);
+ g.FillEllipse(selectedBrush, _startPosX + 45, _startPosY + 55, 10, 10);
//переднее шасси
- g.FillEllipse(brBlack, _startPosX, _startPosY + 55, 10, 10);
+ g.FillEllipse(selectedBrush, _startPosX, _startPosY + 55, 10, 10);
g.FillPolygon(br, lwing);
@@ -166,11 +166,11 @@ namespace Airbus
//заднее поперечное крыло
- g.FillEllipse(brBlack, _startPosX, _startPosY + 25, 25, 10);
+ g.FillEllipse(selectedBrush, _startPosX, _startPosY + 25, 25, 10);
//крыло
- g.FillEllipse(brBlack, _startPosX + 20, _startPosY + 35, 50, 10);
+ g.FillEllipse(selectedBrush, _startPosX + 20, _startPosY + 35, 50, 10);
}
//смена границ формы отрисовки
diff --git a/Airbus/Airbus/DrawningObjectAirbus.cs b/Airbus/Airbus/DrawningObjectPlane.cs
similarity index 87%
rename from Airbus/Airbus/DrawningObjectAirbus.cs
rename to Airbus/Airbus/DrawningObjectPlane.cs
index 10cfb51..cf25713 100644
--- a/Airbus/Airbus/DrawningObjectAirbus.cs
+++ b/Airbus/Airbus/DrawningObjectPlane.cs
@@ -6,13 +6,13 @@ using System.Threading.Tasks;
namespace Airbus
{
- internal class DrawningObjectAirbus: IDrawningObject
+ internal class DrawningObjectPlane: IDrawningObject
{
private DrawningAirbus _airbus;
public float Step => _airbus?.Airbus?.Step ?? 0;
- public DrawningObjectAirbus(DrawningAirbus airbus)
+ public DrawningObjectPlane(DrawningAirbus airbus)
{
_airbus = airbus;
}
diff --git a/Airbus/Airbus/EntityAirbus.cs b/Airbus/Airbus/EntityAirbus.cs
index 303458d..c9fb4d2 100644
--- a/Airbus/Airbus/EntityAirbus.cs
+++ b/Airbus/Airbus/EntityAirbus.cs
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Airbus
{
- internal class EntityAirbus
+ public class EntityAirbus
{
public int Speed { get; private set; } //скорость
public float Weight { get; private set; } //вес
diff --git a/Airbus/Airbus/FormAirbus.Designer.cs b/Airbus/Airbus/FormAirbus.Designer.cs
index 6a3a792..03db08c 100644
--- a/Airbus/Airbus/FormAirbus.Designer.cs
+++ b/Airbus/Airbus/FormAirbus.Designer.cs
@@ -39,6 +39,7 @@
this.buttonLeft = new System.Windows.Forms.Button();
this.buttonUp = new System.Windows.Forms.Button();
this.buttonCreateModif = new System.Windows.Forms.Button();
+ this.buttonSelectPlane = new System.Windows.Forms.Button();
this.statusStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxAirbus)).BeginInit();
this.SuspendLayout();
@@ -155,11 +156,23 @@
this.buttonCreateModif.UseVisualStyleBackColor = true;
this.buttonCreateModif.Click += new System.EventHandler(this.ButtonCreateModif_Click);
//
+ // buttonSelectPlane
+ //
+ this.buttonSelectPlane.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonSelectPlane.Location = new System.Drawing.Point(654, 401);
+ this.buttonSelectPlane.Name = "buttonSelectPlane";
+ this.buttonSelectPlane.Size = new System.Drawing.Size(85, 23);
+ this.buttonSelectPlane.TabIndex = 8;
+ this.buttonSelectPlane.Text = "Выбрать";
+ this.buttonSelectPlane.UseVisualStyleBackColor = true;
+ this.buttonSelectPlane.Click += new System.EventHandler(this.buttonSelectPlane_Click);
+ //
// FormAirbus
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(884, 461);
+ this.Controls.Add(this.buttonSelectPlane);
this.Controls.Add(this.buttonCreateModif);
this.Controls.Add(this.buttonUp);
this.Controls.Add(this.buttonLeft);
@@ -192,5 +205,6 @@
private Button buttonLeft;
private Button buttonUp;
private Button buttonCreateModif;
+ private Button buttonSelectPlane;
}
}
\ No newline at end of file
diff --git a/Airbus/Airbus/FormAirbus.cs b/Airbus/Airbus/FormAirbus.cs
index fe088f2..8d5be2c 100644
--- a/Airbus/Airbus/FormAirbus.cs
+++ b/Airbus/Airbus/FormAirbus.cs
@@ -13,6 +13,9 @@ namespace Airbus
public partial class FormAirbus : Form
{
private DrawningAirbus _airbus;
+
+ //
+ public DrawningAirbus SelectedPlane { get; set; }
public FormAirbus()
{
InitializeComponent();
@@ -39,7 +42,15 @@ namespace Airbus
private void ButtonCreate_Click(object sender, EventArgs e)
{
Random rnd = new();
- _airbus = new DrawningAirbus(rnd.Next(100, 300), rnd.Next(1000, 2000),Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)));
+ Color color = Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256));
+ ColorDialog dialog = new();
+
+ if (dialog.ShowDialog() == DialogResult.OK)
+ {
+ color = dialog.Color;
+ }
+
+ _airbus = new DrawningAirbus(rnd.Next(100, 300), rnd.Next(1000, 2000), color);
SetData();
Draw();
}
@@ -77,12 +88,31 @@ namespace Airbus
private void ButtonCreateModif_Click(object sender, EventArgs e)
{
Random rnd = new();
- _airbus = new DrawningSuperAirbus(rnd.Next(100, 300), rnd.Next(1000, 2000),
- Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)),
- Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)),
+ Color color = Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256));
+ ColorDialog dialog = new();
+
+ if (dialog.ShowDialog() == DialogResult.OK)
+ {
+ color = dialog.Color;
+ }
+
+ Color addColor = Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256));
+ ColorDialog dialogAdd = new();
+
+ if (dialogAdd.ShowDialog() == DialogResult.OK)
+ {
+ addColor = dialogAdd.Color;
+ }
+
+ _airbus = new DrawningSuperAirbus(rnd.Next(100, 300), rnd.Next(1000, 2000), color, addColor,
Convert.ToBoolean(rnd.Next(0, 2)), Convert.ToBoolean(rnd.Next(0, 2)));
SetData();
Draw();
}
+ private void buttonSelectPlane_Click(object sender, EventArgs e)
+ {
+ SelectedPlane = _airbus;
+ DialogResult = DialogResult.OK;
+ }
}
}
\ No newline at end of file
diff --git a/Airbus/Airbus/FormMap.Designer.cs b/Airbus/Airbus/FormMap.Designer.cs
deleted file mode 100644
index 473c6d9..0000000
--- a/Airbus/Airbus/FormMap.Designer.cs
+++ /dev/null
@@ -1,221 +0,0 @@
-namespace Airbus
-{
- partial class FormMap
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- this.pictureBoxAirbus = new System.Windows.Forms.PictureBox();
- this.statusStrip1 = new System.Windows.Forms.StatusStrip();
- this.toolStripStatusLabelSpeed = new System.Windows.Forms.ToolStripStatusLabel();
- this.toolStripStatusLabelWeight = new System.Windows.Forms.ToolStripStatusLabel();
- this.toolStripStatusLabelCorpusColor = new System.Windows.Forms.ToolStripStatusLabel();
- this.buttonCreate = new System.Windows.Forms.Button();
- this.buttonUp = new System.Windows.Forms.Button();
- this.buttonLeft = new System.Windows.Forms.Button();
- this.buttonDown = new System.Windows.Forms.Button();
- this.buttonRight = new System.Windows.Forms.Button();
- this.buttonCreateModif = new System.Windows.Forms.Button();
- this.comboBoxSelectorMap = new System.Windows.Forms.ComboBox();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBoxAirbus)).BeginInit();
- this.statusStrip1.SuspendLayout();
- this.SuspendLayout();
- //
- // pictureBoxAirbus
- //
- this.pictureBoxAirbus.Dock = System.Windows.Forms.DockStyle.Fill;
- this.pictureBoxAirbus.Location = new System.Drawing.Point(0, 0);
- this.pictureBoxAirbus.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.pictureBoxAirbus.Name = "pictureBoxAirbus";
- this.pictureBoxAirbus.Size = new System.Drawing.Size(700, 316);
- this.pictureBoxAirbus.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
- this.pictureBoxAirbus.TabIndex = 0;
- this.pictureBoxAirbus.TabStop = false;
- //
- // statusStrip1
- //
- this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripStatusLabelSpeed,
- this.toolStripStatusLabelWeight,
- this.toolStripStatusLabelCorpusColor});
- this.statusStrip1.Location = new System.Drawing.Point(0, 316);
- this.statusStrip1.Name = "statusStrip1";
- this.statusStrip1.Padding = new System.Windows.Forms.Padding(1, 0, 12, 0);
- this.statusStrip1.Size = new System.Drawing.Size(700, 22);
- this.statusStrip1.TabIndex = 1;
- this.statusStrip1.Text = "statusStrip1";
- //
- // toolStripStatusLabelSpeed
- //
- this.toolStripStatusLabelSpeed.Name = "toolStripStatusLabelSpeed";
- this.toolStripStatusLabelSpeed.Size = new System.Drawing.Size(62, 17);
- this.toolStripStatusLabelSpeed.Text = "Скорость:";
- //
- // toolStripStatusLabelWeight
- //
- this.toolStripStatusLabelWeight.Name = "toolStripStatusLabelWeight";
- this.toolStripStatusLabelWeight.Size = new System.Drawing.Size(29, 17);
- this.toolStripStatusLabelWeight.Text = "Вес:";
- //
- // toolStripStatusLabelCorpusColor
- //
- this.toolStripStatusLabelCorpusColor.Name = "toolStripStatusLabelCorpusColor";
- this.toolStripStatusLabelCorpusColor.Size = new System.Drawing.Size(36, 17);
- this.toolStripStatusLabelCorpusColor.Text = "Цвет:";
- //
- // buttonCreate
- //
- this.buttonCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.buttonCreate.Location = new System.Drawing.Point(9, 282);
- this.buttonCreate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.buttonCreate.Name = "buttonCreate";
- this.buttonCreate.Size = new System.Drawing.Size(83, 22);
- this.buttonCreate.TabIndex = 2;
- this.buttonCreate.Text = "Создать";
- this.buttonCreate.UseVisualStyleBackColor = true;
- this.buttonCreate.Click += new System.EventHandler(this.ButtonCreate_Click);
- //
- // buttonUp
- //
- this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonUp.BackgroundImage = global::Airbus.Properties.Resources.up;
- this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.buttonUp.Location = new System.Drawing.Point(622, 244);
- this.buttonUp.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.buttonUp.Name = "buttonUp";
- this.buttonUp.Size = new System.Drawing.Size(30, 30);
- this.buttonUp.TabIndex = 3;
- this.buttonUp.UseVisualStyleBackColor = true;
- this.buttonUp.Click += new System.EventHandler(this.ButtonMove_Click);
- //
- // buttonLeft
- //
- this.buttonLeft.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonLeft.BackgroundImage = global::Airbus.Properties.Resources.left;
- this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.buttonLeft.Location = new System.Drawing.Point(586, 278);
- this.buttonLeft.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.buttonLeft.Name = "buttonLeft";
- this.buttonLeft.Size = new System.Drawing.Size(30, 30);
- this.buttonLeft.TabIndex = 4;
- this.buttonLeft.UseVisualStyleBackColor = true;
- this.buttonLeft.Click += new System.EventHandler(this.ButtonMove_Click);
- //
- // buttonDown
- //
- this.buttonDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonDown.BackgroundImage = global::Airbus.Properties.Resources.down;
- this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.buttonDown.Location = new System.Drawing.Point(622, 278);
- this.buttonDown.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.buttonDown.Name = "buttonDown";
- this.buttonDown.Size = new System.Drawing.Size(30, 30);
- this.buttonDown.TabIndex = 5;
- this.buttonDown.UseVisualStyleBackColor = true;
- this.buttonDown.Click += new System.EventHandler(this.ButtonMove_Click);
- //
- // buttonRight
- //
- this.buttonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonRight.BackgroundImage = global::Airbus.Properties.Resources.right;
- this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.buttonRight.Location = new System.Drawing.Point(658, 278);
- this.buttonRight.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.buttonRight.Name = "buttonRight";
- this.buttonRight.Size = new System.Drawing.Size(30, 30);
- this.buttonRight.TabIndex = 6;
- this.buttonRight.UseVisualStyleBackColor = true;
- this.buttonRight.Click += new System.EventHandler(this.ButtonMove_Click);
- //
- // buttonCreateModif
- //
- this.buttonCreateModif.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.buttonCreateModif.Location = new System.Drawing.Point(98, 282);
- this.buttonCreateModif.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.buttonCreateModif.Name = "buttonCreateModif";
- this.buttonCreateModif.Size = new System.Drawing.Size(105, 22);
- this.buttonCreateModif.TabIndex = 7;
- this.buttonCreateModif.Text = "Модификация";
- this.buttonCreateModif.UseVisualStyleBackColor = true;
- this.buttonCreateModif.Click += new System.EventHandler(this.ButtonCreateModif_Click);
- //
- // comboBoxSelectorMap
- //
- this.comboBoxSelectorMap.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBoxSelectorMap.FormattingEnabled = true;
- this.comboBoxSelectorMap.Items.AddRange(new object[] {
- "Простая карта",
- "Пустыня",
- "Космос"});
- this.comboBoxSelectorMap.Location = new System.Drawing.Point(10, 9);
- this.comboBoxSelectorMap.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.comboBoxSelectorMap.Name = "comboBoxSelectorMap";
- this.comboBoxSelectorMap.Size = new System.Drawing.Size(133, 23);
- this.comboBoxSelectorMap.TabIndex = 8;
- this.comboBoxSelectorMap.SelectedIndexChanged += new System.EventHandler(this.ComboBoxSelectorMap_SelectedIndexChanged);
- //
- // FormMap
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(700, 338);
- this.Controls.Add(this.comboBoxSelectorMap);
- this.Controls.Add(this.buttonCreateModif);
- this.Controls.Add(this.buttonRight);
- this.Controls.Add(this.buttonDown);
- this.Controls.Add(this.buttonLeft);
- this.Controls.Add(this.buttonUp);
- this.Controls.Add(this.buttonCreate);
- this.Controls.Add(this.pictureBoxAirbus);
- this.Controls.Add(this.statusStrip1);
- this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.Name = "FormMap";
- this.Text = "Карта";
- ((System.ComponentModel.ISupportInitialize)(this.pictureBoxAirbus)).EndInit();
- this.statusStrip1.ResumeLayout(false);
- this.statusStrip1.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private PictureBox pictureBoxAirbus;
- private StatusStrip statusStrip1;
- private ToolStripStatusLabel toolStripStatusLabelSpeed;
- private ToolStripStatusLabel toolStripStatusLabelWeight;
- private ToolStripStatusLabel toolStripStatusLabelCorpusColor;
- private Button buttonCreate;
- private Button buttonUp;
- private Button buttonLeft;
- private Button buttonDown;
- private Button buttonRight;
- private Button buttonCreateModif;
- private ComboBox comboBoxSelectorMap;
- }
-}
\ No newline at end of file
diff --git a/Airbus/Airbus/FormMap.cs b/Airbus/Airbus/FormMap.cs
deleted file mode 100644
index 91592d8..0000000
--- a/Airbus/Airbus/FormMap.cs
+++ /dev/null
@@ -1,91 +0,0 @@
-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;
-
-namespace Airbus
-{
- public partial class FormMap : Form
- {
- private AbstractMap _abstractMap;
- public FormMap()
- {
- InitializeComponent();
- _abstractMap = new SimpleMap();
- }
- //заполнение информации по объекту
- private void SetData(DrawningAirbus airbus)
- {
- toolStripStatusLabelSpeed.Text = $"Скорость: {airbus.Airbus?.Speed}";
- toolStripStatusLabelWeight.Text = $"Вес: {airbus.Airbus?.Weight}";
- toolStripStatusLabelCorpusColor.Text = $"Цвет: {airbus.Airbus?.CorpusColor.Name}";
- pictureBoxAirbus.Image = _abstractMap.CreateMap(pictureBoxAirbus.Width, pictureBoxAirbus.Height,
- new DrawningObjectAirbus(airbus));
- }
-
- //обработка нажатия кнопки "Создать"
- private void ButtonCreate_Click(object sender, EventArgs e)
- {
- Random rnd = new();
- var airbus = new DrawningAirbus(rnd.Next(100, 300), rnd.Next(1000, 2000),
- Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)));
- SetData(airbus);
- }
-
- private void ButtonMove_Click(object sender, EventArgs e)
- {
- //Получаем имя кнопки
- string name = ((Button)sender)?.Name ?? string.Empty;
- Direction dir = Direction.None;
- switch (name)
- {
- case "buttonUp":
- dir = Direction.Up;
- break;
- case "buttonDown":
- dir = Direction.Down;
- break;
- case "buttonLeft":
- dir = Direction.Left;
- break;
- case "buttonRight":
- dir = Direction.Right;
- break;
- }
- pictureBoxAirbus.Image = _abstractMap?.MoveObject(dir);
- }
-
- //обработка нажития кнопки "Модификация"
- private void ButtonCreateModif_Click(object sender, EventArgs e)
- {
- Random rnd = new();
- var airbus = new DrawningSuperAirbus(rnd.Next(100, 300), rnd.Next(1000, 2000),
- Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)),
- Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)),
- Convert.ToBoolean(rnd.Next(0, 2)), Convert.ToBoolean(rnd.Next(0, 2)));
- SetData(airbus);
- }
-
- private void ComboBoxSelectorMap_SelectedIndexChanged(object sender, EventArgs e)
- {
- switch (comboBoxSelectorMap.Text)
- {
- case "Простая карта":
- _abstractMap = new SimpleMap();
- break;
- case "Пустыня":
- _abstractMap = new SecondSimpleMap();
- break;
- case "Космос":
-
- _abstractMap = new ThirdSimpleMap();
- break;
- }
- }
- }
-}
diff --git a/Airbus/Airbus/FormMapWithSetPlanes.Designer.cs b/Airbus/Airbus/FormMapWithSetPlanes.Designer.cs
new file mode 100644
index 0000000..d390d67
--- /dev/null
+++ b/Airbus/Airbus/FormMapWithSetPlanes.Designer.cs
@@ -0,0 +1,213 @@
+namespace Airbus
+{
+ partial class FormMapWithSetPlanes
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.groupBoxTools = new System.Windows.Forms.GroupBox();
+ this.comboBoxSelectorMap = new System.Windows.Forms.ComboBox();
+ this.maskedTextBoxPosition = new System.Windows.Forms.TextBox();
+ this.buttonAddPlane = new System.Windows.Forms.Button();
+ this.buttonRemovePlane = new System.Windows.Forms.Button();
+ this.buttonShowStorage = new System.Windows.Forms.Button();
+ this.buttonShowOnMap = new System.Windows.Forms.Button();
+ this.buttonLeft = new System.Windows.Forms.Button();
+ this.buttonDown = new System.Windows.Forms.Button();
+ this.buttonRight = new System.Windows.Forms.Button();
+ this.buttonUp = new System.Windows.Forms.Button();
+ this.pictureBox = new System.Windows.Forms.PictureBox();
+ this.groupBoxTools.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
+ this.SuspendLayout();
+ //
+ // groupBoxTools
+ //
+ this.groupBoxTools.Controls.Add(this.comboBoxSelectorMap);
+ this.groupBoxTools.Controls.Add(this.maskedTextBoxPosition);
+ this.groupBoxTools.Controls.Add(this.buttonAddPlane);
+ this.groupBoxTools.Controls.Add(this.buttonRemovePlane);
+ this.groupBoxTools.Controls.Add(this.buttonShowStorage);
+ this.groupBoxTools.Controls.Add(this.buttonShowOnMap);
+ this.groupBoxTools.Controls.Add(this.buttonLeft);
+ this.groupBoxTools.Controls.Add(this.buttonDown);
+ this.groupBoxTools.Controls.Add(this.buttonRight);
+ this.groupBoxTools.Controls.Add(this.buttonUp);
+ this.groupBoxTools.Dock = System.Windows.Forms.DockStyle.Right;
+ this.groupBoxTools.Location = new System.Drawing.Point(600, 0);
+ this.groupBoxTools.Name = "groupBoxTools";
+ this.groupBoxTools.Size = new System.Drawing.Size(200, 450);
+ this.groupBoxTools.TabIndex = 0;
+ this.groupBoxTools.TabStop = false;
+ this.groupBoxTools.Text = "Инструменты";
+ //
+ // comboBoxSelectorMap
+ //
+ this.comboBoxSelectorMap.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.comboBoxSelectorMap.FormattingEnabled = true;
+ this.comboBoxSelectorMap.Items.AddRange(new object[] {
+ "Простая карта",
+ "Пустыня",
+ "Космос"});
+ this.comboBoxSelectorMap.Location = new System.Drawing.Point(21, 31);
+ this.comboBoxSelectorMap.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.comboBoxSelectorMap.Name = "comboBoxSelectorMap";
+ this.comboBoxSelectorMap.Size = new System.Drawing.Size(167, 23);
+ this.comboBoxSelectorMap.TabIndex = 9;
+ this.comboBoxSelectorMap.Click += new System.EventHandler(this.ComboBoxSelectorMap_SelectedIndexChanged);
+ //
+ // maskedTextBoxPosition
+ //
+ this.maskedTextBoxPosition.Location = new System.Drawing.Point(21, 141);
+ this.maskedTextBoxPosition.Name = "maskedTextBoxPosition";
+ this.maskedTextBoxPosition.Size = new System.Drawing.Size(167, 23);
+ this.maskedTextBoxPosition.TabIndex = 8;
+ //
+ // buttonAddPlane
+ //
+ this.buttonAddPlane.Location = new System.Drawing.Point(21, 85);
+ this.buttonAddPlane.Name = "buttonAddPlane";
+ this.buttonAddPlane.Size = new System.Drawing.Size(167, 25);
+ this.buttonAddPlane.TabIndex = 7;
+ this.buttonAddPlane.Text = "Добавить самолёт";
+ this.buttonAddPlane.UseVisualStyleBackColor = true;
+ this.buttonAddPlane.Click += new System.EventHandler(this.ButtonAddPlane_Click);
+ //
+ // buttonRemovePlane
+ //
+ this.buttonRemovePlane.Location = new System.Drawing.Point(21, 181);
+ this.buttonRemovePlane.Name = "buttonRemovePlane";
+ this.buttonRemovePlane.Size = new System.Drawing.Size(167, 25);
+ this.buttonRemovePlane.TabIndex = 6;
+ this.buttonRemovePlane.Text = "Удалить самолёт";
+ this.buttonRemovePlane.UseVisualStyleBackColor = true;
+ this.buttonRemovePlane.Click += new System.EventHandler(this.ButtonRemovePlane_Click);
+ //
+ // buttonShowStorage
+ //
+ this.buttonShowStorage.Location = new System.Drawing.Point(21, 239);
+ this.buttonShowStorage.Name = "buttonShowStorage";
+ this.buttonShowStorage.Size = new System.Drawing.Size(167, 25);
+ this.buttonShowStorage.TabIndex = 5;
+ this.buttonShowStorage.Text = "Посмотреть хранилище";
+ this.buttonShowStorage.UseVisualStyleBackColor = true;
+ this.buttonShowStorage.Click += new System.EventHandler(this.ButtonShowStorage_Click);
+ //
+ // buttonShowOnMap
+ //
+ this.buttonShowOnMap.Location = new System.Drawing.Point(21, 306);
+ this.buttonShowOnMap.Name = "buttonShowOnMap";
+ this.buttonShowOnMap.Size = new System.Drawing.Size(167, 25);
+ this.buttonShowOnMap.TabIndex = 4;
+ this.buttonShowOnMap.Text = "Посмотреть карту";
+ this.buttonShowOnMap.UseVisualStyleBackColor = true;
+ this.buttonShowOnMap.Click += new System.EventHandler(this.ButtonShowOnMap_Click);
+ //
+ // buttonLeft
+ //
+ this.buttonLeft.BackgroundImage = global::Airbus.Properties.Resources.left;
+ this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.buttonLeft.Location = new System.Drawing.Point(45, 405);
+ this.buttonLeft.Name = "buttonLeft";
+ this.buttonLeft.Size = new System.Drawing.Size(37, 33);
+ this.buttonLeft.TabIndex = 3;
+ this.buttonLeft.UseVisualStyleBackColor = true;
+ this.buttonLeft.Click += new System.EventHandler(this.ButtonMove_Click);
+ //
+ // buttonDown
+ //
+ this.buttonDown.BackgroundImage = global::Airbus.Properties.Resources.down;
+ this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.buttonDown.Location = new System.Drawing.Point(88, 405);
+ this.buttonDown.Name = "buttonDown";
+ this.buttonDown.Size = new System.Drawing.Size(37, 33);
+ this.buttonDown.TabIndex = 2;
+ this.buttonDown.UseVisualStyleBackColor = true;
+ this.buttonDown.Click += new System.EventHandler(this.ButtonMove_Click);
+ //
+ // buttonRight
+ //
+ this.buttonRight.BackgroundImage = global::Airbus.Properties.Resources.right;
+ this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.buttonRight.Location = new System.Drawing.Point(131, 405);
+ this.buttonRight.Name = "buttonRight";
+ this.buttonRight.Size = new System.Drawing.Size(37, 33);
+ this.buttonRight.TabIndex = 1;
+ this.buttonRight.UseVisualStyleBackColor = true;
+ this.buttonRight.Click += new System.EventHandler(this.ButtonMove_Click);
+ //
+ // buttonUp
+ //
+ this.buttonUp.BackgroundImage = global::Airbus.Properties.Resources.up;
+ this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.buttonUp.Location = new System.Drawing.Point(88, 366);
+ this.buttonUp.Name = "buttonUp";
+ this.buttonUp.Size = new System.Drawing.Size(37, 33);
+ this.buttonUp.TabIndex = 0;
+ this.buttonUp.UseVisualStyleBackColor = true;
+ this.buttonUp.Click += new System.EventHandler(this.ButtonMove_Click);
+ //
+ // pictureBox
+ //
+ this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.pictureBox.Location = new System.Drawing.Point(0, 0);
+ this.pictureBox.Name = "pictureBox";
+ this.pictureBox.Size = new System.Drawing.Size(600, 450);
+ this.pictureBox.TabIndex = 1;
+ this.pictureBox.TabStop = false;
+ //
+ // FormMapWithSetPlanes
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Controls.Add(this.pictureBox);
+ this.Controls.Add(this.groupBoxTools);
+ this.Name = "FormMapWithSetPlanes";
+ this.Text = "FormMapWithSetPlanes";
+ this.groupBoxTools.ResumeLayout(false);
+ this.groupBoxTools.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private GroupBox groupBoxTools;
+ private Button buttonLeft;
+ private Button buttonDown;
+ private Button buttonRight;
+ private Button buttonUp;
+ private PictureBox pictureBox;
+ private TextBox maskedTextBoxPosition;
+ private Button buttonAddPlane;
+ private Button buttonRemovePlane;
+ private Button buttonShowStorage;
+ private Button buttonShowOnMap;
+ private ComboBox comboBoxSelectorMap;
+ }
+}
\ No newline at end of file
diff --git a/Airbus/Airbus/FormMapWithSetPlanes.cs b/Airbus/Airbus/FormMapWithSetPlanes.cs
new file mode 100644
index 0000000..11d7c16
--- /dev/null
+++ b/Airbus/Airbus/FormMapWithSetPlanes.cs
@@ -0,0 +1,159 @@
+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;
+
+namespace Airbus
+{
+ public partial class FormMapWithSetPlanes : Form
+ {
+ //объект от класса карты с набором объектов
+ private MapWithSetPlanesGeneric _mapPlanesCollectionGeneric;
+
+ public FormMapWithSetPlanes()
+ {
+ InitializeComponent();
+ }
+
+ //выбор карты
+ private void ComboBoxSelectorMap_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ AbstractMap map = null;
+
+ switch (comboBoxSelectorMap.Text)
+ {
+ case "Простая карта":
+ map = new SimpleMap();
+ break;
+ case "Пустыня":
+ map = new DesertMap();
+ break;
+ case "Космос":
+ map = new SpaceMap();
+ break;
+ }
+
+ if (map != null)
+ {
+ _mapPlanesCollectionGeneric = new MapWithSetPlanesGeneric(
+ pictureBox.Width, pictureBox.Height, map);
+ }
+ else
+ {
+ _mapPlanesCollectionGeneric = null;
+
+ }
+ }
+
+ //добавление объекта
+ private void ButtonAddPlane_Click(object sender, EventArgs e)
+ {
+ if (_mapPlanesCollectionGeneric == null)
+ {
+ return;
+ }
+
+ FormAirbus form = new();
+
+ if (form.ShowDialog() == DialogResult.OK)
+ {
+ DrawningObjectPlane plane = new(form.SelectedPlane);
+
+ if (_mapPlanesCollectionGeneric + plane != -1)
+ {
+ MessageBox.Show("Объект добавлен");
+ pictureBox.Image = _mapPlanesCollectionGeneric.ShowSet();
+ }
+ else
+ {
+ MessageBox.Show("Не удалось добавить объект");
+ }
+ }
+ }
+ //удаление объекта
+ private void ButtonRemovePlane_Click(object sender, EventArgs e)
+ {
+ if (string.IsNullOrEmpty(maskedTextBoxPosition.Text))
+ {
+ return;
+ }
+
+ if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo,
+ MessageBoxIcon.Question) == DialogResult.No)
+ {
+ return;
+ }
+
+ int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
+
+ if (_mapPlanesCollectionGeneric - pos != null)
+ {
+ MessageBox.Show("Объект удалён");
+ pictureBox.Image = _mapPlanesCollectionGeneric.ShowSet();
+ }
+ else
+ {
+ MessageBox.Show("Не удалось удалить объект");
+ }
+ }
+
+ //вывод набора
+ private void ButtonShowStorage_Click(object sender, EventArgs e)
+ {
+ if (_mapPlanesCollectionGeneric == null)
+ {
+ return;
+ }
+
+ pictureBox.Image = _mapPlanesCollectionGeneric.ShowSet();
+ }
+
+ //вывод карты
+ private void ButtonShowOnMap_Click(object sender, EventArgs e)
+ {
+ if (_mapPlanesCollectionGeneric == null)
+ {
+ return;
+ }
+
+ pictureBox.Image = _mapPlanesCollectionGeneric.ShowOnMap();
+ }
+
+ //перемещение
+ private void ButtonMove_Click(object sender, EventArgs e)
+ {
+ if (_mapPlanesCollectionGeneric == null)
+ {
+ return;
+ }
+
+ //получаем имя кнопки
+ string name = ((Button)sender)?.Name ?? string.Empty;
+ Direction dir = Direction.None;
+
+ switch (name)
+ {
+ case "buttonUp":
+ dir = Direction.Up;
+ break;
+ case "buttonLeft":
+ dir = Direction.Left;
+ break;
+ case "buttonDown":
+ dir = Direction.Down;
+ break;
+ case "buttonRight":
+ dir = Direction.Right;
+ break;
+ }
+
+ pictureBox.Image = _mapPlanesCollectionGeneric.MoveObject(dir);
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/Airbus/Airbus/FormMap.resx b/Airbus/Airbus/FormMapWithSetPlanes.resx
similarity index 93%
rename from Airbus/Airbus/FormMap.resx
rename to Airbus/Airbus/FormMapWithSetPlanes.resx
index 5cb320f..f298a7b 100644
--- a/Airbus/Airbus/FormMap.resx
+++ b/Airbus/Airbus/FormMapWithSetPlanes.resx
@@ -57,7 +57,4 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 17, 17
-
\ No newline at end of file
diff --git a/Airbus/Airbus/MapWithSetPlanesGeneric.cs b/Airbus/Airbus/MapWithSetPlanesGeneric.cs
new file mode 100644
index 0000000..28114e5
--- /dev/null
+++ b/Airbus/Airbus/MapWithSetPlanesGeneric.cs
@@ -0,0 +1,210 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Numerics;
+using System.Runtime.Intrinsics.Arm;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Airbus
+{
+ //карта с набором объектов под неё
+ internal class MapWithSetPlanesGeneric
+ where T : class, IDrawningObject
+ where U : AbstractMap
+ {
+ //ширина окна отрисовки
+ private readonly int _pictureWidth;
+ //высота окна отрисовки
+ private readonly int _pictureHeight;
+ //размер занимаемого объектом места (ширина)
+ private readonly int _placeSizeWidth = 210;
+ //размер занимаемого объектом места (высота)
+ private readonly int _placeSizeHeight = 90;
+ //набор объектов
+ private readonly SetPlanesGeneric _setPlanes;
+ //карта
+ private readonly U _map;
+
+ //конструктор
+ public MapWithSetPlanesGeneric(int picWidth, int picHeight, U map)
+ {
+ int width = picWidth / _placeSizeWidth;
+ int height = picHeight / _placeSizeHeight;
+ _setPlanes = new SetPlanesGeneric(width * height);
+ _pictureWidth = picWidth;
+ _pictureHeight = picHeight;
+ _map = map;
+ }
+
+ //пеергрузка оператора сложения
+ public static int operator +(MapWithSetPlanesGeneric map, T plane)
+ {
+ return map._setPlanes.Insert(plane);
+ }
+
+ //перегрузка оператора вычитания
+ public static T operator -(MapWithSetPlanesGeneric map, int position)
+ {
+ return map._setPlanes.Remove(position);
+ }
+
+ //вывод всего набора объектов
+ public Bitmap ShowSet()
+ {
+ Bitmap bmp = new(_pictureWidth, _pictureHeight);
+ Graphics gr = Graphics.FromImage(bmp);
+ DrawBackground(gr);
+ DrawPlanes(gr);
+ return bmp;
+ }
+
+ //просмотр объекта на карте
+ public Bitmap ShowOnMap()
+ {
+ Shaking();
+
+ for (int i = 0; i < _setPlanes.Count; i++)
+ {
+ var plane = _setPlanes.Get(i);
+
+ if (plane != null)
+ {
+ return _map.CreateMap(_pictureWidth, _pictureHeight, plane);
+ }
+ }
+
+ return new(_pictureWidth, _pictureHeight);
+ }
+
+ //пеермещение объекта по карте
+ public Bitmap MoveObject(Direction direction)
+ {
+ if (_map != null)
+ {
+ return _map.MoveObject(direction);
+ }
+
+ return new(_pictureWidth, _pictureHeight);
+ }
+
+ //"взламываем" набор, чтобы все элементы оказались в начале
+ private void Shaking()
+ {
+ int j = _setPlanes.Count - 1;
+
+ for (int i = 0; i < _setPlanes.Count; i++)
+ {
+ if (_setPlanes.Get(i) == null)
+ {
+ for (; j > i; j--)
+ {
+ var plane = _setPlanes.Get(j);
+
+ if (plane != null)
+ {
+ _setPlanes.Insert(plane, i);
+ _setPlanes.Remove(j);
+ break;
+ }
+ }
+
+ if (j <= i)
+ {
+ return;
+ }
+ }
+ }
+ }
+
+ //метод отрисовки фона
+ public void DrawBackground(Graphics g)
+ {
+ Pen pen = new(Color.Black, 3);
+ Pen marcupPen = new(Color.White, 5);
+ Pen signalFirePen = new(Color.OrangeRed, 5);
+ Brush concreteBrush = new SolidBrush(Color.LightGray);
+ Brush asphaltBrush = new SolidBrush(Color.DarkGray);
+ Brush marcupBrush = new SolidBrush(Color.White);
+
+ g.FillRectangle(concreteBrush, 0, 0, _pictureWidth, _pictureHeight); //заливаем область в цвет бетона
+
+
+ for (int i = 0; i < _pictureWidth / _placeSizeWidth - 1; i++)
+ {
+ for (int j = 2; j < _pictureHeight / _placeSizeHeight + 1; ++j)
+ {//линия разметки места
+ g.DrawLine(pen, i * _placeSizeWidth + 5, j * _placeSizeHeight, i * _placeSizeWidth + _placeSizeWidth / 2 + 5, j * _placeSizeHeight);
+ }
+
+ g.DrawLine(pen, i * _placeSizeWidth + 5, _placeSizeHeight * 2, i * _placeSizeWidth + 5, (_pictureHeight / _placeSizeHeight) * _placeSizeHeight);
+
+ }
+ //отрисовка разметки взлётной полосы
+ g.FillRectangle(marcupBrush, _placeSizeWidth * 2 + 30, 0, 185, _pictureHeight);
+ g.FillRectangle(asphaltBrush, _placeSizeWidth * 2 + 35, 0, 175, _pictureHeight);
+ g.DrawLine(marcupPen, _placeSizeWidth * 2 + 210, 0, _placeSizeWidth * 2 + 210, _pictureHeight);
+ g.DrawLine(marcupPen, _placeSizeWidth * 2 + 35, 0, _placeSizeWidth * 2 + 35, _pictureHeight);
+ g.DrawLine(marcupPen, _placeSizeWidth * 2 + 215, 0, _placeSizeWidth * 2 + 215, _pictureHeight);
+ g.DrawLine(marcupPen, _placeSizeWidth * 2 + 30, 0, _placeSizeWidth * 2 + 30, _pictureHeight);
+
+ for (int i = 0; i < _pictureHeight / _placeSizeHeight; ++i)
+ {
+ g.DrawLine(marcupPen, _placeSizeWidth * 2 + 125, 20 + i * _placeSizeHeight, _placeSizeWidth * 2 + 125, (i + 1) * _placeSizeHeight - 20);
+ }
+
+ for (int i = 0; i < _pictureHeight / 20; i++)
+ {
+ g.DrawLine(signalFirePen, _placeSizeWidth * 2 + 15, 20 + i * _placeSizeHeight / 2, _placeSizeWidth * 2 + 15, (i + 1) * _placeSizeHeight / 2 - 20);
+ g.DrawLine(signalFirePen, _placeSizeWidth * 3 + 20, 20 + i * _placeSizeHeight / 2, _placeSizeWidth * 3 + 20, (i + 1) * _placeSizeHeight / 2 - 20);
+ }
+
+ //отрисовка сочков
+ Brush pinkBrush = new SolidBrush(Color.LightPink);
+ for (int i = 1; i < 6; i++)
+ {
+ Point[] point = new Point[]
+ {
+ new Point((i * 70 - 10) + 45, 30),
+ new Point(i * 70 - 10, 50),
+ new Point( i * 70 - 10 , 10)
+ };
+ g.FillPolygon(pinkBrush, point);
+
+ g.DrawLine(pen, i * 70 - 10, 10, i * 70 - 10, 80);
+ g.DrawLine(pen, i * 70 - 10, 10, (i * 70 - 10) + 45, 30);
+ g.DrawLine(pen, i * 70 - 10, 50, (i * 70 - 10) + 45, 30);
+
+ }
+ }
+
+
+ //метод прорисовки объеков
+ public void DrawPlanes(Graphics g)
+ {
+ int width = _pictureWidth / _placeSizeWidth;
+ int height = _pictureHeight / _placeSizeHeight;
+
+ int position = 0;
+ int currentWidth = 1;
+ int currentHeight = 5;
+ for (int i = 0; i < _setPlanes.Count; i++)
+ {
+ _setPlanes.Get(i)?.SetObject(currentWidth * _placeSizeWidth + 20, currentHeight * _placeSizeHeight + 20, _pictureWidth, _pictureHeight);
+ _setPlanes.Get(i)?.DrawningObject(g);
+
+ if (position % 2 == 0)
+ {
+ position++;
+ currentWidth--;
+ }
+ else
+ {
+ position = 0;
+ currentWidth = 1;
+ currentHeight--;
+ }
+ }
+ }
+ }
+}
diff --git a/Airbus/Airbus/Program.cs b/Airbus/Airbus/Program.cs
index 3c7e1fb..5166800 100644
--- a/Airbus/Airbus/Program.cs
+++ b/Airbus/Airbus/Program.cs
@@ -11,7 +11,7 @@ namespace Airbus
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
- Application.Run(new FormMap());
+ Application.Run(new FormMapWithSetPlanes());
}
}
}
\ No newline at end of file
diff --git a/Airbus/Airbus/SetPlanesGeneric.cs b/Airbus/Airbus/SetPlanesGeneric.cs
new file mode 100644
index 0000000..81cfdc7
--- /dev/null
+++ b/Airbus/Airbus/SetPlanesGeneric.cs
@@ -0,0 +1,105 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Airbus
+{
+ internal class SetPlanesGeneric
+ where T : class
+ {
+ //массив объектов, которые храним
+ private readonly T[] _places;
+
+ //количество объектов в массиве
+ public int Count => _places.Length;
+
+ //конструктор
+ public SetPlanesGeneric(int count)
+ {
+ _places = new T[count];
+ }
+
+ //добавление объекта в набор
+ public int Insert(T plane)
+ {
+ return Insert(plane, 0);
+ }
+
+ //добавление объекта в набор на конкретную позицию
+ public int Insert(T plane, int position)
+ {
+ // проверка позиции
+ if (position >= _places.Length || position < 0)
+ {
+ return -1;
+ }
+
+ //проверка, что элемент массива по этой позиции пустой, если нет, то
+ if (_places[position] == null)
+ {
+ _places[position] = plane;
+ return position;
+ }
+
+ //проверка, что после вставляемого элемента в массиве есть пустой элемент
+ int findEmptyPos = -1;
+
+ for (int i = position + 1; i < Count; i++)
+ {
+ if (_places[i] == null)
+ {
+ findEmptyPos = i;
+ break;
+ }
+ }
+
+ if (findEmptyPos < 0)
+ {
+ return -1;
+ }
+
+ //сдвиг всех объектов, находящихся справа от позиции до первого пустого элемента
+ for (int i = findEmptyPos; i > position; i--)
+ {
+ _places[i] = _places[i - 1];
+ }
+
+ // вставка по позиции
+ _places[position] = plane;
+ return position;
+ }
+
+ //удаление объекта из набора с конкретной позиции
+ public T Remove(int position)
+ {
+ // проверка позиции
+ if (position >= _places.Length || position < 0)
+ {
+ return null;
+ }
+
+ // удаление объекта из массива, присовив элементу массива значение null
+ T temp = _places[position];
+ _places[position] = null;
+
+ return temp;
+ }
+
+ //получение объекта из набора по позиции
+ public T Get(int position)
+ {
+ if (position >= _places.Length || position < 0)
+ {
+ return null;
+ }
+ else if (_places[position] == null)
+ {
+ return null;
+ }
+
+ return _places[position];
+ }
+ }
+}
diff --git a/Airbus/Airbus/ThirdSimpleMap.cs b/Airbus/Airbus/SpaceMap.cs
similarity index 97%
rename from Airbus/Airbus/ThirdSimpleMap.cs
rename to Airbus/Airbus/SpaceMap.cs
index 8b0d653..5c006f6 100644
--- a/Airbus/Airbus/ThirdSimpleMap.cs
+++ b/Airbus/Airbus/SpaceMap.cs
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Airbus
{
- internal class ThirdSimpleMap: AbstractMap
+ internal class SpaceMap: AbstractMap
{
Random rnd = new Random();