diff --git a/AirBomber/AirBomber/FormPlaneCollection.Designer.cs b/AirBomber/AirBomber/FormPlaneCollection.Designer.cs
index 0c42113..f762bda 100644
--- a/AirBomber/AirBomber/FormPlaneCollection.Designer.cs
+++ b/AirBomber/AirBomber/FormPlaneCollection.Designer.cs
@@ -28,12 +28,99 @@
///
private void InitializeComponent()
{
- this.components = new System.ComponentModel.Container();
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(800, 450);
- this.Text = "FormPlaneCollection";
+ pictureBoxCollection = new PictureBox();
+ panelTools = new Panel();
+ maskedTextBoxNumber = new MaskedTextBox();
+ buttonRefreshCollection = new Button();
+ buttonRemovePlane = new Button();
+ buttonAddPlane = new Button();
+ ((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit();
+ panelTools.SuspendLayout();
+ SuspendLayout();
+ //
+ // pictureBoxCollection
+ //
+ pictureBoxCollection.BackColor = SystemColors.Control;
+ pictureBoxCollection.Dock = DockStyle.Left;
+ pictureBoxCollection.Location = new Point(0, 0);
+ pictureBoxCollection.Name = "pictureBoxCollection";
+ pictureBoxCollection.Size = new Size(708, 548);
+ pictureBoxCollection.TabIndex = 0;
+ pictureBoxCollection.TabStop = false;
+ //
+ // panelTools
+ //
+ panelTools.Controls.Add(maskedTextBoxNumber);
+ panelTools.Controls.Add(buttonRefreshCollection);
+ panelTools.Controls.Add(buttonRemovePlane);
+ panelTools.Controls.Add(buttonAddPlane);
+ panelTools.Dock = DockStyle.Right;
+ panelTools.Location = new Point(719, 0);
+ panelTools.Name = "panelTools";
+ panelTools.Size = new Size(237, 548);
+ panelTools.TabIndex = 1;
+ //
+ // maskedTextBoxNumber
+ //
+ maskedTextBoxNumber.Location = new Point(37, 218);
+ maskedTextBoxNumber.Mask = "00";
+ maskedTextBoxNumber.Name = "maskedTextBoxNumber";
+ maskedTextBoxNumber.Size = new Size(160, 31);
+ maskedTextBoxNumber.TabIndex = 3;
+ maskedTextBoxNumber.ValidatingType = typeof(int);
+ //
+ // buttonRefreshCollection
+ //
+ buttonRefreshCollection.Location = new Point(37, 394);
+ buttonRefreshCollection.Name = "buttonRefreshCollection";
+ buttonRefreshCollection.Size = new Size(160, 86);
+ buttonRefreshCollection.TabIndex = 2;
+ buttonRefreshCollection.Text = "Обновить коллекцию";
+ buttonRefreshCollection.UseVisualStyleBackColor = true;
+ buttonRefreshCollection.Click += buttonRefreshCollection_Click;
+ //
+ // buttonRemovePlane
+ //
+ buttonRemovePlane.Location = new Point(37, 266);
+ buttonRemovePlane.Name = "buttonRemovePlane";
+ buttonRemovePlane.Size = new Size(160, 60);
+ buttonRemovePlane.TabIndex = 1;
+ buttonRemovePlane.Text = "Удалить самолет";
+ buttonRemovePlane.UseVisualStyleBackColor = true;
+ buttonRemovePlane.Click += buttonRemovePlane_Click;
+ //
+ // buttonAddPlane
+ //
+ buttonAddPlane.Location = new Point(37, 94);
+ buttonAddPlane.Name = "buttonAddPlane";
+ buttonAddPlane.Size = new Size(160, 64);
+ buttonAddPlane.TabIndex = 0;
+ buttonAddPlane.Text = "Добавить самолет";
+ buttonAddPlane.UseVisualStyleBackColor = true;
+ buttonAddPlane.Click += buttonAddPlane_Click;
+ //
+ // FormPlaneCollection
+ //
+ AutoScaleDimensions = new SizeF(10F, 25F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(956, 548);
+ Controls.Add(panelTools);
+ Controls.Add(pictureBoxCollection);
+ Name = "FormPlaneCollection";
+ Text = "Набор самолетов";
+ ((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit();
+ panelTools.ResumeLayout(false);
+ panelTools.PerformLayout();
+ ResumeLayout(false);
}
#endregion
+
+ private PictureBox pictureBoxCollection;
+ private Panel panelTools;
+ private MaskedTextBox maskedTextBoxNumber;
+ private Button buttonRefreshCollection;
+ private Button buttonRemovePlane;
+ private Button buttonAddPlane;
}
}
\ No newline at end of file
diff --git a/AirBomber/AirBomber/FormPlaneCollection.cs b/AirBomber/AirBomber/FormPlaneCollection.cs
index 28a9d7e..e9e77ce 100644
--- a/AirBomber/AirBomber/FormPlaneCollection.cs
+++ b/AirBomber/AirBomber/FormPlaneCollection.cs
@@ -12,9 +12,68 @@ namespace AirBomber
{
public partial class FormPlaneCollection : Form
{
+ ///
+ /// Набор объектов
+ ///
+ private readonly PlanesGenericCollection _planes;
+
public FormPlaneCollection()
{
InitializeComponent();
+ _planes = new PlanesGenericCollection(pictureBoxCollection.Width, pictureBoxCollection.Height);
+
+ }
+ ///
+ /// Добавление объекта в набор
+ ///
+ ///
+ ///
+ private void buttonAddPlane_Click(object sender, EventArgs e)
+ {
+ FormAirBomber form = new();
+ if (form.ShowDialog() == DialogResult.OK)
+ {
+ if (_planes + form.SelectedPlane)
+ {
+ MessageBox.Show("Объект добавлен");
+ pictureBoxCollection.Image = _planes.ShowCars();
+ }
+ else
+ {
+ MessageBox.Show("Не удалось добавить объект");
+ }
+ }
+ }
+ ///
+ /// Удаление объекта из набора
+ ///
+ ///
+ ///
+ private void buttonRemovePlane_Click(object sender, EventArgs e)
+ {
+ if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
+ {
+ return;
+ }
+ int pos = Convert.ToInt32(maskedTextBoxNumber.Text);
+ if (_planes - pos != null)
+ {
+ MessageBox.Show("Объект удален");
+ pictureBoxCollection.Image = _planes.ShowCars();
+ }
+ else
+ {
+ MessageBox.Show("Не удалось удалить объект");
+ }
+ }
+ ///
+ /// Обновление рисунка по набору
+ ///
+ ///
+ ///
+ private void buttonRefreshCollection_Click(object sender, EventArgs e)
+ {
+ pictureBoxCollection.Image = _planes.ShowCars();
}
}
}
diff --git a/AirBomber/AirBomber/FormPlaneCollection.resx b/AirBomber/AirBomber/FormPlaneCollection.resx
index 1af7de1..f298a7b 100644
--- a/AirBomber/AirBomber/FormPlaneCollection.resx
+++ b/AirBomber/AirBomber/FormPlaneCollection.resx
@@ -1,64 +1,4 @@
-
-
-
+
diff --git a/AirBomber/AirBomber/PlanesGenericCollection.cs b/AirBomber/AirBomber/PlanesGenericCollection.cs
index 5a2be1f..c19df9f 100644
--- a/AirBomber/AirBomber/PlanesGenericCollection.cs
+++ b/AirBomber/AirBomber/PlanesGenericCollection.cs
@@ -6,7 +6,129 @@ using System.Threading.Tasks;
namespace AirBomber
{
- internal class PlanesGenericCollection
+ internal class PlanesGenericCollection
+ where T : DrawningAirPlane
+ where U : IMoveableObject
{
+ ///
+ /// Ширина окна прорисовки
+ ///
+ private readonly int _pictureWidth;
+ ///
+ /// Высота окна прорисовки
+ ///
+ private readonly int _pictureHeight;
+ ///
+ /// Размер занимаемого объектом места (ширина)
+ ///
+ private readonly int _placeSizeWidth = 210;
+ ///
+ /// Размер занимаемого объектом места (высота)
+ ///
+ private readonly int _placeSizeHeight = 90;
+ ///
+ /// Набор объектов
+ ///
+ private readonly SetGeneric _collection;
+ ///
+ /// Конструктор
+ ///
+ ///
+ ///
+ public PlanesGenericCollection(int picWidth, int picHeight)
+ {
+ int width = picWidth / _placeSizeWidth;
+ int height = picHeight / _placeSizeHeight;
+ _pictureWidth = picWidth;
+ _pictureHeight = picHeight;
+ _collection = new SetGeneric(width * height);
+ }
+ ///
+ /// Перегрузка оператора сложения
+ ///
+ ///
+ ///
+ ///
+ public static bool operator +(PlanesGenericCollection collect, T?
+ obj)
+ {
+ if (obj == null)
+ {
+ return false;
+ }
+ return collect?._collection.Insert(obj) ?? false;
+ }
+
+ ///
+ /// Перегрузка оператора вычитания
+ ///
+ ///
+ ///
+ ///
+ public static T? operator -(PlanesGenericCollection collect, int
+ pos)
+ {
+ T? obj = collect._collection.Get(pos);
+ if (obj != null)
+ {
+ collect._collection.Remove(pos);
+ }
+ return obj;
+ }
+ ///
+ /// Получение объекта IMoveableObject
+ ///
+ ///
+ ///
+ public U? GetU(int pos)
+ {
+ return (U?)_collection.Get(pos)?.GetMoveableObject;
+ }
+ ///
+ /// Вывод всего набора объектов
+ ///
+ ///
+ public Bitmap ShowCars()
+ {
+ Bitmap bmp = new(_pictureWidth, _pictureHeight);
+ Graphics gr = Graphics.FromImage(bmp);
+ DrawBackground(gr);
+ DrawObjects(gr);
+ return bmp;
+ }
+ ///
+ /// Метод отрисовки фона
+ ///
+ ///
+ private void DrawBackground(Graphics g)
+ {
+ Pen pen = new(Color.Black, 3);
+ for (int i = 0; i < _pictureWidth / _placeSizeWidth; i++)
+ {
+ for (int j = 0; j < _pictureHeight / _placeSizeHeight +
+ 1; ++j)
+ {//линия рамзетки места
+ g.DrawLine(pen, i * _placeSizeWidth, j *
+ _placeSizeHeight, i * _placeSizeWidth + _placeSizeWidth / 2, j *
+ _placeSizeHeight);
+ }
+ g.DrawLine(pen, i * _placeSizeWidth, 0, i *
+ _placeSizeWidth, _pictureHeight / _placeSizeHeight * _placeSizeHeight);
+ }
+ }
+ ///
+ /// Метод прорисовки объектов
+ ///
+ ///
+ private void DrawObjects(Graphics g)
+ {
+ for (int i = 0; i < _collection.Count; i++)
+ {
+ // TODO получение объекта
+ // TODO установка позиции
+ // TODO прорисовка объекта
+ }
+ }
+
}
}
diff --git a/AirBomber/AirBomber/SetGeneric.cs b/AirBomber/AirBomber/SetGeneric.cs
index c45e8fc..605f044 100644
--- a/AirBomber/AirBomber/SetGeneric.cs
+++ b/AirBomber/AirBomber/SetGeneric.cs
@@ -6,7 +6,72 @@ using System.Threading.Tasks;
namespace AirBomber
{
- internal class SetGeneric
+ internal class SetGeneric
+ where T : class
{
+ ///
+ /// Массив объектов, которые храним
+ ///
+ private readonly T?[] _places;
+ ///
+ /// Количество объектов в массиве
+ ///
+ public int Count => _places.Length;
+ ///
+ /// Конструктор
+ ///
+ ///
+ public SetGeneric(int count)
+ {
+ _places = new T?[count];
+ }
+ ///
+ /// Добавление объекта в набор
+ ///
+ /// Добавляемый самолет
+ ///
+ public bool Insert(T plane)
+ {
+ // TODO вставка в начало набора
+ return true;
+ }
+ ///
+ /// Добавление объекта в набор на конкретную позицию
+ ///
+ /// Добавляемый самолет
+ /// Позиция
+ ///
+ public bool Insert(T plane, int position)
+ {
+ // TODO проверка позиции
+ // TODO проверка, что элемент массива по этой позиции пустой,если нет, то
+ // проверка, что после вставляемого элемента в массиве есть пустой элемент
+ // сдвиг всех объектов, находящихся справа от позиции до первого пустого элемента
+ // TODO вставка по позиции
+ _places[position] = plane;
+ return true;
+ }
+ ///
+ /// Удаление объекта из набора с конкретной позиции
+ ///
+ ///
+ ///
+ public bool Remove(int position)
+ {
+ // TODO проверка позиции
+ // TODO удаление объекта из массива, присвоив элементу массива значение null
+ return true;
+ }
+ ///
+ /// Получение объекта из набора по позиции
+ ///
+ ///
+ ///
+ public T? Get(int position)
+ {
+ // TODO проверка позиции
+ return _places[position];
+ }
+
}
}