213 lines
7.9 KiB
C#
213 lines
7.9 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;
|
||
|
||
namespace HoistingCrane
|
||
{
|
||
public partial class FormMapWithSetHoistingCrane : Form
|
||
{
|
||
/// Словарь для выпадающего списка
|
||
/// </summary>
|
||
private readonly Dictionary<string, AbstractMap> _mapsDict = new()
|
||
{
|
||
{ "Простая карта", new SimpleMap() },
|
||
{ "Вторая карта", new SecondMap() },
|
||
};
|
||
/// <summary>
|
||
/// Объект от коллекции карт
|
||
/// </summary>
|
||
private readonly MapsCollection _mapsCollection;
|
||
/// <summary>
|
||
private MapWithSetHoistingCraneGeneric<DrawingObjectHoistingCrane, AbstractMap> _mapHoistingCraneCollectionGeneric;
|
||
public FormMapWithSetHoistingCrane()
|
||
{
|
||
InitializeComponent();
|
||
_mapsCollection = new MapsCollection(pictureBox.Width, pictureBox.Height);
|
||
comboBoxSelectorMap.Items.Clear();
|
||
foreach (var elem in _mapsDict)
|
||
{
|
||
comboBoxSelectorMap.Items.Add(elem.Key);
|
||
}
|
||
}
|
||
/// <summary>
|
||
/// Заполнение listBoxMaps
|
||
/// </summary>
|
||
private void ReloadMaps()
|
||
{
|
||
int index = listBoxMaps.SelectedIndex;
|
||
|
||
listBoxMaps.Items.Clear();
|
||
for (int i = 0; i < _mapsCollection.Keys.Count; i++)
|
||
{
|
||
listBoxMaps.Items.Add(_mapsCollection.Keys[i]);
|
||
}
|
||
|
||
if (listBoxMaps.Items.Count > 0 && (index == -1 || index >= listBoxMaps.Items.Count))
|
||
{
|
||
listBoxMaps.SelectedIndex = 0;
|
||
}
|
||
else if (listBoxMaps.Items.Count > 0 && index > -1 && index < listBoxMaps.Items.Count)
|
||
{
|
||
listBoxMaps.SelectedIndex = index;
|
||
}
|
||
}
|
||
private void ComboBoxSelectorMap_SelectedIndexChanged(object sender, EventArgs e)
|
||
{
|
||
AbstractMap map = null;
|
||
switch (comboBoxSelectorMap.Text)
|
||
{
|
||
case "Простая карта":
|
||
map = new SimpleMap();
|
||
break;
|
||
case "Вторая карта":
|
||
map = new SecondMap();
|
||
break;
|
||
|
||
|
||
}
|
||
if (map != null)
|
||
{
|
||
_mapHoistingCraneCollectionGeneric = new MapWithSetHoistingCraneGeneric<DrawingObjectHoistingCrane, AbstractMap>(
|
||
pictureBox.Width, pictureBox.Height, map);
|
||
}
|
||
else
|
||
{
|
||
_mapHoistingCraneCollectionGeneric = null;
|
||
}
|
||
}
|
||
/// <summary>
|
||
/// Добавление карты
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void buttonAddMap_Click_1(object sender, EventArgs e)
|
||
{
|
||
if (comboBoxSelectorMap.SelectedIndex == -1 || string.IsNullOrEmpty(textBoxNewMapName.Text))
|
||
{
|
||
MessageBox.Show("Не все данные заполнены", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
return;
|
||
}
|
||
if (!_mapsDict.ContainsKey(comboBoxSelectorMap.Text))
|
||
{
|
||
MessageBox.Show("Нет такой карты", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
return;
|
||
}
|
||
_mapsCollection.AddMap(textBoxNewMapName.Text, _mapsDict[comboBoxSelectorMap.Text]);
|
||
ReloadMaps();
|
||
}
|
||
private void ListBoxMaps_SelectedIndexChanged(object sender, EventArgs e)
|
||
{
|
||
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
||
}
|
||
/// <summary>
|
||
/// Удаление карты
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void buttonDeleteMap_Click(object sender, EventArgs e)
|
||
{
|
||
if (listBoxMaps.SelectedIndex == -1)
|
||
{
|
||
return;
|
||
}
|
||
|
||
if (MessageBox.Show($"Удалить карту {listBoxMaps.SelectedItem}?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
||
{
|
||
_mapsCollection.DelMap(listBoxMaps.SelectedItem?.ToString() ?? string.Empty);
|
||
ReloadMaps();
|
||
}
|
||
}
|
||
private void ButtonAddHoistingCrane_Click(object sender, EventArgs e)
|
||
{
|
||
if (listBoxMaps.SelectedIndex == -1)
|
||
{
|
||
return;
|
||
}
|
||
var formHoistingCraneConfig = new FormHoistingCraneConfig();
|
||
formHoistingCraneConfig.AddEvent(AddHoistingCrane);
|
||
formHoistingCraneConfig.Show();
|
||
}
|
||
private void AddHoistingCrane(DrawingHoistingCrane drawingHoistingCrane)
|
||
{
|
||
DrawingObjectHoistingCrane hoistingCrane = new DrawingObjectHoistingCrane(drawingHoistingCrane);
|
||
if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] + hoistingCrane != -1)
|
||
{
|
||
MessageBox.Show("Объект добавлен");
|
||
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
||
}
|
||
else
|
||
{
|
||
MessageBox.Show("Не удалось добавить объект");
|
||
}
|
||
}
|
||
private void ButtonRemoveHoistingCrane_Click(object sender, EventArgs e)
|
||
{
|
||
if (listBoxMaps.SelectedIndex == -1)
|
||
{
|
||
return;
|
||
}
|
||
if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
|
||
{
|
||
return;
|
||
}
|
||
int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
|
||
if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos != null)
|
||
{
|
||
MessageBox.Show("Объект удален");
|
||
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
||
}
|
||
else
|
||
{
|
||
MessageBox.Show("Не удалось удалить объект");
|
||
}
|
||
}
|
||
private void ButtonShowStorage_Click(object sender, EventArgs e)
|
||
{
|
||
if (listBoxMaps.SelectedIndex == -1)
|
||
{
|
||
return;
|
||
}
|
||
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
||
}
|
||
private void ButtonShowOnMap_Click(object sender, EventArgs e)
|
||
{
|
||
if (listBoxMaps.SelectedIndex == -1)
|
||
{
|
||
return;
|
||
}
|
||
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowOnMap();
|
||
}
|
||
private void ButtonMove_Click(object sender, EventArgs e)
|
||
{
|
||
if (listBoxMaps.SelectedIndex == -1)
|
||
{
|
||
return;
|
||
}
|
||
string name = ((Button)sender)?.Name ?? string.Empty;
|
||
Direction enums = Direction.None;
|
||
switch (name)
|
||
{
|
||
case "buttonUp":
|
||
enums = Direction.Up;
|
||
break;
|
||
case "buttonDown":
|
||
enums = Direction.Down;
|
||
break;
|
||
case "buttonLeft":
|
||
enums = Direction.Left;
|
||
break;
|
||
case "buttonRight":
|
||
enums = Direction.Right;
|
||
break;
|
||
}
|
||
pictureBox.Image = _mapHoistingCraneCollectionGeneric.MoveObject(enums);
|
||
}
|
||
}
|
||
}
|