diff --git a/Monorail/Monorail/Direction.cs b/Monorail/Monorail/Direction.cs new file mode 100644 index 0000000..5a99ea2 --- /dev/null +++ b/Monorail/Monorail/Direction.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Monorail +{ + public enum DirectionType + { + Up = 1, + Down = 2, + Left = 3, + Right = 4 + } +} diff --git a/Monorail/Monorail/DrawningMonorail.cs b/Monorail/Monorail/DrawningMonorail.cs new file mode 100644 index 0000000..b676e24 --- /dev/null +++ b/Monorail/Monorail/DrawningMonorail.cs @@ -0,0 +1,204 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Monorail +{ + public class DrawningMonorail + { + public Entity? Entity { get; private set; } + + private int _pictureWidth; + private int _pictureHeight; + private int _startPosX; + private int _startPosY; + private int _relWidth = 150; + private readonly int _relHeight = 46; + public bool Init(int speed, double weight, Color bodyColor, Color additionalColor, + bool monorails, bool secondCabin, int width, int height) + { + if (0 + _relWidth >= width || 0 + _relHeight >= height) + { + return false; + } + _pictureWidth = width; + _pictureHeight = height; + Entity = new Entity(); + Entity.Init(speed, weight, bodyColor, additionalColor, monorails, secondCabin); + return true; + } + public void SetPosition(int x, int y) + { + if (x < 0 || x > _pictureWidth - _relWidth) + { + x = 0; + } + if (y < 0 || y > _pictureHeight - _relHeight) + { + y = 0; + } + _startPosX = x; + _startPosY = y; + } + public void MoveTransport(DirectionType direction) + { + if (Entity == null) + { + return; + } + switch (direction) + { + case DirectionType.Left: + if (_startPosX - Entity.Step > 0) + { + _startPosX -= (int)Entity.Step; + } + break; + case DirectionType.Right: + if (_startPosX + (int)Entity.Step < _pictureWidth - _relWidth) + { + _startPosX += (int)Entity.Step; + } + break; + case DirectionType.Up: + if (_startPosY - Entity.Step > 0) + { + _startPosY -= (int)Entity.Step; + } + break; + case DirectionType.Down: + if (_startPosY + Entity.Step < _pictureHeight - _relHeight) + { + _startPosY += (int)Entity.Step; + } + break; + } + } + + public void DrawMonorail(Graphics g) + { + if (Entity == null) + { + return; + } + _relWidth = 150; + Pen pen = new(Color.Black, 2); + Brush additionalBrush = new SolidBrush(Entity.AdditionalColor); + Brush bodyBrush = new SolidBrush(Entity.BodyColor); + //колёса + + g.DrawEllipse(pen, _startPosX + 20, _startPosY + 35, 15, 15); + g.DrawEllipse(pen, _startPosX + 50, _startPosY + 35, 15, 15); + g.DrawEllipse(pen, _startPosX + 80, _startPosY + 35, 15, 15); + g.DrawEllipse(pen, _startPosX + 110, _startPosY + 35, 15, 15); + g.DrawRectangle(pen, _startPosX + 22, _startPosY + 36, 40, 8); + g.DrawRectangle(pen, _startPosX + 82, _startPosY + 36, 40, 8); + g.DrawEllipse(pen, _startPosX + 3, _startPosY + 37, 30, 8); + g.DrawEllipse(pen, _startPosX + 110, _startPosY + 37, 29, 8); + + Brush brBlack = new SolidBrush(Color.Black); + g.FillRectangle(brBlack, _startPosX + 22, _startPosY + 36, 40, 8); + g.FillRectangle(brBlack, _startPosX + 82, _startPosY + 36, 40, 8); + g.FillEllipse(brBlack, _startPosX + 3, _startPosY + 37, 30, 8); + g.FillEllipse(brBlack, _startPosX + 110, _startPosY + 37, 29, 8); + + Brush brWhite = new SolidBrush(Color.White); + g.FillEllipse(brWhite, _startPosX + 20, _startPosY + 35, 15, 15); + g.FillEllipse(brWhite, _startPosX + 50, _startPosY + 35, 15, 15); + g.FillEllipse(brWhite, _startPosX + 80, _startPosY + 35, 15, 15); + g.FillEllipse(brWhite, _startPosX + 110, _startPosY + 35, 15, 15); + + //Кабина + + g.DrawRectangle(pen, _startPosX + 10, _startPosY + 20, 120, 16); + g.FillRectangle(bodyBrush, _startPosX + 10, _startPosY + 20, 120, 16); + Point p1 = new Point(_startPosX + 10, _startPosY + 20); + Point p2 = new Point(_startPosX + 130, _startPosY + 20); + Point p3 = new Point(_startPosX + 130, _startPosY + 5); + Point p4 = new Point(_startPosX + 13, _startPosY + 5); + + g.DrawPolygon(pen, new Point[] { p1, p2, p3, p4 }); + g.FillPolygon(bodyBrush, new Point[] { p1, p2, p3, p4 }); + + + //дверь + g.FillRectangle(brWhite, _startPosX + 49, _startPosY + 9, 12, 22); + g.DrawRectangle(pen, _startPosX + 49, _startPosY + 9, 12, 22); + + //Окна и прочее + + Pen penBlue = new Pen(Color.Cyan, 2); + g.DrawRectangle(penBlue, _startPosX + 20, _startPosY + 8, 10, 10); + g.DrawRectangle(penBlue, _startPosX + 35, _startPosY + 8, 10, 10); + g.DrawRectangle(penBlue, _startPosX + 117, _startPosY + 8, 10, 10); + + g.DrawRectangle(pen, _startPosX + 132, _startPosY + 10, 2, 22); + + //Магнитная рельса + + if (Entity.Monorails == true) + { + g.DrawRectangle(pen, _startPosX, _startPosY + 50, 140, 10); + g.FillRectangle(brBlack, _startPosX, _startPosY + 50, 140, 10); + + g.FillRectangle(brWhite, _startPosX + 5, _startPosY + 53, 130, 5); + } + + if (Entity.SecondCabin == true) + { + _relWidth = 290; + //низ + g.DrawEllipse(pen, _startPosX + 160, _startPosY + 35, 15, 15); + g.DrawEllipse(pen, _startPosX + 190, _startPosY + 35, 15, 15); + g.DrawEllipse(pen, _startPosX + 220, _startPosY + 35, 15, 15); + g.DrawEllipse(pen, _startPosX + 250, _startPosY + 35, 15, 15); + g.DrawRectangle(pen, _startPosX + 162, _startPosY + 36, 40, 8); + g.DrawRectangle(pen, _startPosX + 222, _startPosY + 36, 40, 8); + g.DrawEllipse(pen, _startPosX + 143, _startPosY + 37, 30, 8); + g.DrawEllipse(pen, _startPosX + 250, _startPosY + 37, 29, 8); + + g.FillRectangle(brBlack, _startPosX + 162, _startPosY + 36, 40, 8); + g.FillRectangle(brBlack, _startPosX + 222, _startPosY + 36, 40, 8); + g.FillEllipse(brBlack, _startPosX + 143, _startPosY + 37, 30, 8); + g.FillEllipse(brBlack, _startPosX + 250, _startPosY + 37, 29, 8); + + g.FillEllipse(brWhite, _startPosX + 160, _startPosY + 35, 15, 15); + g.FillEllipse(brWhite, _startPosX + 190, _startPosY + 35, 15, 15); + g.FillEllipse(brWhite, _startPosX + 220, _startPosY + 35, 15, 15); + g.FillEllipse(brWhite, _startPosX + 250, _startPosY + 35, 15, 15); + + if (Entity.Monorails == true) + { + g.DrawRectangle(pen, _startPosX + 140, _startPosY + 50, 145, 10); + g.FillRectangle(brBlack, _startPosX + 140, _startPosY + 50, 145, 10); + + g.FillRectangle(brWhite, _startPosX + 135, _startPosY + 53, 145, 5); + } + + //Кабина + g.DrawRectangle(pen, _startPosX + 150, _startPosY + 20, 120, 16); + g.FillRectangle(additionalBrush, _startPosX + 150, _startPosY + 20, 120, 16); + Point p5 = new Point(_startPosX + 150, _startPosY + 20); + Point p6 = new Point(_startPosX + 270, _startPosY + 20); + Point p7 = new Point(_startPosX + 267, _startPosY + 5); + Point p8 = new Point(_startPosX + 150, _startPosY + 5); + + g.DrawPolygon(pen, new Point[] { p5, p6, p7, p8 }); + g.FillPolygon(additionalBrush, new Point[] { p5, p6, p7, p8 }); + + //дверь + g.FillRectangle(brWhite, _startPosX + 189, _startPosY + 9, 12, 22); + g.DrawRectangle(pen, _startPosX + 189, _startPosY + 9, 12, 22); + + //Окна и прочее + g.DrawRectangle(penBlue, _startPosX + 160, _startPosY + 8, 10, 10); + g.DrawRectangle(penBlue, _startPosX + 175, _startPosY + 8, 10, 10); + g.DrawRectangle(penBlue, _startPosX + 257, _startPosY + 8, 10, 10); + + g.DrawRectangle(pen, _startPosX + 272, _startPosY + 10, 2, 22); + } + } + } +} diff --git a/Monorail/Monorail/Entity.cs b/Monorail/Monorail/Entity.cs new file mode 100644 index 0000000..65b2b85 --- /dev/null +++ b/Monorail/Monorail/Entity.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Monorail +{ + public class Entity + { + public int Speed { get; private set; } + public double Weight { get; private set; } + public Color BodyColor { get; private set; } + public Color AdditionalColor { get; private set; } + public bool Monorails { get; private set; } + public bool SecondCabin { get; private set; } + public double Step => (double)Speed * 130 / Weight; + public void Init(int speed, double weight, Color bodyColor, Color additionalColor, + bool monorails, bool secondCabin) + { + Speed = speed; + Weight = weight; + BodyColor = bodyColor; + AdditionalColor = additionalColor; + Monorails = monorails; + SecondCabin = secondCabin; + } + } +} diff --git a/Monorail/Monorail/Form1.Designer.cs b/Monorail/Monorail/Form1.Designer.cs index bea6503..606c4b6 100644 --- a/Monorail/Monorail/Form1.Designer.cs +++ b/Monorail/Monorail/Form1.Designer.cs @@ -1,6 +1,6 @@ namespace Monorail { - partial class Form1 + partial class MonoRail { /// /// Required designer variable. @@ -28,12 +28,116 @@ /// 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"; + pictureBox1 = new PictureBox(); + buttonUp = new Button(); + buttonLeft = new Button(); + buttonDown = new Button(); + buttonRight = new Button(); + buttonCreate = new Button(); + ((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit(); + SuspendLayout(); + // + // pictureBox1 + // + pictureBox1.Dock = DockStyle.Fill; + pictureBox1.Location = new Point(0, 0); + pictureBox1.Name = "pictureBox1"; + pictureBox1.Size = new Size(882, 453); + pictureBox1.SizeMode = PictureBoxSizeMode.AutoSize; + pictureBox1.TabIndex = 1; + pictureBox1.TabStop = false; + // + // buttonUp + // + buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonUp.BackColor = SystemColors.Info; + buttonUp.BackgroundImage = Properties.Resources.upper_arrow; + buttonUp.BackgroundImageLayout = ImageLayout.Zoom; + buttonUp.Location = new Point(790, 355); + buttonUp.Name = "buttonUp"; + buttonUp.Size = new Size(40, 40); + buttonUp.TabIndex = 6; + buttonUp.UseVisualStyleBackColor = false; + buttonUp.Click += buttonMove_Click; + // + // buttonLeft + // + buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonLeft.BackColor = SystemColors.Info; + buttonLeft.BackgroundImage = Properties.Resources.left_arrow; + buttonLeft.BackgroundImageLayout = ImageLayout.Zoom; + buttonLeft.Location = new Point(744, 401); + buttonLeft.Name = "buttonLeft"; + buttonLeft.Size = new Size(40, 40); + buttonLeft.TabIndex = 10; + buttonLeft.UseVisualStyleBackColor = false; + buttonLeft.Click += buttonMove_Click; + // + // buttonDown + // + buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonDown.BackColor = SystemColors.Info; + buttonDown.BackgroundImage = Properties.Resources.down_arrow; + buttonDown.BackgroundImageLayout = ImageLayout.Zoom; + buttonDown.Location = new Point(790, 401); + buttonDown.Name = "buttonDown"; + buttonDown.Size = new Size(40, 40); + buttonDown.TabIndex = 9; + buttonDown.UseVisualStyleBackColor = false; + buttonDown.Click += buttonMove_Click; + // + // buttonRight + // + buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonRight.BackColor = SystemColors.Info; + buttonRight.BackgroundImage = Properties.Resources.right_arrow; + buttonRight.BackgroundImageLayout = ImageLayout.Zoom; + buttonRight.Location = new Point(836, 401); + buttonRight.Name = "buttonRight"; + buttonRight.Size = new Size(40, 40); + buttonRight.TabIndex = 8; + buttonRight.UseVisualStyleBackColor = false; + buttonRight.Click += buttonMove_Click; + // + // buttonCreate + // + buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; + buttonCreate.BackColor = SystemColors.Info; + buttonCreate.Location = new Point(12, 412); + buttonCreate.Name = "buttonCreate"; + buttonCreate.Size = new Size(77, 29); + buttonCreate.TabIndex = 7; + buttonCreate.Text = "Создать"; + buttonCreate.UseVisualStyleBackColor = false; + buttonCreate.Click += buttonCreate_Click; + // + // MonoRail + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + BackColor = SystemColors.ControlDarkDark; + ClientSize = new Size(882, 453); + Controls.Add(buttonLeft); + Controls.Add(buttonDown); + Controls.Add(buttonRight); + Controls.Add(buttonCreate); + Controls.Add(buttonUp); + Controls.Add(pictureBox1); + Name = "MonoRail"; + StartPosition = FormStartPosition.CenterScreen; + Text = "Monorail"; + ((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit(); + ResumeLayout(false); + PerformLayout(); } #endregion + + private PictureBox pictureBox1; + private Button buttonUp; + private Button buttonLeft; + private Button buttonDown; + private Button buttonRight; + private Button buttonCreate; } } \ No newline at end of file diff --git a/Monorail/Monorail/Form1.cs b/Monorail/Monorail/Form1.cs index 853d9d8..fb14ce0 100644 --- a/Monorail/Monorail/Form1.cs +++ b/Monorail/Monorail/Form1.cs @@ -1,10 +1,63 @@ namespace Monorail { - public partial class Form1 : Form + public partial class MonoRail : Form { - public Form1() + + private DrawningMonorail? _drawningMonorail; + + public MonoRail() { InitializeComponent(); } + private void Draw() + { + if (_drawningMonorail == null) + { + return; + } + Bitmap bmp = new(pictureBox1.Width, pictureBox1.Height); + Graphics gr = Graphics.FromImage(bmp); + _drawningMonorail.DrawMonorail(gr); + pictureBox1.Image = bmp; + } + + private void buttonCreate_Click(object sender, EventArgs e) + { + Random random = new(); + _drawningMonorail = new DrawningMonorail(); + _drawningMonorail.Init(random.Next(500, 800), 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)), + pictureBox1.Width, pictureBox1.Height); + _drawningMonorail.SetPosition(random.Next(10, 100), + random.Next(30, 100)); + Draw(); + } + private void buttonMove_Click(object sender, EventArgs e) + { + if (_drawningMonorail == null) + { + return; + } + string name = ((Button)sender)?.Name ?? string.Empty; + switch (name) + { + case "buttonUp": + _drawningMonorail.MoveTransport(DirectionType.Up); + break; + case "buttonDown": + _drawningMonorail.MoveTransport(DirectionType.Down); + break; + case "buttonLeft": + _drawningMonorail.MoveTransport(DirectionType.Left); + break; + case "buttonRight": + _drawningMonorail.MoveTransport(DirectionType.Right); + break; + } + Draw(); + } } } \ No newline at end of file diff --git a/Monorail/Monorail/Form1.resx b/Monorail/Monorail/Form1.resx index 1af7de1..a395bff 100644 --- a/Monorail/Monorail/Form1.resx +++ b/Monorail/Monorail/Form1.resx @@ -1,24 +1,24 @@  - diff --git a/Monorail/Monorail/Program.cs b/Monorail/Monorail/Program.cs index 6337e19..720f936 100644 --- a/Monorail/Monorail/Program.cs +++ b/Monorail/Monorail/Program.cs @@ -11,7 +11,7 @@ namespace Monorail // 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 MonoRail()); } } } \ No newline at end of file diff --git a/Monorail/Monorail/Properties/Resources.Designer.cs b/Monorail/Monorail/Properties/Resources.Designer.cs new file mode 100644 index 0000000..db624f5 --- /dev/null +++ b/Monorail/Monorail/Properties/Resources.Designer.cs @@ -0,0 +1,103 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +namespace Monorail.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("Monorail.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_arrow { + get { + object obj = ResourceManager.GetObject("down-arrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap left_arrow { + get { + object obj = ResourceManager.GetObject("left-arrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap right_arrow { + get { + object obj = ResourceManager.GetObject("right-arrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Поиск локализованного ресурса типа System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap upper_arrow { + get { + object obj = ResourceManager.GetObject("upper-arrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/Monorail/Monorail/Properties/Resources.resx b/Monorail/Monorail/Properties/Resources.resx new file mode 100644 index 0000000..44bb4fe --- /dev/null +++ b/Monorail/Monorail/Properties/Resources.resx @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + ..\Resources\down-arrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\right-arrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\upper-arrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\left-arrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/Monorail/Monorail/Resources/down-arrow.png b/Monorail/Monorail/Resources/down-arrow.png new file mode 100644 index 0000000..9d67143 Binary files /dev/null and b/Monorail/Monorail/Resources/down-arrow.png differ diff --git a/Monorail/Monorail/Resources/left-arrow.png b/Monorail/Monorail/Resources/left-arrow.png new file mode 100644 index 0000000..046470d Binary files /dev/null and b/Monorail/Monorail/Resources/left-arrow.png differ diff --git a/Monorail/Monorail/Resources/right-arrow.png b/Monorail/Monorail/Resources/right-arrow.png new file mode 100644 index 0000000..fac4c96 Binary files /dev/null and b/Monorail/Monorail/Resources/right-arrow.png differ diff --git a/Monorail/Monorail/Resources/upper-arrow.png b/Monorail/Monorail/Resources/upper-arrow.png new file mode 100644 index 0000000..0bc323d Binary files /dev/null and b/Monorail/Monorail/Resources/upper-arrow.png differ