diff --git a/DoubleDeckerBus/DoubleDeckerBus/Direction.cs b/DoubleDeckerBus/DoubleDeckerBus/Direction.cs
index dab6276..5fb0795 100644
--- a/DoubleDeckerBus/DoubleDeckerBus/Direction.cs
+++ b/DoubleDeckerBus/DoubleDeckerBus/Direction.cs
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace DoubleDeckerBus
{
- internal enum Direction
+ public enum Direction
{
None = 0,
Up = 1,
diff --git a/DoubleDeckerBus/DoubleDeckerBus/DrawingBus.cs b/DoubleDeckerBus/DoubleDeckerBus/DrawingBus.cs
index 9a66019..0194229 100644
--- a/DoubleDeckerBus/DoubleDeckerBus/DrawingBus.cs
+++ b/DoubleDeckerBus/DoubleDeckerBus/DrawingBus.cs
@@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace DoubleDeckerBus
{
- internal class DrawingBus
+ public class DrawingBus
{
public EntityBus Bus { get; protected set; }
diff --git a/DoubleDeckerBus/DoubleDeckerBus/EntityBus.cs b/DoubleDeckerBus/DoubleDeckerBus/EntityBus.cs
index 45ee91a..4753709 100644
--- a/DoubleDeckerBus/DoubleDeckerBus/EntityBus.cs
+++ b/DoubleDeckerBus/DoubleDeckerBus/EntityBus.cs
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace DoubleDeckerBus
{
- internal class EntityBus
+ public class EntityBus
{
public int Speed { get; private set; }
public float Weight { get; private set; }
diff --git a/DoubleDeckerBus/DoubleDeckerBus/FormBus.Designer.cs b/DoubleDeckerBus/DoubleDeckerBus/FormBus.Designer.cs
index 5c67b4e..544a612 100644
--- a/DoubleDeckerBus/DoubleDeckerBus/FormBus.Designer.cs
+++ b/DoubleDeckerBus/DoubleDeckerBus/FormBus.Designer.cs
@@ -39,6 +39,7 @@
this.buttonRight = new System.Windows.Forms.Button();
this.pictureBoxBus = new System.Windows.Forms.PictureBox();
this.buttonСreateExtra = new System.Windows.Forms.Button();
+ this.ButtonSelectBus = new System.Windows.Forms.Button();
this.statusStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxBus)).BeginInit();
this.SuspendLayout();
@@ -165,11 +166,22 @@
this.buttonСreateExtra.UseVisualStyleBackColor = true;
this.buttonСreateExtra.Click += new System.EventHandler(this.ButtonСreateExtra_Click);
//
+ // ButtonSelectBus
+ //
+ this.ButtonSelectBus.Location = new System.Drawing.Point(525, 290);
+ this.ButtonSelectBus.Name = "ButtonSelectBus";
+ this.ButtonSelectBus.Size = new System.Drawing.Size(75, 23);
+ this.ButtonSelectBus.TabIndex = 9;
+ this.ButtonSelectBus.Text = "Выбрать";
+ this.ButtonSelectBus.UseVisualStyleBackColor = true;
+ this.ButtonSelectBus.Click += new System.EventHandler(this.ButtonSelectBus_Click);
+ //
// FormBus
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(700, 338);
+ this.Controls.Add(this.ButtonSelectBus);
this.Controls.Add(this.buttonСreateExtra);
this.Controls.Add(this.buttonRight);
this.Controls.Add(this.buttonDown);
@@ -202,5 +214,6 @@
private Button buttonRight;
private PictureBox pictureBoxBus;
private Button buttonСreateExtra;
+ private Button ButtonSelectBus;
}
}
\ No newline at end of file
diff --git a/DoubleDeckerBus/DoubleDeckerBus/FormBus.cs b/DoubleDeckerBus/DoubleDeckerBus/FormBus.cs
index e594915..8359977 100644
--- a/DoubleDeckerBus/DoubleDeckerBus/FormBus.cs
+++ b/DoubleDeckerBus/DoubleDeckerBus/FormBus.cs
@@ -3,6 +3,9 @@ namespace DoubleDeckerBus
public partial class FormBus : Form
{
private DrawingBus _bus;
+
+ public DrawingBus SelectedBus { get; private set; }
+
public FormBus()
{
InitializeComponent();
@@ -67,5 +70,11 @@ namespace DoubleDeckerBus
SetData();
Draw();
}
+
+ private void ButtonSelectBus_Click(object sender, EventArgs e)
+ {
+ SelectedBus = _bus;
+ DialogResult = DialogResult.OK;
+ }
}
}
\ No newline at end of file
diff --git a/DoubleDeckerBus/DoubleDeckerBus/FormMap.Designer.cs b/DoubleDeckerBus/DoubleDeckerBus/FormMap.Designer.cs
deleted file mode 100644
index ac03d26..0000000
--- a/DoubleDeckerBus/DoubleDeckerBus/FormMap.Designer.cs
+++ /dev/null
@@ -1,214 +0,0 @@
-namespace DoubleDeckerBus
-{
- partial class FormMap
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- this.buttonCreate = new System.Windows.Forms.Button();
- this.buttonUp = new System.Windows.Forms.Button();
- this.buttonLeft = new System.Windows.Forms.Button();
- this.buttonDown = new System.Windows.Forms.Button();
- this.buttonRight = new System.Windows.Forms.Button();
- this.pictureBoxBus = new System.Windows.Forms.PictureBox();
- this.buttonСreateExtra = new System.Windows.Forms.Button();
- this.toolStripStatusLabelSpeed = new System.Windows.Forms.ToolStripStatusLabel();
- this.toolStripStatusLabelWeight = new System.Windows.Forms.ToolStripStatusLabel();
- this.toolStripStatusLabelBodyColor = new System.Windows.Forms.ToolStripStatusLabel();
- this.statusStrip1 = new System.Windows.Forms.StatusStrip();
- this.comboBoxSelectorMap = new System.Windows.Forms.ComboBox();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBus)).BeginInit();
- this.statusStrip1.SuspendLayout();
- this.SuspendLayout();
- //
- // buttonCreate
- //
- this.buttonCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.buttonCreate.Location = new System.Drawing.Point(0, 389);
- this.buttonCreate.Name = "buttonCreate";
- this.buttonCreate.Size = new System.Drawing.Size(99, 28);
- this.buttonCreate.TabIndex = 2;
- this.buttonCreate.Text = "Создать";
- this.buttonCreate.UseVisualStyleBackColor = true;
- this.buttonCreate.Click += new System.EventHandler(this.ButtonCreate_Click);
- //
- // buttonUp
- //
- this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonUp.BackgroundImage = global::DoubleDeckerBus.Properties.Resources.UpArrow;
- this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.buttonUp.Location = new System.Drawing.Point(718, 337);
- this.buttonUp.Name = "buttonUp";
- this.buttonUp.Size = new System.Drawing.Size(30, 29);
- this.buttonUp.TabIndex = 3;
- this.buttonUp.Text = " ";
- this.buttonUp.UseVisualStyleBackColor = true;
- this.buttonUp.Click += new System.EventHandler(this.ButtonMove_Click);
- //
- // buttonLeft
- //
- this.buttonLeft.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonLeft.BackgroundImage = global::DoubleDeckerBus.Properties.Resources.LeftArrow;
- this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.buttonLeft.Location = new System.Drawing.Point(693, 363);
- this.buttonLeft.Name = "buttonLeft";
- this.buttonLeft.Size = new System.Drawing.Size(30, 29);
- this.buttonLeft.TabIndex = 4;
- this.buttonLeft.Text = " ";
- this.buttonLeft.UseVisualStyleBackColor = true;
- this.buttonLeft.Click += new System.EventHandler(this.ButtonMove_Click);
- //
- // buttonDown
- //
- this.buttonDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonDown.BackgroundImage = global::DoubleDeckerBus.Properties.Resources.DownArrow;
- this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.buttonDown.Location = new System.Drawing.Point(719, 388);
- this.buttonDown.Name = "buttonDown";
- this.buttonDown.Size = new System.Drawing.Size(30, 29);
- this.buttonDown.TabIndex = 5;
- this.buttonDown.Text = " ";
- this.buttonDown.UseVisualStyleBackColor = true;
- this.buttonDown.Click += new System.EventHandler(this.ButtonMove_Click);
- //
- // buttonRight
- //
- this.buttonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonRight.BackgroundImage = global::DoubleDeckerBus.Properties.Resources.RightArrow;
- this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.buttonRight.Location = new System.Drawing.Point(745, 363);
- this.buttonRight.Name = "buttonRight";
- this.buttonRight.Size = new System.Drawing.Size(30, 29);
- this.buttonRight.TabIndex = 6;
- this.buttonRight.Text = " ";
- this.buttonRight.UseVisualStyleBackColor = true;
- this.buttonRight.Click += new System.EventHandler(this.ButtonMove_Click);
- //
- // pictureBoxBus
- //
- this.pictureBoxBus.Dock = System.Windows.Forms.DockStyle.Fill;
- this.pictureBoxBus.Location = new System.Drawing.Point(0, 0);
- this.pictureBoxBus.Name = "pictureBoxBus";
- this.pictureBoxBus.Size = new System.Drawing.Size(800, 425);
- this.pictureBoxBus.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
- this.pictureBoxBus.TabIndex = 7;
- this.pictureBoxBus.TabStop = false;
- //
- // buttonСreateExtra
- //
- this.buttonСreateExtra.Location = new System.Drawing.Point(118, 388);
- this.buttonСreateExtra.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.buttonСreateExtra.Name = "buttonСreateExtra";
- this.buttonСreateExtra.Size = new System.Drawing.Size(113, 28);
- this.buttonСreateExtra.TabIndex = 8;
- this.buttonСreateExtra.Text = "Модификация";
- this.buttonСreateExtra.UseVisualStyleBackColor = true;
- this.buttonСreateExtra.Click += new System.EventHandler(this.ButtonСreateExtra_Click);
- //
- // toolStripStatusLabelSpeed
- //
- this.toolStripStatusLabelSpeed.Name = "toolStripStatusLabelSpeed";
- this.toolStripStatusLabelSpeed.Size = new System.Drawing.Size(80, 20);
- this.toolStripStatusLabelSpeed.Text = "Скорость: ";
- //
- // toolStripStatusLabelWeight
- //
- this.toolStripStatusLabelWeight.Name = "toolStripStatusLabelWeight";
- this.toolStripStatusLabelWeight.Size = new System.Drawing.Size(40, 20);
- this.toolStripStatusLabelWeight.Text = "Вес: ";
- //
- // toolStripStatusLabelBodyColor
- //
- this.toolStripStatusLabelBodyColor.Name = "toolStripStatusLabelBodyColor";
- this.toolStripStatusLabelBodyColor.Size = new System.Drawing.Size(49, 20);
- this.toolStripStatusLabelBodyColor.Text = "Цвет: ";
- //
- // statusStrip1
- //
- this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripStatusLabelSpeed,
- this.toolStripStatusLabelWeight,
- this.toolStripStatusLabelBodyColor});
- this.statusStrip1.Location = new System.Drawing.Point(0, 425);
- this.statusStrip1.Name = "statusStrip1";
- this.statusStrip1.Size = new System.Drawing.Size(800, 26);
- this.statusStrip1.TabIndex = 1;
- this.statusStrip1.Text = "statusStrip1";
- //
- // comboBoxSelectorMap
- //
- this.comboBoxSelectorMap.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBoxSelectorMap.FormattingEnabled = true;
- this.comboBoxSelectorMap.Items.AddRange(new object[] {
- "Простая карта",
- "Водная карта"});
- this.comboBoxSelectorMap.Location = new System.Drawing.Point(0, 0);
- this.comboBoxSelectorMap.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.comboBoxSelectorMap.Name = "comboBoxSelectorMap";
- this.comboBoxSelectorMap.Size = new System.Drawing.Size(138, 28);
- this.comboBoxSelectorMap.TabIndex = 9;
- this.comboBoxSelectorMap.SelectedIndexChanged += new System.EventHandler(this.ComboBoxSelectorMap_SelectedIndexChanged);
- //
- // FormMap
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(800, 451);
- this.Controls.Add(this.comboBoxSelectorMap);
- this.Controls.Add(this.buttonСreateExtra);
- this.Controls.Add(this.buttonRight);
- this.Controls.Add(this.buttonDown);
- this.Controls.Add(this.buttonLeft);
- this.Controls.Add(this.buttonUp);
- this.Controls.Add(this.buttonCreate);
- this.Controls.Add(this.pictureBoxBus);
- this.Controls.Add(this.statusStrip1);
- this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.Name = "FormMap";
- ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBus)).EndInit();
- this.statusStrip1.ResumeLayout(false);
- this.statusStrip1.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
- private Button buttonCreate;
- private Button buttonUp;
- private Button buttonLeft;
- private Button buttonDown;
- private Button buttonRight;
- private PictureBox pictureBoxBus;
- private Button buttonСreateExtra;
- private ToolStripStatusLabel toolStripStatusLabelSpeed;
- private ToolStripStatusLabel toolStripStatusLabelWeight;
- private ToolStripStatusLabel toolStripStatusLabelBodyColor;
- private StatusStrip statusStrip1;
- private ComboBox comboBoxSelectorMap;
- }
-}
\ No newline at end of file
diff --git a/DoubleDeckerBus/DoubleDeckerBus/FormMap.cs b/DoubleDeckerBus/DoubleDeckerBus/FormMap.cs
deleted file mode 100644
index 533606f..0000000
--- a/DoubleDeckerBus/DoubleDeckerBus/FormMap.cs
+++ /dev/null
@@ -1,87 +0,0 @@
-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 DoubleDeckerBus
-{
- public partial class FormMap : Form
- {
- private AbstractMap _abstractMap;
- public FormMap()
- {
- InitializeComponent();
- _abstractMap = new SimpleMap();
- comboBoxSelectorMap.SelectedIndex = 0;
- }
-
- private void ButtonCreate_Click(object sender, EventArgs e)
- {
- Random rnd = new();
- var bus = new DrawingBus(rnd.Next(100, 300), rnd.Next(1000, 2000), Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)));
- SetData(bus);
- }
-
- private void ButtonMove_Click(object sender, EventArgs e)
- {
- string name = ((Button)sender)?.Name ?? string.Empty;
- Direction dir = Direction.None;
- switch (name)
- {
- case "buttonUp":
- dir = Direction.Up;
- break;
- case "buttonDown":
- dir = Direction.Down;
- break;
- case "buttonLeft":
- dir = Direction.Left;
- break;
- case "buttonRight":
- dir = Direction.Right;
- break;
- }
- pictureBoxBus.Image = _abstractMap?.MoveObject(dir);
- }
-
- private void SetData(DrawingBus bus)
- {
- toolStripStatusLabelSpeed.Text = $"Скорость: {bus.Bus.Speed}";
- toolStripStatusLabelWeight.Text = $"Вес: {bus.Bus.Weight}";
- toolStripStatusLabelBodyColor.Text = $"Цвет: {bus.Bus.BodyColor.Name}";
- pictureBoxBus.Image = _abstractMap.CreateMap(pictureBoxBus.Width, pictureBoxBus.Height,
- new DrawingObjectBus(bus));
- }
-
- private void ButtonСreateExtra_Click(object sender, EventArgs e)
- {
- Random rnd = new();
- var bus = new DrawingDDB(rnd.Next(100, 300), rnd.Next(1000, 2000),
- Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)),
- Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)),
- Convert.ToBoolean(rnd.Next(0, 2)), Convert.ToBoolean(rnd.Next(0, 2)));
- SetData(bus);
- }
-
- private void ComboBoxSelectorMap_SelectedIndexChanged(object sender, EventArgs e)
- {
- switch (comboBoxSelectorMap.Text)
- {
- case "Простая карта":
- _abstractMap = new SimpleMap();
- break;
- case "Водная карта":
- _abstractMap = new WaterMap();
- break;
- }
- }
- }
-
-
-}
-
diff --git a/DoubleDeckerBus/DoubleDeckerBus/FormMapWithSetBuses.Designer.cs b/DoubleDeckerBus/DoubleDeckerBus/FormMapWithSetBuses.Designer.cs
new file mode 100644
index 0000000..9ee66b7
--- /dev/null
+++ b/DoubleDeckerBus/DoubleDeckerBus/FormMapWithSetBuses.Designer.cs
@@ -0,0 +1,220 @@
+namespace DoubleDeckerBus
+{
+ partial class FormMapWithSetBuses
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.groupBoxSettings = new System.Windows.Forms.GroupBox();
+ this.pictureBox = new System.Windows.Forms.PictureBox();
+ this.comboBoxSelectorMap = new System.Windows.Forms.ComboBox();
+ this.buttonAddBus = new System.Windows.Forms.Button();
+ this.maskedTextBoxPosition = new System.Windows.Forms.MaskedTextBox();
+ this.buttonDeleteBus = new System.Windows.Forms.Button();
+ this.buttonShowStorage = new System.Windows.Forms.Button();
+ this.button1 = new System.Windows.Forms.Button();
+ this.buttonRight = new System.Windows.Forms.Button();
+ this.buttonDown = new System.Windows.Forms.Button();
+ this.buttonLeft = new System.Windows.Forms.Button();
+ this.buttonUp = new System.Windows.Forms.Button();
+ this.groupBoxSettings.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
+ this.SuspendLayout();
+ //
+ // groupBoxSettings
+ //
+ this.groupBoxSettings.Controls.Add(this.buttonRight);
+ this.groupBoxSettings.Controls.Add(this.buttonDown);
+ this.groupBoxSettings.Controls.Add(this.buttonLeft);
+ this.groupBoxSettings.Controls.Add(this.buttonUp);
+ this.groupBoxSettings.Controls.Add(this.button1);
+ this.groupBoxSettings.Controls.Add(this.buttonShowStorage);
+ this.groupBoxSettings.Controls.Add(this.buttonDeleteBus);
+ this.groupBoxSettings.Controls.Add(this.maskedTextBoxPosition);
+ this.groupBoxSettings.Controls.Add(this.buttonAddBus);
+ this.groupBoxSettings.Controls.Add(this.comboBoxSelectorMap);
+ this.groupBoxSettings.Dock = System.Windows.Forms.DockStyle.Right;
+ this.groupBoxSettings.Location = new System.Drawing.Point(600, 0);
+ this.groupBoxSettings.Name = "groupBoxSettings";
+ this.groupBoxSettings.Size = new System.Drawing.Size(200, 450);
+ this.groupBoxSettings.TabIndex = 0;
+ this.groupBoxSettings.TabStop = false;
+ this.groupBoxSettings.Text = "Инструменты";
+ //
+ // pictureBox
+ //
+ this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.pictureBox.Location = new System.Drawing.Point(0, 0);
+ this.pictureBox.Name = "pictureBox";
+ this.pictureBox.Size = new System.Drawing.Size(600, 450);
+ this.pictureBox.TabIndex = 1;
+ this.pictureBox.TabStop = false;
+ //
+ // comboBoxSelectorMap
+ //
+ this.comboBoxSelectorMap.FormattingEnabled = true;
+ this.comboBoxSelectorMap.Location = new System.Drawing.Point(6, 22);
+ this.comboBoxSelectorMap.Name = "comboBoxSelectorMap";
+ this.comboBoxSelectorMap.Size = new System.Drawing.Size(188, 23);
+ this.comboBoxSelectorMap.TabIndex = 0;
+ this.comboBoxSelectorMap.SelectedIndexChanged += new System.EventHandler(this.ComboBoxSelectorMap_SelectedIndexChanged);
+ //
+ // buttonAddBus
+ //
+ this.buttonAddBus.Location = new System.Drawing.Point(6, 87);
+ this.buttonAddBus.Name = "buttonAddBus";
+ this.buttonAddBus.Size = new System.Drawing.Size(188, 36);
+ this.buttonAddBus.TabIndex = 1;
+ this.buttonAddBus.Text = "Добавить автобус";
+ this.buttonAddBus.UseVisualStyleBackColor = true;
+ this.buttonAddBus.Click += new System.EventHandler(this.ButtonAddBus_Click);
+ //
+ // maskedTextBoxPosition
+ //
+ this.maskedTextBoxPosition.Location = new System.Drawing.Point(6, 152);
+ this.maskedTextBoxPosition.Mask = "00";
+ this.maskedTextBoxPosition.Name = "maskedTextBoxPosition";
+ this.maskedTextBoxPosition.Size = new System.Drawing.Size(188, 23);
+ this.maskedTextBoxPosition.TabIndex = 2;
+ //
+ // buttonDeleteBus
+ //
+ this.buttonDeleteBus.Location = new System.Drawing.Point(6, 181);
+ this.buttonDeleteBus.Name = "buttonDeleteBus";
+ this.buttonDeleteBus.Size = new System.Drawing.Size(188, 36);
+ this.buttonDeleteBus.TabIndex = 3;
+ this.buttonDeleteBus.Text = "Удалить автобус";
+ this.buttonDeleteBus.UseVisualStyleBackColor = true;
+ this.buttonDeleteBus.Click += new System.EventHandler(this.ButtonRemoveBus_Click);
+ //
+ // buttonShowStorage
+ //
+ this.buttonShowStorage.Location = new System.Drawing.Point(6, 261);
+ this.buttonShowStorage.Name = "buttonShowStorage";
+ this.buttonShowStorage.Size = new System.Drawing.Size(182, 35);
+ this.buttonShowStorage.TabIndex = 4;
+ this.buttonShowStorage.Text = "Посмотреть хранилище";
+ this.buttonShowStorage.UseVisualStyleBackColor = true;
+ this.buttonShowStorage.Click += new System.EventHandler(this.ButtonShowStorage_Click);
+ //
+ // button1
+ //
+ this.button1.Location = new System.Drawing.Point(6, 320);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(182, 35);
+ this.button1.TabIndex = 5;
+ this.button1.Text = "Посмотреть карту";
+ this.button1.UseVisualStyleBackColor = true;
+ this.button1.Click += new System.EventHandler(this.ButtonShowOnMap_Click);
+ //
+ // buttonRight
+ //
+ this.buttonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonRight.BackgroundImage = global::DoubleDeckerBus.Properties.Resources.RightArrow;
+ this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.buttonRight.Location = new System.Drawing.Point(109, 398);
+ this.buttonRight.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.buttonRight.Name = "buttonRight";
+ this.buttonRight.Size = new System.Drawing.Size(26, 22);
+ this.buttonRight.TabIndex = 10;
+ this.buttonRight.Text = " ";
+ this.buttonRight.UseVisualStyleBackColor = true;
+ this.buttonRight.Click += new System.EventHandler(this.ButtonMove_Click);
+ //
+ // buttonDown
+ //
+ this.buttonDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonDown.BackgroundImage = global::DoubleDeckerBus.Properties.Resources.DownArrow;
+ this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.buttonDown.Location = new System.Drawing.Point(86, 417);
+ this.buttonDown.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.buttonDown.Name = "buttonDown";
+ this.buttonDown.Size = new System.Drawing.Size(26, 22);
+ this.buttonDown.TabIndex = 9;
+ this.buttonDown.Text = " ";
+ this.buttonDown.UseVisualStyleBackColor = true;
+ this.buttonDown.Click += new System.EventHandler(this.ButtonMove_Click);
+ //
+ // buttonLeft
+ //
+ this.buttonLeft.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonLeft.BackgroundImage = global::DoubleDeckerBus.Properties.Resources.LeftArrow;
+ this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.buttonLeft.Location = new System.Drawing.Point(63, 398);
+ this.buttonLeft.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.buttonLeft.Name = "buttonLeft";
+ this.buttonLeft.Size = new System.Drawing.Size(26, 22);
+ this.buttonLeft.TabIndex = 8;
+ this.buttonLeft.Text = " ";
+ this.buttonLeft.UseVisualStyleBackColor = true;
+ this.buttonLeft.Click += new System.EventHandler(this.ButtonMove_Click);
+ //
+ // buttonUp
+ //
+ this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonUp.BackgroundImage = global::DoubleDeckerBus.Properties.Resources.UpArrow;
+ this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.buttonUp.Location = new System.Drawing.Point(85, 379);
+ this.buttonUp.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.buttonUp.Name = "buttonUp";
+ this.buttonUp.Size = new System.Drawing.Size(26, 22);
+ this.buttonUp.TabIndex = 7;
+ this.buttonUp.Text = " ";
+ this.buttonUp.UseVisualStyleBackColor = true;
+ this.buttonUp.Click += new System.EventHandler(this.ButtonMove_Click);
+ //
+ // FormMapWithSetBuses
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Controls.Add(this.pictureBox);
+ this.Controls.Add(this.groupBoxSettings);
+ this.Name = "FormMapWithSetBuses";
+ this.Text = "FormMapWithSetBuses";
+ this.groupBoxSettings.ResumeLayout(false);
+ this.groupBoxSettings.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private GroupBox groupBoxSettings;
+ private PictureBox pictureBox;
+ private Button buttonAddBus;
+ private ComboBox comboBoxSelectorMap;
+ private Button buttonDeleteBus;
+ private MaskedTextBox maskedTextBoxPosition;
+ private Button buttonShowStorage;
+ private Button button1;
+ private Button buttonRight;
+ private Button buttonDown;
+ private Button buttonLeft;
+ private Button buttonUp;
+ }
+}
\ No newline at end of file
diff --git a/DoubleDeckerBus/DoubleDeckerBus/FormMapWithSetBuses.cs b/DoubleDeckerBus/DoubleDeckerBus/FormMapWithSetBuses.cs
new file mode 100644
index 0000000..1bf9016
--- /dev/null
+++ b/DoubleDeckerBus/DoubleDeckerBus/FormMapWithSetBuses.cs
@@ -0,0 +1,133 @@
+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 static System.Windows.Forms.DataFormats;
+
+namespace DoubleDeckerBus
+{
+ public partial class FormMapWithSetBuses : Form
+ {
+ private MapWithSetBusesGeneric _mapBusesCollectionGeneric;
+
+ public FormMapWithSetBuses()
+ {
+ InitializeComponent();
+ }
+
+ private void ComboBoxSelectorMap_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ AbstractMap map = null;
+ switch (comboBoxSelectorMap.Text)
+ {
+ case "Простая карта":
+ map = new SimpleMap();
+ break;
+ }
+ if (map != null)
+ {
+ _mapBusesCollectionGeneric = new MapWithSetBusesGeneric(
+ pictureBox.Width, pictureBox.Height, map);
+ }
+ else
+ {
+ _mapBusesCollectionGeneric = null;
+ }
+ }
+
+ private void ButtonAddBus_Click(object sender, EventArgs e)
+ {
+ if (_mapBusesCollectionGeneric == null)
+ {
+ return;
+ }
+ FormBus form = new();
+ if (form.ShowDialog() == DialogResult.OK)
+ {
+ DrawingObjectBus bus = new(form.SelectedBus);
+ if (_mapBusesCollectionGeneric + bus)
+ {
+ MessageBox.Show("Объект добавлен");
+ pictureBox.Image = _mapBusesCollectionGeneric.ShowSet();
+ }
+ else
+ {
+ MessageBox.Show("Не удалось добавить объект");
+ }
+ }
+ }
+
+ private void ButtonRemoveBus_Click(object sender, EventArgs e)
+ {
+ if (string.IsNullOrEmpty(maskedTextBoxPosition.Text))
+ {
+ return;
+ }
+ if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
+ {
+ return;
+ }
+ int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
+ if (_mapBusesCollectionGeneric - pos)
+ {
+ MessageBox.Show("Объект удален");
+ pictureBox.Image = _mapBusesCollectionGeneric.ShowSet();
+ }
+ else
+ {
+ MessageBox.Show("Не удалось удалить объект");
+ }
+ }
+
+ private void ButtonShowStorage_Click(object sender, EventArgs e)
+ {
+ if (_mapBusesCollectionGeneric == null)
+ {
+ return;
+ }
+ pictureBox.Image = _mapBusesCollectionGeneric.ShowSet();
+ }
+
+ private void ButtonShowOnMap_Click(object sender, EventArgs e)
+ {
+ if (_mapBusesCollectionGeneric == null)
+ {
+ return;
+ }
+ pictureBox.Image = _mapBusesCollectionGeneric.ShowOnMap();
+ }
+
+ private void ButtonMove_Click(object sender, EventArgs e)
+ {
+ if (_mapBusesCollectionGeneric == null)
+ {
+ return;
+ }
+
+ string name = ((Button)sender)?.Name ?? string.Empty;
+ Direction dir = Direction.None;
+ switch (name)
+ {
+ case "buttonUp":
+ dir = Direction.Up;
+ break;
+ case "buttonDown":
+ dir = Direction.Down;
+ break;
+ case "buttonLeft":
+ dir = Direction.Left;
+ break;
+ case "buttonRight":
+ dir = Direction.Right;
+ break;
+ }
+ pictureBox.Image = _mapBusesCollectionGeneric.MoveObject(dir);
+ }
+ }
+}
+
diff --git a/DoubleDeckerBus/DoubleDeckerBus/FormMap.resx b/DoubleDeckerBus/DoubleDeckerBus/FormMapWithSetBuses.resx
similarity index 93%
rename from DoubleDeckerBus/DoubleDeckerBus/FormMap.resx
rename to DoubleDeckerBus/DoubleDeckerBus/FormMapWithSetBuses.resx
index 5cb320f..f298a7b 100644
--- a/DoubleDeckerBus/DoubleDeckerBus/FormMap.resx
+++ b/DoubleDeckerBus/DoubleDeckerBus/FormMapWithSetBuses.resx
@@ -57,7 +57,4 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 17, 17
-
\ No newline at end of file
diff --git a/DoubleDeckerBus/DoubleDeckerBus/Program.cs b/DoubleDeckerBus/DoubleDeckerBus/Program.cs
index 7d6fd56..66c3e0d 100644
--- a/DoubleDeckerBus/DoubleDeckerBus/Program.cs
+++ b/DoubleDeckerBus/DoubleDeckerBus/Program.cs
@@ -11,7 +11,7 @@ namespace DoubleDeckerBus
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
- Application.Run(new FormMap());
+ Application.Run(new FormMapWithSetBuses());
}
}
}
\ No newline at end of file