PIbd-23-Kondratev-N.D.-Gaso.../GasolineTanker/ProjectGasolineTanker/FormTruckCollection.cs

258 lines
9.2 KiB
C#
Raw Normal View History

2024-10-03 01:40:53 +04:00
using System;
2024-10-03 01:45:35 +04:00
using Microsoft.Extensions.Logging;
2024-10-03 01:40:53 +04:00
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 ProjectGasolineTanker.Generic;
2024-10-03 01:42:04 +04:00
using ProjectGasolineTanker.Drawings;
2024-10-03 01:40:53 +04:00
using ProjectGasolineTanker.MovementStratg;
2024-10-03 01:45:35 +04:00
using ProjectGasolineTanker.Exceptions;
2024-10-03 01:42:04 +04:00
using ProjectGasolineTanker;
2024-10-03 01:45:35 +04:00
using System.Xml.Linq;
2024-10-03 01:46:41 +04:00
using ProjectGasolineTanker.Generics;
2024-10-03 01:40:53 +04:00
namespace ProjectGasolineTanker
{
public partial class FormTruckCollection : Form
{
2024-10-03 01:43:12 +04:00
// Набор объектов
2024-10-03 01:42:04 +04:00
private readonly TruckGenericStorage _storage;
2024-10-03 01:45:35 +04:00
// Логер
private readonly ILogger _logger;
2024-10-03 01:40:53 +04:00
2024-10-03 01:45:35 +04:00
public FormTruckCollection(ILogger<FormTruckCollection> logger)
2024-10-03 01:40:53 +04:00
{
InitializeComponent();
2024-10-03 01:42:04 +04:00
_storage = new TruckGenericStorage(pictureBoxCollection.Width, pictureBoxCollection.Height);
2024-10-03 01:45:35 +04:00
_logger = logger;
2024-10-03 01:42:04 +04:00
}
2024-10-03 01:46:41 +04:00
private void buttonSortByType_Click(object sender, EventArgs e) => CompareTruck(new TruckCompareByType());
private void Sort_Color_button_Click(object sender, EventArgs e) => CompareTruck(new TruckCompareByColor());
// Сортировка по сравнителю
private void CompareTruck(IComparer<DrawingTruck?> comparer)
{
if (listBoxStorages.SelectedIndex == -1)
{
return;
}
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
if (obj == null)
{
return;
}
obj.Sort(comparer);
pictureBoxCollection.Image = obj.ShowTruck();
}
2024-10-03 01:43:12 +04:00
// заполнение лист бокс
2024-10-03 01:42:04 +04:00
private void ReloadObjects()
{
int index = listBoxStorages.SelectedIndex;
listBoxStorages.Items.Clear();
for (int i = 0; i < _storage.Keys.Count; i++)
{
2024-10-03 01:46:41 +04:00
listBoxStorages.Items.Add(_storage.Keys[i].Name);
2024-10-03 01:42:04 +04:00
}
if (listBoxStorages.Items.Count > 0 && (index == -1 || index >= listBoxStorages.Items.Count))
{
listBoxStorages.SelectedIndex = 0;
}
else if (listBoxStorages.Items.Count > 0 && index > -1 && index < listBoxStorages.Items.Count)
{
listBoxStorages.SelectedIndex = index;
}
2024-10-03 01:40:53 +04:00
}
2024-10-03 01:43:12 +04:00
// добавить набор в коллекцию
2024-10-03 01:42:04 +04:00
private void buttonAddStorage_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(textBoxStorageName.Text))
{
MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
_storage.AddSet(textBoxStorageName.Text);
ReloadObjects();
2024-10-03 01:45:35 +04:00
_logger.LogInformation($"Добавлен набор: {textBoxStorageName.Text}");
2024-10-03 01:42:04 +04:00
}
2024-10-03 01:43:12 +04:00
// выбрать набор
2024-10-03 01:42:04 +04:00
private void listBoxObjects_SelectedIndexChanged(object sender, EventArgs e)
{
pictureBoxCollection.Image = _storage[listBoxStorages.SelectedItem?.ToString() ?? string.Empty]?.ShowTruck();
}
2024-10-03 01:43:12 +04:00
// удалить набор
2024-10-03 01:42:04 +04:00
private void buttonDeleteStorage_Click(object sender, EventArgs e)
{
if (listBoxStorages.SelectedIndex == -1)
{
return;
}
2024-10-03 01:45:35 +04:00
string name = listBoxStorages.SelectedItem.ToString() ?? string.Empty;
2024-10-03 01:42:04 +04:00
if (MessageBox.Show($"Удалить объект {listBoxStorages.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
2024-10-03 01:45:35 +04:00
_storage.DelSet(name);
2024-10-03 01:42:04 +04:00
ReloadObjects();
2024-10-03 01:45:35 +04:00
_logger.LogInformation($"Удалён набор: {name}");
2024-10-03 01:42:04 +04:00
}
}
2024-10-03 01:44:06 +04:00
2024-10-03 01:42:04 +04:00
private void buttonAddTruck_Click(object sender, EventArgs e)
2024-10-03 01:43:12 +04:00
{
2024-10-03 01:46:41 +04:00
2024-10-03 01:45:35 +04:00
var formTruckConfig = new FormTruckConfig();
2024-10-03 01:43:12 +04:00
formTruckConfig.AddEvent(AddTruck);
formTruckConfig.Show();
}
private void AddTruck(DrawingTruck selectedTruck)
2024-10-03 01:40:53 +04:00
{
2024-10-03 01:42:04 +04:00
if (listBoxStorages.SelectedIndex == -1)
{
MessageBox.Show("Не выбран набор");
return;
}
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
if (obj == null)
{
return;
}
2024-10-03 01:45:35 +04:00
selectedTruck.ChangePictureSize(Width, Height);
try
2024-10-03 01:43:12 +04:00
{
2024-10-03 01:45:35 +04:00
if (obj + selectedTruck != -1)
{
MessageBox.Show("Объект добавлен");
pictureBoxCollection.Image = obj.ShowTruck();
_logger.LogInformation($"Добавлен объект: {selectedTruck.EntityTruck.BodyColor}");
}
else
{
MessageBox.Show("Не удалось добавить объект");
}
2024-10-03 01:43:12 +04:00
}
2024-10-03 01:45:35 +04:00
catch (StorageOverflowException ex)
2024-10-03 01:43:12 +04:00
{
2024-10-03 01:45:35 +04:00
MessageBox.Show(ex.Message);
_logger.LogWarning(ex.Message);
2024-10-03 01:40:53 +04:00
}
2024-10-03 01:46:41 +04:00
catch (Exception ex)
{
MessageBox.Show(ex.Message);
_logger.LogWarning(ex.Message);
}
2024-10-03 01:40:53 +04:00
}
2024-10-03 01:43:12 +04:00
2024-10-03 01:42:04 +04:00
private void buttonDeleteTruck_Click(object sender, EventArgs e)
2024-10-03 01:40:53 +04:00
{
2024-10-03 01:42:04 +04:00
if (listBoxStorages.SelectedIndex == -1)
{
return;
}
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
if (obj == null)
{
return;
}
if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
2024-10-03 01:40:53 +04:00
{
return;
}
try
{
2024-10-03 01:45:35 +04:00
int pos = Convert.ToInt32(maskedTextBoxNumber.Text);
if (obj - pos)
{
MessageBox.Show("Объект удален");
pictureBoxCollection.Image = obj.ShowTruck();
_logger.LogInformation($"Удалён объект по позиции : {pos}");
}
else
{
MessageBox.Show("Не удалось удалить объект");
}
2024-10-03 01:40:53 +04:00
}
2024-10-03 01:45:35 +04:00
catch (FormatException ex)
2024-10-03 01:40:53 +04:00
{
2024-10-03 01:45:35 +04:00
MessageBox.Show("Неверный формат ввода");
_logger.LogWarning("Неверный формат ввода");
2024-10-03 01:40:53 +04:00
}
2024-10-03 01:45:35 +04:00
catch (Exception ex)
2024-10-03 01:40:53 +04:00
{
2024-10-03 01:45:35 +04:00
MessageBox.Show(ex.Message);
_logger.LogWarning(ex.Message);
2024-10-03 01:40:53 +04:00
}
}
2024-10-03 01:42:04 +04:00
2024-10-03 01:43:12 +04:00
// обновить рисунок по набору
2024-10-03 01:42:04 +04:00
private void buttonUpdate_Click(object sender, EventArgs e)
2024-10-03 01:40:53 +04:00
{
2024-10-03 01:42:04 +04:00
if (listBoxStorages.SelectedIndex == -1)
{
return;
}
var obj = _storage[listBoxStorages.SelectedItem.ToString() ??
string.Empty];
if (obj == null)
{
return;
}
pictureBoxCollection.Image = obj.ShowTruck();
2024-10-03 01:40:53 +04:00
}
2024-10-03 01:43:12 +04:00
2024-10-03 01:44:06 +04:00
private void SaveToolStripMenuItem_Click(object sender, EventArgs e)
{
if (saveFileDialog.ShowDialog() == DialogResult.OK)
{
2024-10-03 01:45:35 +04:00
try
2024-10-03 01:44:06 +04:00
{
2024-10-03 01:45:35 +04:00
_storage.SaveData(saveFileDialog.FileName);
2024-10-03 01:44:06 +04:00
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
2024-10-03 01:45:35 +04:00
_logger.LogInformation($"Файл сохранён по пути: {saveFileDialog.FileName}");
2024-10-03 01:44:06 +04:00
}
2024-10-03 01:45:35 +04:00
catch (InvalidOperationException ex)
2024-10-03 01:44:06 +04:00
{
2024-10-03 01:45:35 +04:00
MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning(ex.Message);
2024-10-03 01:44:06 +04:00
}
}
}
// Обработка нажатия "Загрузка"
private void LoadToolStripMenuItem_Click(object sender, EventArgs e)
{
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
2024-10-03 01:45:35 +04:00
try
2024-10-03 01:44:06 +04:00
{
2024-10-03 01:45:35 +04:00
_storage.LoadData(openFileDialog.FileName);
2024-10-03 01:44:06 +04:00
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
2024-10-03 01:45:35 +04:00
_logger.LogInformation($"Файл загружен по пути: {openFileDialog.FileName}");
2024-10-03 01:44:06 +04:00
}
2024-10-03 01:45:35 +04:00
catch (Exception ex)
2024-10-03 01:44:06 +04:00
{
2024-10-03 01:45:35 +04:00
MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning(ex.Message);
2024-10-03 01:44:06 +04:00
}
}
2024-10-03 01:45:35 +04:00
ReloadObjects();
2024-10-03 01:44:06 +04:00
}
2024-10-03 01:43:12 +04:00
2024-10-03 01:46:41 +04:00
2024-10-03 01:40:53 +04:00
}
}