326 lines
12 KiB
C#
326 lines
12 KiB
C#
using Microsoft.Extensions.Logging;
|
||
using ProjectAirplaneWithRadar.CollectionGenericObjects;
|
||
using ProjectAirplaneWithRadar.Drawnings;
|
||
using ProjectAirplaneWithRadar.Exceptions;
|
||
|
||
namespace ProjectAirplaneWithRadar
|
||
{
|
||
/// <summary>
|
||
/// Форма работы с компанией и ее коллекцией
|
||
/// </summary>
|
||
public partial class FormAirplaneCollection : Form
|
||
{
|
||
/// <summary>
|
||
/// Хранилише коллекций
|
||
/// </summary>
|
||
private readonly StorageCollection<DrawningAirplane> _storageCollection;
|
||
|
||
/// <summary>
|
||
/// Компания
|
||
/// </summary>
|
||
private AbstractCompany? _company = null;
|
||
|
||
/// <summary>
|
||
/// Логер
|
||
/// </summary>
|
||
private readonly ILogger _logger;
|
||
|
||
/// <summary>
|
||
/// Конструктор
|
||
/// </summary>
|
||
public FormAirplaneCollection(ILogger<FormAirplaneCollection> logger)
|
||
{
|
||
InitializeComponent();
|
||
_storageCollection = new();
|
||
_logger = logger;
|
||
_logger.LogInformation("Форма загрузилась");
|
||
}
|
||
|
||
/// <summary>
|
||
/// Выбор компании
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void ComboBoxSelectorCompany_SelectedIndexChanged(object sender, EventArgs e)
|
||
{
|
||
panelCompanyTools.Enabled = false;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Добавление самолета
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void ButtonAddAirplane_Click(object sender, EventArgs e)
|
||
{
|
||
FormAirplaneConfig form = new();
|
||
form.Show();
|
||
form.AddEvent(SetAirplane);
|
||
}
|
||
|
||
/// <summary>
|
||
/// Добавление самолета в коллекцию
|
||
/// </summary>
|
||
/// <param name="airplane"></param>
|
||
private void SetAirplane(DrawningAirplane airplane)
|
||
{
|
||
try
|
||
{
|
||
if (_company == null || airplane == null)
|
||
{
|
||
return;
|
||
}
|
||
|
||
if (_company + airplane != -1)
|
||
{
|
||
MessageBox.Show("Объект добавлен");
|
||
pictureBox.Image = _company.Show();
|
||
_logger.LogInformation("Добавлен объект: {0}", airplane.GetDataForSave());
|
||
}
|
||
}
|
||
catch (CollectionOverflowException ex)
|
||
{
|
||
MessageBox.Show(ex.Message);
|
||
_logger.LogError("Ошибка: {Message}", ex.Message);
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Удаление объекта
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
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;
|
||
}
|
||
|
||
try
|
||
{
|
||
int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
|
||
if (_company - pos != null)
|
||
{
|
||
MessageBox.Show("Объект удален");
|
||
pictureBox.Image = _company.Show();
|
||
_logger.LogInformation("Удалён объект по позиции {0}", pos);
|
||
}
|
||
}
|
||
catch (PositionOutOfCollectionException ex)
|
||
{
|
||
MessageBox.Show(ex.Message);
|
||
_logger.LogError("Ошибка: {Message}", ex.Message);
|
||
}
|
||
catch (ObjectNotFoundException ex)
|
||
{
|
||
MessageBox.Show(ex.Message);
|
||
_logger.LogError("Ошибка: {Message}", ex.Message);
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Передача объекта в другую форму
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void buttonGoToCheck_Click(object sender, EventArgs e)
|
||
{
|
||
if (_company == null)
|
||
{
|
||
return;
|
||
}
|
||
|
||
try
|
||
{
|
||
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();
|
||
}
|
||
catch (ObjectNotFoundException)
|
||
{
|
||
_logger.LogError("Ошибка при передаче объекта на FormAirplaneWithRadar");
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Перерисовка коллекции
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void ButtonRefresh_Click(object sender, EventArgs e)
|
||
{
|
||
if (_company == null)
|
||
{
|
||
return;
|
||
}
|
||
|
||
pictureBox.Image = _company.Show();
|
||
}
|
||
|
||
/// <summary>
|
||
/// Добавление коллекции
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void ButtonCollectionAdd_Click(object sender, EventArgs e)
|
||
{
|
||
if (string.IsNullOrEmpty(textBoxCollectionName.Text) || (!radioButtonList.Checked && !radioButtonMassive.Checked))
|
||
{
|
||
MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
_logger.LogError("Ошибка: Заполнены не все данные для добавления коллекции");
|
||
return;
|
||
}
|
||
|
||
CollectionType collectionType = CollectionType.None;
|
||
if (radioButtonMassive.Checked)
|
||
collectionType = CollectionType.Massive;
|
||
else if (radioButtonList.Checked)
|
||
collectionType = CollectionType.List;
|
||
|
||
_storageCollection.AddCollection(textBoxCollectionName.Text, collectionType);
|
||
RefreshListBoxItems();
|
||
_logger.LogInformation("Добавлена коллекция: {Collection} типа: {Type}", textBoxCollectionName.Text, collectionType);
|
||
}
|
||
|
||
/// <summary>
|
||
/// Удаление коллекции
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
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();
|
||
_logger.LogInformation("Коллекция удалена: {0}", textBoxCollectionName.Text);
|
||
}
|
||
|
||
/// <summary>
|
||
/// Обновление списка в listBoxCollection
|
||
/// </summary>
|
||
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);
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Создание компании
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void ButtonCreateCompany_Click(object sender, EventArgs e)
|
||
{
|
||
if (listBoxCollection.SelectedIndex < 0 || listBoxCollection.SelectedItem == null)
|
||
{
|
||
MessageBox.Show("Коллекция не выбрана");
|
||
return;
|
||
}
|
||
|
||
ICollectionGenericObjects<DrawningAirplane>? 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);
|
||
_logger.LogInformation("Создна компания типа {Company}, коллекция: {Collection}", comboBoxSelectorCompany.Text, textBoxCollectionName.Text);
|
||
_logger.LogInformation("Создана компания на коллекции: {Collection}", textBoxCollectionName.Text);
|
||
break;
|
||
}
|
||
|
||
panelCompanyTools.Enabled = true;
|
||
RefreshListBoxItems();
|
||
}
|
||
|
||
/// <summary>
|
||
/// Обработка нажатия "Сохранение"
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void SaveToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
if (saveFileDialog.ShowDialog() == DialogResult.OK)
|
||
{
|
||
try
|
||
{
|
||
_storageCollection.SaveData(saveFileDialog.FileName);
|
||
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||
_logger.LogInformation("Сохранение в файл: {filename}", saveFileDialog.FileName);
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
_logger.LogError("Ошибка: {Message}", ex.Message);
|
||
}
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Обработка нажатия "Загрузка"
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void LoadToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
if (openFileDialog.ShowDialog() == DialogResult.OK)
|
||
{
|
||
try
|
||
{
|
||
_storageCollection.LoadData(openFileDialog.FileName);
|
||
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||
RefreshListBoxItems();
|
||
_logger.LogInformation("Загрузка из файла: {filename}", saveFileDialog.FileName);
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
MessageBox.Show($"Не загрузилось: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
_logger.LogError("Ошибка: {Message}", ex.Message);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
} |