From f90e1b3e14a6ad2001031a42f3d5e667e20a50ee Mon Sep 17 00:00:00 2001 From: Vladislave Date: Sun, 12 May 2024 14:45:00 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9B=D0=B0=D0=B1=D0=BE=D1=80=D0=B0=D1=82?= =?UTF-8?q?=D0=BE=D1=80=D0=BD=D0=B0=D1=8F=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=B0=20=E2=84=966?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AbstractCompany.cs | 2 +- .../ICollectionGenericObject.cs | 19 ++- .../ListGenericObjects.cs | 66 ++++--- .../MassiveGenericObject.cs | 34 +++- .../StorageCollection.cs | 161 +++++++++++++++++- .../Drawnings/DrawningAirBomber.cs | 26 ++- .../ProjectBomber/Drawnings/DrawningPlane.cs | 6 + .../Drawnings/ExtintionDrawningPlane.cs | 52 ++++++ .../ProjectBomber/Entities/EntityAirBomber.cs | 33 ++++ .../ProjectBomber/Entities/EntityPlane.cs | 24 +++ .../FormPlaneCollection.Designer.cs | 79 +++++++-- .../ProjectBomber/FormPlaneCollection.cs | 92 +++++++--- .../ProjectBomber/FormPlaneCollection.resx | 9 + 13 files changed, 515 insertions(+), 88 deletions(-) create mode 100644 ProjectBomber/ProjectBomber/Drawnings/ExtintionDrawningPlane.cs diff --git a/ProjectBomber/ProjectBomber/CollectionGenericObject/AbstractCompany.cs b/ProjectBomber/ProjectBomber/CollectionGenericObject/AbstractCompany.cs index 725d58b..7f93b0b 100644 --- a/ProjectBomber/ProjectBomber/CollectionGenericObject/AbstractCompany.cs +++ b/ProjectBomber/ProjectBomber/CollectionGenericObject/AbstractCompany.cs @@ -45,7 +45,7 @@ public abstract class AbstractCompany _pictureWidth = picWidth; _pictureHeight = picHeight; _collection = collection; - _collection.SetMaxCount = GetMaxCount; + _collection.MaxCount = GetMaxCount; } /// /// Перегрузка оператора сложения для класса diff --git a/ProjectBomber/ProjectBomber/CollectionGenericObject/ICollectionGenericObject.cs b/ProjectBomber/ProjectBomber/CollectionGenericObject/ICollectionGenericObject.cs index 8edcb0c..c2a378a 100644 --- a/ProjectBomber/ProjectBomber/CollectionGenericObject/ICollectionGenericObject.cs +++ b/ProjectBomber/ProjectBomber/CollectionGenericObject/ICollectionGenericObject.cs @@ -15,13 +15,8 @@ where T : class int Count { get; } /// /// Установка максимального количества элементов - /// - int SetMaxCount { set; } - /// - /// Добавление объекта в коллекцию - /// - /// Добавляемый объект - /// true - вставка прошла удачно, false - вставка не удалась + int MaxCount { get; set; } + int Insert(T obj); /// /// Добавление объекта в коллекцию на конкретную позицию @@ -42,4 +37,14 @@ where T : class /// Позиция /// Объект T? Get(int position); + + /// + /// Получение типа коллекции + /// + CollectionType GetCollectionType { get; } + /// + /// Получение объектов коллекции по одному + /// + /// Поэлементый вывод элементов коллекции + IEnumerable GetItems(); } \ No newline at end of file diff --git a/ProjectBomber/ProjectBomber/CollectionGenericObject/ListGenericObjects.cs b/ProjectBomber/ProjectBomber/CollectionGenericObject/ListGenericObjects.cs index 8861abe..7568b48 100644 --- a/ProjectBomber/ProjectBomber/CollectionGenericObject/ListGenericObjects.cs +++ b/ProjectBomber/ProjectBomber/CollectionGenericObject/ListGenericObjects.cs @@ -8,21 +8,24 @@ using System.Threading.Tasks; namespace ProjectAirBomber.CollectionGenericObject; public class ListGenericObjects : ICollectionGenericObject - where T : class + where T : class { - /// - /// Список объектов, которые храним - /// - private readonly List _collection; - - /// - /// Максимально допустимое число объектов в списке - /// + private readonly List _collection; private int _maxCount; - public int Count => _collection.Count; + public CollectionType GetCollectionType => CollectionType.List; - public int SetMaxCount { set { if (value > 0) { _maxCount = value; } } } + public int MaxCount + { + get + { + return _maxCount; + } + set + { + if (value > 0) _maxCount = value; + } + } /// /// Конструктор @@ -34,42 +37,49 @@ public class ListGenericObjects : ICollectionGenericObject public T? Get(int position) { - // TODO проверка позиции - if (position >= Count || position < 0) return null; - return _collection[position]; + if (position >= 0 && position < Count) + { + return _collection[position]; + } + else + { + return null; + } + } public int Insert(T obj) { - // TODO проверка, что не превышено максимальное количество элементов - // TODO вставка в конец набора - if (Count == _maxCount) return -1; + if (Count == _maxCount) { return -1; } _collection.Add(obj); return Count; } public int Insert(T obj, int position) { - // TODO проверка, что не превышено максимальное количество элементов - // TODO проверка позиции - // TODO вставка по позиции - if (Count == _maxCount) return -1; - if (position >= Count || position < 0) return -1; + if (position < 0 || position >= Count || Count == _maxCount) + { + return -1; + } _collection.Insert(position, obj); return position; } - public T Remove(int position) + public T? Remove(int position) { - // TODO проверка позиции - // TODO удаление объекта из списка if (position >= Count || position < 0) return null; - T obj = _collection[position]; - _collection.RemoveAt(position); + T? obj = _collection[position]; + _collection?.RemoveAt(position); return obj; + } - + public IEnumerable GetItems() + { + for (int i = 0; i < _collection.Count; i++) + { + yield return _collection[i]; + } } bool? ICollectionGenericObject.Insert(T obj, int position) diff --git a/ProjectBomber/ProjectBomber/CollectionGenericObject/MassiveGenericObject.cs b/ProjectBomber/ProjectBomber/CollectionGenericObject/MassiveGenericObject.cs index c39a285..9638e16 100644 --- a/ProjectBomber/ProjectBomber/CollectionGenericObject/MassiveGenericObject.cs +++ b/ProjectBomber/ProjectBomber/CollectionGenericObject/MassiveGenericObject.cs @@ -14,8 +14,12 @@ where T : class /// private T?[] _collection; public int Count => _collection.Length; - public int SetMaxCount + public int MaxCount { + get + { + return _collection.Length; + } set { if (value > 0) @@ -31,6 +35,10 @@ where T : class } } } + + + public CollectionType GetCollectionType => CollectionType.Massive; + /// /// Конструктор /// @@ -56,14 +64,14 @@ where T : class } return -1; } - public bool? Insert(T obj, int position) // вставка объекта на место + public int Insert(T obj, int position) // вставка объекта на место { if (position < 0 || position >= _collection.Length) // если позиция переданна неправильно - return false; + return -1; if (_collection[position] == null)//если позиция пуста { _collection[position] = obj; - return true; + return position; } else { @@ -72,7 +80,7 @@ where T : class if (_collection[i] == null) { _collection[i] = obj; - return true; + return i; } } for (int i = 0; i < position; ++i) // иначе слева @@ -80,11 +88,11 @@ where T : class if (_collection[i] == null) { _collection[i] = obj; - return true; + return i; } } } - return false; + return -1; } public T? Remove(int position) // удаление объекта, зануляя его { @@ -95,4 +103,16 @@ where T : class return temp; } + public IEnumerable GetItems() + { + for (int i = 0; i < _collection.Length; i++) + { + yield return _collection[i]; + } + } + + bool? ICollectionGenericObject.Insert(T obj, int position) + { + throw new NotImplementedException(); + } } \ No newline at end of file diff --git a/ProjectBomber/ProjectBomber/CollectionGenericObject/StorageCollection.cs b/ProjectBomber/ProjectBomber/CollectionGenericObject/StorageCollection.cs index 6832803..6aaab55 100644 --- a/ProjectBomber/ProjectBomber/CollectionGenericObject/StorageCollection.cs +++ b/ProjectBomber/ProjectBomber/CollectionGenericObject/StorageCollection.cs @@ -1,15 +1,15 @@ -using System; -using System.Collections.Generic; -using System.Linq; +using ProjectAirBomber.Drawnings; +using ProjectAirBomber.CollectionGenericObject; using System.Text; -using System.Threading.Tasks; namespace ProjectAirBomber.CollectionGenericObject; + /// /// Класс-хранилище коллекций /// /// -public class StorageCollection where T : class +public class StorageCollection + where T : DrawningPlane { /// /// Словарь (хранилище) с коллекциями @@ -20,7 +20,20 @@ public class StorageCollection where T : class /// Возвращение списка названий коллекций /// public List Keys => _storages.Keys.ToList(); + /// + /// Ключевое слово, с которого должен начинаться файл + /// + private readonly string _collectionKey = "CollectionsStorage"; + /// + /// Разделитель для записи ключа и значения элемента словаря + /// + private readonly string _separatorForKeyValue = "|"; + + /// + /// Разделитель для записей коллекции данных в файл + /// + private readonly string _separatorItems = ";"; /// /// Конструктор /// @@ -74,4 +87,142 @@ public class StorageCollection where T : class return null; } } + + + /// + /// Сохранение информации по автомобилям в хранилище в файл + /// + /// Путь и имя файла + /// true - сохранение прошло успешно, false - ошибка при сохранении данных + /// + /// Сохранение информации по автомобилям в хранилище в файл + /// + /// Путь и имя файла + /// true - сохранение прошло успешно, false - ошибка при сохранении данных + public bool SaveData(string filename) + { + if (_storages.Count == 0) + { + return false; + } + if (File.Exists(filename)) + { + File.Delete(filename); + } + using (StreamWriter writer = new StreamWriter(filename)) + { + writer.Write(_collectionKey); + foreach (KeyValuePair> value in _storages) + { + StringBuilder sb = new(); + sb.Append(Environment.NewLine); + // не сохраняем пустые коллекции + if (value.Value.Count == 0) + { + continue; + } + sb.Append(value.Key); + sb.Append(_separatorForKeyValue); + sb.Append(value.Value.GetCollectionType); + sb.Append(_separatorForKeyValue); + sb.Append(value.Value.MaxCount); + sb.Append(_separatorForKeyValue); + foreach (T? item in value.Value.GetItems()) + { + string data = item?.GetDataForSave() ?? string.Empty; + if (string.IsNullOrEmpty(data)) + { + continue; + } + sb.Append(data); + sb.Append(_separatorItems); + } + writer.Write(sb); + } + + } + + return true; + } + + /// + /// Загрузка информации по автомобилям в хранилище из файла + /// + /// Путь и имя файла + /// true - загрузка прошла успешно, false - ошибка при загрузке данных + /// + /// Загрузка информации по автомобилям в хранилище из файла + /// + /// Путь и имя файла + /// true - загрузка прошла успешно, false - ошибка при загрузке данных + public bool LoadData(string filename) + { + if (!File.Exists(filename)) + { + return false; + } + using (StreamReader fs = File.OpenText(filename)) + { + string str = fs.ReadLine(); + if (str == null || str.Length == 0) + { + return false; + } + if (!str.StartsWith(_collectionKey)) + { + return false; + } + _storages.Clear(); + string strs = ""; + while ((strs = fs.ReadLine()) != null) + { + //по идее этого произойти не должно + //if (strs == null) + //{ + // return false; + //} + string[] record = strs.Split(_separatorForKeyValue, StringSplitOptions.RemoveEmptyEntries); + if (record.Length != 4) + { + continue; + } + CollectionType collectionType = (CollectionType)Enum.Parse(typeof(CollectionType), record[1]); + ICollectionGenericObject? collection = StorageCollection.CreateCollection(collectionType); + if (collection == null) + { + return false; + } + collection.MaxCount = Convert.ToInt32(record[2]); + string[] set = record[3].Split(_separatorItems, StringSplitOptions.RemoveEmptyEntries); + foreach (string elem in set) + { + if (elem?.CreateDrawningPlane() is T Plane) + { + if (collection.Insert(Plane) == -1) + { + return false; + } + } + } + _storages.Add(record[0], collection); + } + return true; + + } + } + + /// + /// Создание коллекции по типу + /// + /// + /// + private static ICollectionGenericObject? CreateCollection(CollectionType collectionType) + { + return collectionType switch + { + CollectionType.Massive => new MassiveGenericObject(), + CollectionType.List => new ListGenericObjects(), + _ => null, + }; + } } \ No newline at end of file diff --git a/ProjectBomber/ProjectBomber/Drawnings/DrawningAirBomber.cs b/ProjectBomber/ProjectBomber/Drawnings/DrawningAirBomber.cs index 4ee79df..026639f 100644 --- a/ProjectBomber/ProjectBomber/Drawnings/DrawningAirBomber.cs +++ b/ProjectBomber/ProjectBomber/Drawnings/DrawningAirBomber.cs @@ -10,6 +10,8 @@ namespace ProjectAirBomber.Drawnings; public class DrawingAirBomber : DrawningPlane { + private EntityPlane plane; + /// /// Конструктор /// @@ -17,14 +19,28 @@ public class DrawingAirBomber : DrawningPlane /// Вес /// Основной цвет /// Дополнительный цвет - /// Дополнительный цвет - /// Дополнительный цвет - public DrawingAirBomber(int speed, double weight, Color bodyColor, Color - additionalColor, bool engine, bool bomb) : base(125, 155) + /// Признак наличия стёкол + /// /// Признак наличия гармошки + public DrawingAirBomber(EntityAirBomber plane) : base(200, 40) + { + EntityPlane = plane; + } + public DrawingAirBomber(int speed, double weight, Color bodyColor, Color + additionalColor, bool bomb, bool engine) : base(200, 40) { EntityPlane = new EntityAirBomber(speed, weight, bodyColor, additionalColor, - engine, bomb); + bomb, engine); + } + /// + /// перегрузка для создания автобуса в коллекцию базового типа + /// + /// скорость + /// вес + /// основной цвет + public DrawingAirBomber(int speed, double weight, Color bodyColor) : base(220, 50) + { + EntityPlane = new EntityAirBomber(speed, weight, bodyColor); } public override void DrawPlane(Graphics g) { diff --git a/ProjectBomber/ProjectBomber/Drawnings/DrawningPlane.cs b/ProjectBomber/ProjectBomber/Drawnings/DrawningPlane.cs index c7d2ec4..47745c6 100644 --- a/ProjectBomber/ProjectBomber/Drawnings/DrawningPlane.cs +++ b/ProjectBomber/ProjectBomber/Drawnings/DrawningPlane.cs @@ -29,6 +29,7 @@ public class DrawningPlane /// Верхняя кооридната прорисовки самолета /// protected int? _startPosY; + /// /// Ширина прорисовки самолета /// @@ -54,6 +55,11 @@ public class DrawningPlane /// public int GetHeight => _drawningPlaneHeight; + public DrawningPlane(EntityPlane plane) + { + EntityPlane = plane; + } + /// /// Пустой конструктор /// diff --git a/ProjectBomber/ProjectBomber/Drawnings/ExtintionDrawningPlane.cs b/ProjectBomber/ProjectBomber/Drawnings/ExtintionDrawningPlane.cs new file mode 100644 index 0000000..2b31112 --- /dev/null +++ b/ProjectBomber/ProjectBomber/Drawnings/ExtintionDrawningPlane.cs @@ -0,0 +1,52 @@ +using ProjectAirBomber.Entities; +using ProjectAirBomber.Drawnings; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectAirBomber.Drawnings; + +public static class ExtintionDrawningPlane +{ + + /// + /// Разделитель для записи информации по объекту в файл + /// + private static readonly string _separatorForObject = ":"; + /// + /// Создание объекта из строки + /// + /// Строка с данными для создания объекта + /// Объект + public static DrawningPlane? CreateDrawningPlane(this string info) + { + string[] strs = info.Split(_separatorForObject); + EntityPlane? plane = EntityAirBomber.CreateEntityAirBomber(strs); + if (plane != null && plane is EntityAirBomber plane1) + { + return new DrawingAirBomber(plane1); + } + plane = EntityPlane.CreateEntityPlane(strs); + if (plane != null) + { + return new DrawningPlane(plane); + } + return null; + } + /// + /// Получение данных для сохранения в файл + /// + /// Сохраняемый объект + /// Строка с данными по объекту + public static string GetDataForSave(this DrawningPlane drawningPlane) + { + string[]? array = drawningPlane?.EntityPlane?.GetStringRepresentation(); + if (array == null) + { + return string.Empty; + } + return string.Join(_separatorForObject, array); + } +} diff --git a/ProjectBomber/ProjectBomber/Entities/EntityAirBomber.cs b/ProjectBomber/ProjectBomber/Entities/EntityAirBomber.cs index 7de84a5..6c7ad7f 100644 --- a/ProjectBomber/ProjectBomber/Entities/EntityAirBomber.cs +++ b/ProjectBomber/ProjectBomber/Entities/EntityAirBomber.cs @@ -37,4 +37,37 @@ public class EntityAirBomber : EntityPlane Engine = engine; Bomb = bomb; } + + /// + /// Перегрузка конструктора для создания базового автобуса в коллекцию + /// + /// скрость + /// вес + /// основной цвет + public EntityAirBomber(int speed, double weigth, Color bodyColor) : base(speed, weigth, bodyColor) { } + + /// + /// Получение строк со значениями свойств объекта класса-сущности + /// + /// + public override string[] GetStringRepresentation() + { + return new[] { nameof(EntityAirBomber), Speed.ToString(), Weight.ToString(), BodyColor.Name, AdditionalColor.Name, + Engine.ToString(), Bomb.ToString()}; + } + + /// + /// Создание объекта из массива строк + /// + /// + /// + public static EntityAirBomber? CreateEntityAirBomber(string[] strs) + { + if (strs.Length != 7 || strs[0] != nameof(EntityAirBomber)) + { + return null; + } + return new EntityAirBomber(Convert.ToInt32(strs[1]), Convert.ToDouble(strs[2]), Color.FromName(strs[3]), Color.FromName(strs[4]), + Convert.ToBoolean(strs[5]), Convert.ToBoolean(strs[6])); + } } \ No newline at end of file diff --git a/ProjectBomber/ProjectBomber/Entities/EntityPlane.cs b/ProjectBomber/ProjectBomber/Entities/EntityPlane.cs index bf3d6af..9084b32 100644 --- a/ProjectBomber/ProjectBomber/Entities/EntityPlane.cs +++ b/ProjectBomber/ProjectBomber/Entities/EntityPlane.cs @@ -45,4 +45,28 @@ public class EntityPlane Weight = weight; BodyColor = bodyColor; } + + /// + /// Получение строк со значениями свойств объекта класса-сущности + /// + /// + public virtual string[] GetStringRepresentation() + { + return new[] { nameof(EntityPlane), Speed.ToString(), Weight.ToString(), BodyColor.Name }; + } + + /// + /// Создание объекта из массива строк + /// + /// + /// + public static EntityPlane? CreateEntityPlane(string[] strs) + { + if (strs.Length != 4 || strs[0] != nameof(EntityPlane)) + { + return null; + } + + return new EntityPlane(Convert.ToInt32(strs[1]), Convert.ToDouble(strs[2]), Color.FromName(strs[3])); + } } diff --git a/ProjectBomber/ProjectBomber/FormPlaneCollection.Designer.cs b/ProjectBomber/ProjectBomber/FormPlaneCollection.Designer.cs index 65d20ef..f3ab646 100644 --- a/ProjectBomber/ProjectBomber/FormPlaneCollection.Designer.cs +++ b/ProjectBomber/ProjectBomber/FormPlaneCollection.Designer.cs @@ -46,10 +46,17 @@ labelCollectionName = new Label(); textBoxCollectionName = new TextBox(); pictureBox = new PictureBox(); + menuStrip = new MenuStrip(); + файлToolStripMenuItem = new ToolStripMenuItem(); + saveToolStripMenuItem = new ToolStripMenuItem(); + loadToolStripMenuItem = new ToolStripMenuItem(); + saveFileDialog = new SaveFileDialog(); + openFileDialog = new OpenFileDialog(); groupBoxTools.SuspendLayout(); panelCompanyTools.SuspendLayout(); panelStorage.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)pictureBox).BeginInit(); + menuStrip.SuspendLayout(); SuspendLayout(); // // groupBoxTools @@ -59,9 +66,9 @@ groupBoxTools.Controls.Add(buttonCreateCompany); groupBoxTools.Controls.Add(panelStorage); groupBoxTools.Dock = DockStyle.Right; - groupBoxTools.Location = new Point(1152, 0); + groupBoxTools.Location = new Point(1152, 28); groupBoxTools.Name = "groupBoxTools"; - groupBoxTools.Size = new Size(250, 713); + groupBoxTools.Size = new Size(250, 685); groupBoxTools.TabIndex = 0; groupBoxTools.TabStop = false; groupBoxTools.Text = "Инструменты"; @@ -75,7 +82,7 @@ panelCompanyTools.Controls.Add(buttonDelPlane); panelCompanyTools.Dock = DockStyle.Bottom; panelCompanyTools.Enabled = false; - panelCompanyTools.Location = new Point(3, 437); + panelCompanyTools.Location = new Point(3, 409); panelCompanyTools.Name = "panelCompanyTools"; panelCompanyTools.Size = new Size(244, 273); panelCompanyTools.TabIndex = 9; @@ -135,20 +142,20 @@ comboBoxSelectionCompany.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxSelectionCompany.FormattingEnabled = true; comboBoxSelectionCompany.Items.AddRange(new object[] { "Ангар" }); - comboBoxSelectionCompany.Location = new Point(12, 403); + comboBoxSelectionCompany.Location = new Point(6, 375); comboBoxSelectionCompany.Name = "comboBoxSelectionCompany"; comboBoxSelectionCompany.Size = new Size(232, 28); comboBoxSelectionCompany.TabIndex = 0; // // buttonCreateCompany // - buttonCreateCompany.Location = new Point(6, 358); + buttonCreateCompany.Location = new Point(6, 340); buttonCreateCompany.Name = "buttonCreateCompany"; buttonCreateCompany.Size = new Size(232, 29); buttonCreateCompany.TabIndex = 6; buttonCreateCompany.Text = "Добавить Компанию"; buttonCreateCompany.UseVisualStyleBackColor = true; - buttonCreateCompany.Click += ButtonCreateCompany_Click; + buttonCreateCompany.Click += buttonCreateCompany_Click; // // panelStorage // @@ -173,7 +180,7 @@ buttonCollectionDel.TabIndex = 5; buttonCollectionDel.Text = "Удалить коллекцию"; buttonCollectionDel.UseVisualStyleBackColor = true; - buttonCollectionDel.Click += ButtonCollectionDel_Click; + buttonCollectionDel.Click += buttonCollectionDel_Click; // // listBoxCollection // @@ -192,7 +199,7 @@ buttonCollectionAdd.TabIndex = 3; buttonCollectionAdd.Text = "Добавить коллекцию"; buttonCollectionAdd.UseVisualStyleBackColor = true; - buttonCollectionAdd.Click += ButtonCollectionAdd_Click; + buttonCollectionAdd.Click += buttonCollectionAdd_Click; // // radioButtonList // @@ -235,12 +242,53 @@ // pictureBox // pictureBox.Dock = DockStyle.Fill; - pictureBox.Location = new Point(0, 0); + pictureBox.Location = new Point(0, 28); pictureBox.Name = "pictureBox"; - pictureBox.Size = new Size(1152, 713); + pictureBox.Size = new Size(1152, 685); pictureBox.TabIndex = 3; pictureBox.TabStop = false; // + // menuStrip + // + menuStrip.ImageScalingSize = new Size(20, 20); + menuStrip.Items.AddRange(new ToolStripItem[] { файлToolStripMenuItem }); + menuStrip.Location = new Point(0, 0); + menuStrip.Name = "menuStrip"; + menuStrip.Size = new Size(1402, 28); + menuStrip.TabIndex = 4; + menuStrip.Text = "menuStrip"; + // + // файлToolStripMenuItem + // + файлToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { saveToolStripMenuItem, loadToolStripMenuItem }); + файлToolStripMenuItem.Name = "файлToolStripMenuItem"; + файлToolStripMenuItem.Size = new Size(59, 24); + файлToolStripMenuItem.Text = "Файл"; + // + // saveToolStripMenuItem + // + saveToolStripMenuItem.Name = "saveToolStripMenuItem"; + saveToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.S; + saveToolStripMenuItem.Size = new Size(227, 26); + saveToolStripMenuItem.Text = "Сохранение"; + saveToolStripMenuItem.Click += SaveToolStripMenuItem_Click; + // + // loadToolStripMenuItem + // + loadToolStripMenuItem.Name = "loadToolStripMenuItem"; + loadToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.L; + loadToolStripMenuItem.Size = new Size(227, 26); + loadToolStripMenuItem.Text = "Загрузка"; + loadToolStripMenuItem.Click += LoadToolStripMenuItem_Click; + // + // saveFileDialog + // + saveFileDialog.Filter = "txt file | *.txt"; + // + // openFileDialog + // + openFileDialog.Filter = "txt file | *.txt"; + // // FormPlaneCollection // AutoScaleDimensions = new SizeF(8F, 20F); @@ -248,6 +296,8 @@ ClientSize = new Size(1402, 713); Controls.Add(pictureBox); Controls.Add(groupBoxTools); + Controls.Add(menuStrip); + MainMenuStrip = menuStrip; Name = "FormPlaneCollection"; Text = "Коллекция Самолетов"; groupBoxTools.ResumeLayout(false); @@ -256,7 +306,10 @@ panelStorage.ResumeLayout(false); panelStorage.PerformLayout(); ((System.ComponentModel.ISupportInitialize)pictureBox).EndInit(); + menuStrip.ResumeLayout(false); + menuStrip.PerformLayout(); ResumeLayout(false); + PerformLayout(); } #endregion @@ -279,5 +332,11 @@ private Button buttonCreateCompany; private Button buttonCollectionDel; private Panel panelCompanyTools; + private MenuStrip menuStrip; + private ToolStripMenuItem файлToolStripMenuItem; + private ToolStripMenuItem saveToolStripMenuItem; + private ToolStripMenuItem loadToolStripMenuItem; + private SaveFileDialog saveFileDialog; + private OpenFileDialog openFileDialog; } } \ No newline at end of file diff --git a/ProjectBomber/ProjectBomber/FormPlaneCollection.cs b/ProjectBomber/ProjectBomber/FormPlaneCollection.cs index b8299f7..37d3e1a 100644 --- a/ProjectBomber/ProjectBomber/FormPlaneCollection.cs +++ b/ProjectBomber/ProjectBomber/FormPlaneCollection.cs @@ -12,8 +12,7 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -namespace ProjectAirBomber -{ +namespace ProjectAirBomber; public partial class FormPlaneCollection : Form { private readonly StorageCollection _storageCollection; @@ -28,29 +27,34 @@ namespace ProjectAirBomber InitializeComponent(); _storageCollection = new(); } - private void ComboBoxSelectionCompany_SelectedIndexChanged(object sender, EventArgs e) + + private void SetPlane(DrawningPlane plane) { - panelCompanyTools.Enabled = false; + { + if (_company == null || plane == null) + { + return; + } + if (_company + plane != -1) + { + MessageBox.Show("Объект добавлен"); + pictureBox.Image = _company.Show(); + } + else + { + MessageBox.Show("Не удалось добавить объект"); + } + } } - - - private void SetPlane(DrawningPlane? Plane) + /// + /// Выбор компании + /// + /// + /// + private void comboBoxSelectionCompany_SelectedIndexChanged(object sender, EventArgs e) { - if (_company == null || Plane == null) - { - return; - } - - if (_company + Plane != -1) - { - MessageBox.Show("Объект добавлен"); - pictureBox.Image = _company.Show(); - } - else - { - MessageBox.Show("Не удалось добавить объект"); - } + panelCompanyTools.Enabled = false; } /// @@ -143,7 +147,7 @@ namespace ProjectAirBomber } - private void ButtonCollectionAdd_Click(object sender, EventArgs e) + private void buttonCollectionAdd_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(textBoxCollectionName.Text) || (!radioButtonList.Checked && !radioButtonMassive.Checked)) { @@ -163,7 +167,7 @@ namespace ProjectAirBomber _storageCollection.AddCollection(textBoxCollectionName.Text, collectionType); RefreshListBoxItems(); } - private void ButtonCollectionDel_Click(object sender, EventArgs e) + private void buttonCollectionDel_Click(object sender, EventArgs e) { if (listBoxCollection.SelectedIndex < 0 || listBoxCollection.SelectedItems == null) { @@ -177,7 +181,7 @@ namespace ProjectAirBomber _storageCollection.DelCollection(listBoxCollection.SelectedItem.ToString()); RefreshListBoxItems(); } - private void ButtonCreateCompany_Click(object sender, EventArgs e) + private void buttonCreateCompany_Click(object sender, EventArgs e) { if (listBoxCollection.SelectedIndex < 0 || listBoxCollection.SelectedItem == null) { @@ -202,6 +206,44 @@ namespace ProjectAirBomber panelCompanyTools.Enabled = true; RefreshListBoxItems(); } + /// + /// + /// + /// + /// + private void LoadToolStripMenuItem_Click(object sender, EventArgs e) + { + if (openFileDialog.ShowDialog() == DialogResult.OK) + { + if (_storageCollection.LoadData(openFileDialog.FileName)) + { + MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); + RefreshListBoxItems(); + } + else + { + MessageBox.Show("Не загрузилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + } + /// + /// + /// + /// + /// + private void SaveToolStripMenuItem_Click(object sender, EventArgs e) + { + if (saveFileDialog.ShowDialog() == DialogResult.OK) + { + if (_storageCollection.SaveData(saveFileDialog.FileName)) + { + MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); + } + else + { + MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + } } -} diff --git a/ProjectBomber/ProjectBomber/FormPlaneCollection.resx b/ProjectBomber/ProjectBomber/FormPlaneCollection.resx index af32865..ee1748a 100644 --- a/ProjectBomber/ProjectBomber/FormPlaneCollection.resx +++ b/ProjectBomber/ProjectBomber/FormPlaneCollection.resx @@ -117,4 +117,13 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17, 17 + + + 145, 17 + + + 310, 17 + \ No newline at end of file -- 2.25.1