using RoadTrain.MovementStrategy; using RoadTrain.DrawningObjects; using static System.Windows.Forms.VisualStyles.VisualStyleElement.Window; namespace RoadTrain { public partial class FormRoadTrain : Form { /// /// Поле-объект для прорисовки объекта /// private DrawningRoadTrain? _drawningRoadTrain; private AbstractStrategy? _abstractStrategy; public DrawningRoadTrain? SelectedTrain { get; private set; } /// /// Инициализация формы /// public FormRoadTrain() { InitializeComponent(); _abstractStrategy = null; SelectedTrain = null; } /// /// Метод прорисовки машины /// private void Draw() { if (_drawningRoadTrain == null) { return; } Bitmap bmp = new(pictureBoxRoadTrain.Width, pictureBoxRoadTrain.Height); Graphics gr = Graphics.FromImage(bmp); _drawningRoadTrain.DrawTransport(gr); pictureBoxRoadTrain.Image = bmp; } /// /// Обработка нажатия кнопки "Создать" /// /// /// /// /// Изменение размеров формы /// /// /// private void ButtonMove_Click(object sender, EventArgs e) { if (_drawningRoadTrain == null) { return; } string name = ((Button)sender)?.Name ?? string.Empty; switch (name) { case "buttonUp": _drawningRoadTrain.MoveTransport(DirectionType.Up); break; case "buttonDown": _drawningRoadTrain.MoveTransport(DirectionType.Down); break; case "buttonLeft": _drawningRoadTrain.MoveTransport(DirectionType.Left); break; case "buttonRight": _drawningRoadTrain.MoveTransport(DirectionType.Right); break; } Draw(); } private void ButtonStep_Click_1(object sender, EventArgs e) { if (_drawningRoadTrain == null) { return; } if (comboBoxStrategy.Enabled) { _abstractStrategy = comboBoxStrategy.SelectedIndex switch { 0 => new MoveToCenter(), 1 => new MoveToBorder(), _ => null, }; if (_abstractStrategy == null) { return; } _abstractStrategy.SetData(new DrawningObjectTrain(_drawningRoadTrain), pictureBoxRoadTrain.Width, pictureBoxRoadTrain.Height); comboBoxStrategy.Enabled = false; } if (_abstractStrategy == null) { return; } _abstractStrategy.MakeStep(); Draw(); if (_abstractStrategy.GetStatus() == Status.Finish) { comboBoxStrategy.Enabled = true; _abstractStrategy = null; } } private void ButtonCreateRoadTrain_Click(object sender, EventArgs e) { Random random = new(); Color color = Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)); ColorDialog dialog = new(); if (dialog.ShowDialog() == DialogResult.OK) { color = dialog.Color; } _drawningRoadTrain = new DrawningRoadTrain(random.Next(100, 300), random.Next(1000, 3000), color, pictureBoxRoadTrain.Width, pictureBoxRoadTrain.Height); _drawningRoadTrain.SetPosition(random.Next(10, 100), random.Next(10, 100)); Draw(); } private void ButtonCreateTrain_Click(object sender, EventArgs e) { Random random = new(); Color color = Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)); ColorDialog dialog = new(); if (dialog.ShowDialog() == DialogResult.OK) { color = dialog.Color; } Color dopColor = Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)); ColorDialog dialog2 = new(); if (dialog2.ShowDialog() == DialogResult.OK) { color = dialog2.Color; } _drawningRoadTrain = new DrawningTrain(random.Next(100, 300), random.Next(1000, 3000), color, dopColor, Convert.ToBoolean(random.Next(0, 2)), Convert.ToBoolean(random.Next(0, 2)), pictureBoxRoadTrain.Width, pictureBoxRoadTrain.Height); _drawningRoadTrain.SetPosition(random.Next(10, 100), random.Next(10, 100)); Draw(); } private void ButtonSelectTrain_Click(object sender, EventArgs e) { SelectedTrain = _drawningRoadTrain; DialogResult = DialogResult.OK; } } }