diff --git a/ProjectAirFighter/ProjectAirFighter/AirCraftDelegate.cs b/ProjectAirFighter/ProjectAirFighter/AirCraftDelegate.cs
new file mode 100644
index 0000000..883fb21
--- /dev/null
+++ b/ProjectAirFighter/ProjectAirFighter/AirCraftDelegate.cs
@@ -0,0 +1,9 @@
+using ProjectAirFighter.Drawnings;
+
+namespace ProjectAirFighter;
+
+///
+/// Делегат передачи объекта класса-прорисовки
+///
+///
+public delegate void AirCraftDelegate(DrawningAirCraft aircraft);
diff --git a/ProjectAirFighter/ProjectAirFighter/Entities/EntityAirCraft.cs b/ProjectAirFighter/ProjectAirFighter/Entities/EntityAirCraft.cs
index 293ced5..cb9c8f6 100644
--- a/ProjectAirFighter/ProjectAirFighter/Entities/EntityAirCraft.cs
+++ b/ProjectAirFighter/ProjectAirFighter/Entities/EntityAirCraft.cs
@@ -18,7 +18,10 @@ public class EntityAirCraft
/// Основной цвет
///
public Color BodyColor { get; private set; }
-
+ public void SetBodyColor(Color color)
+ {
+ BodyColor = color;
+ }
///
/// Шаг перемещения самолёта
///
diff --git a/ProjectAirFighter/ProjectAirFighter/Entities/EntityAirFighter.cs b/ProjectAirFighter/ProjectAirFighter/Entities/EntityAirFighter.cs
index 4b42191..4a40216 100644
--- a/ProjectAirFighter/ProjectAirFighter/Entities/EntityAirFighter.cs
+++ b/ProjectAirFighter/ProjectAirFighter/Entities/EntityAirFighter.cs
@@ -9,7 +9,10 @@ public class EntityAirFighter : EntityAirCraft
/// Дополнительный цвет (для опциональных элементов)
///
public Color AdditionalColor { get; private set; }
-
+ public void SetAdditionalColor(Color color)
+ {
+ AdditionalColor = color;
+ }
///
/// Признак (опция) наличия Переднего Горизонтального Оперения(ПГО)
///
diff --git a/ProjectAirFighter/ProjectAirFighter/FormAirCraftCollection.Designer.cs b/ProjectAirFighter/ProjectAirFighter/FormAirCraftCollection.Designer.cs
index 3823280..0f0cd7c 100644
--- a/ProjectAirFighter/ProjectAirFighter/FormAirCraftCollection.Designer.cs
+++ b/ProjectAirFighter/ProjectAirFighter/FormAirCraftCollection.Designer.cs
@@ -42,13 +42,13 @@
buttonGoToCheck = new Button();
buttonRemoveAirCraft = new Button();
maskedTextBoxPosition = new MaskedTextBox();
- buttonAddAirFighter = new Button();
buttonAddAirCraft = new Button();
comboBoxSelectorCompany = new ComboBox();
panelCompanyTools = new Panel();
pictureBox = new PictureBox();
groupBoxTools.SuspendLayout();
panelStorage.SuspendLayout();
+ panelCompanyTools.SuspendLayout();
((System.ComponentModel.ISupportInitialize)pictureBox).BeginInit();
SuspendLayout();
//
@@ -60,8 +60,6 @@
groupBoxTools.Controls.Add(buttonGoToCheck);
groupBoxTools.Controls.Add(buttonRemoveAirCraft);
groupBoxTools.Controls.Add(maskedTextBoxPosition);
- groupBoxTools.Controls.Add(buttonAddAirFighter);
- groupBoxTools.Controls.Add(buttonAddAirCraft);
groupBoxTools.Controls.Add(comboBoxSelectorCompany);
groupBoxTools.Controls.Add(panelCompanyTools);
groupBoxTools.Dock = DockStyle.Right;
@@ -207,21 +205,10 @@
maskedTextBoxPosition.TabIndex = 3;
maskedTextBoxPosition.ValidatingType = typeof(int);
//
- // buttonAddAirFighter
- //
- buttonAddAirFighter.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
- buttonAddAirFighter.Location = new Point(17, 412);
- buttonAddAirFighter.Name = "buttonAddAirFighter";
- buttonAddAirFighter.Size = new Size(186, 49);
- buttonAddAirFighter.TabIndex = 2;
- buttonAddAirFighter.Text = "Добавление истребителя";
- buttonAddAirFighter.UseVisualStyleBackColor = true;
- buttonAddAirFighter.Click += ButtonAddAirFighter_Click;
- //
// buttonAddAirCraft
//
buttonAddAirCraft.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
- buttonAddAirCraft.Location = new Point(17, 357);
+ buttonAddAirCraft.Location = new Point(11, 21);
buttonAddAirCraft.Name = "buttonAddAirCraft";
buttonAddAirCraft.Size = new Size(186, 49);
buttonAddAirCraft.TabIndex = 1;
@@ -243,6 +230,7 @@
//
// panelCompanyTools
//
+ panelCompanyTools.Controls.Add(buttonAddAirCraft);
panelCompanyTools.Enabled = false;
panelCompanyTools.Location = new Point(6, 352);
panelCompanyTools.Name = "panelCompanyTools";
@@ -271,6 +259,7 @@
groupBoxTools.PerformLayout();
panelStorage.ResumeLayout(false);
panelStorage.PerformLayout();
+ panelCompanyTools.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)pictureBox).EndInit();
ResumeLayout(false);
}
@@ -280,7 +269,6 @@
private GroupBox groupBoxTools;
private ComboBox comboBoxSelectorCompany;
private Button buttonAddAirCraft;
- private Button buttonAddAirFighter;
private PictureBox pictureBox;
private Button buttonRemoveAirCraft;
private MaskedTextBox maskedTextBoxPosition;
diff --git a/ProjectAirFighter/ProjectAirFighter/FormAirCraftCollection.cs b/ProjectAirFighter/ProjectAirFighter/FormAirCraftCollection.cs
index 050634f..08fe016 100644
--- a/ProjectAirFighter/ProjectAirFighter/FormAirCraftCollection.cs
+++ b/ProjectAirFighter/ProjectAirFighter/FormAirCraftCollection.cs
@@ -12,6 +12,7 @@ public partial class FormAirCraftCollection : Form
/// Хранилише коллекций
///
private readonly StorageCollection _storageCollection;
+
///
/// Компания
///
@@ -41,71 +42,34 @@ public partial class FormAirCraftCollection : Form
///
///
///
- private void ButtonAddAirCraft_Click(object sender, EventArgs e) => CreateObject(nameof(DrawningAirCraft));
-
- ///
- /// Добавление истебителя
- ///
- ///
- ///
- private void ButtonAddAirFighter_Click(object sender, EventArgs e) => CreateObject(nameof(DrawningAirFighter));
-
- ///
- /// Создание объекта класса-перемещения
- ///
- /// Тип создаваемого объекта
- private void CreateObject(string type)
+ private void ButtonAddAirCraft_Click(object sender, EventArgs e)
{
- if (_company == null)
+ FormAirCraftConfig form = new FormAirCraftConfig();
+ form.Show();
+ form.AddEvent(SetAirCraft);
+ }
+
+ ///
+ /// Добавление самолёта в коллекцию
+ ///
+ ///
+ private void SetAirCraft(DrawningAirCraft? aircraft) {
+ if (_company == null || aircraft == null)
{
return;
}
- Random random = new();
- DrawningAirCraft drawningAirCraft;
- switch (type)
- {
- case nameof(DrawningAirCraft):
- drawningAirCraft = new DrawningAirCraft(random.Next(100, 300), random.Next(1000, 3000), GetColor(random));
- break;
- case nameof(DrawningAirFighter):
- drawningAirCraft = new DrawningAirFighter(random.Next(100, 300), random.Next(1000, 3000),
- GetColor(random),
- GetColor(random),
- Convert.ToBoolean(random.Next(0, 2)), Convert.ToBoolean(random.Next(0, 2)));
- break;
- default:
- return;
- }
-
- if (_company + drawningAirCraft != -1)
+ if (_company + aircraft != -1)
{
MessageBox.Show("Объект добавлен");
pictureBox.Image = _company.Show();
}
else
{
- _ = MessageBox.Show(drawningAirCraft.ToString());
+ MessageBox.Show("Не удалось добавить объект");
}
}
- ///
- /// Получение цвета
- ///
- /// Генератор случайных чисел
- ///
- private static Color GetColor(Random 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;
- }
-
- return color;
- }
-
///
/// Удаление объекта
///
diff --git a/ProjectAirFighter/ProjectAirFighter/FormAirCraftConfig.Designer.cs b/ProjectAirFighter/ProjectAirFighter/FormAirCraftConfig.Designer.cs
new file mode 100644
index 0000000..08b3d7d
--- /dev/null
+++ b/ProjectAirFighter/ProjectAirFighter/FormAirCraftConfig.Designer.cs
@@ -0,0 +1,365 @@
+namespace ProjectAirFighter
+{
+ partial class FormAirCraftConfig
+ {
+ ///
+ /// 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()
+ {
+ groupBoxConfig = new GroupBox();
+ groupBoxColors = new GroupBox();
+ panelPurple = new Panel();
+ panelYellow = new Panel();
+ panelBlack = new Panel();
+ panelBlue = new Panel();
+ panelGray = new Panel();
+ panelWhite = new Panel();
+ panelGreen = new Panel();
+ panelRed = new Panel();
+ checkBoxRockets = new CheckBox();
+ checkBoxPgo = new CheckBox();
+ numericUpDownWeight = new NumericUpDown();
+ labelWeight = new Label();
+ numericUpDownSpeed = new NumericUpDown();
+ labelSpeed = new Label();
+ labelModifiedObject = new Label();
+ labelSimpleObject = new Label();
+ pictureBoxObject = new PictureBox();
+ buttonAdd = new Button();
+ buttonCancel = new Button();
+ panelObject = new Panel();
+ labelAdditionalColor = new Label();
+ labelBodyColor = new Label();
+ groupBoxConfig.SuspendLayout();
+ groupBoxColors.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)numericUpDownWeight).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)numericUpDownSpeed).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)pictureBoxObject).BeginInit();
+ panelObject.SuspendLayout();
+ SuspendLayout();
+ //
+ // groupBoxConfig
+ //
+ groupBoxConfig.Controls.Add(groupBoxColors);
+ groupBoxConfig.Controls.Add(checkBoxRockets);
+ groupBoxConfig.Controls.Add(checkBoxPgo);
+ groupBoxConfig.Controls.Add(numericUpDownWeight);
+ groupBoxConfig.Controls.Add(labelWeight);
+ groupBoxConfig.Controls.Add(numericUpDownSpeed);
+ groupBoxConfig.Controls.Add(labelSpeed);
+ groupBoxConfig.Controls.Add(labelModifiedObject);
+ groupBoxConfig.Controls.Add(labelSimpleObject);
+ groupBoxConfig.Dock = DockStyle.Left;
+ groupBoxConfig.Location = new Point(0, 0);
+ groupBoxConfig.Name = "groupBoxConfig";
+ groupBoxConfig.Size = new Size(558, 207);
+ groupBoxConfig.TabIndex = 0;
+ groupBoxConfig.TabStop = false;
+ groupBoxConfig.Text = "Параметры";
+ //
+ // groupBoxColors
+ //
+ groupBoxColors.Controls.Add(panelPurple);
+ groupBoxColors.Controls.Add(panelYellow);
+ groupBoxColors.Controls.Add(panelBlack);
+ groupBoxColors.Controls.Add(panelBlue);
+ groupBoxColors.Controls.Add(panelGray);
+ groupBoxColors.Controls.Add(panelWhite);
+ groupBoxColors.Controls.Add(panelGreen);
+ groupBoxColors.Controls.Add(panelRed);
+ groupBoxColors.Location = new Point(247, 12);
+ groupBoxColors.Name = "groupBoxColors";
+ groupBoxColors.Size = new Size(296, 137);
+ groupBoxColors.TabIndex = 8;
+ groupBoxColors.TabStop = false;
+ groupBoxColors.Text = "Цвета";
+ //
+ // panelPurple
+ //
+ panelPurple.BackColor = Color.Purple;
+ panelPurple.Location = new Point(226, 83);
+ panelPurple.Name = "panelPurple";
+ panelPurple.Size = new Size(44, 42);
+ panelPurple.TabIndex = 3;
+ panelPurple.MouseDown += Panel_MouseDown;
+ //
+ // panelYellow
+ //
+ panelYellow.BackColor = Color.Yellow;
+ panelYellow.Location = new Point(226, 26);
+ panelYellow.Name = "panelYellow";
+ panelYellow.Size = new Size(44, 42);
+ panelYellow.TabIndex = 1;
+ panelYellow.MouseDown += Panel_MouseDown;
+ //
+ // panelBlack
+ //
+ panelBlack.BackColor = Color.Black;
+ panelBlack.Location = new Point(159, 83);
+ panelBlack.Name = "panelBlack";
+ panelBlack.Size = new Size(44, 42);
+ panelBlack.TabIndex = 4;
+ panelBlack.MouseDown += Panel_MouseDown;
+ //
+ // panelBlue
+ //
+ panelBlue.BackColor = Color.Blue;
+ panelBlue.Location = new Point(159, 26);
+ panelBlue.Name = "panelBlue";
+ panelBlue.Size = new Size(44, 42);
+ panelBlue.TabIndex = 1;
+ panelBlue.MouseDown += Panel_MouseDown;
+ //
+ // panelGray
+ //
+ panelGray.BackColor = Color.Gray;
+ panelGray.Location = new Point(89, 83);
+ panelGray.Name = "panelGray";
+ panelGray.Size = new Size(44, 42);
+ panelGray.TabIndex = 5;
+ panelGray.MouseDown += Panel_MouseDown;
+ //
+ // panelWhite
+ //
+ panelWhite.BackColor = Color.White;
+ panelWhite.Location = new Point(22, 83);
+ panelWhite.Name = "panelWhite";
+ panelWhite.Size = new Size(44, 42);
+ panelWhite.TabIndex = 2;
+ panelWhite.MouseDown += Panel_MouseDown;
+ //
+ // panelGreen
+ //
+ panelGreen.BackColor = Color.Green;
+ panelGreen.Location = new Point(89, 26);
+ panelGreen.Name = "panelGreen";
+ panelGreen.Size = new Size(44, 42);
+ panelGreen.TabIndex = 1;
+ panelGreen.MouseDown += Panel_MouseDown;
+ //
+ // panelRed
+ //
+ panelRed.BackColor = Color.Red;
+ panelRed.Location = new Point(22, 26);
+ panelRed.Name = "panelRed";
+ panelRed.Size = new Size(44, 42);
+ panelRed.TabIndex = 0;
+ panelRed.MouseDown += Panel_MouseDown;
+ //
+ // checkBoxRockets
+ //
+ checkBoxRockets.AutoSize = true;
+ checkBoxRockets.Location = new Point(12, 165);
+ checkBoxRockets.Name = "checkBoxRockets";
+ checkBoxRockets.Size = new Size(196, 24);
+ checkBoxRockets.TabIndex = 7;
+ checkBoxRockets.Text = "Признак наличия ракет";
+ checkBoxRockets.UseVisualStyleBackColor = true;
+ //
+ // checkBoxPgo
+ //
+ checkBoxPgo.AutoSize = true;
+ checkBoxPgo.Location = new Point(12, 125);
+ checkBoxPgo.Name = "checkBoxPgo";
+ checkBoxPgo.Size = new Size(187, 24);
+ checkBoxPgo.TabIndex = 6;
+ checkBoxPgo.Text = "Признак наличия ПГО";
+ checkBoxPgo.UseVisualStyleBackColor = true;
+ //
+ // numericUpDownWeight
+ //
+ numericUpDownWeight.Location = new Point(94, 80);
+ numericUpDownWeight.Maximum = new decimal(new int[] { 1000, 0, 0, 0 });
+ numericUpDownWeight.Minimum = new decimal(new int[] { 100, 0, 0, 0 });
+ numericUpDownWeight.Name = "numericUpDownWeight";
+ numericUpDownWeight.Size = new Size(114, 27);
+ numericUpDownWeight.TabIndex = 5;
+ numericUpDownWeight.Value = new decimal(new int[] { 100, 0, 0, 0 });
+ //
+ // labelWeight
+ //
+ labelWeight.AutoSize = true;
+ labelWeight.Location = new Point(12, 82);
+ labelWeight.Name = "labelWeight";
+ labelWeight.Size = new Size(36, 20);
+ labelWeight.TabIndex = 4;
+ labelWeight.Text = "Вес:";
+ //
+ // numericUpDownSpeed
+ //
+ numericUpDownSpeed.Location = new Point(94, 36);
+ numericUpDownSpeed.Maximum = new decimal(new int[] { 1000, 0, 0, 0 });
+ numericUpDownSpeed.Minimum = new decimal(new int[] { 100, 0, 0, 0 });
+ numericUpDownSpeed.Name = "numericUpDownSpeed";
+ numericUpDownSpeed.Size = new Size(114, 27);
+ numericUpDownSpeed.TabIndex = 3;
+ numericUpDownSpeed.Value = new decimal(new int[] { 100, 0, 0, 0 });
+ //
+ // labelSpeed
+ //
+ labelSpeed.AutoSize = true;
+ labelSpeed.Location = new Point(12, 38);
+ labelSpeed.Name = "labelSpeed";
+ labelSpeed.Size = new Size(76, 20);
+ labelSpeed.TabIndex = 2;
+ labelSpeed.Text = "Скорость:";
+ //
+ // labelModifiedObject
+ //
+ labelModifiedObject.BorderStyle = BorderStyle.FixedSingle;
+ labelModifiedObject.Location = new Point(406, 165);
+ labelModifiedObject.Name = "labelModifiedObject";
+ labelModifiedObject.Size = new Size(137, 30);
+ labelModifiedObject.TabIndex = 1;
+ labelModifiedObject.Text = "Продвинутый";
+ labelModifiedObject.TextAlign = ContentAlignment.MiddleCenter;
+ labelModifiedObject.MouseDown += LabelObject_MouseDown;
+ //
+ // labelSimpleObject
+ //
+ labelSimpleObject.BorderStyle = BorderStyle.FixedSingle;
+ labelSimpleObject.Location = new Point(247, 165);
+ labelSimpleObject.Name = "labelSimpleObject";
+ labelSimpleObject.Size = new Size(133, 30);
+ labelSimpleObject.TabIndex = 0;
+ labelSimpleObject.Text = "Простой";
+ labelSimpleObject.TextAlign = ContentAlignment.MiddleCenter;
+ labelSimpleObject.MouseDown += LabelObject_MouseDown;
+ //
+ // pictureBoxObject
+ //
+ pictureBoxObject.Location = new Point(9, 43);
+ pictureBoxObject.Name = "pictureBoxObject";
+ pictureBoxObject.Size = new Size(222, 123);
+ pictureBoxObject.TabIndex = 1;
+ pictureBoxObject.TabStop = false;
+ //
+ // buttonAdd
+ //
+ buttonAdd.Location = new Point(564, 172);
+ buttonAdd.Name = "buttonAdd";
+ buttonAdd.Size = new Size(94, 29);
+ buttonAdd.TabIndex = 2;
+ buttonAdd.Text = "Добавить";
+ buttonAdd.UseVisualStyleBackColor = true;
+ buttonAdd.Click += buttonAdd_Click;
+ //
+ // buttonCancel
+ //
+ buttonCancel.Location = new Point(704, 172);
+ buttonCancel.Name = "buttonCancel";
+ buttonCancel.Size = new Size(94, 29);
+ buttonCancel.TabIndex = 3;
+ buttonCancel.Text = "Отмена";
+ buttonCancel.UseVisualStyleBackColor = true;
+ //
+ // panelObject
+ //
+ panelObject.AllowDrop = true;
+ panelObject.Controls.Add(labelAdditionalColor);
+ panelObject.Controls.Add(labelBodyColor);
+ panelObject.Controls.Add(pictureBoxObject);
+ panelObject.Location = new Point(564, 0);
+ panelObject.Name = "panelObject";
+ panelObject.Size = new Size(234, 169);
+ panelObject.TabIndex = 4;
+ panelObject.DragDrop += PanelObject_DragDrop;
+ panelObject.DragEnter += PanelObject_DragEnter;
+ //
+ // labelAdditionalColor
+ //
+ labelAdditionalColor.AllowDrop = true;
+ labelAdditionalColor.BorderStyle = BorderStyle.FixedSingle;
+ labelAdditionalColor.Location = new Point(140, 9);
+ labelAdditionalColor.Name = "labelAdditionalColor";
+ labelAdditionalColor.Size = new Size(91, 30);
+ labelAdditionalColor.TabIndex = 10;
+ labelAdditionalColor.Text = "Доп. цвет";
+ labelAdditionalColor.TextAlign = ContentAlignment.MiddleCenter;
+ labelAdditionalColor.DragDrop += LabelAdditionalColor_DragDrop;
+ labelAdditionalColor.DragEnter += LabelAdditionalColor_DragEnter;
+ //
+ // labelBodyColor
+ //
+ labelBodyColor.AllowDrop = true;
+ labelBodyColor.BorderStyle = BorderStyle.FixedSingle;
+ labelBodyColor.Location = new Point(9, 9);
+ labelBodyColor.Name = "labelBodyColor";
+ labelBodyColor.Size = new Size(91, 30);
+ labelBodyColor.TabIndex = 9;
+ labelBodyColor.Text = "Цвет";
+ labelBodyColor.TextAlign = ContentAlignment.MiddleCenter;
+ labelBodyColor.DragDrop += LabelBodyColor_DragDrop;
+ labelBodyColor.DragEnter += LabelBodyColor_DragEnter;
+ //
+ // FormAirCraftConfig
+ //
+ AutoScaleDimensions = new SizeF(8F, 20F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(800, 207);
+ Controls.Add(buttonCancel);
+ Controls.Add(buttonAdd);
+ Controls.Add(groupBoxConfig);
+ Controls.Add(panelObject);
+ Name = "FormAirCraftConfig";
+ Text = "Создание объекта";
+ groupBoxConfig.ResumeLayout(false);
+ groupBoxConfig.PerformLayout();
+ groupBoxColors.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)numericUpDownWeight).EndInit();
+ ((System.ComponentModel.ISupportInitialize)numericUpDownSpeed).EndInit();
+ ((System.ComponentModel.ISupportInitialize)pictureBoxObject).EndInit();
+ panelObject.ResumeLayout(false);
+ ResumeLayout(false);
+ }
+
+ #endregion
+
+ private GroupBox groupBoxConfig;
+ private Label labelModifiedObject;
+ private Label labelSimpleObject;
+ private NumericUpDown numericUpDownWeight;
+ private Label labelWeight;
+ private NumericUpDown numericUpDownSpeed;
+ private Label labelSpeed;
+ private CheckBox checkBoxPgo;
+ private CheckBox checkBoxRockets;
+ private GroupBox groupBoxColors;
+ private Panel panelRed;
+ private Panel panelPurple;
+ private Panel panelYellow;
+ private Panel panelBlack;
+ private Panel panelBlue;
+ private Panel panelGray;
+ private Panel panelWhite;
+ private Panel panelGreen;
+ private PictureBox pictureBoxObject;
+ private Button buttonAdd;
+ private Button buttonCancel;
+ private Panel panelObject;
+ private Label labelAdditionalColor;
+ private Label labelBodyColor;
+ }
+}
\ No newline at end of file
diff --git a/ProjectAirFighter/ProjectAirFighter/FormAirCraftConfig.cs b/ProjectAirFighter/ProjectAirFighter/FormAirCraftConfig.cs
new file mode 100644
index 0000000..667bed3
--- /dev/null
+++ b/ProjectAirFighter/ProjectAirFighter/FormAirCraftConfig.cs
@@ -0,0 +1,149 @@
+using ProjectAirFighter.Drawnings;
+using ProjectAirFighter.Entities;
+
+namespace ProjectAirFighter;
+
+///
+/// Форма конфигурации объекта
+///
+public partial class FormAirCraftConfig : Form
+{
+ ///
+ /// Объект - прорисовка самолёта
+ ///
+ private DrawningAirCraft? _aircraft;
+
+ ///
+ /// Событие для передачи объекта
+ ///
+ private event Action? _aircraftDelegate;
+
+ ///
+ /// Конструктор
+ ///
+ public FormAirCraftConfig()
+ {
+ InitializeComponent();
+
+ panelRed.MouseDown += Panel_MouseDown;
+ panelGreen.MouseDown += Panel_MouseDown;
+ panelBlue.MouseDown += Panel_MouseDown;
+ panelYellow.MouseDown += Panel_MouseDown;
+ panelWhite.MouseDown += Panel_MouseDown;
+ panelGray.MouseDown += Panel_MouseDown;
+ panelBlack.MouseDown += Panel_MouseDown;
+ panelPurple.MouseDown += Panel_MouseDown;
+
+ buttonCancel.Click += (sender, e) => Close();
+
+ }
+
+ ///
+ /// Привязка внешнего метода к событию
+ ///
+ ///
+ public void AddEvent(Action aircraftDelegate)
+ {
+ _aircraftDelegate += aircraftDelegate;
+ }
+
+ ///
+ /// Прорисовка объекта
+ ///
+ private void DrawObject()
+ {
+ Bitmap bmp = new(pictureBoxObject.Width, pictureBoxObject.Height);
+ Graphics gr = Graphics.FromImage(bmp);
+ _aircraft?.SetPictureSize(pictureBoxObject.Width, pictureBoxObject.Height);
+ _aircraft?.SetPosition(15, 15);
+ _aircraft?.DrawTransport(gr);
+ pictureBoxObject.Image = bmp;
+ }
+
+ ///
+ /// Передаем информацию при нажатии на Label
+ ///
+ ///
+ ///
+ private void LabelObject_MouseDown(object sender, MouseEventArgs e)
+ {
+ (sender as Label)?.DoDragDrop((sender as Label)?.Name ?? string.Empty, DragDropEffects.Move | DragDropEffects.Copy);
+ }
+
+ ///
+ /// Проверка получаемой информации (ее типа на соответствие требуемому)
+ ///
+ ///
+ ///
+ private void PanelObject_DragEnter(object sender, DragEventArgs e)
+ {
+ e.Effect = e.Data?.GetDataPresent(DataFormats.Text) ?? false ? DragDropEffects.Copy : DragDropEffects.None;
+ }
+
+ ///
+ /// Действия при приеме перетаскиваемой информации
+ ///
+ ///
+ ///
+ private void PanelObject_DragDrop(object sender, DragEventArgs e)
+ {
+ switch (e.Data?.GetData(DataFormats.Text)?.ToString())
+ {
+ case "labelSimpleObject":
+ _aircraft = new DrawningAirCraft((int)numericUpDownSpeed.Value, (double)numericUpDownWeight.Value, Color.White);
+ break;
+ case "labelModifiedObject":
+ _aircraft = new DrawningAirFighter((int)numericUpDownSpeed.Value, (double)numericUpDownWeight.Value, Color.White,
+ Color.Black, checkBoxPgo.Checked, checkBoxRockets.Checked);
+ break;
+ }
+
+ DrawObject();
+ }
+
+ ///
+ /// Передаем информацию при нажатии на Panel
+ ///
+ ///
+ ///
+ private void Panel_MouseDown(object? sender, MouseEventArgs e)
+ {
+ (sender as Control)?.DoDragDrop((sender as Control)?.BackColor!, DragDropEffects.Move | DragDropEffects.Copy);
+ }
+ private void LabelBodyColor_DragDrop(object sender, DragEventArgs e)
+ {
+ if (_aircraft == null) return;
+ _aircraft.EntityAirCraft?.SetBodyColor((Color)e.Data.GetData(typeof(Color)));
+ DrawObject();
+ }
+ private void LabelBodyColor_DragEnter(object sender, DragEventArgs e)
+ {
+ if (_aircraft != null && e.Data.GetDataPresent(typeof(Color))) e.Effect = DragDropEffects.Copy;
+ else e.Effect = DragDropEffects.None;
+ }
+ private void LabelAdditionalColor_DragDrop(object sender, DragEventArgs e)
+ {
+ if (_aircraft != null && _aircraft.EntityAirCraft is EntityAirFighter _airfighter)
+ _airfighter.SetAdditionalColor((Color)e.Data.GetData(typeof(Color)));
+ DrawObject();
+ }
+ private void LabelAdditionalColor_DragEnter(object sender, DragEventArgs e)
+ {
+ if (_aircraft != null && e.Data.GetDataPresent(typeof(Color)) && _aircraft.EntityAirCraft is EntityAirFighter) e.Effect = DragDropEffects.Copy;
+ else e.Effect = DragDropEffects.None;
+ }
+
+ ///
+ /// Передача объекта
+ ///
+ ///
+ ///
+ private void buttonAdd_Click(object sender, EventArgs e)
+ {
+ if (_aircraft != null)
+ {
+ _aircraftDelegate?.Invoke(_aircraft);
+ Close();
+ }
+ }
+}
\ No newline at end of file
diff --git a/ProjectAirFighter/ProjectAirFighter/FormAirCraftConfig.resx b/ProjectAirFighter/ProjectAirFighter/FormAirCraftConfig.resx
new file mode 100644
index 0000000..af32865
--- /dev/null
+++ b/ProjectAirFighter/ProjectAirFighter/FormAirCraftConfig.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file