2023-10-10 22:08:33 +04:00
|
|
|
|
using RoadTrain.DrawningObjects;
|
|
|
|
|
using RoadTrain.Generics;
|
|
|
|
|
using RoadTrain.MovementStrategy;
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
namespace RoadTrain
|
|
|
|
|
{
|
|
|
|
|
public partial class FormTrainCollection : Form
|
|
|
|
|
{
|
2023-10-24 18:58:46 +04:00
|
|
|
|
private readonly RoadTrainGenericStorage _storage;
|
2023-10-10 22:08:33 +04:00
|
|
|
|
public FormTrainCollection()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2023-10-24 18:58:46 +04:00
|
|
|
|
_storage = new RoadTrainGenericStorage(pictureBoxCollection.Width,
|
|
|
|
|
pictureBoxCollection.Height);
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Заполнение listBoxObjects
|
|
|
|
|
/// </summary>
|
|
|
|
|
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;
|
|
|
|
|
}
|
2023-10-10 22:08:33 +04:00
|
|
|
|
}
|
2023-11-09 17:11:55 +04:00
|
|
|
|
private void AddTrain(DrawningRoadTrain train)
|
2023-10-10 22:08:33 +04:00
|
|
|
|
{
|
2023-11-09 17:11:55 +04:00
|
|
|
|
train._pictureWidth = pictureBoxCollection.Width;
|
|
|
|
|
train._pictureHeight = pictureBoxCollection.Height;
|
2023-10-24 18:58:46 +04:00
|
|
|
|
if (listBoxStorages.SelectedIndex == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-11-09 17:11:55 +04:00
|
|
|
|
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
|
2023-10-24 18:58:46 +04:00
|
|
|
|
if (obj == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-11-09 17:11:55 +04:00
|
|
|
|
if (obj + train != -1)
|
2023-10-10 22:08:33 +04:00
|
|
|
|
{
|
2023-11-09 17:11:55 +04:00
|
|
|
|
MessageBox.Show("Объект добавлен");
|
|
|
|
|
pictureBoxCollection.Image = obj.ShowTrains();
|
2023-10-10 22:08:33 +04:00
|
|
|
|
}
|
2023-11-09 17:11:55 +04:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Не удалось добавить объект");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private void ButtonAddTrain_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var formTrainConfig = new FormTrainConfig();
|
|
|
|
|
formTrainConfig.AddEvent(AddTrain);
|
|
|
|
|
formTrainConfig.Show();
|
2023-10-10 22:08:33 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ButtonRemoveTrain_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2023-10-24 18:58:46 +04:00
|
|
|
|
if (listBoxStorages.SelectedIndex == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
var obj = _storage[listBoxStorages.SelectedItem.ToString() ??
|
|
|
|
|
string.Empty];
|
|
|
|
|
if (obj == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-10-10 22:08:33 +04:00
|
|
|
|
if (MessageBox.Show("Удалить объект?", "Удаление",
|
2023-10-24 18:58:46 +04:00
|
|
|
|
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
|
2023-10-10 22:08:33 +04:00
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
int pos = Convert.ToInt32(InputTextBox.Text);
|
2023-10-24 18:58:46 +04:00
|
|
|
|
if (obj - pos != null)
|
2023-10-10 22:08:33 +04:00
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Объект удален");
|
2023-10-24 18:58:46 +04:00
|
|
|
|
pictureBoxCollection.Image = obj.ShowTrains();
|
2023-10-10 22:08:33 +04:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Не удалось удалить объект");
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-24 18:58:46 +04:00
|
|
|
|
|
2023-10-10 22:08:33 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ButtonRefreshCollection_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2023-10-24 18:58:46 +04:00
|
|
|
|
{
|
|
|
|
|
if (listBoxStorages.SelectedIndex == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
var obj = _storage[listBoxStorages.SelectedItem.ToString() ??
|
|
|
|
|
string.Empty];
|
|
|
|
|
if (obj == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
pictureBoxCollection.Image = obj.ShowTrains();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ButtonAddObject_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(textBoxStorageName.Text))
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Не все данные заполнены", "Ошибка",
|
|
|
|
|
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_storage.AddSet(textBoxStorageName.Text);
|
|
|
|
|
ReloadObjects();
|
|
|
|
|
}
|
2023-10-10 22:08:33 +04:00
|
|
|
|
|
2023-10-24 18:58:46 +04:00
|
|
|
|
private void ButtonDelObject_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 ListBoxStorages_SelectedIndexChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
pictureBoxCollection.Image =
|
|
|
|
|
_storage[listBoxStorages.SelectedItem?.ToString() ?? string.Empty]?.ShowTrains();
|
2023-10-10 22:08:33 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|