PIbd22_NikiforovaMV_Contain.../ContainerShip/FormShipCollection.cs

215 lines
7.8 KiB
C#
Raw Normal View History

2023-12-16 11:10:10 +04:00
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;
using ContainerShip.MovementStrategy;
2023-12-29 22:18:15 +04:00
using System.Xml.Linq;
using Microsoft.Extensions.Logging;
2023-12-16 11:10:10 +04:00
using ContainerShip.DrawningObjects;
using ContainerShip.Generic;
2023-12-29 22:18:15 +04:00
using ContainerShip.Exceptions;
2023-12-16 11:10:10 +04:00
namespace ContainerShip
{
public partial class FormShipCollection : Form
{
2023-12-16 11:14:14 +04:00
private readonly ShipsGenericStorage _storage;
2023-12-29 22:18:15 +04:00
private readonly ILogger _logger;
2023-12-16 11:10:10 +04:00
2023-12-29 22:18:15 +04:00
public FormShipCollection(ILogger<FormShipCollection> logger)
2023-12-16 11:10:10 +04:00
{
InitializeComponent();
2023-12-16 11:14:14 +04:00
_storage = new ShipsGenericStorage(pictureBoxCollection.Width, pictureBoxCollection.Height);
2023-12-29 22:18:15 +04:00
_logger = logger;
2023-12-16 11:14:14 +04:00
}
private void ReloadObjects()
{
int index = listBoxStorages.SelectedIndex;
listBoxStorages.Items.Clear();
for (int i = 0; i < _storage.Keys.Count; i++)
{
listBoxStorages.Items.Add(_storage.Keys[i]);
}
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;
}
}
private void ButtonAddObject_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(textBoxStorageName.Text))
{
2023-12-29 22:18:15 +04:00
MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
2023-12-16 11:14:14 +04:00
return;
}
_storage.AddSet(textBoxStorageName.Text);
ReloadObjects();
2023-12-29 22:18:15 +04:00
_logger.LogInformation($"Добавлен набор: {textBoxStorageName.Text}");
2023-12-16 11:14:14 +04:00
}
private void ListBoxObjects_SelectedIndexChanged(object sender, EventArgs e)
{
pictureBoxCollection.Image = _storage[listBoxStorages.SelectedItem?.ToString() ?? string.Empty]?.ShowShips();
}
private void ButtonDelObject_Click(object sender, EventArgs e)
{
if (listBoxStorages.SelectedIndex == -1)
{
return;
}
2023-12-29 22:18:15 +04:00
string name = listBoxStorages.SelectedItem.ToString() ?? string.Empty;
2023-12-16 11:14:14 +04:00
if (MessageBox.Show($"Удалить объект {listBoxStorages.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
2023-12-29 22:18:15 +04:00
_storage.DelSet(name);
2023-12-16 11:14:14 +04:00
ReloadObjects();
2023-12-29 22:18:15 +04:00
_logger.LogInformation($"Удалён набор: {name}");
2023-12-16 11:14:14 +04:00
}
2023-12-16 11:10:10 +04:00
}
2023-12-16 11:18:38 +04:00
2023-12-16 11:10:10 +04:00
private void buttonAdd_Click(object sender, EventArgs e)
2023-12-16 11:16:37 +04:00
{
var formShipConfig = new FormShipConfig();
formShipConfig.AddEvent(AddShip);
formShipConfig.Show();
}
2023-12-29 22:18:15 +04:00
private void AddShip(DrawningShip _ship)
2023-12-16 11:10:10 +04:00
{
2023-12-16 11:14:14 +04:00
if (listBoxStorages.SelectedIndex == -1)
{
2023-12-16 11:16:37 +04:00
MessageBox.Show("Не выбран набор");
2023-12-16 11:14:14 +04:00
return;
}
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
if (obj == null)
{
return;
}
2023-12-29 22:18:15 +04:00
_ship.ChangeBordersPicture(Width, Height);
try
2023-12-16 11:16:37 +04:00
{
2023-12-29 22:18:15 +04:00
if (obj + _ship != -1)
{
MessageBox.Show("Объект добавлен");
pictureBoxCollection.Image = obj.ShowShips();
_logger.LogInformation($"Добавлен объект: {_ship.EntityShip.BodyColor}");
}
else
{
MessageBox.Show("Не удалось добавить объект");
}
2023-12-16 11:16:37 +04:00
}
2023-12-29 22:18:15 +04:00
catch (StorageOverflowException ex)
2023-12-16 11:10:10 +04:00
{
2023-12-29 22:18:15 +04:00
MessageBox.Show(ex.Message);
_logger.LogWarning(ex.Message);
2023-12-16 11:10:10 +04:00
}
}
2023-12-16 11:18:38 +04:00
2023-12-16 11:10:10 +04:00
private void buttonDelete_Click(object sender, EventArgs e)
{
2023-12-16 11:14:14 +04:00
if (listBoxStorages.SelectedIndex == -1)
2023-12-16 11:10:10 +04:00
{
return;
}
2023-12-29 22:18:15 +04:00
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
2023-12-16 11:14:14 +04:00
if (obj == null)
2023-12-16 11:10:10 +04:00
{
2023-12-16 11:14:14 +04:00
return;
2023-12-16 11:10:10 +04:00
}
2023-12-29 22:18:15 +04:00
if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
2023-12-16 11:10:10 +04:00
{
return;
}
2023-12-29 22:18:15 +04:00
try
{
int pos = Convert.ToInt32(maskedTextBoxNumber.Text);
if (obj - pos)
{
MessageBox.Show("Объект удален");
pictureBoxCollection.Image = obj.ShowShips();
_logger.LogInformation($"Удалён объект по позиции : {pos}");
}
else
{
MessageBox.Show("Не удалось удалить объект");
}
}
catch (FormatException ex)
2023-12-16 11:10:10 +04:00
{
2023-12-29 22:18:15 +04:00
MessageBox.Show("Неверный формат ввода");
_logger.LogWarning("Неверный формат ввода");
2023-12-16 11:10:10 +04:00
}
2023-12-29 22:18:15 +04:00
catch (Exception ex)
2023-12-16 11:10:10 +04:00
{
2023-12-29 22:18:15 +04:00
MessageBox.Show(ex.Message);
_logger.LogWarning(ex.Message);
2023-12-16 11:10:10 +04:00
}
2023-12-16 11:14:14 +04:00
2023-12-16 11:10:10 +04:00
}
2023-12-29 22:18:15 +04:00
2023-12-16 11:10:10 +04:00
private void buttonUpdate_Click(object sender, EventArgs e)
{
2023-12-16 11:14:14 +04:00
if (listBoxStorages.SelectedIndex == -1)
{
return;
}
var obj = _storage[listBoxStorages.SelectedItem.ToString() ??
string.Empty];
if (obj == null)
{
return;
}
pictureBoxCollection.Image = obj.ShowShips();
2023-12-16 11:10:10 +04:00
}
2023-12-29 22:18:15 +04:00
2023-12-16 11:18:38 +04:00
private void SaveToolStripMenuItem_Click(object sender, EventArgs e)
{
if (saveFileDialog.ShowDialog() == DialogResult.OK)
{
2023-12-29 22:18:15 +04:00
try
2023-12-16 11:18:38 +04:00
{
2023-12-29 22:18:15 +04:00
_storage.SaveData(saveFileDialog.FileName);
2023-12-16 11:18:38 +04:00
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
2023-12-29 22:18:15 +04:00
_logger.LogInformation($"Файл сохранён по пути: {saveFileDialog.FileName}");
2023-12-16 11:18:38 +04:00
}
2023-12-29 22:18:15 +04:00
catch (InvalidOperationException ex)
2023-12-16 11:18:38 +04:00
{
2023-12-29 22:18:15 +04:00
MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning(ex.Message);
2023-12-16 11:18:38 +04:00
}
}
}
2023-12-29 22:18:15 +04:00
2023-12-16 11:18:38 +04:00
private void LoadToolStripMenuItem_Click(object sender, EventArgs e)
{
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
2023-12-29 22:18:15 +04:00
try
2023-12-16 11:18:38 +04:00
{
2023-12-29 22:18:15 +04:00
_storage.LoadData(openFileDialog.FileName);
2023-12-16 11:18:38 +04:00
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
2023-12-29 22:18:15 +04:00
_logger.LogInformation($"Файл загружен по пути: {openFileDialog.FileName}");
2023-12-16 11:18:38 +04:00
}
2023-12-29 22:18:15 +04:00
catch (Exception ex)
2023-12-16 11:18:38 +04:00
{
2023-12-29 22:18:15 +04:00
MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning(ex.Message);
2023-12-16 11:18:38 +04:00
}
}
2023-12-29 22:18:15 +04:00
ReloadObjects();
2023-12-16 11:18:38 +04:00
}
2023-12-29 22:18:15 +04:00
2023-12-16 11:10:10 +04:00
}
}