using ProjectStormtrooper.CollectionGenericObjects; using ProjectStormtrooper.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 ProjectStormtrooper; /// /// Форма работы с компанией и ее коллекцией /// public partial class FormStormtrooperCollection : Form { /// /// Хранилище коллекций /// private readonly StorageCollection _storageCollection; /// /// Компания /// private AbstractCompany? _company; /// /// Конструктор /// public FormStormtrooperCollection() { InitializeComponent(); _storageCollection = new(); } /// /// Выбор компании /// /// /// private void СomboBoxSelectorCompany_SelectedIndexChanged(object sender, EventArgs e) { panelCompanyTools.Enabled = true; } /// /// Добавление базового штурмовика /// /// /// private void ButtonAddStormtrooperBase_Click(object sender, EventArgs e) { FormStormtrooperConfig form = new(); form.Show(); // TODO передать метод form.AddEvent(SetStormtrooper); } /// /// Добавление штурмовика в коллекцию /// /// private void SetStormtrooper(DrawningStormtrooperBase stormtrooper) { if (_company == null || stormtrooper == null) { return; } if (_company + stormtrooper != -1) { MessageBox.Show("Объект добавлен"); pictureBox.Image = _company.Show(); } else { MessageBox.Show("Не удалось добавить объект"); } } /// /// Удаление объекта /// /// /// private void ButtonRemoveStormtrooper_Click(object sender, EventArgs e) { if (_company == null) { return; } if (string.IsNullOrEmpty(maskedTextBox.Text) || _company == null) { return; } if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) { 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; } DrawningStormtrooperBase? stormtrooper = null; int counter = 100; while (stormtrooper == null) { stormtrooper = _company.GetRandomObject(); counter--; if (counter < -0) { break; } } if (stormtrooper == null) { return; } FormStormtrooper form = new() { SetStormtrooper = stormtrooper }; form.ShowDialog(); } /// /// Перерисовка коллекции /// /// /// private void ButtonRefresh_Click(object sender, EventArgs e) { if (_company == null) { return; } pictureBox.Image = _company.Show(); } /// /// Добавление коллекции /// /// /// Удаление коллекции /// /// /// private void ButtonCollectionDel_Click(object sender, EventArgs e) { // TODO прописать логику удаления элемента из коллекции // нужно убедиться, что есть выбранная коллекция // спросить у пользователя через MessageBox, что он подтверждает, что хочет удалить запись // удалить и обновить ListBox if (listBoxCollection.SelectedIndex < 0 || listBoxCollection.SelectedItem == null) { MessageBox.Show("Коллекция не выбрана"); return; } if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) { return; } _storageCollection.DelCollection(listBoxCollection.SelectedItem.ToString()); RerfreshListBoxItems(); } /// /// Добавление списка в 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 StormtrooperSharingService(pictureBox.Width, pictureBox.Height, collection); break; } panelCompanyTools.Enabled = true; RerfreshListBoxItems(); } }