diff --git a/ProjectExcavator/ProjectExcavator/Directions.cs b/ProjectExcavator/ProjectExcavator/Directions.cs new file mode 100644 index 0000000..9095f8c --- /dev/null +++ b/ProjectExcavator/ProjectExcavator/Directions.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectExcavator +{ + /// + /// Направление перемещения + /// + public enum DirectionType + { + /// + /// Вверх + /// + Up = 1, + /// + /// Вниз + /// + Down = 2, + /// + /// Влево + /// + Left = 3, + /// + /// Вправо + /// + Right = 4 + } +} diff --git a/ProjectExcavator/ProjectExcavator/DrawingExcavator.cs b/ProjectExcavator/ProjectExcavator/DrawingExcavator.cs new file mode 100644 index 0000000..078186e --- /dev/null +++ b/ProjectExcavator/ProjectExcavator/DrawingExcavator.cs @@ -0,0 +1,301 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectExcavator +{ + public class DrawingExcavator + { + /// + /// Класс-сущность + /// + public EntityExcavator? EntityExcavator { get; private set; } + /// + /// Ширина окна + /// + private int _pictureWidth; + /// + /// Высота окна + /// + private int _pictureHeight; + /// + /// /// Левая координата прорисовки автомобиля + /// + private int _startPosX; + /// + /// Верхняя кооридната прорисовки автомобиля + /// + private int _startPosY; + /// + /// Ширина прорисовки автомобиля + /// + private int _exWidth; + /// + /// Высота прорисовки автомобиля + /// + private int _exHeight; + /// + /// Инициализация свойств + /// + /// Скорость + /// Вес + /// Цвет кузова + /// Дополнительный цвет + /// Ширина картинки + /// Высота картинки + /// Ковш + /// Катки гусеничные + /// true - объект создан, false - проверка не пройдена, нельзя создать объект в этих размерах + public bool Init(int speed, double weight, Color bodyColor, Color additionalColor, bool kovsh, bool katki, int width, int height) + { + if (width < _pictureWidth || height < _pictureHeight) + { + return false; + } + + if (!kovsh) + { + _exWidth = 105; + _exHeight = 75; + } + else + { + _exWidth = 140; + _exHeight = 87; + } + _pictureWidth = width; + _pictureHeight = height; + EntityExcavator = new EntityExcavator(); + EntityExcavator.Init(speed, weight, bodyColor, additionalColor, kovsh, katki); + return true; + } + /// + /// Установка позиции + /// + /// Координата X + /// Координата Y + public void SetPosition(int x, int y) + { + // TODO: Изменение x, y + if (x < 0) + { + x = 0; + } + else if (x > _pictureWidth - _exWidth) + { + x = _pictureWidth - _exWidth; + } + + if (y < 0) + { + y = 0; + } + else if (y > _pictureHeight - _exHeight) + { + y = _pictureHeight - _exHeight; + } + _startPosX = x; + _startPosY = y; + } + /// + /// Изменение направления перемещения + /// + /// Направление + public void MoveTransport(DirectionType direction) + { + if (EntityExcavator == null) + { + return; + } + switch (direction) + { + //влево + case DirectionType.Left: + if (_startPosX - EntityExcavator.Step > 0) + { + _startPosX -= (int)EntityExcavator.Step; + } + else + { + _startPosX = 0; + } + break; + //вверх + case DirectionType.Up: + if (_startPosY - EntityExcavator.Step > 0) + { + _startPosY -= (int)EntityExcavator.Step; + } + else + { + _startPosY = 0; + } + break; + //вправо + case DirectionType.Right: + if (_startPosX + _exWidth + EntityExcavator.Step <= _pictureWidth) + { + _startPosX += (int)EntityExcavator.Step; + } + else + { + _startPosX = _pictureWidth - _exWidth; + } + break; + //вниз + case DirectionType.Down: + if (_startPosY + _exHeight + EntityExcavator.Step <= _pictureHeight) + { + _startPosY += (int)EntityExcavator.Step; + } + else + { + _startPosY = _pictureHeight - _exHeight; + } + break; + } + } + /// + /// Прорисовка объекта + /// + /// + public void DrawTransport(Graphics g) + { + if (EntityExcavator == null) + { + return; + } + Pen pen = new(Color.Black); + Brush additionalBrush = new + SolidBrush(EntityExcavator.AdditionalColor); + //цвета + Brush brBlue = new SolidBrush(Color.LightBlue); + Brush brYellow = new SolidBrush(Color.Yellow); + Brush brGray = new SolidBrush(Color.Gray); + Brush brBlack = new SolidBrush(Color.Black); + //отрисовка экскаватора без ковша + if (!EntityExcavator.Kovsh) + { + g.DrawRectangle(pen, _startPosX + 15, _startPosY + 25, 75, 25); + g.DrawRectangle(pen, _startPosX + 60, _startPosY, 30, 25); + g.DrawRectangle(pen, _startPosX + 30, _startPosY + 5, 10, 20); + g.DrawRectangle(pen, _startPosX + 10, _startPosY + 55, 86, 20); + g.DrawPie(pen, _startPosX, _startPosY + 55, 20, 20, 90, 180); + g.DrawPie(pen, _startPosX + 85, _startPosY + 55, 20, 20, 270, 180); + g.DrawEllipse(pen, _startPosX + 5, _startPosY + 58, 15, 15); + g.DrawEllipse(pen, _startPosX + 85, _startPosY + 58, 15, 15); + g.DrawEllipse(pen, _startPosX + 25, _startPosY + 65, 8, 8); + g.DrawEllipse(pen, _startPosX + 45, _startPosY + 65, 8, 8); + g.DrawEllipse(pen, _startPosX + 65, _startPosY + 65, 8, 8); + g.DrawEllipse(pen, _startPosX + 37, _startPosY + 58, 6, 6); + g.DrawEllipse(pen, _startPosX + 57, _startPosY + 58, 6, 6); + //кабина водителя + g.FillRectangle(brBlue, _startPosX + 61, _startPosY + 1, 29, 24); + // кузов + g.FillRectangle(brYellow, _startPosX + 16, _startPosY + 26, 74, 24); + // труба + g.FillRectangle(brYellow, _startPosX + 31, _startPosY + 6, 9, 19); + //гусеница + g.FillPie(brGray, _startPosX, _startPosY + 55, 20, 20, 90, 180); + g.FillPie(brGray, _startPosX + 85, _startPosY + 55, 20, 20, 270, 180); + g.FillRectangle(brGray, _startPosX + 10, _startPosY + 55, 86, 20); + g.FillEllipse(brBlack, _startPosX + 5, _startPosY + 58, 15, 15); + g.FillEllipse(brBlack, _startPosX + 85, _startPosY + 58, 15, 15); + g.FillEllipse(brBlack, _startPosX + 25, _startPosY + 65, 8, 8); + g.FillEllipse(brBlack, _startPosX + 45, _startPosY + 65, 8, 8); + g.FillEllipse(brBlack, _startPosX + 65, _startPosY + 65, 8, 8); + g.FillEllipse(brBlack, _startPosX + 37, _startPosY + 58, 6, 6); + g.FillEllipse(brBlack, _startPosX + 57, _startPosY + 58, 6, 6); + } + //отрисовка экскаватора с ковшом + if (EntityExcavator.Kovsh) + { + //экскаватор + g.DrawRectangle(pen, _startPosX + 50, _startPosY + 35, 75, 25); + g.DrawRectangle(pen, _startPosX + 95, _startPosY + 10, 30, 25); + g.DrawRectangle(pen, _startPosX + 60, _startPosY + 15, 10, 20); + g.DrawRectangle(pen, _startPosX + 44, _startPosY + 65, 86, 20); + g.DrawPie(pen, _startPosX + 34, _startPosY + 65, 20, 20, 90, 180); + g.DrawPie(pen, _startPosX + 120, _startPosY + 65, 20, 20, 270, 180); + g.DrawEllipse(pen, _startPosX + 40, _startPosY + 68, 15, 15); + g.DrawEllipse(pen, _startPosX + 120, _startPosY + 68, 15, 15); + g.DrawEllipse(pen, _startPosX + 60, _startPosY + 76, 8, 8); + g.DrawEllipse(pen, _startPosX + 80, _startPosY + 76, 8, 8); + g.DrawEllipse(pen, _startPosX + 100, _startPosY + 76, 8, 8); + g.DrawEllipse(pen, _startPosX + 72, _startPosY + 68, 6, 6); + g.DrawEllipse(pen, _startPosX + 92, _startPosY + 68, 6, 6); + //кабина водителя + g.FillRectangle(brBlue, _startPosX + 96, _startPosY + 11, 29, 24); + // кузов + g.FillRectangle(brYellow, _startPosX + 51, _startPosY + 36, 74, 24); + // труба + g.FillRectangle(brYellow, _startPosX + 61, _startPosY + 16, 9, 19); + //гусеница + g.FillPie(brGray, _startPosX + 34, _startPosY + 65, 20, 20, 90, 180); + g.FillPie(brGray, _startPosX + 120, _startPosY + 65, 20, 20, 270, 180); + g.FillRectangle(brGray, _startPosX + 44, _startPosY + 65, 86, 20); + g.FillEllipse(brBlack, _startPosX + 40, _startPosY + 68, 15, 15); + g.FillEllipse(brBlack, _startPosX + 120, _startPosY + 68, 15, 15); + g.FillEllipse(brBlack, _startPosX + 60, _startPosY + 76, 8, 8); + g.FillEllipse(brBlack, _startPosX + 80, _startPosY + 76, 8, 8); + g.FillEllipse(brBlack, _startPosX + 100, _startPosY + 76, 8, 8); + g.FillEllipse(brBlack, _startPosX + 72, _startPosY + 68, 6, 6); + g.FillEllipse(brBlack, _startPosX + 92, _startPosY + 68, 6, 6); + //ковш + g.DrawLine(pen, _startPosX + 50, _startPosY + 35, _startPosX + 10, _startPosY + 10); + g.DrawLine(pen, _startPosX + 58, _startPosY + 35, _startPosX + 12, _startPosY + 5); + g.DrawEllipse(pen, _startPosX + 7, _startPosY + 4, 7, 7); + g.DrawLine(pen, _startPosX + 10, _startPosY + 10, _startPosX + 10, _startPosY + 45); + g.DrawLine(pen, _startPosX + 14, _startPosY + 5, _startPosX + 14, _startPosY + 45); + g.DrawPie(pen, _startPosX, _startPosY + 44, 28, 30, 90, 180); + g.DrawLine(pen, _startPosX + 14, _startPosY + 5, _startPosX + 14, _startPosY); + g.DrawLine(pen, _startPosX + 14, _startPosY, _startPosX + 7, _startPosY + 10); + g.DrawLine(pen, _startPosX + 14, _startPosY, _startPosX + 50, _startPosY + 12); + g.DrawLine(pen, _startPosX + 14, _startPosY, _startPosX + 50, _startPosY + 16); + g.DrawLine(pen, _startPosX + 50, _startPosY + 12, _startPosX + 50, _startPosY + 29); + + g.FillEllipse(additionalBrush, _startPosX + 7, _startPosY + 4, 7, 7); + g.FillPie(brBlack, _startPosX, _startPosY + 44, 28, 30, 90, 180); + Point point1 = new Point(_startPosX + 50, _startPosY + 35); + Point point2 = new Point(_startPosX + 10, _startPosY + 10); + Point point3 = new Point(_startPosX + 12, _startPosY + 5); + Point point4 = new Point(_startPosX + 58, _startPosY + 35); + Point[] truba_1 = { point1, point2, point3, point4, point1 }; + g.FillPolygon(additionalBrush, truba_1); + + Point point5 = new Point(_startPosX + 10, _startPosY + 10); + Point point6 = new Point(_startPosX + 10, _startPosY + 45); + Point point7 = new Point(_startPosX + 14, _startPosY + 45); + Point point8 = new Point(_startPosX + 14, _startPosY + 5); + Point[] truba_2 = { point5, point6, point7, point8, point5 }; + g.FillPolygon(additionalBrush, truba_2); + + Point point9 = new Point(_startPosX + 14, _startPosY + 5); + Point point10 = new Point(_startPosX + 14, _startPosY); + Point point11 = new Point(_startPosX + 7, _startPosY + 10); + Point[] triangle = { point9, point10, point11, point9 }; + g.FillPolygon(additionalBrush, triangle); + + Point point12 = new Point(_startPosX + 14, _startPosY); + Point point13 = new Point(_startPosX + 50, _startPosY + 12); + Point point14 = new Point(_startPosX + 50, _startPosY + 16); + Point point15 = new Point(_startPosX + 14, _startPosY); + Point[] krepl = { point12, point13, point14, point15, point12 }; + g.FillPolygon(additionalBrush, krepl); + } + //катки гусеничные + if (!EntityExcavator.Katki && EntityExcavator.Kovsh) + { + g.FillEllipse(additionalBrush, _startPosX + 40, _startPosY + 68, 15, 15); + g.FillEllipse(additionalBrush, _startPosX + 120, _startPosY + 68, 15, 15); + g.FillEllipse(additionalBrush, _startPosX + 60, _startPosY + 76, 8, 8); + g.FillEllipse(additionalBrush, _startPosX + 80, _startPosY + 76, 8, 8); + g.FillEllipse(additionalBrush, _startPosX + 100, _startPosY + 76, 8, 8); + g.FillEllipse(additionalBrush, _startPosX + 72, _startPosY + 68, 6, 6); + g.FillEllipse(additionalBrush, _startPosX + 92, _startPosY + 68, 6, 6); + } + } + } +} diff --git a/ProjectExcavator/ProjectExcavator/EntityExcavator.cs b/ProjectExcavator/ProjectExcavator/EntityExcavator.cs new file mode 100644 index 0000000..0693af1 --- /dev/null +++ b/ProjectExcavator/ProjectExcavator/EntityExcavator.cs @@ -0,0 +1,59 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectExcavator +{ + public class EntityExcavator + { + /// + /// Скорость + /// + public int Speed { get; private set; } + /// + /// Вес + /// + public double Weight { get; private set; } + /// + /// Основной цвет + /// + public Color BodyColor { get; private set; } + /// + /// Ковш + /// + public bool Kovsh { get; private set; } + /// + /// Катки гусеничные + /// + public bool Katki { get; private set; } + /// + /// Дополнительный цвет (для опциональных элементов) + /// + public Color AdditionalColor { get; private set; } + /// + /// Шаг перемещения автомобиля + /// + public double Step => (double)Speed * 100 / Weight; + /// + /// Инициализация полей объекта-класса спортивного автомобиля + /// + /// Скорость + /// Вес автомобиля + /// Основной цвет + /// Дополнительный цвет + /// Ковш + /// Катки гусеничные + public void Init(int speed, double weight, Color bodyColor, Color + additionalColor, bool kovsh, bool katki) + { + Speed = speed; + Weight = weight; + BodyColor = bodyColor; + AdditionalColor = additionalColor; + Kovsh = kovsh; + Katki = katki; + } + } +} diff --git a/ProjectExcavator/ProjectExcavator/Form1.Designer.cs b/ProjectExcavator/ProjectExcavator/Form1.Designer.cs deleted file mode 100644 index 451fd85..0000000 --- a/ProjectExcavator/ProjectExcavator/Form1.Designer.cs +++ /dev/null @@ -1,39 +0,0 @@ -namespace ProjectExcavator -{ - partial class Form1 - { - /// - /// 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.components = new System.ComponentModel.Container(); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Text = "Form1"; - } - - #endregion - } -} \ No newline at end of file diff --git a/ProjectExcavator/ProjectExcavator/Form1.cs b/ProjectExcavator/ProjectExcavator/Form1.cs deleted file mode 100644 index 1eb2162..0000000 --- a/ProjectExcavator/ProjectExcavator/Form1.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace ProjectExcavator -{ - public partial class Form1 : Form - { - public Form1() - { - InitializeComponent(); - } - } -} \ No newline at end of file diff --git a/ProjectExcavator/ProjectExcavator/FormExcavator.Designer.cs b/ProjectExcavator/ProjectExcavator/FormExcavator.Designer.cs new file mode 100644 index 0000000..4dc3b95 --- /dev/null +++ b/ProjectExcavator/ProjectExcavator/FormExcavator.Designer.cs @@ -0,0 +1,135 @@ +namespace ProjectExcavator +{ + partial class FormExcavator + { + /// + /// 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.pictureBoxExcavator = new System.Windows.Forms.PictureBox(); + this.buttonCreate = new System.Windows.Forms.Button(); + this.buttonLeft = new System.Windows.Forms.Button(); + this.buttonUp = new System.Windows.Forms.Button(); + this.buttonRight = new System.Windows.Forms.Button(); + this.buttonDown = new System.Windows.Forms.Button(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxExcavator)).BeginInit(); + this.SuspendLayout(); + // + // pictureBoxExcavator + // + this.pictureBoxExcavator.Dock = System.Windows.Forms.DockStyle.Fill; + this.pictureBoxExcavator.Location = new System.Drawing.Point(0, 0); + this.pictureBoxExcavator.Name = "pictureBoxExcavator"; + this.pictureBoxExcavator.Size = new System.Drawing.Size(884, 461); + this.pictureBoxExcavator.TabIndex = 0; + this.pictureBoxExcavator.TabStop = false; + // + // 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, 438); + this.buttonCreate.Name = "buttonCreate"; + this.buttonCreate.Size = new System.Drawing.Size(75, 23); + this.buttonCreate.TabIndex = 1; + this.buttonCreate.Text = "Создать"; + this.buttonCreate.UseVisualStyleBackColor = true; + this.buttonCreate.Click += new System.EventHandler(this.buttonCreate_Click); + // + // buttonLeft + // + this.buttonLeft.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.buttonLeft.BackgroundImage = global::ProjectExcavator.Properties.Resources.влево; + this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.buttonLeft.Location = new System.Drawing.Point(761, 431); + this.buttonLeft.Name = "buttonLeft"; + this.buttonLeft.Size = new System.Drawing.Size(30, 30); + this.buttonLeft.TabIndex = 2; + 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::ProjectExcavator.Properties.Resources.up; + this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.buttonUp.Location = new System.Drawing.Point(797, 395); + this.buttonUp.Name = "buttonUp"; + this.buttonUp.Size = new System.Drawing.Size(30, 30); + this.buttonUp.TabIndex = 3; + this.buttonUp.UseVisualStyleBackColor = true; + this.buttonUp.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::ProjectExcavator.Properties.Resources.право; + this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.buttonRight.Location = new System.Drawing.Point(833, 431); + this.buttonRight.Name = "buttonRight"; + this.buttonRight.Size = new System.Drawing.Size(30, 30); + this.buttonRight.TabIndex = 4; + 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::ProjectExcavator.Properties.Resources.down; + this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.buttonDown.Location = new System.Drawing.Point(797, 431); + this.buttonDown.Name = "buttonDown"; + this.buttonDown.Size = new System.Drawing.Size(30, 30); + this.buttonDown.TabIndex = 5; + this.buttonDown.UseVisualStyleBackColor = true; + this.buttonDown.Click += new System.EventHandler(this.buttonMove_Click); + // + // FormExcavator + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(884, 461); + this.Controls.Add(this.buttonDown); + this.Controls.Add(this.buttonRight); + this.Controls.Add(this.buttonUp); + this.Controls.Add(this.buttonLeft); + this.Controls.Add(this.buttonCreate); + this.Controls.Add(this.pictureBoxExcavator); + this.Name = "FormExcavator"; + this.Text = "FormExcavator"; + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxExcavator)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private PictureBox pictureBoxExcavator; + private Button buttonCreate; + private Button buttonLeft; + private Button buttonUp; + private Button buttonRight; + private Button buttonDown; + } +} \ No newline at end of file diff --git a/ProjectExcavator/ProjectExcavator/FormExcavator.cs b/ProjectExcavator/ProjectExcavator/FormExcavator.cs new file mode 100644 index 0000000..852ece9 --- /dev/null +++ b/ProjectExcavator/ProjectExcavator/FormExcavator.cs @@ -0,0 +1,63 @@ +namespace ProjectExcavator +{ + public partial class FormExcavator : Form + { + + private DrawingExcavator? _drawingExcavator; + public FormExcavator() + { + InitializeComponent(); + } + + private void Draw() + { + if (_drawingExcavator == null) + { + return; + } + Bitmap bmp = new(pictureBoxExcavator.Width, pictureBoxExcavator.Height); + Graphics g = Graphics.FromImage(bmp); + _drawingExcavator.DrawTransport(g); + pictureBoxExcavator.Image = bmp; + } + + private void buttonCreate_Click(object sender, EventArgs e) + { + Random random = new(); + _drawingExcavator = new DrawingExcavator(); + _drawingExcavator.Init(random.Next(300, 1000), random.Next(1000, 2000), + 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)), + pictureBoxExcavator.Width, pictureBoxExcavator.Height); + _drawingExcavator.SetPosition(random.Next(100, 300), random.Next(100, 300)); + Draw(); + } + + private void buttonMove_Click(object sender, EventArgs e) + { + if (_drawingExcavator == null) + { + return; + } + string name = ((Button)sender)?.Name ?? string.Empty; + switch (name) + { + case "buttonUp": + _drawingExcavator.MoveTransport(DirectionType.Up); + break; + case "buttonDown": + _drawingExcavator.MoveTransport(DirectionType.Down); + break; + case "buttonLeft": + _drawingExcavator.MoveTransport(DirectionType.Left); + break; + case "buttonRight": + _drawingExcavator.MoveTransport(DirectionType.Right); + break; + } + Draw(); + } + } +} \ No newline at end of file diff --git a/ProjectExcavator/ProjectExcavator/FormExcavator.resx b/ProjectExcavator/ProjectExcavator/FormExcavator.resx new file mode 100644 index 0000000..f298a7b --- /dev/null +++ b/ProjectExcavator/ProjectExcavator/FormExcavator.resx @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/ProjectExcavator/ProjectExcavator/Program.cs b/ProjectExcavator/ProjectExcavator/Program.cs index c5b8144..59b8c54 100644 --- a/ProjectExcavator/ProjectExcavator/Program.cs +++ b/ProjectExcavator/ProjectExcavator/Program.cs @@ -11,7 +11,7 @@ namespace ProjectExcavator // To customize application configuration such as set high DPI settings or default font, // see https://aka.ms/applicationconfiguration. ApplicationConfiguration.Initialize(); - Application.Run(new Form1()); + Application.Run(new FormExcavator()); } } } \ No newline at end of file diff --git a/ProjectExcavator/ProjectExcavator/ProjectExcavator.csproj b/ProjectExcavator/ProjectExcavator/ProjectExcavator.csproj index b57c89e..13ee123 100644 --- a/ProjectExcavator/ProjectExcavator/ProjectExcavator.csproj +++ b/ProjectExcavator/ProjectExcavator/ProjectExcavator.csproj @@ -8,4 +8,19 @@ enable + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + \ No newline at end of file diff --git a/ProjectExcavator/ProjectExcavator/Properties/Resources.Designer.cs b/ProjectExcavator/ProjectExcavator/Properties/Resources.Designer.cs new file mode 100644 index 0000000..12dc887 --- /dev/null +++ b/ProjectExcavator/ProjectExcavator/Properties/Resources.Designer.cs @@ -0,0 +1,103 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +namespace ProjectExcavator.Properties { + using System; + + + /// + /// Класс ресурса со строгой типизацией для поиска локализованных строк и т.д. + /// + // Этот класс создан автоматически классом StronglyTypedResourceBuilder + // с помощью такого средства, как ResGen или Visual Studio. + // Чтобы добавить или удалить член, измените файл .ResX и снова запустите ResGen + // с параметром /str или перестройте свой проект VS. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Возвращает кэшированный экземпляр ResourceManager, использованный этим классом. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ProjectExcavator.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Перезаписывает свойство CurrentUICulture текущего потока для всех + /// обращений к ресурсу с помощью этого класса ресурса со строгой типизацией. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap down { + get { + object obj = ResourceManager.GetObject("down", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap up { + get { + object obj = ResourceManager.GetObject("up", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap влево { + get { + object obj = ResourceManager.GetObject("влево", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap право { + get { + object obj = ResourceManager.GetObject("право", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/ProjectExcavator/ProjectExcavator/Form1.resx b/ProjectExcavator/ProjectExcavator/Properties/Resources.resx similarity index 83% rename from ProjectExcavator/ProjectExcavator/Form1.resx rename to ProjectExcavator/ProjectExcavator/Properties/Resources.resx index 1af7de1..17c3c79 100644 --- a/ProjectExcavator/ProjectExcavator/Form1.resx +++ b/ProjectExcavator/ProjectExcavator/Properties/Resources.resx @@ -117,4 +117,17 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\влево.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\up.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\право.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\down.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + \ No newline at end of file diff --git a/ProjectExcavator/ProjectExcavator/Resources/down.png b/ProjectExcavator/ProjectExcavator/Resources/down.png new file mode 100644 index 0000000..c6f6fa0 Binary files /dev/null and b/ProjectExcavator/ProjectExcavator/Resources/down.png differ diff --git a/ProjectExcavator/ProjectExcavator/Resources/up.png b/ProjectExcavator/ProjectExcavator/Resources/up.png new file mode 100644 index 0000000..aa3da33 Binary files /dev/null and b/ProjectExcavator/ProjectExcavator/Resources/up.png differ diff --git a/ProjectExcavator/ProjectExcavator/Resources/влево.png b/ProjectExcavator/ProjectExcavator/Resources/влево.png new file mode 100644 index 0000000..7869f00 Binary files /dev/null and b/ProjectExcavator/ProjectExcavator/Resources/влево.png differ diff --git a/ProjectExcavator/ProjectExcavator/Resources/право.png b/ProjectExcavator/ProjectExcavator/Resources/право.png new file mode 100644 index 0000000..0c61c75 Binary files /dev/null and b/ProjectExcavator/ProjectExcavator/Resources/право.png differ