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 DumpTruck.DrawingObjects; using DumpTruck.Entities; namespace DumpTruck { public partial class FormTruckConfig : Form { /// /// Переменная-выбранный грузовик /// DrawingTruck? _truck = null; /// /// Событие /// private event Action? EventAddTruck; /// /// Конструктор /// public FormTruckConfig() { InitializeComponent(); panelBlack.MouseDown += PanelColor_MouseDown; panelPurple.MouseDown += PanelColor_MouseDown; panelGray.MouseDown += PanelColor_MouseDown; panelGreen.MouseDown += PanelColor_MouseDown; panelRed.MouseDown += PanelColor_MouseDown; panelWhite.MouseDown += PanelColor_MouseDown; panelYellow.MouseDown += PanelColor_MouseDown; panelBlue.MouseDown += PanelColor_MouseDown; buttonCancel.Click += (object sender, EventArgs e) => Close(); } /// /// Отрисовать грузовик /// private void DrawTruck() { Bitmap bmp = new(pictureBoxObject.Width, pictureBoxObject.Height); Graphics gr = Graphics.FromImage(bmp); _truck?.SetPosition(5, 5); _truck?.DrawTransport(gr); pictureBoxObject.Image = bmp; } /// /// Добавление события /// /// Привязанный метод public void AddEvent(Action ev) { if (EventAddTruck == null) { EventAddTruck = ev; } else { EventAddTruck += ev; } } /// /// Передаем информацию при нажатии на Label /// /// /// private void LabelObject_MouseDown(object sender, MouseEventArgs e) { (sender as Label)?.DoDragDrop((sender as Label)?.Name, DragDropEffects.Move | DragDropEffects.Copy); } /// /// Проверка получаемой информации (ее типа на соответствие требуемому) /// /// /// private void PanelObject_DragEnter(object sender, DragEventArgs e) { if (e.Data?.GetDataPresent(DataFormats.Text) ?? false) { e.Effect = DragDropEffects.Copy; } else { e.Effect = DragDropEffects.None; } } /// /// Действия при приеме перетаскиваемой информации /// /// /// private void PanelObject_DragDrop(object sender, DragEventArgs e) { switch (e.Data?.GetData(DataFormats.Text).ToString()) { case "labelSimpleObject": _truck = new DrawingTruck((int)numericUpDownSpeed.Value, (int)numericUpDownWeight.Value, Color.White, pictureBoxObject.Width, pictureBoxObject.Height); break; case "labelModifiedObject": _truck = new DrawingDumpTruck((int)numericUpDownSpeed.Value, (int)numericUpDownWeight.Value, Color.White, checkBoxTent.Checked, checkBoxDumpBox.Checked, Color.Black, Color.Gray, pictureBoxObject.Width, pictureBoxObject.Height); break; } DrawTruck(); } private void PanelColor_MouseDown(object sender, MouseEventArgs e) { (sender as Panel)?.DoDragDrop((sender as Panel)?.BackColor, DragDropEffects.Move | DragDropEffects.Copy); } private void labelColor_DragEnter(object sender, DragEventArgs e) { if (e.Data?.GetDataPresent(typeof(Color)) ?? false) { e.Effect = DragDropEffects.Copy; } else { e.Effect = DragDropEffects.None; } } private void labelBaseColor_DragDrop(object sender, DragEventArgs e) { if (_truck != null) { if (e.Data.GetDataPresent(typeof(Color))) { _truck.EntityTruck.BodyColor = (Color)e.Data.GetData(typeof(Color)); } DrawTruck(); } } private void labelDumpBoxColor_DragDrop(object sender, DragEventArgs e) { if (_truck != null && _truck.EntityTruck is EntityDumpTruck entityDumpTruck) { if (e.Data.GetDataPresent(typeof(Color))) { entityDumpTruck.DumpBoxColor = (Color)e.Data.GetData(typeof(Color)); } DrawTruck(); } } private void labelTentColor_DragDrop(object sender, DragEventArgs e) { if (_truck != null && _truck.EntityTruck is EntityDumpTruck entityDumpTruck) { if (e.Data.GetDataPresent(typeof(Color))) { entityDumpTruck.TentColor = (Color)e.Data.GetData(typeof(Color)); } DrawTruck(); } } /// /// Добавление грузовика /// /// /// private void buttonAdd_Click(object sender, EventArgs e) { EventAddTruck?.Invoke(_truck); Close(); } } }