This commit is contained in:
marusya 2023-11-05 21:19:40 +04:00
parent 45e5eb57af
commit 9bee490bb3
9 changed files with 393 additions and 122 deletions

View File

@ -68,8 +68,8 @@ namespace SelfPropelledArtilleryUnit.DrawningObjects
/// <param name="bodyColor">Основной цвет</param> /// <param name="bodyColor">Основной цвет</param>
/// <param name="width">Ширина картинки</param> /// <param name="width">Ширина картинки</param>
/// <param name="height">Высота картинки</param> /// <param name="height">Высота картинки</param>
/// <param name="ustaWidth">Ширина прорисовки установки</param> /// <param name="carWidth">Ширина прорисовки установки</param>
/// <param name="ustaHeight">Высота прорисовки установки</param> /// <param name="carHeight">Высота прорисовки установки</param>
protected DrawningUsta(int speed, double weight, Color bodyColor, int protected DrawningUsta(int speed, double weight, Color bodyColor, int
width, int height, int ustaWidth, int ustaHeight) width, int height, int ustaWidth, int ustaHeight)
{ {
@ -93,7 +93,7 @@ namespace SelfPropelledArtilleryUnit.DrawningObjects
public void SetPosition(int x, int y) public void SetPosition(int x, int y)
{ {
// TODO: Изменение x, y, если при установке объект выходит за границы // TODO: Изменение x, y, если при установке объект выходит за границы
if (x < 0 || y < 0 || x + _ustaWidth > _pictureWidth || y + _ustaHeight > _pictureHeight) if (x < 0 || y < 0)
{ {
x = 10; x = 10;
y = 10; y = 10;
@ -198,6 +198,7 @@ namespace SelfPropelledArtilleryUnit.DrawningObjects
Brush BodyColor = new SolidBrush(EntityUsta.BodyColor); Brush BodyColor = new SolidBrush(EntityUsta.BodyColor);
//зеленый темнее //зеленый темнее
int lineWidth = 10;
Color color1 = Color.FromArgb(65, 72, 51); Color color1 = Color.FromArgb(65, 72, 51);
Brush pen1 = new SolidBrush(color1); Brush pen1 = new SolidBrush(color1);

View File

@ -24,7 +24,7 @@ namespace SelfPropelledArtilleryUnit.Entities
/// Инициализация полей объекта-класса установки с вооружением /// Инициализация полей объекта-класса установки с вооружением
/// </summary> /// </summary>
/// <param name="speed">Скорость</param> /// <param name="speed">Скорость</param>
/// <param name="weight">Вес установки</param> /// <param name="weight">Вес автомобиля</param>
/// <param name="bodyColor">Основной цвет</param> /// <param name="bodyColor">Основной цвет</param>
/// <param name="additionalColor">Дополнительный цвет</param> /// <param name="additionalColor">Дополнительный цвет</param>
/// <param name="pushka">Признак наличия пушки</param> /// <param name="pushka">Признак наличия пушки</param>

View File

@ -33,7 +33,7 @@ namespace SelfPropelledArtilleryUnit
} }
/// <summary> /// <summary>
/// Метод прорисовки установки /// <EFBFBD>ועמה ןנמנטסמגךט לארטם<D798>
/// </summary> /// </summary>
private void Draw() private void Draw()
{ {

View File

@ -34,14 +34,21 @@
pictureBoxCollection = new PictureBox(); pictureBoxCollection = new PictureBox();
maskedTextBoxNumber = new MaskedTextBox(); maskedTextBoxNumber = new MaskedTextBox();
groupBox1 = new GroupBox(); groupBox1 = new GroupBox();
groupBox2 = new GroupBox();
listBoxStorage = new ListBox();
ButtonDelObject = new Button();
ButtonAddObject = new Button();
textBoxStorageName = new TextBox();
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit(); ((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit();
groupBox1.SuspendLayout();
groupBox2.SuspendLayout();
SuspendLayout(); SuspendLayout();
// //
// ButtonAddUsta // ButtonAddUsta
// //
ButtonAddUsta.Location = new Point(665, 45); ButtonAddUsta.Location = new Point(26, 314);
ButtonAddUsta.Name = "ButtonAddUsta"; ButtonAddUsta.Name = "ButtonAddUsta";
ButtonAddUsta.Size = new Size(166, 31); ButtonAddUsta.Size = new Size(166, 40);
ButtonAddUsta.TabIndex = 0; ButtonAddUsta.TabIndex = 0;
ButtonAddUsta.Text = "Добавить арт. установку"; ButtonAddUsta.Text = "Добавить арт. установку";
ButtonAddUsta.UseVisualStyleBackColor = true; ButtonAddUsta.UseVisualStyleBackColor = true;
@ -49,9 +56,9 @@
// //
// ButtonRemoveUsta // ButtonRemoveUsta
// //
ButtonRemoveUsta.Location = new Point(665, 129); ButtonRemoveUsta.Location = new Point(26, 400);
ButtonRemoveUsta.Name = "ButtonRemoveUsta"; ButtonRemoveUsta.Name = "ButtonRemoveUsta";
ButtonRemoveUsta.Size = new Size(166, 31); ButtonRemoveUsta.Size = new Size(166, 39);
ButtonRemoveUsta.TabIndex = 1; ButtonRemoveUsta.TabIndex = 1;
ButtonRemoveUsta.Text = "Удалить арт. установку"; ButtonRemoveUsta.Text = "Удалить арт. установку";
ButtonRemoveUsta.UseVisualStyleBackColor = true; ButtonRemoveUsta.UseVisualStyleBackColor = true;
@ -59,9 +66,9 @@
// //
// ButtonRefreshCollection // ButtonRefreshCollection
// //
ButtonRefreshCollection.Location = new Point(665, 215); ButtonRefreshCollection.Location = new Point(26, 478);
ButtonRefreshCollection.Name = "ButtonRefreshCollection"; ButtonRefreshCollection.Name = "ButtonRefreshCollection";
ButtonRefreshCollection.Size = new Size(166, 31); ButtonRefreshCollection.Size = new Size(166, 40);
ButtonRefreshCollection.TabIndex = 2; ButtonRefreshCollection.TabIndex = 2;
ButtonRefreshCollection.Text = "Обновить коллекцию"; ButtonRefreshCollection.Text = "Обновить коллекцию";
ButtonRefreshCollection.UseVisualStyleBackColor = true; ButtonRefreshCollection.UseVisualStyleBackColor = true;
@ -71,7 +78,7 @@
// //
pictureBoxCollection.Location = new Point(0, 0); pictureBoxCollection.Location = new Point(0, 0);
pictureBoxCollection.Name = "pictureBoxCollection"; pictureBoxCollection.Name = "pictureBoxCollection";
pictureBoxCollection.Size = new Size(643, 423); pictureBoxCollection.Size = new Size(637, 583);
pictureBoxCollection.SizeMode = PictureBoxSizeMode.Zoom; pictureBoxCollection.SizeMode = PictureBoxSizeMode.Zoom;
pictureBoxCollection.TabIndex = 3; pictureBoxCollection.TabIndex = 3;
pictureBoxCollection.TabStop = false; pictureBoxCollection.TabStop = false;
@ -79,7 +86,7 @@
// maskedTextBoxNumber // maskedTextBoxNumber
// //
maskedTextBoxNumber.Font = new Font("Showcard Gothic", 9F, FontStyle.Regular, GraphicsUnit.Point); maskedTextBoxNumber.Font = new Font("Showcard Gothic", 9F, FontStyle.Regular, GraphicsUnit.Point);
maskedTextBoxNumber.Location = new Point(695, 100); maskedTextBoxNumber.Location = new Point(56, 371);
maskedTextBoxNumber.Mask = "00"; maskedTextBoxNumber.Mask = "00";
maskedTextBoxNumber.Name = "maskedTextBoxNumber"; maskedTextBoxNumber.Name = "maskedTextBoxNumber";
maskedTextBoxNumber.Size = new Size(100, 22); maskedTextBoxNumber.Size = new Size(100, 22);
@ -88,29 +95,83 @@
// //
// groupBox1 // groupBox1
// //
groupBox1.Controls.Add(groupBox2);
groupBox1.Controls.Add(ButtonAddUsta);
groupBox1.Controls.Add(ButtonRefreshCollection);
groupBox1.Controls.Add(maskedTextBoxNumber);
groupBox1.Controls.Add(ButtonRemoveUsta);
groupBox1.Location = new Point(643, 12); groupBox1.Location = new Point(643, 12);
groupBox1.Name = "groupBox1"; groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(209, 411); groupBox1.Size = new Size(209, 533);
groupBox1.TabIndex = 5; groupBox1.TabIndex = 5;
groupBox1.TabStop = false; groupBox1.TabStop = false;
groupBox1.Text = "Инструменты"; groupBox1.Text = "Инструменты";
// //
// groupBox2
//
groupBox2.Controls.Add(listBoxStorage);
groupBox2.Controls.Add(ButtonDelObject);
groupBox2.Controls.Add(ButtonAddObject);
groupBox2.Controls.Add(textBoxStorageName);
groupBox2.Location = new Point(6, 22);
groupBox2.Name = "groupBox2";
groupBox2.Size = new Size(197, 274);
groupBox2.TabIndex = 6;
groupBox2.TabStop = false;
groupBox2.Text = "Наборы";
//
// listBoxStorage
//
listBoxStorage.FormattingEnabled = true;
listBoxStorage.ItemHeight = 15;
listBoxStorage.Location = new Point(20, 106);
listBoxStorage.Name = "listBoxStorage";
listBoxStorage.Size = new Size(158, 109);
listBoxStorage.TabIndex = 9;
listBoxStorage.SelectedIndexChanged += listBoxStorage_SelectedIndexChanged;
//
// ButtonDelObject
//
ButtonDelObject.Location = new Point(33, 235);
ButtonDelObject.Name = "ButtonDelObject";
ButtonDelObject.Size = new Size(136, 33);
ButtonDelObject.TabIndex = 8;
ButtonDelObject.Text = "Удалить набор";
ButtonDelObject.UseVisualStyleBackColor = true;
ButtonDelObject.Click += ButtonDelObject_Click;
//
// ButtonAddObject
//
ButtonAddObject.Location = new Point(33, 54);
ButtonAddObject.Name = "ButtonAddObject";
ButtonAddObject.Size = new Size(136, 33);
ButtonAddObject.TabIndex = 7;
ButtonAddObject.Text = "Добавить набор";
ButtonAddObject.UseVisualStyleBackColor = true;
ButtonAddObject.Click += ButtonAddObject_Click;
//
// textBoxStorageName
//
textBoxStorageName.Location = new Point(20, 22);
textBoxStorageName.Name = "textBoxStorageName";
textBoxStorageName.Size = new Size(158, 23);
textBoxStorageName.TabIndex = 0;
//
// FormSelfPropelledArtilleryUnitCollection // FormSelfPropelledArtilleryUnitCollection
// //
AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font; AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(859, 435); ClientSize = new Size(867, 584);
Controls.Add(ButtonRefreshCollection);
Controls.Add(ButtonRemoveUsta);
Controls.Add(maskedTextBoxNumber);
Controls.Add(ButtonAddUsta);
Controls.Add(groupBox1); Controls.Add(groupBox1);
Controls.Add(pictureBoxCollection); Controls.Add(pictureBoxCollection);
Name = "FormSelfPropelledArtilleryUnitCollection"; Name = "FormSelfPropelledArtilleryUnitCollection";
Text = "Набор арт. установок"; Text = "Набор арт. установок";
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit(); ((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit();
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
groupBox2.ResumeLayout(false);
groupBox2.PerformLayout();
ResumeLayout(false); ResumeLayout(false);
PerformLayout();
} }
#endregion #endregion
@ -121,5 +182,10 @@
private PictureBox pictureBoxCollection; private PictureBox pictureBoxCollection;
private MaskedTextBox maskedTextBoxNumber; private MaskedTextBox maskedTextBoxNumber;
private GroupBox groupBox1; private GroupBox groupBox1;
private GroupBox groupBox2;
private TextBox textBoxStorageName;
private ListBox listBoxStorage;
private Button ButtonDelObject;
private Button ButtonAddObject;
} }
} }

View File

@ -1,69 +1,183 @@
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 SelfPropelledArtilleryUnit.DrawningObjects; using SelfPropelledArtilleryUnit.DrawningObjects;
using SelfPropelledArtilleryUnit.Drawnings; using SelfPropelledArtilleryUnit.Drawnings;
using SelfPropelledArtilleryUnit.Generics; using SelfPropelledArtilleryUnit.Generics;
using SelfPropelledArtilleryUnit.MovementStrategy; using SelfPropelledArtilleryUnit.MovementStrategy;
namespace SelfPropelledArtilleryUnit namespace SelfPropelledArtilleryUnit
{ {
/// <summary>
/// Форма для работы с набором объектов класса DrawningUsta
/// </summary>
public partial class FormSelfPropelledArtilleryUnitCollection : Form public partial class FormSelfPropelledArtilleryUnitCollection : Form
{ {
private readonly UstaGenericCollection<DrawningUsta, DrawningObjectUsta> _usta; /// <summary>
/// Набор объектов
/// </summary>
private readonly UstaGenericStorage _storage;
/// <summary>
/// Конструктор
/// </summary>
public FormSelfPropelledArtilleryUnitCollection() public FormSelfPropelledArtilleryUnitCollection()
{ {
InitializeComponent(); InitializeComponent();
_usta = new UstaGenericCollection<DrawningUsta, DrawningObjectUsta>(pictureBoxCollection.Width, pictureBoxCollection.Height); _storage = new UstaGenericStorage(pictureBoxCollection.Width,
pictureBoxCollection.Height);
} }
/// <summary>
/// Заполнение listBoxObjects
/// </summary>
private void ReloadObjects()
{
int index = listBoxStorage.SelectedIndex;
listBoxStorage.Items.Clear();
for (int i = 0; i < _storage.Keys.Count; i++)
{
listBoxStorage.Items.Add(_storage.Keys[i]);
}
if (listBoxStorage.Items.Count > 0 && (index == -1 || index
>= listBoxStorage.Items.Count))
{
listBoxStorage.SelectedIndex = 0;
}
else if (listBoxStorage.Items.Count > 0 && index > -1 &&
index < listBoxStorage.Items.Count)
{
listBoxStorage.SelectedIndex = index;
}
}
/// <summary>
/// Добавление набора в коллекцию
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ButtonAddObject_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(textBoxStorageName.Text))
{
MessageBox.Show("Не все данные заполнены", "Ошибка",
MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
_storage.AddSet(textBoxStorageName.Text);
ReloadObjects();
}
/// <summary>
/// Выбор набора
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void listBoxStorage_SelectedIndexChanged(object sender,
EventArgs e)
{
pictureBoxCollection.Image =
_storage[listBoxStorage.SelectedItem?.ToString() ?? string.Empty]?.ShowUsta();
}
/// <summary>
/// Удаление набора
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ButtonDelObject_Click(object sender, EventArgs e)
{
if (listBoxStorage.SelectedIndex == -1)
{
return;
}
if (MessageBox.Show($"Удалить объект {listBoxStorage.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
_storage.DelSet(listBoxStorage.SelectedItem.ToString()
?? string.Empty);
ReloadObjects();
}
}
/// <summary>
/// Добавление объекта в набор
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ButtonAddUsta_Click(object sender, EventArgs e) private void ButtonAddUsta_Click(object sender, EventArgs e)
{ {
if (listBoxStorage.SelectedIndex == -1)
{
return;
}
var obj = _storage[listBoxStorage.SelectedItem.ToString() ??
string.Empty];
if (obj == null)
{
return;
}
FormSelfPropelledArtilleryUnit form = new(); FormSelfPropelledArtilleryUnit form = new();
if (form.ShowDialog() == DialogResult.OK) if (form.ShowDialog() == DialogResult.OK)
{ {
if (_usta + form.SelectedUsta > -1) if (obj + form.SelectedUsta > -1)
{ {
MessageBox.Show("Объект добавлен"); MessageBox.Show("Объект добавлен");
pictureBoxCollection.Image = _usta.ShowUsta(); pictureBoxCollection.Image = obj.ShowUsta();
} }
else else
{ {
MessageBox.Show("Не удалось добавить объект"); MessageBox.Show("Не удалось добавить объект");
} }
} }
} }
/// <summary>
/// Удаление объекта из набора
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ButtonRemoveUsta_Click(object sender, EventArgs e) private void ButtonRemoveUsta_Click(object sender, EventArgs e)
{ {
if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) if (listBoxStorage.SelectedIndex == -1)
{
return;
}
var obj = _storage[listBoxStorage.SelectedItem.ToString() ??
string.Empty];
if (obj == null)
{
return;
}
if (MessageBox.Show("Удалить объект?", "Удаление",
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
{ {
return; return;
} }
int pos = Convert.ToInt32(maskedTextBoxNumber.Text); int pos = Convert.ToInt32(maskedTextBoxNumber.Text);
if (_usta - pos != null) if (obj - pos != null)
{ {
MessageBox.Show("Объект удален"); MessageBox.Show("Объект удален");
pictureBoxCollection.Image = _usta.ShowUsta(); pictureBoxCollection.Image = obj.ShowUsta();
} }
else else
{ {
MessageBox.Show("Не удалось удалить объект"); MessageBox.Show("Не удалось удалить объект");
} }
} }
/// <summary>
private void ButtonRefreshCollection_Click(object sender, EventArgs e) /// Обновление рисунка по набору
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ButtonRefreshCollection_Click(object sender, EventArgs
e)
{ {
pictureBoxCollection.Image = _usta.ShowUsta(); if (listBoxStorage.SelectedIndex == -1)
{
return;
}
var obj = _storage[listBoxStorage.SelectedItem.ToString() ??
string.Empty];
if (obj == null)
{
return;
}
pictureBoxCollection.Image = obj.ShowUsta();
} }
} }
} }

View File

@ -10,7 +10,7 @@ using SelfPropelledArtilleryUnit.Drawnings;
namespace SelfPropelledArtilleryUnit.MovementStrategy namespace SelfPropelledArtilleryUnit.MovementStrategy
{ {
/// <summary> /// <summary>
/// Реализация интерфейса IDrawningObject для работы с объектом DrawningCar (паттерн Adapter) /// Реализация интерфейса IDrawningObject для работы с объектом DrawningUsta (паттерн Adapter)
/// </summary> /// </summary>
public class DrawningObjectUsta : IMoveableObject public class DrawningObjectUsta : IMoveableObject
{ {

View File

@ -1,4 +1,10 @@
namespace SelfPropelledArtilleryUnit.Generics using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SelfPropelledArtilleryUnit.Generics
{ {
/// <summary> /// <summary>
/// Параметризованный набор объектов /// Параметризованный набор объектов
@ -6,72 +12,52 @@
/// <typeparam name="T"></typeparam> /// <typeparam name="T"></typeparam>
internal class SetGeneric<T> internal class SetGeneric<T>
where T : class where T : class
{ {
/// <summary> /// <summary>
/// Массив объектов, которые храним /// Массив объектов, которые храним
/// </summary> /// </summary>
private readonly T?[] _places; private readonly List<T?> _places;
/// <summary> /// <summary>
/// Количество объектов в массиве /// Количество объектов в массиве
/// </summary> /// </summary>
public int Count => _places.Length; public int Count => _places.Count;
/// <summary>
/// Максимальное количество объектов в списке
/// </summary>
private readonly int _maxCount;
/// <summary> /// <summary>
/// Конструктор /// Конструктор
/// </summary> /// </summary>
/// <param name="count"></param> /// <param name="count"></param>
public SetGeneric(int count) public SetGeneric(int count)
{ {
_places = new T?[count]; _maxCount = count;
_places = new List<T?>(count);
} }
/// <summary> /// <summary>
/// Добавление объекта в набор /// Добавление объекта в набор
/// </summary>
/// <param name="usta">Добавляемая установка</param>
/// <returns></returns>
public int Insert(T usta) public int Insert(T usta)
{ {
return Insert(usta, 0); return Insert(usta, 0);
} }
/// <summary>
/// Добавление объекта в набор на конкретную позицию
/// </summary>
/// <param name="usta">Добавляемая установка</param>
/// <param name="position">Позиция</param>
/// <returns></returns> /// <returns></returns>
public int Insert(T usta, int position) public int Insert(T usta, int position)
{ {
// TODO проверка позиции if (position < 0 || position >= _maxCount)
if (position < 0 && position > Count)
{
return -1; return -1;
}
if (_places[position] != null) if (Count >= _maxCount)
{ return -1;
int d = 0;
for (int j = 1; j < Count - position; j++)
{
if (_places[position + j] == null) _places.Insert(position, usta);
{
d = position + j;
break;
}
}
if (d == 0)
{
return -1;
}
for (int j = d; j > position; j--)
{
_places[j] = _places[j - 1];
}
}
// TODO проверка, что элемент массива по этой позиции пустой, если нет, то
// проверка, что после вставляемого элемента в массиве есть пустой элемент
// сдвиг всех объектов, находящихся справа от позиции до первого пустого элемента
// TODO вставка по позиции
_places[position] = usta;
return position; return position;
} }
/// <summary> /// <summary>
/// Удаление объекта из набора с конкретной позиции /// Удаление объекта из набора с конкретной позиции
/// </summary> /// </summary>
@ -79,32 +65,46 @@
/// <returns></returns> /// <returns></returns>
public bool Remove(int position) public bool Remove(int position)
{ {
// TODO проверка позиции if ((position < 0) || (position > _maxCount)) return false;
// Проверка позиции _places.RemoveAt(position);
if (position < 0 || position >= _places.Length)
{
// Позиция недопустима
return false;
}
// TODO удаление объекта из массива, присвоив элементу массива значение null
_places[position] = null;
return true; return true;
} }
/// <summary> /// <summary>
/// Получение объекта из набора по позиции /// Получение объекта из набора по позиции
/// </summary> /// </summary>
/// <param name="position"></param> /// <param name="position"></param>
/// <returns></returns> /// <returns></returns>
public T? Get(int position) public T? this[int position]
{ {
// TODO проверка позиции get
if (position < 0 || position >= _places.Length)
{ {
// Позиция недопустима if (position < 0 || position > _maxCount)
return null; return null;
return _places[position];
}
set
{
if (position < 0 || position > _maxCount)
return;
_places[position] = value;
}
}
/// <summary>
/// Проход по списку
/// </summary>
/// <returns></returns>
public IEnumerable<T?> GetUsta(int? maxUsta = null)
{
for (int i = 0; i < _places.Count; ++i)
{
yield return _places[i];
if (maxUsta.HasValue && i == maxUsta.Value)
{
yield break;
}
} }
return _places[position];
} }
} }
} }

View File

@ -28,7 +28,7 @@ namespace SelfPropelledArtilleryUnit.Generics
/// <summary> /// <summary>
/// Размер занимаемого объектом места (высота) /// Размер занимаемого объектом места (высота)
/// </summary> /// </summary>
private readonly int _placeSizeHeight = 100; private readonly int _placeSizeHeight = 110;
/// <summary> /// <summary>
/// Набор объектов /// Набор объектов
/// </summary> /// </summary>
@ -70,7 +70,7 @@ namespace SelfPropelledArtilleryUnit.Generics
public static bool operator -(UstaGenericCollection<T, U> collect, int public static bool operator -(UstaGenericCollection<T, U> collect, int
pos) pos)
{ {
T? obj = collect._collection.Get(pos); T? obj = collect._collection[pos];
if (obj != null) if (obj != null)
{ {
return collect._collection.Remove(pos); return collect._collection.Remove(pos);
@ -84,7 +84,7 @@ namespace SelfPropelledArtilleryUnit.Generics
/// <returns></returns> /// <returns></returns>
public U? GetU(int pos) public U? GetU(int pos)
{ {
return (U?)_collection.Get(pos)?.GetMoveableObject; return (U?)_collection[pos]?.GetMoveableObject;
} }
/// <summary> /// <summary>
/// Вывод всего набора объектов /// Вывод всего набора объектов
@ -111,7 +111,7 @@ namespace SelfPropelledArtilleryUnit.Generics
1; ++j) 1; ++j)
{//линия разметки места {//линия разметки места
g.DrawLine(pen, i * _placeSizeWidth, j * g.DrawLine(pen, i * _placeSizeWidth, j *
_placeSizeHeight, i * _placeSizeWidth + _placeSizeWidth / 2 + 2, j * _placeSizeHeight, i * _placeSizeWidth + _placeSizeWidth / 2 + 2 , j *
_placeSizeHeight); _placeSizeHeight);
} }
g.DrawLine(pen, i * _placeSizeWidth, 0, i * g.DrawLine(pen, i * _placeSizeWidth, 0, i *
@ -124,28 +124,29 @@ namespace SelfPropelledArtilleryUnit.Generics
/// <param name="g"></param> /// <param name="g"></param>
private void DrawObjects(Graphics g) private void DrawObjects(Graphics g)
{ {
int c = 11; int c = 14;
foreach (var usta in _collection.GetUsta())
for (int i = 0; i < _collection.Count; i++)
{ {
if (i % 3 == 0 && i != 0) if (usta != null)
{ {
c = c - 3;
} int index = _collection.GetUsta().ToList().IndexOf(usta);
T? obj = _collection.Get(i); if (index % 3 == 0 && index != 0)
if (obj != null) {
{ c = c - 3;
// Получение объекта
IMoveableObject moveableObject = obj.GetMoveableObject;
// Установка позиции
int x = i % (_pictureWidth / _placeSizeWidth) * _placeSizeWidth + 3; }
int y = c / (_pictureWidth / _placeSizeWidth) * _placeSizeHeight + 10; // TODO получение объекта
moveableObject.SetPosition(x, y); // TODO установка позиции
// TODO прорисовка объекта
// Установка позиции объекта
int posX = index % (_pictureWidth / _placeSizeWidth) * _placeSizeWidth + 3;
int posY = c / (_pictureWidth / _placeSizeWidth) * _placeSizeHeight + 15;
// Прорисовка объекта // Прорисовка объекта
moveableObject.Draw(g); usta.SetPosition(posX, posY);
usta.DrawTransport(g);
} }
} }
} }

View File

@ -0,0 +1,89 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SelfPropelledArtilleryUnit.Drawnings;
using SelfPropelledArtilleryUnit.MovementStrategy;
using SelfPropelledArtilleryUnit.DrawningObjects;
namespace SelfPropelledArtilleryUnit.Generics
{
internal class UstaGenericStorage
{
/// <summary>
/// Словарь (хранилище)
/// </summary>
readonly Dictionary<string, UstaGenericCollection<DrawningUsta,
DrawningObjectUsta>> _ustaStorages;
/// <summary>
/// Возвращение списка названий наборов
/// </summary>
public List<string> Keys => _ustaStorages.Keys.ToList();
/// <summary>
/// Ширина окна отрисовки
/// </summary>
private readonly int _pictureWidth;
/// <summary>
/// Высота окна отрисовки
/// </summary>
private readonly int _pictureHeight;
/// <summary>
/// Конструктор
/// </summary>
/// <param name="pictureWidth"></param>
/// <param name="pictureHeight"></param>
public UstaGenericStorage(int pictureWidth, int pictureHeight)
{
_ustaStorages = new Dictionary<string,
UstaGenericCollection<DrawningUsta, DrawningObjectUsta>>();
_pictureWidth = pictureWidth;
_pictureHeight = pictureHeight;
}
/// <summary>
/// Добавление набора
/// </summary>
/// <param name="name">Название набора</param>
public void AddSet(string name)
{
// TODO Прописать логику для добавления
if (!_ustaStorages.ContainsKey(name))
{
var ustaCollection = new UstaGenericCollection<DrawningUsta, DrawningObjectUsta>(_pictureWidth, _pictureHeight);
_ustaStorages.Add(name, ustaCollection);
}
}
/// <summary>
/// Удаление набора
/// </summary>
/// <param name="name">Название набора</param>
public void DelSet(string name)
{
// TODO Прописать логику для удаления
if (_ustaStorages.ContainsKey(name))
{
_ustaStorages.Remove(name);
}
}
/// <summary>
/// Доступ к набору
/// </summary>
/// <param name="ind"></param>
/// <returns></returns>
public UstaGenericCollection<DrawningUsta, DrawningObjectUsta>? this[string ind]
{
get
{
// TODO Продумать логику получения набора
if (_ustaStorages.ContainsKey(ind))
{
return _ustaStorages[ind];
}
return null;
}
}
}
}