using WarmlyShip.Generics; 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 WarmlyShip.DrawningObjects; using WarmlyShip.MovementStrategy; namespace WarmlyShip { /// /// Форма для работы с набором объектов класса DrawningShip /// public partial class FormShipCollection : Form { /// /// Набор объектов /// private readonly ShipsGenericStorage _storage; /// /// Конструктор /// public FormShipCollection() { InitializeComponent(); _storage = new ShipsGenericStorage(pictureBoxCollection.Width, pictureBoxCollection.Height); } /// /// Заполнение ListBoxObjects /// private void ReloadObjects() { int index = ListBoxObjects.SelectedIndex; ListBoxObjects.Items.Clear(); for (int i = 0; i < _storage.Keys.Count; i++) { ListBoxObjects.Items.Add(_storage.Keys[i]); } if (ListBoxObjects.Items.Count > 0 && (index == -1 || index >= ListBoxObjects.Items.Count)) { ListBoxObjects.SelectedIndex = 0; } else if (ListBoxObjects.Items.Count > 0 && index > -1 && index < ListBoxObjects.Items.Count) { ListBoxObjects.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(); } /// /// Выбор набора /// /// /// private void ListBoxObjects_SelectedIndexChanged(object sender, EventArgs e) { pictureBoxCollection.Image = _storage[ListBoxObjects.SelectedItem?.ToString() ?? string.Empty]?.ShowShips(); } /// /// Удаление набора /// /// /// private void ButtonDelObject_Click(object sender, EventArgs e) { if (ListBoxObjects.SelectedIndex == -1) { return; } if (MessageBox.Show($"Удалить объект {ListBoxObjects.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { _storage.DelSet(ListBoxObjects.SelectedItem.ToString() ?? string.Empty); ReloadObjects(); } } /// /// Добавление объекта в набор /// /// /// private void ButtonAddShip_Click(object sender, EventArgs e) { if (ListBoxObjects.SelectedIndex == -1) { return; } var obj = _storage[ListBoxObjects.SelectedItem.ToString() ?? string.Empty]; if (obj == null) { return; } FormShipConfig form = new(); form.Show(); Action? shipDelegate = new((m) => { bool isAdditionSuccessful = (obj + m); if (isAdditionSuccessful) { MessageBox.Show("Объект добавлен"); m.ChangePictureBoxSize(pictureBoxCollection.Width, pictureBoxCollection.Height); pictureBoxCollection.Image = obj.ShowShips(); } else { MessageBox.Show("Не удалось добавить объект"); } }); form.AddEvent(shipDelegate); } /// /// Удаление объекта из набора /// /// /// private void ButtonDeleteShip_Click(object sender, EventArgs e) { if (ListBoxObjects.SelectedIndex == -1) { return; } var obj = _storage[ListBoxObjects.SelectedItem.ToString() ?? string.Empty]; if (obj == null) { return; } if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) { return; } int pos = Convert.ToInt32(maskedTextBoxNumber.Text); if (obj - pos != null) { MessageBox.Show("Объект удален"); pictureBoxCollection.Image = obj.ShowShips(); } else { MessageBox.Show("Не удалось удалить объект"); } } /// /// Обновление рисунка по набору /// /// /// private void ButtonRefreshCollection_Click(object sender, EventArgs e) { if (ListBoxObjects.SelectedIndex == -1) { return; } var obj = _storage[ListBoxObjects.SelectedItem.ToString() ?? string.Empty]; if (obj == null) { return; } pictureBoxCollection.Image = obj.ShowShips(); } } }