using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Reflection.Metadata.Ecma335; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using Cruiser.Drawing; using Cruiser.Generics; using Cruiser.MovementStrategy; using Cruiser.Exceptions; using Microsoft.Extensions.Logging; using System.Xml.Linq; namespace Cruiser { /// /// Форма для работы с набором объектов класса DrawingCruiser /// public partial class FormCruiserCollection : Form { /// /// Набор объектов /// private readonly CruisersGenericStorage _storage; /// /// Логер /// private readonly ILogger _logger; /// /// Конструктор /// public FormCruiserCollection(ILogger logger) { InitializeComponent(); _storage = new CruisersGenericStorage(pictureBoxCollection.Width, pictureBoxCollection.Height); _logger = logger; } /// /// Заполнение listBoxObjects /// private void ReloadObjects() { int index = listBoxStorages.SelectedIndex; listBoxStorages.Items.Clear(); for (int i = 0; i < _storage.Keys.Count; i++) { listBoxStorages.Items.Add(_storage.Keys[i].Name); } if (listBoxStorages.Items.Count > 0 && (index == -1 || index >= listBoxStorages.Items.Count)) { listBoxStorages.SelectedIndex = 0; } else if (listBoxStorages.Items.Count > 0 && index > -1 && index < listBoxStorages.Items.Count) { listBoxStorages.SelectedIndex = index; } } /// /// Добавление набора в коллекцию /// /// /// 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(); _logger.LogInformation($"Добавлен набор:{textBoxStorageName.Text}"); } /// /// Удаление набора /// /// /// private void ButtonDelObject_Click(object sender, EventArgs e) { if (listBoxStorages.SelectedIndex == -1) { return; } if (MessageBox.Show($"Удалить объект{listBoxStorages.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { string name = listBoxStorages.SelectedItem.ToString() ?? string.Empty; //добавил для удаления повторяющегося кода _storage.DelSet(name); ReloadObjects(); _logger.LogInformation($"Удален набор: {name}"); } } /// /// Выбор набора /// /// /// private void ListBoxObjects_SelectedIndexChanged(object sender, EventArgs e) { pictureBoxCollection.Image = _storage[listBoxStorages.SelectedItem?.ToString() ?? string.Empty]?.ShowCruiser(); } /// /// Добавление объекта в набор /// /// /// private void AddCruiser(DrawingCruiser cruiser) { if (listBoxStorages.SelectedIndex == -1) { _logger.LogWarning($"Добавление круизера не удалось (индекс вне границ)"); return; } var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty]; if (obj == null) { _logger.LogWarning($"Добавление круизера не удалось (нет хранилища)"); return; } try { if ((obj + cruiser)) { MessageBox.Show("Объект добавлен"); _logger.LogInformation($"Добавление круизера успешно {listBoxStorages.SelectedItem.ToString()}"); pictureBoxCollection.Image = obj.ShowCruiser(); } else { MessageBox.Show("Не удалось добавить объект"); } } catch (ApplicationException ex) { MessageBox.Show(ex.Message); } catch (ArgumentException ex) { MessageBox.Show(ex.Message); _logger.LogWarning($"Не удалось добавить объект: {ex.Message}"); } } /// /// Удаление объекта из набора /// /// /// private void ButtonRemoveCar_Click(object sender, EventArgs e) { if (listBoxStorages.SelectedIndex == -1) { _logger.LogWarning($"Удаление круизера не удалось (индекс вне границ)"); return; } var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty]; if (obj == null) { _logger.LogWarning($"Удаление круизера не удалось (нет хранилища)"); return; } if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) { _logger.LogWarning($"Удаление круизера не удалось (выбран вариант 'Нет')"); return; } int pos = Convert.ToInt32(textBoxNumber.Text); try { if (obj - pos != null) { _logger.LogInformation($"Удаление круизера успешно {listBoxStorages.SelectedItem.ToString()} {pos}"); MessageBox.Show("Объект удален"); pictureBoxCollection.Image = obj.ShowCruiser(); } else { _logger.LogWarning($"Удаление круизера не удалось(обьект не найден)"); MessageBox.Show("Не удалось удалить объект"); } } catch (CruiserNotFoundException ex) { _logger.LogWarning($"Удаление круизера не удалось {ex.Message}"); MessageBox.Show(ex.Message); } } /// /// Обновление рисунка по набору /// /// /// private void ButtonRefreshCollection_Click(object sender, EventArgs e) { if (listBoxStorages.SelectedIndex == -1) { return; } var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty]; if (obj == null) { return; } pictureBoxCollection.Image = obj.ShowCruiser(); } /// /// Добавление объекта /// /// /// private void ButtonAddCruiser_Click(object sender, EventArgs e) { var formCruiserConfig = new FormCruiserConfig(); formCruiserConfig.Show(); formCruiserConfig.AddEvent(AddCruiser); } /// /// Обработка нажатия "Сохранение" /// /// /// private void SaveToolStripMenuItem_Click(object sender, EventArgs e) { if (saveFileDialog.ShowDialog() == DialogResult.OK) { if (_storage.SaveData(saveFileDialog.FileName)) { MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Не сохранилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } /// /// Обработка нажатия "Загрузка" /// /// /// private void LoadToolStripMenuItem_Click(object sender, EventArgs e) { if (openFileDialog.ShowDialog() == DialogResult.OK) { if (_storage.LoadData(openFileDialog.FileName)) { MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); ReloadObjects(); } else { MessageBox.Show("Не загрузилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } /// /// Сортировка по типу /// /// /// private void ButtonSortByType_Click(object sender, EventArgs e) => CompareCruiser(new CruiserCompareByType()); /// /// Сортировка по цвету /// /// /// private void ButtonSortByColor_Click(object sender, EventArgs e) => CompareCruiser(new CruiserCompareByColor()); /// /// Сортировка по сравнителю /// /// private void CompareCruiser(IComparer comparer) { if (listBoxStorages.SelectedIndex == -1) { return; } var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty]; if (obj == null) { return; } obj.Sort(comparer); pictureBoxCollection.Image = obj.ShowCruiser(); } } }