using ProjectBus.Drawnings; using ProjectBus.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 ProjectBus; /// /// форма работы с объектом "Автобус" /// public partial class FormBus : Form { /// /// поле-объект для прорисовки объекта /// private DrawningSimpleBus? _drawningSimpleBus; /// /// Стратегия перемещения /// private AbstractStrategy? _strategy; /// /// конструктор формы /// public FormBus() { InitializeComponent(); _strategy = null; } /// /// метод прорисовки машины /// private void Draw() { if (_drawningSimpleBus == null) { return; } Bitmap bmp = new(pictureBoxBus.Width, pictureBoxBus.Height); Graphics gr = Graphics.FromImage(bmp); _drawningSimpleBus.DrawTransport(gr); pictureBoxBus.Image = bmp; } /// /// Создание объекта класса-перемещения /// /// Тип создаваемого объекта private void CreateObject(string type) { Random random = new(); switch (type) { case nameof(DrawningSimpleBus): _drawningSimpleBus = new DrawningSimpleBus(random.Next(100, 300), random.Next(1000, 3000), Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256))); break; case nameof(DrawningBus): _drawningSimpleBus = new DrawningBus(random.Next(100, 300), random.Next(1000, 3000), Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)), Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)), Convert.ToBoolean(random.Next(0, 2)), Convert.ToBoolean(random.Next(0, 2))); break; default: return; } _drawningSimpleBus.SetPictureSize(pictureBoxBus.Width, pictureBoxBus.Height); _drawningSimpleBus.SetPosition(random.Next(10, 100), random.Next(10, 100)); _strategy = null; comboBoxStrategy.Enabled = true; Draw(); } /// /// Обработка нажатия кнопки "Создать автобус с доп отсеком" /// /// /// private void ButtonCreate_Click(object sender, EventArgs e) => CreateObject(nameof(DrawningBus)); /// /// Обработка нажатия кнопки "Создать обычный автобус" /// /// /// private void buttonCreateSimpleBus_Click(object sender, EventArgs e) => CreateObject(nameof(DrawningSimpleBus)); private void ButtonMove_Click(object sender, EventArgs e) { if (_drawningSimpleBus == null) { return; } string name = ((Button)sender)?.Name ?? string.Empty; bool result = false; switch (name) { case "buttonUp": result = _drawningSimpleBus.MoveTransport(DirectionType.Up); break; case "buttonDown": result = _drawningSimpleBus.MoveTransport(DirectionType.Down); break; case "buttonLeft": result = _drawningSimpleBus.MoveTransport(DirectionType.Left); break; case "buttonRight": result = _drawningSimpleBus.MoveTransport(DirectionType.Right); break; } if (result) { Draw(); } } /// /// /// /// /// private void buttonStrategyStep_Click(object sender, EventArgs e) { if (_drawningSimpleBus == null) { return; } if (comboBoxStrategy.Enabled) { _strategy = comboBoxStrategy.SelectedIndex switch { 0 => new MoveToCenter(), 1 => new MoveToBorder(), _ => null, }; if (_strategy == null) { return; } _strategy.SetData(new MoveableSimpleBus(_drawningSimpleBus), pictureBoxBus.Width, pictureBoxBus.Height); } if (_strategy == null) { return; } comboBoxStrategy.Enabled = false; _strategy.MakeStep(); Draw(); if (_strategy.GetStatus() == StrategyStatus.Finish) { comboBoxStrategy.Enabled = true; _strategy = null; } } }