Лабораторная работа 8

This commit is contained in:
nikbel2004@outlook.com 2023-12-19 12:51:47 +04:00
parent 07984a1940
commit c1eb01d491
10 changed files with 293 additions and 51 deletions

View File

@ -0,0 +1,68 @@
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tank.DrawningObjects;
using Tank.Entities;
namespace Tank
{
internal class DrawiningTankEqutables : IEqualityComparer<DrawArmoVehicle?>
{
public bool Equals(DrawArmoVehicle? x, DrawArmoVehicle? y)
{
if (x == null || x.Tank == null)
{
throw new ArgumentNullException(nameof(x));
}
if (y == null || y.Tank == null)
{
throw new ArgumentNullException(nameof(y));
}
if (x.GetType() != y.GetType())
{
return false;
}
if (x.Tank.Speed != y.Tank.Speed)
{
return false;
}
if (x.Tank.Weight != y.Tank.Weight)
{
return false;
}
if (x.Tank.BodyColor != y.Tank.BodyColor)
{
return false;
}
if (x is DrawTank && y is DrawTank)
{
if ((x.Tank as EntityTank).AdditionalColor != (y.Tank as EntityTank).AdditionalColor)
{
return false;
}
if ((x.Tank as EntityTank).BodyKit != (y.Tank as EntityTank).BodyKit)
{
return false;
}
if ((x.Tank as EntityTank).Caterpillar != (y.Tank as EntityTank).Caterpillar)
{
return false;
}
if ((x.Tank as EntityTank).Tower != (y.Tank as EntityTank).Tower)
{
return false;
}
}
return true;
}
public int GetHashCode([DisallowNull] DrawArmoVehicle obj)
{
return obj.GetHashCode();
}
}
}

View File

@ -27,14 +27,14 @@ namespace Tank
{ {
InitializeComponent(); InitializeComponent();
panelSilver.MouseDown += panelColor_MouseDown; panelCyan.MouseDown += panelColor_MouseDown;
panelRed.MouseDown += panelColor_MouseDown; panelRed.MouseDown += panelColor_MouseDown;
panelOrange.MouseDown += panelColor_MouseDown; panelOrange.MouseDown += panelColor_MouseDown;
panelYellow.MouseDown += panelColor_MouseDown; panelYellow.MouseDown += panelColor_MouseDown;
panelGreen.MouseDown += panelColor_MouseDown; panelGreen.MouseDown += panelColor_MouseDown;
panelCyan.MouseDown += panelColor_MouseDown;
panelBlue.MouseDown += panelColor_MouseDown; panelBlue.MouseDown += panelColor_MouseDown;
panelPink.MouseDown += panelColor_MouseDown; panelPink.MouseDown += panelColor_MouseDown;
panelSilver.MouseDown += panelColor_MouseDown;
defaultColor = labelColor.BackColor; defaultColor = labelColor.BackColor;
buttonCancel.Click += (s, e) => Close(); buttonCancel.Click += (s, e) => Close();

View File

@ -29,6 +29,8 @@
private void InitializeComponent() private void InitializeComponent()
{ {
panel1 = new Panel(); panel1 = new Panel();
SortColorButton = new Button();
SortTypeButton = new Button();
menuStrip1 = new MenuStrip(); menuStrip1 = new MenuStrip();
StripMenu = new ToolStripMenuItem(); StripMenu = new ToolStripMenuItem();
SaveItem = new ToolStripMenuItem(); SaveItem = new ToolStripMenuItem();
@ -55,6 +57,8 @@
// //
// panel1 // panel1
// //
panel1.Controls.Add(SortColorButton);
panel1.Controls.Add(SortTypeButton);
panel1.Controls.Add(menuStrip1); panel1.Controls.Add(menuStrip1);
panel1.Controls.Add(panel2); panel1.Controls.Add(panel2);
panel1.Controls.Add(UpdateButton); panel1.Controls.Add(UpdateButton);
@ -63,18 +67,40 @@
panel1.Controls.Add(InputNum); panel1.Controls.Add(InputNum);
panel1.Controls.Add(label1); panel1.Controls.Add(label1);
panel1.Dock = DockStyle.Right; panel1.Dock = DockStyle.Right;
panel1.Location = new Point(649, 0); panel1.Location = new Point(560, 0);
panel1.Margin = new Padding(3, 2, 3, 2);
panel1.Name = "panel1"; panel1.Name = "panel1";
panel1.Size = new Size(237, 471); panel1.Size = new Size(207, 402);
panel1.TabIndex = 0; panel1.TabIndex = 0;
// //
// SortColorButton
//
SortColorButton.Location = new Point(27, 56);
SortColorButton.Name = "SortColorButton";
SortColorButton.Size = new Size(163, 23);
SortColorButton.TabIndex = 10;
SortColorButton.Text = "Сортировка по цвету";
SortColorButton.UseVisualStyleBackColor = true;
SortColorButton.Click += ButtonSortByColor_Click;
//
// SortTypeButton
//
SortTypeButton.Location = new Point(27, 30);
SortTypeButton.Name = "SortTypeButton";
SortTypeButton.Size = new Size(163, 23);
SortTypeButton.TabIndex = 9;
SortTypeButton.Text = "Сортировка по типу";
SortTypeButton.UseVisualStyleBackColor = true;
SortTypeButton.Click += ButtonSortByType_Click;
//
// menuStrip1 // menuStrip1
// //
menuStrip1.ImageScalingSize = new Size(20, 20); menuStrip1.ImageScalingSize = new Size(20, 20);
menuStrip1.Items.AddRange(new ToolStripItem[] { StripMenu }); menuStrip1.Items.AddRange(new ToolStripItem[] { StripMenu });
menuStrip1.Location = new Point(0, 0); menuStrip1.Location = new Point(0, 0);
menuStrip1.Name = "menuStrip1"; menuStrip1.Name = "menuStrip1";
menuStrip1.Size = new Size(237, 28); menuStrip1.Padding = new Padding(5, 2, 0, 2);
menuStrip1.Size = new Size(207, 24);
menuStrip1.TabIndex = 7; menuStrip1.TabIndex = 7;
menuStrip1.Text = "menuStrip1"; menuStrip1.Text = "menuStrip1";
// //
@ -82,20 +108,20 @@
// //
StripMenu.DropDownItems.AddRange(new ToolStripItem[] { SaveItem, LoadItem }); StripMenu.DropDownItems.AddRange(new ToolStripItem[] { SaveItem, LoadItem });
StripMenu.Name = "StripMenu"; StripMenu.Name = "StripMenu";
StripMenu.Size = new Size(59, 24); StripMenu.Size = new Size(48, 20);
StripMenu.Text = "Файл"; StripMenu.Text = "Файл";
// //
// SaveItem // SaveItem
// //
SaveItem.Name = "SaveItem"; SaveItem.Name = "SaveItem";
SaveItem.Size = new Size(166, 26); SaveItem.Size = new Size(133, 22);
SaveItem.Text = "Сохранить"; SaveItem.Text = "Сохранить";
SaveItem.Click += SaveToolStripMenuItem_Click; SaveItem.Click += SaveToolStripMenuItem_Click;
// //
// LoadItem // LoadItem
// //
LoadItem.Name = "LoadItem"; LoadItem.Name = "LoadItem";
LoadItem.Size = new Size(166, 26); LoadItem.Size = new Size(133, 22);
LoadItem.Text = "Загрузить"; LoadItem.Text = "Загрузить";
LoadItem.Click += LoadToolStripMenuItem_Click; LoadItem.Click += LoadToolStripMenuItem_Click;
// //
@ -106,16 +132,18 @@
panel2.Controls.Add(AddCollectButton); panel2.Controls.Add(AddCollectButton);
panel2.Controls.Add(SetTextBox); panel2.Controls.Add(SetTextBox);
panel2.Controls.Add(label2); panel2.Controls.Add(label2);
panel2.Location = new Point(16, 62); panel2.Location = new Point(14, 105);
panel2.Margin = new Padding(3, 2, 3, 2);
panel2.Name = "panel2"; panel2.Name = "panel2";
panel2.Size = new Size(214, 220); panel2.Size = new Size(187, 165);
panel2.TabIndex = 6; panel2.TabIndex = 6;
// //
// DeleteCollectButton // DeleteCollectButton
// //
DeleteCollectButton.Location = new Point(3, 181); DeleteCollectButton.Location = new Point(3, 136);
DeleteCollectButton.Margin = new Padding(3, 2, 3, 2);
DeleteCollectButton.Name = "DeleteCollectButton"; DeleteCollectButton.Name = "DeleteCollectButton";
DeleteCollectButton.Size = new Size(208, 29); DeleteCollectButton.Size = new Size(182, 22);
DeleteCollectButton.TabIndex = 4; DeleteCollectButton.TabIndex = 4;
DeleteCollectButton.Text = "Удалить набор"; DeleteCollectButton.Text = "Удалить набор";
DeleteCollectButton.UseVisualStyleBackColor = true; DeleteCollectButton.UseVisualStyleBackColor = true;
@ -124,18 +152,20 @@
// CollectionListBox // CollectionListBox
// //
CollectionListBox.FormattingEnabled = true; CollectionListBox.FormattingEnabled = true;
CollectionListBox.ItemHeight = 20; CollectionListBox.ItemHeight = 15;
CollectionListBox.Location = new Point(3, 91); CollectionListBox.Location = new Point(3, 68);
CollectionListBox.Margin = new Padding(3, 2, 3, 2);
CollectionListBox.Name = "CollectionListBox"; CollectionListBox.Name = "CollectionListBox";
CollectionListBox.Size = new Size(207, 84); CollectionListBox.Size = new Size(182, 64);
CollectionListBox.TabIndex = 3; CollectionListBox.TabIndex = 3;
CollectionListBox.SelectedIndexChanged += ListBoxObjects_SelectedIndexChanged; CollectionListBox.SelectedIndexChanged += ListBoxObjects_SelectedIndexChanged;
// //
// AddCollectButton // AddCollectButton
// //
AddCollectButton.Location = new Point(3, 56); AddCollectButton.Location = new Point(3, 42);
AddCollectButton.Margin = new Padding(3, 2, 3, 2);
AddCollectButton.Name = "AddCollectButton"; AddCollectButton.Name = "AddCollectButton";
AddCollectButton.Size = new Size(208, 29); AddCollectButton.Size = new Size(182, 22);
AddCollectButton.TabIndex = 2; AddCollectButton.TabIndex = 2;
AddCollectButton.Text = "Добавить набор"; AddCollectButton.Text = "Добавить набор";
AddCollectButton.UseVisualStyleBackColor = true; AddCollectButton.UseVisualStyleBackColor = true;
@ -143,9 +173,10 @@
// //
// SetTextBox // SetTextBox
// //
SetTextBox.Location = new Point(2, 23); SetTextBox.Location = new Point(2, 17);
SetTextBox.Margin = new Padding(3, 2, 3, 2);
SetTextBox.Name = "SetTextBox"; SetTextBox.Name = "SetTextBox";
SetTextBox.Size = new Size(209, 27); SetTextBox.Size = new Size(183, 23);
SetTextBox.TabIndex = 1; SetTextBox.TabIndex = 1;
// //
// label2 // label2
@ -153,15 +184,16 @@
label2.AutoSize = true; label2.AutoSize = true;
label2.Location = new Point(3, 0); label2.Location = new Point(3, 0);
label2.Name = "label2"; label2.Name = "label2";
label2.Size = new Size(66, 20); label2.Size = new Size(52, 15);
label2.TabIndex = 0; label2.TabIndex = 0;
label2.Text = "Наборы"; label2.Text = "Наборы";
// //
// UpdateButton // UpdateButton
// //
UpdateButton.Location = new Point(10, 414); UpdateButton.Location = new Point(9, 369);
UpdateButton.Margin = new Padding(3, 2, 3, 2);
UpdateButton.Name = "UpdateButton"; UpdateButton.Name = "UpdateButton";
UpdateButton.Size = new Size(219, 37); UpdateButton.Size = new Size(192, 28);
UpdateButton.TabIndex = 4; UpdateButton.TabIndex = 4;
UpdateButton.Text = "Обновить коллекцию"; UpdateButton.Text = "Обновить коллекцию";
UpdateButton.UseVisualStyleBackColor = true; UpdateButton.UseVisualStyleBackColor = true;
@ -169,9 +201,10 @@
// //
// DeleteButton // DeleteButton
// //
DeleteButton.Location = new Point(10, 374); DeleteButton.Location = new Point(9, 339);
DeleteButton.Margin = new Padding(3, 2, 3, 2);
DeleteButton.Name = "DeleteButton"; DeleteButton.Name = "DeleteButton";
DeleteButton.Size = new Size(219, 37); DeleteButton.Size = new Size(192, 28);
DeleteButton.TabIndex = 3; DeleteButton.TabIndex = 3;
DeleteButton.Text = "Удалить технику"; DeleteButton.Text = "Удалить технику";
DeleteButton.UseVisualStyleBackColor = true; DeleteButton.UseVisualStyleBackColor = true;
@ -179,9 +212,10 @@
// //
// AddButton // AddButton
// //
AddButton.Location = new Point(10, 296); AddButton.Location = new Point(9, 281);
AddButton.Margin = new Padding(3, 2, 3, 2);
AddButton.Name = "AddButton"; AddButton.Name = "AddButton";
AddButton.Size = new Size(219, 37); AddButton.Size = new Size(192, 28);
AddButton.TabIndex = 2; AddButton.TabIndex = 2;
AddButton.Text = "Добавить технику"; AddButton.Text = "Добавить технику";
AddButton.UseVisualStyleBackColor = true; AddButton.UseVisualStyleBackColor = true;
@ -189,17 +223,18 @@
// //
// InputNum // InputNum
// //
InputNum.Location = new Point(10, 337); InputNum.Location = new Point(9, 312);
InputNum.Margin = new Padding(3, 2, 3, 2);
InputNum.Name = "InputNum"; InputNum.Name = "InputNum";
InputNum.Size = new Size(219, 27); InputNum.Size = new Size(192, 23);
InputNum.TabIndex = 1; InputNum.TabIndex = 1;
// //
// label1 // label1
// //
label1.AutoSize = true; label1.AutoSize = true;
label1.Location = new Point(122, 39); label1.Location = new Point(107, 88);
label1.Name = "label1"; label1.Name = "label1";
label1.Size = new Size(103, 20); label1.Size = new Size(83, 15);
label1.TabIndex = 0; label1.TabIndex = 0;
label1.Text = "Инструменты"; label1.Text = "Инструменты";
// //
@ -207,8 +242,9 @@
// //
DrawTank.Dock = DockStyle.Fill; DrawTank.Dock = DockStyle.Fill;
DrawTank.Location = new Point(0, 0); DrawTank.Location = new Point(0, 0);
DrawTank.Margin = new Padding(3, 2, 3, 2);
DrawTank.Name = "DrawTank"; DrawTank.Name = "DrawTank";
DrawTank.Size = new Size(649, 471); DrawTank.Size = new Size(560, 402);
DrawTank.TabIndex = 1; DrawTank.TabIndex = 1;
DrawTank.TabStop = false; DrawTank.TabStop = false;
// //
@ -218,11 +254,12 @@
// //
// FormTanksCollections // FormTanksCollections
// //
AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font; AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(886, 471); ClientSize = new Size(767, 402);
Controls.Add(DrawTank); Controls.Add(DrawTank);
Controls.Add(panel1); Controls.Add(panel1);
Margin = new Padding(3, 2, 3, 2);
Name = "FormTanksCollections"; Name = "FormTanksCollections";
Text = "CollectionsFrame"; Text = "CollectionsFrame";
panel1.ResumeLayout(false); panel1.ResumeLayout(false);
@ -256,5 +293,7 @@
private ToolStripMenuItem LoadItem; private ToolStripMenuItem LoadItem;
private OpenFileDialog openFileDialog; private OpenFileDialog openFileDialog;
private SaveFileDialog saveFileDialog; private SaveFileDialog saveFileDialog;
private Button SortColorButton;
private Button SortTypeButton;
} }
} }

View File

@ -36,7 +36,7 @@ namespace Tank
CollectionListBox.Items.Clear(); CollectionListBox.Items.Clear();
foreach (var key in _storage.Keys) foreach (var key in _storage.Keys)
{ {
CollectionListBox.Items.Add(key); CollectionListBox.Items.Add(key.Name);
} }
if (CollectionListBox.Items.Count > 0 && (index == -1 || index if (CollectionListBox.Items.Count > 0 && (index == -1 || index
>= CollectionListBox.Items.Count)) >= CollectionListBox.Items.Count))
@ -66,8 +66,7 @@ namespace Tank
private void ListBoxObjects_SelectedIndexChanged(object sender, EventArgs e) private void ListBoxObjects_SelectedIndexChanged(object sender, EventArgs e)
{ {
DrawTank.Image = DrawTank.Image = _storage[CollectionListBox.SelectedItem?.ToString() ?? string.Empty]?.ShowTanks();
_storage[CollectionListBox.SelectedItem?.ToString() ?? string.Empty]?.ShowTanks();
} }
private void ButtonDelObject_Click(object sender, EventArgs e) private void ButtonDelObject_Click(object sender, EventArgs e)
@ -116,6 +115,11 @@ namespace Tank
MessageBox.Show("Не удалось добавить объект"); MessageBox.Show("Не удалось добавить объект");
_logger.LogWarning($"{ex.Message} в наборе {CollectionListBox.SelectedItem.ToString()}"); _logger.LogWarning($"{ex.Message} в наборе {CollectionListBox.SelectedItem.ToString()}");
} }
catch (ApplicationException ex)
{
MessageBox.Show(ex.Message);
_logger.LogWarning($"добавление танка неуспешно {ex.Message}");
}
} }
private void ButtonAddTank_Click(object sender, EventArgs e) private void ButtonAddTank_Click(object sender, EventArgs e)
@ -226,5 +230,20 @@ namespace Tank
} }
} }
} }
private void ButtonSortByType_Click(object sender, EventArgs e) => CompareTank(new TankCompareByType());
private void ButtonSortByColor_Click(object sender, EventArgs e) => CompareTank(new TankCompareByColor());
private void CompareTank(IComparer<DrawArmoVehicle?> comparer)
{
if (CollectionListBox.SelectedIndex == -1)
return;
var obj = _storage[CollectionListBox.SelectedItem.ToString() ?? string.Empty];
if (obj == null)
return;
obj.Sort(comparer);
DrawTank.Image = obj.ShowTanks();
}
} }
} }

View File

@ -17,6 +17,9 @@ namespace Tank
// Максимальное количество объектов // Максимальное количество объектов
private readonly int _maxCount; private readonly int _maxCount;
// Сортировка набора объектов
public void SortSet(IComparer<T?> comparer) => _places.Sort(comparer);
// Конструктор // Конструктор
public SetGeneric(int count) public SetGeneric(int count)
{ {
@ -25,19 +28,23 @@ namespace Tank
} }
// Добавление объекта в набор // Добавление объекта в набор
public bool Insert(T tank) public bool Insert(T tank, IEqualityComparer<T?>? equal = null)
{ {
return Insert(tank, 0); return Insert(tank, 0, equal);
} }
// Добавление на конкретную позицию // Добавление на конкретную позицию
public bool Insert(T tank, int position) public bool Insert(T tank, int position, IEqualityComparer<T?>? equal = null)
{ {
if (position < 0 || position >= _maxCount) if (position < 0 || position >= _maxCount)
throw new TankNotFoundException(position); // По позиции throw new TankNotFoundException(position); // По позиции
if (Count >= _maxCount) if (Count >= _maxCount)
throw new TankStorageOverflowException(_maxCount); // Макс количество в коллекции throw new TankStorageOverflowException(_maxCount); // Макс количество в коллекции
if (equal != null && _places.Contains<T>(tank, equal))
throw new ApplicationException("уже существует");
_places.Insert(0, tank); _places.Insert(0, tank);
return true; return true;
} }

View File

@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tank.DrawningObjects;
namespace Tank
{
internal class TankCompareByColor : IComparer<DrawArmoVehicle?>
{
public int Compare(DrawArmoVehicle? x, DrawArmoVehicle? y)
{
if (x == null || x.Tank == null)
{
throw new ArgumentNullException(nameof(x));
}
if (y == null || y.Tank == null)
{
throw new ArgumentNullException(nameof(y));
}
if (x.Tank.BodyColor != y.Tank.BodyColor)
{
return x.Tank.BodyColor.Name.CompareTo(y.Tank.BodyColor.Name);
}
var speedCompare = x.Tank.Speed.CompareTo(y.Tank.Speed);
if (speedCompare != 0)
{
return speedCompare;
}
return x.Tank.Weight.CompareTo(y.Tank.Weight);
}
}
}

View File

@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tank.DrawningObjects;
namespace Tank
{
internal class TankCompareByType : IComparer<DrawArmoVehicle?>
{
public int Compare(DrawArmoVehicle? x, DrawArmoVehicle? y)
{
if (x == null || x.Tank == null)
{
throw new ArgumentNullException(nameof(x));
}
if (y == null || y.Tank == null)
{
throw new ArgumentNullException(nameof(y));
}
if (x.GetType().Name != y.GetType().Name)
{
return x.GetType().Name.CompareTo(y.GetType().Name);
}
var speedCompare = x.Tank.Speed.CompareTo(y.Tank.Speed);
if (speedCompare != 0)
{
return speedCompare;
}
return x.Tank.Weight.CompareTo(y.Tank.Weight);
}
}
}

View File

@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tank
{
internal class TankCollectionInfo : IEquatable<TankCollectionInfo>
{
public string Name { get; private set; }
public string Description { get; private set; }
public TankCollectionInfo(string name, string description)
{
Name = name;
Description = description;
}
public bool Equals(TankCollectionInfo? other)
{
if (other == null || Name == null || other.Name == null) return false;
if (Name == other.Name) return true;
throw new NotImplementedException();
//return Name.Equals(other.Name);
}
public override int GetHashCode()
{
return Name?.GetHashCode() ?? 0;
}
}
}

View File

@ -43,7 +43,7 @@ namespace Tank.Generics
{ {
return false; return false;
} }
return (bool)collect?._collection.Insert(obj); return (bool)collect?._collection.Insert(obj, new DrawiningTankEqutables());
} }
// Перегрузка оператора вычитания // Перегрузка оператора вычитания
@ -54,6 +54,9 @@ namespace Tank.Generics
return obj; return obj;
} }
// Сортировка
public void Sort(IComparer<T> comparer) => _collection.SortSet(comparer);
// Получение объекта IMoveableObject // Получение объекта IMoveableObject
public U? GetU(int pos) public U? GetU(int pos)
{ {

View File

@ -7,16 +7,17 @@ using Tank.Generics;
using Tank.DrawningObjects; using Tank.DrawningObjects;
using Tank.MovementStrategy; using Tank.MovementStrategy;
using Tank.Exceptions; using Tank.Exceptions;
using Tank.Entities;
namespace Tank namespace Tank
{ {
internal class TanksGenericStorage internal class TanksGenericStorage
{ {
// Словарь // Словарь
readonly Dictionary<string, TanksGenericCollection<DrawArmoVehicle, DrawingObjectTank>> _tankStorages; readonly Dictionary<TankCollectionInfo, TanksGenericCollection<DrawArmoVehicle, DrawingObjectTank>> _tankStorages;
// Возвращение списка названий наборов // Возвращение списка названий наборов
public List<string> Keys => _tankStorages.Keys.ToList(); public List<TankCollectionInfo> Keys => _tankStorages.Keys.ToList();
private readonly int _pictureWidth; private readonly int _pictureWidth;
private readonly int _pictureHeight; private readonly int _pictureHeight;
@ -27,7 +28,7 @@ namespace Tank
// Конструктор // Конструктор
public TanksGenericStorage(int pictureWidth, int pictureHeight) public TanksGenericStorage(int pictureWidth, int pictureHeight)
{ {
_tankStorages = new Dictionary<string, TanksGenericCollection<DrawArmoVehicle, DrawingObjectTank>>(); _tankStorages = new Dictionary<TankCollectionInfo, TanksGenericCollection<DrawArmoVehicle, DrawingObjectTank>>();
_pictureWidth = pictureWidth; _pictureWidth = pictureWidth;
_pictureHeight = pictureHeight; _pictureHeight = pictureHeight;
} }
@ -35,15 +36,17 @@ namespace Tank
// Добавление набора // Добавление набора
public void AddSet(string name) public void AddSet(string name)
{ {
if (_tankStorages.ContainsKey(name)) return; TankCollectionInfo Info = new TankCollectionInfo(name, string.Empty);
_tankStorages[name] = new TanksGenericCollection<DrawArmoVehicle, DrawingObjectTank>(_pictureWidth, _pictureHeight); if (_tankStorages.ContainsKey(Info)) return;
_tankStorages[Info] = new TanksGenericCollection<DrawArmoVehicle, DrawingObjectTank>(_pictureWidth, _pictureHeight);
} }
// Удаление набора // Удаление набора
public void DelSet(string name) public void DelSet(string name)
{ {
if (!_tankStorages.ContainsKey(name)) return; TankCollectionInfo Info = new TankCollectionInfo(name, string.Empty);
_tankStorages.Remove(name); if (!_tankStorages.ContainsKey(Info)) return;
_tankStorages.Remove(Info);
} }
// Доступ к набору // Доступ к набору
@ -52,7 +55,8 @@ namespace Tank
{ {
get get
{ {
if (_tankStorages.ContainsKey(ind)) return _tankStorages[ind]; TankCollectionInfo Info = new TankCollectionInfo(ind, string.Empty);
if (_tankStorages.ContainsKey(Info)) return _tankStorages[Info];
return null; return null;
} }
} }
@ -65,14 +69,14 @@ namespace Tank
} }
StringBuilder data = new(); StringBuilder data = new();
foreach (KeyValuePair<string, TanksGenericCollection<DrawArmoVehicle, DrawingObjectTank>> record in _tankStorages) foreach (KeyValuePair<TankCollectionInfo, TanksGenericCollection<DrawArmoVehicle, DrawingObjectTank>> record in _tankStorages)
{ {
StringBuilder records = new(); StringBuilder records = new();
foreach (DrawArmoVehicle? elem in record.Value.GetTanks) foreach (DrawArmoVehicle? elem in record.Value.GetTanks)
{ {
records.Append($"{elem?.GetDataForSave(_separatorForObject)}{_separatorRecords}"); records.Append($"{elem?.GetDataForSave(_separatorForObject)}{_separatorRecords}");
} }
data.AppendLine($"{record.Key}{_separatorForKeyValue}{records}"); data.AppendLine($"{record.Key.Name}{_separatorForKeyValue}{records}");
} }
if (data.Length == 0) if (data.Length == 0)
@ -135,7 +139,7 @@ namespace Tank
} }
} }
} }
_tankStorages.Add(name, collection); _tankStorages.Add(new TankCollectionInfo(name, string.Empty), collection);
} }
} }
} }