diff --git a/ProjectPlane/ProjectPlane/DirectionType.cs b/ProjectPlane/ProjectPlane/DirectionType.cs new file mode 100644 index 0000000..01c2988 --- /dev/null +++ b/ProjectPlane/ProjectPlane/DirectionType.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectPlane; + +public enum DirectionType +{ + Up = 1, + + Down = 2, + + Left = 3, + + Right = 4, +} diff --git a/ProjectPlane/ProjectPlane/DrawCont.cs b/ProjectPlane/ProjectPlane/DrawCont.cs new file mode 100644 index 0000000..d26610b --- /dev/null +++ b/ProjectPlane/ProjectPlane/DrawCont.cs @@ -0,0 +1,176 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectPlane; + +public class DrawCont +{ + public EntityContainer? EntityContainer { get; private set; } + + private int? _PictureWidth; + + private int? _PictureHeight; + + private int? _StartPosX; + + private int? _StartPosY; + + private readonly int _drawingContWidth = 160; + + private readonly int _drawingContHeight = 90; + + public void Init(int speed, double weight, Color shipColor, Color containerColor, bool container, bool crane) + { + EntityContainer = new EntityContainer(); + EntityContainer.Init(speed, weight, shipColor, containerColor, container, crane); + _PictureWidth = null; + _PictureHeight = null; + _StartPosX = null; + _StartPosY = null; + } + + public bool SetPictureSize(int width, int height) + { + if (EntityContainer == null) + { + return false; + } + + if (width >= _drawingContWidth && height >= _drawingContHeight) + { + _PictureWidth = width; + _PictureHeight = height; + + if (_StartPosX.HasValue && _StartPosY.HasValue) + { + if (_StartPosX.Value + _drawingContWidth > _PictureWidth) + { + _StartPosX = _PictureWidth - _drawingContWidth; + } + if (_StartPosY.Value + _drawingContHeight > _PictureHeight) + { + _StartPosY = _PictureHeight - _drawingContHeight; + } + } + return true; + } + + return false; + } + + public void SetPosition(int x, int y) + { + if (!_PictureHeight.HasValue || !_PictureWidth.HasValue) + { + return; + } + + if (x < 0) + { + x = 0; + } + else if (x + _drawingContWidth > _PictureWidth) + { + x = _PictureWidth.Value - _drawingContWidth; + } + + if (y < 0) + { + y = 0; + } + else if (y + _drawingContHeight > _PictureHeight) + { + y = _PictureHeight.Value - _drawingContHeight; + } + + _StartPosX = x; + _StartPosY = y; + } + + public bool MoveTransport(DirectionType direction) + { + if (EntityContainer == null || !_StartPosX.HasValue || !_StartPosY.HasValue) + { + return false; + } + + switch (direction) + { + case DirectionType.Left: + if (_StartPosX.Value - EntityContainer.Step > 0) + { + _StartPosX -= (int)EntityContainer.Step; + } + return true; + + case DirectionType.Right: + if (_StartPosX.Value + EntityContainer.Step < _PictureWidth - _drawingContWidth) + { + _StartPosX += (int)EntityContainer.Step; + } + return true; + + case DirectionType.Up: + + if (_StartPosY.Value - EntityContainer.Step > 0) + { + _StartPosY -= (int)EntityContainer.Step; + } + return true; + + case DirectionType.Down: + if (_StartPosY.Value + EntityContainer.Step < _PictureHeight - _drawingContHeight) + { + _StartPosY += (int)EntityContainer.Step; + } + return true; + default: + return false; + } + + } + + public void DrawTransport(Graphics g) + { + if (EntityContainer == null || !_StartPosX.HasValue || !_StartPosY.HasValue) + { + return; + } + + Pen pen = new(Color.Black); + Brush ContainerBrush = new SolidBrush(EntityContainer.ContainerColor); + + + // отрисовка контейнера + if (EntityContainer.Container) + { + g.DrawRectangle(pen, _StartPosX.Value + 80, _StartPosY.Value, 60, 40); + g.FillRectangle(ContainerBrush, _StartPosX.Value + 81, _StartPosY.Value + 1, 59, 39); + } + + Brush ShipBrush = new SolidBrush(EntityContainer.ShipColor); + + //отрисовка корабля + Point[] points = + { + new Point(_StartPosX.Value, _StartPosY.Value + 40), + new Point(_StartPosX.Value + 160, _StartPosY.Value + 40), + new Point(_StartPosX.Value + 150, _StartPosY.Value + 90), + new Point(_StartPosX.Value + 10, _StartPosY.Value + 90), + }; + + g.DrawPolygon(pen, points); + g.FillPolygon(ShipBrush, points); + + //отрисовка крана + if (EntityContainer.Crane) + { + g.DrawLine(pen, _StartPosX.Value + 30, _StartPosY.Value + 50, _StartPosX.Value + 30, _StartPosY.Value + 70); + g.DrawLine(pen, _StartPosX.Value + 20, _StartPosY.Value + 60, _StartPosX.Value + 40, _StartPosY.Value + 60); + } + + } +} diff --git a/ProjectPlane/ProjectPlane/EntityContainer.cs b/ProjectPlane/ProjectPlane/EntityContainer.cs new file mode 100644 index 0000000..5bc1409 --- /dev/null +++ b/ProjectPlane/ProjectPlane/EntityContainer.cs @@ -0,0 +1,48 @@ +namespace ProjectPlane; +/// +/// Класс-сущность "Контейнеровоз" +/// +public class EntityContainer +{ + /// + /// Скорость + /// + public int Speed { get; private set; } + + /// + /// Вес + /// + public double Weight { get; private set; } + + /// + /// Цвет контейнеровоза + /// + public Color ShipColor { get; private set; } + + /// + /// Цвет контейнера + /// + public Color ContainerColor { get; private set; } + + /// + /// Признак наличия контейнера + /// + public bool Container { get; private set; } + + /// + /// Признак наличия крана + /// + public bool Crane { get; private set; } + + public double Step => Speed * 10 / Weight; + + public void Init(int speed, double weight, Color shipColor, Color containerColor, bool container, bool crane) + { + Speed = speed; + Weight = weight; + ContainerColor = containerColor; + ShipColor = shipColor; + Container = container; + Crane = crane; + } +} diff --git a/ProjectPlane/ProjectPlane/Form1.Designer.cs b/ProjectPlane/ProjectPlane/Form1.Designer.cs deleted file mode 100644 index 55294cb..0000000 --- a/ProjectPlane/ProjectPlane/Form1.Designer.cs +++ /dev/null @@ -1,39 +0,0 @@ -namespace ProjectPlane -{ - 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/ProjectPlane/ProjectPlane/Form1.cs b/ProjectPlane/ProjectPlane/Form1.cs deleted file mode 100644 index c38f13e..0000000 --- a/ProjectPlane/ProjectPlane/Form1.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace ProjectPlane -{ - public partial class Form1 : Form - { - public Form1() - { - InitializeComponent(); - } - } -} \ No newline at end of file diff --git a/ProjectPlane/ProjectPlane/FormContainer.Designer.cs b/ProjectPlane/ProjectPlane/FormContainer.Designer.cs new file mode 100644 index 0000000..241a988 --- /dev/null +++ b/ProjectPlane/ProjectPlane/FormContainer.Designer.cs @@ -0,0 +1,134 @@ +namespace ProjectPlane +{ + partial class FormContainer + { + /// + /// 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() + { + pictureBoxCont = new PictureBox(); + buttonCreate = new Button(); + buttonLeft = new Button(); + buttonRight = new Button(); + buttonUp = new Button(); + buttonDown = new Button(); + ((System.ComponentModel.ISupportInitialize)pictureBoxCont).BeginInit(); + SuspendLayout(); + // + // pictureBoxCont + // + pictureBoxCont.Dock = DockStyle.Fill; + pictureBoxCont.Location = new Point(0, 0); + pictureBoxCont.Name = "pictureBoxCont"; + pictureBoxCont.Size = new Size(804, 468); + pictureBoxCont.TabIndex = 0; + pictureBoxCont.TabStop = false; + // + // buttonCreate + // + buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; + buttonCreate.Location = new Point(12, 433); + buttonCreate.Name = "buttonCreate"; + buttonCreate.Size = new Size(75, 23); + buttonCreate.TabIndex = 1; + buttonCreate.Text = "Создать"; + buttonCreate.UseVisualStyleBackColor = true; + buttonCreate.Click += ButtonCreate_Click; + // + // buttonLeft + // + buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonLeft.BackgroundImage = Properties.Resources.влево; + buttonLeft.BackgroundImageLayout = ImageLayout.Stretch; + buttonLeft.Location = new Point(643, 416); + buttonLeft.Name = "buttonLeft"; + buttonLeft.Size = new Size(40, 40); + buttonLeft.TabIndex = 2; + buttonLeft.UseVisualStyleBackColor = true; + buttonLeft.Click += ButtonMove_Click; + // + // buttonRight + // + buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonRight.BackgroundImage = Properties.Resources.вправо; + buttonRight.BackgroundImageLayout = ImageLayout.Stretch; + buttonRight.Location = new Point(735, 416); + buttonRight.Name = "buttonRight"; + buttonRight.Size = new Size(40, 40); + buttonRight.TabIndex = 3; + buttonRight.UseVisualStyleBackColor = true; + buttonRight.Click += ButtonMove_Click; + // + // buttonUp + // + buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonUp.BackgroundImage = Properties.Resources.вверх; + buttonUp.BackgroundImageLayout = ImageLayout.Stretch; + buttonUp.Location = new Point(689, 370); + buttonUp.Name = "buttonUp"; + buttonUp.Size = new Size(40, 40); + buttonUp.TabIndex = 4; + buttonUp.UseVisualStyleBackColor = true; + buttonUp.Click += ButtonMove_Click; + // + // buttonDown + // + buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonDown.BackgroundImage = Properties.Resources.вниз; + buttonDown.BackgroundImageLayout = ImageLayout.Stretch; + buttonDown.Location = new Point(689, 416); + buttonDown.Name = "buttonDown"; + buttonDown.Size = new Size(40, 40); + buttonDown.TabIndex = 5; + buttonDown.UseVisualStyleBackColor = true; + buttonDown.Click += ButtonMove_Click; + // + // FormContainer + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(804, 468); + Controls.Add(buttonDown); + Controls.Add(buttonUp); + Controls.Add(buttonRight); + Controls.Add(buttonLeft); + Controls.Add(buttonCreate); + Controls.Add(pictureBoxCont); + Name = "FormContainer"; + Text = "FormContainer"; + ((System.ComponentModel.ISupportInitialize)pictureBoxCont).EndInit(); + ResumeLayout(false); + } + + #endregion + + private PictureBox pictureBoxCont; + private Button buttonCreate; + private Button buttonLeft; + private Button buttonRight; + private Button buttonUp; + private Button buttonDown; + } +} \ No newline at end of file diff --git a/ProjectPlane/ProjectPlane/FormContainer.cs b/ProjectPlane/ProjectPlane/FormContainer.cs new file mode 100644 index 0000000..343a696 --- /dev/null +++ b/ProjectPlane/ProjectPlane/FormContainer.cs @@ -0,0 +1,83 @@ +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 ProjectPlane +{ + public partial class FormContainer : Form + { + + private DrawCont? _drawCont; + + public FormContainer() + { + InitializeComponent(); + } + + private void Draw() + { + if (_drawCont == null) + { + return; + } + + Bitmap bmp = new(pictureBoxCont.Width, pictureBoxCont.Height); + Graphics gr = Graphics.FromImage(bmp); + _drawCont.DrawTransport(gr); + pictureBoxCont.Image = bmp; + } + + + private void ButtonCreate_Click(object sender, EventArgs e) + { + Random random = new Random(); + _drawCont = new DrawCont(); + _drawCont.Init(random.Next(100, 300), random.Next(100, 300), + 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))); + _drawCont.SetPictureSize(pictureBoxCont.Width, pictureBoxCont.Height); + _drawCont.SetPosition(random.Next(10, 100), random.Next(10, 100)); + + Draw(); + } + + private void ButtonMove_Click(object sender, EventArgs e) + { + if (_drawCont == null) + { + return; + } + + string name = ((Button)sender)?.Name ?? string.Empty; + bool result = false; + switch (name) + { + case "buttonUp": + result = _drawCont.MoveTransport(DirectionType.Up); + break; + case "buttonDown": + result = _drawCont.MoveTransport(DirectionType.Down); + break; + case "buttonLeft": + result = _drawCont.MoveTransport(DirectionType.Left); + break; + case "buttonRight": + result = _drawCont.MoveTransport(DirectionType.Right); + break; + } + + if (result) + { + Draw(); + } + + } + } +} diff --git a/ProjectPlane/ProjectPlane/Form1.resx b/ProjectPlane/ProjectPlane/FormContainer.resx similarity index 93% rename from ProjectPlane/ProjectPlane/Form1.resx rename to ProjectPlane/ProjectPlane/FormContainer.resx index 1af7de1..af32865 100644 --- a/ProjectPlane/ProjectPlane/Form1.resx +++ b/ProjectPlane/ProjectPlane/FormContainer.resx @@ -1,17 +1,17 @@  - diff --git a/ProjectPlane/ProjectPlane/Program.cs b/ProjectPlane/ProjectPlane/Program.cs index a15b802..8be6434 100644 --- a/ProjectPlane/ProjectPlane/Program.cs +++ b/ProjectPlane/ProjectPlane/Program.cs @@ -11,7 +11,7 @@ namespace ProjectPlane // 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 FormContainer()); } } } \ No newline at end of file diff --git a/ProjectPlane/ProjectPlane/ProjectPlane.csproj b/ProjectPlane/ProjectPlane/ProjectPlane.csproj index e1a0735..244387d 100644 --- a/ProjectPlane/ProjectPlane/ProjectPlane.csproj +++ b/ProjectPlane/ProjectPlane/ProjectPlane.csproj @@ -8,4 +8,19 @@ enable + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + \ No newline at end of file diff --git a/ProjectPlane/ProjectPlane/Properties/Resources.Designer.cs b/ProjectPlane/ProjectPlane/Properties/Resources.Designer.cs new file mode 100644 index 0000000..bc498ec --- /dev/null +++ b/ProjectPlane/ProjectPlane/Properties/Resources.Designer.cs @@ -0,0 +1,103 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +namespace ProjectPlane.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("ProjectPlane.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 вверх { + 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)); + } + } + + /// + /// Поиск локализованного ресурса типа 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/ProjectPlane/ProjectPlane/Properties/Resources.resx b/ProjectPlane/ProjectPlane/Properties/Resources.resx new file mode 100644 index 0000000..2bc00c7 --- /dev/null +++ b/ProjectPlane/ProjectPlane/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\вверх.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\вниз.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 + + \ No newline at end of file diff --git a/ProjectPlane/ProjectPlane/Resources/вверх.png b/ProjectPlane/ProjectPlane/Resources/вверх.png new file mode 100644 index 0000000..447bbb3 Binary files /dev/null and b/ProjectPlane/ProjectPlane/Resources/вверх.png differ diff --git a/ProjectPlane/ProjectPlane/Resources/влево.png b/ProjectPlane/ProjectPlane/Resources/влево.png new file mode 100644 index 0000000..03030f8 Binary files /dev/null and b/ProjectPlane/ProjectPlane/Resources/влево.png differ diff --git a/ProjectPlane/ProjectPlane/Resources/вниз.png b/ProjectPlane/ProjectPlane/Resources/вниз.png new file mode 100644 index 0000000..7a5038b Binary files /dev/null and b/ProjectPlane/ProjectPlane/Resources/вниз.png differ diff --git a/ProjectPlane/ProjectPlane/Resources/вправо.png b/ProjectPlane/ProjectPlane/Resources/вправо.png new file mode 100644 index 0000000..32e9aa4 Binary files /dev/null and b/ProjectPlane/ProjectPlane/Resources/вправо.png differ