using ProjectAirplaneWithRadar.Drawnings;
using ProjectAirplaneWithRadar.Entities;
namespace ProjectAirplaneWithRadar
{
///
/// Форма конфигурации объекта
///
public partial class FormAirplaneConfig : Form
{
///
/// Объект - прорисовка самолета
///
private DrawningAirplane? _airplane;
///
/// Событие для передачи объекта
///
private event Action? AirplaneDelegate;
///
/// Конструктор
///
public FormAirplaneConfig()
{
InitializeComponent();
panelRed.MouseDown += Panel_MouseDown;
panelGreen.MouseDown += Panel_MouseDown;
panelBlue.MouseDown += Panel_MouseDown;
panelYellow.MouseDown += Panel_MouseDown;
panelWhite.MouseDown += Panel_MouseDown;
panelGray.MouseDown += Panel_MouseDown;
panelBlack.MouseDown += Panel_MouseDown;
panelPurple.MouseDown += Panel_MouseDown;
buttonCancel.Click += (sender, e) => Close();
}
///
/// Привязка внешнего метода к событию
///
///
public void AddEvent(Action airplaneDelegate)
{
AirplaneDelegate += airplaneDelegate;
}
///
/// Прорисовка объекта
///
private void DrawObject()
{
Bitmap bmp = new(pictureBoxObject.Width, pictureBoxObject.Height);
Graphics gr = Graphics.FromImage(bmp);
_airplane?.SetPictureSize(pictureBoxObject.Width, pictureBoxObject.Height);
_airplane?.SetPosition(5, 5);
_airplane?.DrawTransport(gr);
pictureBoxObject.Image = bmp;
}
///
/// Передаем информацию при нажатии на Label
///
///
///
private void LabelObject_MouseDown(object sender, MouseEventArgs e)
{
(sender as Label)?.DoDragDrop((sender as Label)?.Name ?? string.Empty, DragDropEffects.Move | DragDropEffects.Copy);
}
///
/// Проверка получаемой информации (ее типа на соответствие требуемому)
///
///
///
private void PanelObject_DragEnter(object sender, DragEventArgs e)
{
e.Effect = e.Data?.GetDataPresent(DataFormats.Text) ?? false ? DragDropEffects.Copy : DragDropEffects.None;
}
///
/// Действия при приеме перетаскиваемой информации
///
///
///
private void PanelObject_DragDrop(object sender, DragEventArgs e)
{
switch (e.Data?.GetData(DataFormats.Text)?.ToString())
{
case "labelSimpleObject":
_airplane = new DrawningAirplane((int)numericUpDownSpeed.Value, (double)numericUpDownWeight.Value, Color.White);
break;
case "labelModifiedObject":
_airplane = new DrawingAirplaneWithRadar((int)numericUpDownSpeed.Value, (double)numericUpDownWeight.Value, Color.White,
Color.Black, checkBoxWheels.Checked, checkBoxRadar.Checked);
break;
}
DrawObject();
}
///
/// Передаем информацию при нажатии на Panel
///
///
///
private void Panel_MouseDown(object? sender, MouseEventArgs e)
{
(sender as Control)?.DoDragDrop((sender as Control)?.BackColor!, DragDropEffects.Move | DragDropEffects.Copy);
}
private void labelBodyColor_DragDrop(object sender, DragEventArgs e)
{
if (_airplane == null)
return;
_airplane.EntityAirplane?.SetBodyColor((Color)e.Data.GetData(typeof(Color)));
DrawObject();
}
private void labelBodyColor_DragEnter(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(typeof(Color)))
e.Effect = DragDropEffects.Copy;
else
e.Effect = DragDropEffects.None;
}
private void labelAdditionalColor_DragDrop(object sender, DragEventArgs e)
{
if (_airplane?.EntityAirplane is EntityAirplaneWithRadar _airplaneWithRadar)
_airplaneWithRadar?.SetAdditionalColor((Color)e.Data.GetData(typeof(Color)));
DrawObject();
}
private void labelAdditionalColor_DragEnter(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(typeof(Color)))
e.Effect = DragDropEffects.Copy;
else
e.Effect = DragDropEffects.None;
}
///
/// Передача объекта
///
///
///
private void ButtonAdd_Click(object sender, EventArgs e)
{
if (_airplane != null)
{
AirplaneDelegate?.Invoke(_airplane);
Close();
}
}
}
}