using ProjectAirplaneWithRadar.CollectionGenericObjects; using ProjectAirplaneWithRadar.Drawnings; namespace ProjectAirplaneWithRadar { /// /// Форма работы с компанией и ее коллекцией /// public partial class FormAirplaneCollection : Form { /// /// Хранилише коллекций /// private readonly StorageCollection _storageCollection; /// /// Компания /// private AbstractCompany? _company = null; /// /// Конструктор /// public FormAirplaneCollection() { InitializeComponent(); _storageCollection = new(); } /// /// Выбор компании /// /// /// private void ComboBoxSelectorCompany_SelectedIndexChanged(object sender, EventArgs e) { panelCompanyTools.Enabled = false; } /// /// Добавление самолета /// /// /// private void ButtonAddAirplane_Click(object sender, EventArgs e) { FormAirplaneConfig form = new(); form.Show(); form.AddEvent(SetAirplane); } /// /// Добавление самолета в коллекцию /// /// private void SetAirplane(DrawningAirplane airplane) { if (_company == null || airplane == null) { return; } if (_company + airplane != -1) { MessageBox.Show("Объект добавлен"); pictureBox.Image = _company.Show(); } else { MessageBox.Show("Не удалось добавить объект"); } } /// /// Удаление объекта /// /// /// private void ButtonRemoveAirplane_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(maskedTextBoxPosition.Text) || _company == null) { return; } if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) { return; } int pos = Convert.ToInt32(maskedTextBoxPosition.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; } DrawningAirplane? plane = null; int counter = 100; while (plane == null) { plane = _company.GetRandomObject(); counter--; if (counter <= 0) { break; } } if (plane == null) { return; } FormAirplaneWithRadar form = new() { SetAirplane = plane }; form.ShowDialog(); } /// /// Перерисовка коллекции /// /// /// private void ButtonRefresh_Click(object sender, EventArgs e) { if (_company == null) { return; } pictureBox.Image = _company.Show(); } /// /// Добавление коллекции /// /// /// 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); RefreshListBoxItems(); } /// /// Удаление коллекции /// /// /// private void ButtonCollectionDel_Click(object sender, EventArgs e) { if (listBoxCollection.SelectedItems == null || listBoxCollection.SelectedIndex < 0) { MessageBox.Show("Коллекция не выбрана"); return; } if (MessageBox.Show("Удалить коллекцию?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) { return; } _storageCollection.DelCollection(listBoxCollection.SelectedItem.ToString()); RefreshListBoxItems(); } /// /// Обновление списка в listBoxCollection /// private void RefreshListBoxItems() { 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 PlaneSharingService(pictureBox.Width, pictureBox.Height, collection); break; } panelCompanyTools.Enabled = true; RefreshListBoxItems(); } /// /// Обработка нажатия "Сохранение" /// /// /// 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); } } } /// /// Обработка нажатия "Загрузка" /// /// /// 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); } } } } }