using ProjectElectricLocomotive.CollectionGenericObjects; using ProjectElectricLocomotive.Drawnings; 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; namespace ProjectElectricLocomotive; /// /// Форма работы с компанией и ее коллекцией /// public partial class FormLocomotiveCollection : Form { /// /// Хранилище коллекций /// private readonly StorageCollection _storageCollection; /// /// Компания /// private AbstractCompany? _company = null; /// /// Конструктор /// public FormLocomotiveCollection() { InitializeComponent(); _storageCollection = new(); } /// /// Выбор компании /// /// /// private void comboBoxSelectorCompany_SelectedIndexChanged(object sender, EventArgs e) { panelCompanyTools.Enabled = false; } /// /// Добавление локомотива /// /// /// private void buttonAddLocomotive_Click(object sender, EventArgs e) { FormElectricLocomotiveConfig form = new(); //TODO передать метод form.Show(); form.AddEvent(SetLocomotive); form.Show(); } /// /// Добавление автомобиля в коллекцию /// /// private void SetLocomotive(DrawningLocomotive? locomotive) { if(_company == null || locomotive == null) { return; } if (_company + locomotive != -1) { pictureBox.Image = _company.Show(); MessageBox.Show("Обьект добавлен"); pictureBox.Image = _company.Show(); } else { MessageBox.Show("Не удалось добавить объект"); } } /// /// Удаление объекта /// /// /// private void buttonDelLocomotive_Click(object sender, EventArgs e) { { if (string.IsNullOrEmpty(maskedTextBox.Text) || _company == null) { return; } else { if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) { return; } int pos = Convert.ToInt32(maskedTextBox.Text); if (_company - pos != null) { MessageBox.Show("Объект удален"); pictureBox.Image = _company.Show(); } else { MessageBox.Show("Не удалось удалить объект"); } } } } /// /// Перерисовка коллекции /// /// /// private void buttonGoToCheck_Click(object sender, EventArgs e) { if (_company == null) { return; } DrawningLocomotive? locomotive = null; int counter = 100; while (locomotive == null) { locomotive = _company.GetRandomObject(); counter--; if (counter <= 0) { break; } } if (locomotive == null) { return; } FormlectricLocomotive form = new() { SetLocomotive = locomotive }; form.ShowDialog(); } /// /// Передача объекта в другую форму /// /// /// private void buttonRefresh_Click(object sender, EventArgs e) { if (_company == null) { return; } pictureBox.Image = _company.Show(); } /// /// Обновление списка в listBoxCollection /// private void RerfreshListBoxItems() { listBoxCollection.Items.Clear(); for (int i = 0; i < _storageCollection.Keys?.Count; ++i) { string? colName = _storageCollection.Keys?[i]; if (!string.IsNullOrEmpty(colName)) { listBoxCollection.Items.Add(colName); } } } /// /// Создание компании /// /// /// private void buttonCreateCompany_Click(object sender, EventArgs e) { if (listBoxCollection.SelectedIndex < 0 || listBoxCollection.SelectedItem == null) { MessageBox.Show("Коллекция не выбрана"); return; } ICollectionGenericObjects? collection = _storageCollection[listBoxCollection.SelectedItem.ToString() ?? string.Empty]; if (collection == null) { MessageBox.Show("Коллекция не проинициализирована"); return; } switch (comboBoxSelectorCompany.Text) { case "Депо": _company = new LocomotiveDepo(pictureBox.Width, pictureBox.Height, collection); break; } panelCompanyTools.Enabled = true; RerfreshListBoxItems(); } /// /// Удаление коллекции /// /// /// private void buttonCollectionDel_Click(object sender, EventArgs e) { if (listBoxCollection.SelectedIndex < 0 || listBoxCollection.SelectedItem == null) { MessageBox.Show("Коллекция не выбрана"); return; } if (MessageBox.Show("Удалить коллекцию?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) { return; } _storageCollection.DelCollection(listBoxCollection.SelectedItem.ToString()); RerfreshListBoxItems(); // TODO прописать логику удаления элемента из коллекции // нужно убедиться, что есть выбранная коллекция // спросить у пользователя через MessageBox, что он подтверждает, что хочет удалить запись // удалить и обновить ListBox } /// /// Добавление коллекции /// /// /// private void buttonCollectionAdd_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(textBoxCollectionName.Text) || (!radioButtonList.Checked && !radioButtonMassive.Checked)) { MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } CollectionType collectionType = CollectionType.None; if (radioButtonMassive.Checked) { collectionType = CollectionType.Massive; } else if (radioButtonList.Checked) { collectionType = CollectionType.List; } _storageCollection.AddCollection(textBoxCollectionName.Text, collectionType); RerfreshListBoxItems(); } }