200 lines
7.1 KiB
C#
200 lines
7.1 KiB
C#
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 ProjectAirbus.Generics;
|
||
using ProjectAirbus.Drawnings;
|
||
using ProjectAirbus.MovementStrategy;
|
||
|
||
namespace ProjectAirbus
|
||
{
|
||
public partial class FormAirbusCollection : Form
|
||
{
|
||
// Набор объектов
|
||
private readonly AirbusGenericStorage _storage;
|
||
|
||
public FormAirbusCollection()
|
||
{
|
||
InitializeComponent();
|
||
_storage = new AirbusGenericStorage(pictureBoxCollection.Width, pictureBoxCollection.Height);
|
||
}
|
||
|
||
// Обработка нажатия "Сохранение"
|
||
private void SaveToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
if (saveFileDialog.ShowDialog() == DialogResult.OK)
|
||
{
|
||
if (_storage.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 (_storage.LoadData(openFileDialog.FileName))
|
||
{
|
||
//var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
|
||
//pictureBoxCollection.Image = obj.ShowAirbus();
|
||
MessageBox.Show("Загрузка прошла успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||
}
|
||
else
|
||
{
|
||
MessageBox.Show("Не загрузилось", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
}
|
||
}
|
||
ReloadObjects();
|
||
}
|
||
|
||
// заполнение лист бокс
|
||
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 buttonAddStorage_Click(object sender, EventArgs e)
|
||
{
|
||
if (string.IsNullOrEmpty(textBoxStorageName.Text))
|
||
{
|
||
MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
return;
|
||
}
|
||
_storage.AddSet(textBoxStorageName.Text);
|
||
ReloadObjects();
|
||
}
|
||
|
||
// выбрать набор
|
||
private void listBoxObjects_SelectedIndexChanged(object sender, EventArgs e)
|
||
{
|
||
pictureBoxCollection.Image = _storage[listBoxStorages.SelectedItem?.ToString() ?? string.Empty]?.ShowAirbus();
|
||
}
|
||
|
||
// удалить набор
|
||
private void buttonDeleteStorage_Click(object sender, EventArgs e)
|
||
{
|
||
if (listBoxStorages.SelectedIndex == -1)
|
||
{
|
||
return;
|
||
}
|
||
if (MessageBox.Show($"Удалить объект {listBoxStorages.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
||
{
|
||
_storage.DelSet(listBoxStorages.SelectedItem.ToString() ?? string.Empty);
|
||
ReloadObjects();
|
||
}
|
||
}
|
||
|
||
// добавить самолёт в набор
|
||
private void buttonAddAirbus_Click(object sender, EventArgs e)
|
||
{
|
||
var formAirbusConfig = new FormAirbusConfig();
|
||
formAirbusConfig.AddEvent(AddAirbusInSet);
|
||
formAirbusConfig.Show();
|
||
}
|
||
|
||
private void AddAirbusInSet(DrawningAirbus _airbus)
|
||
{
|
||
if (listBoxStorages.SelectedIndex == -1)
|
||
{
|
||
MessageBox.Show("Не выбран набор");
|
||
return;
|
||
}
|
||
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
|
||
if (obj == null)
|
||
{
|
||
return;
|
||
}
|
||
// меняем границы после закрытия конфига
|
||
_airbus.ChangeBordersPicture(Width, Height);
|
||
if (obj + _airbus != -1)
|
||
{
|
||
MessageBox.Show("Объект добавлен");
|
||
pictureBoxCollection.Image = obj.ShowAirbus();
|
||
}
|
||
else
|
||
{
|
||
MessageBox.Show("Не удалось добавить объект");
|
||
}
|
||
}
|
||
|
||
// удалить самолёт
|
||
private void buttonDeleteAirbus_Click(object sender, EventArgs e)
|
||
{
|
||
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)
|
||
{
|
||
return;
|
||
}
|
||
int pos = 0;
|
||
try
|
||
{
|
||
pos = Convert.ToInt32(maskedTextBoxNumber.Text);
|
||
}
|
||
catch
|
||
{
|
||
MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
return;
|
||
}
|
||
if (obj - pos)
|
||
{
|
||
MessageBox.Show("Объект удален");
|
||
pictureBoxCollection.Image = obj.ShowAirbus();
|
||
}
|
||
else
|
||
{
|
||
MessageBox.Show("Не удалось удалить объект");
|
||
}
|
||
}
|
||
|
||
// обновить рисунок по набору
|
||
private void buttonUpdate_Click(object sender, EventArgs e)
|
||
{
|
||
if (listBoxStorages.SelectedIndex == -1)
|
||
{
|
||
return;
|
||
}
|
||
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
|
||
if (obj == null)
|
||
{
|
||
return;
|
||
}
|
||
pictureBoxCollection.Image = obj.ShowAirbus();
|
||
}
|
||
}
|
||
}
|