From 79d20d3ed4af26b894445cf6fce2573bc6841bea Mon Sep 17 00:00:00 2001 From: "evasina2312@gmail.com" Date: Thu, 29 Sep 2022 13:09:52 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9B=D0=B0=D0=B1=D0=BE=D1=80=D0=B0=D1=82?= =?UTF-8?q?=D0=BE=D1=80=D0=BD=D0=B0=D1=8F=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProjectMachine/ProjectMachine/Direction.cs | 19 ++ .../ProjectMachine/DrawningMachine.cs | 167 ++++++++++++++++ .../ProjectMachine/EntityMachine.cs | 45 +++++ .../ProjectMachine/Form1.Designer.cs | 39 ---- ProjectMachine/ProjectMachine/Form1.cs | 10 - .../ProjectMachine/FormMachine.Designer.cs | 186 ++++++++++++++++++ ProjectMachine/ProjectMachine/FormMachine.cs | 74 +++++++ .../ProjectMachine/FormMachine.resx | 63 ++++++ ProjectMachine/ProjectMachine/Program.cs | 2 +- .../ProjectMachine/ProjectMachine.csproj | 15 ++ .../Properties/Resources.Designer.cs | 103 ++++++++++ .../{Form1.resx => Properties/Resources.resx} | 13 ++ .../ProjectMachine/Resources/вверх.png | Bin 0 -> 3018 bytes .../ProjectMachine/Resources/вниз.png | Bin 0 -> 2952 bytes .../ProjectMachine/Resources/лево.png | Bin 0 -> 2874 bytes .../ProjectMachine/Resources/право.png | Bin 0 -> 1365 bytes ProjectMachineHard | 1 + 17 files changed, 687 insertions(+), 50 deletions(-) create mode 100644 ProjectMachine/ProjectMachine/Direction.cs create mode 100644 ProjectMachine/ProjectMachine/DrawningMachine.cs create mode 100644 ProjectMachine/ProjectMachine/EntityMachine.cs delete mode 100644 ProjectMachine/ProjectMachine/Form1.Designer.cs delete mode 100644 ProjectMachine/ProjectMachine/Form1.cs create mode 100644 ProjectMachine/ProjectMachine/FormMachine.Designer.cs create mode 100644 ProjectMachine/ProjectMachine/FormMachine.cs create mode 100644 ProjectMachine/ProjectMachine/FormMachine.resx create mode 100644 ProjectMachine/ProjectMachine/Properties/Resources.Designer.cs rename ProjectMachine/ProjectMachine/{Form1.resx => Properties/Resources.resx} (83%) create mode 100644 ProjectMachine/ProjectMachine/Resources/вверх.png create mode 100644 ProjectMachine/ProjectMachine/Resources/вниз.png create mode 100644 ProjectMachine/ProjectMachine/Resources/лево.png create mode 100644 ProjectMachine/ProjectMachine/Resources/право.png create mode 160000 ProjectMachineHard diff --git a/ProjectMachine/ProjectMachine/Direction.cs b/ProjectMachine/ProjectMachine/Direction.cs new file mode 100644 index 0000000..a6156bc --- /dev/null +++ b/ProjectMachine/ProjectMachine/Direction.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectMachine +{ + /// + /// Направление перемещения + /// + internal enum Direction + { + Up = 1, + Down = 2, + Left = 3, + Right = 4 + } +} diff --git a/ProjectMachine/ProjectMachine/DrawningMachine.cs b/ProjectMachine/ProjectMachine/DrawningMachine.cs new file mode 100644 index 0000000..dac69b9 --- /dev/null +++ b/ProjectMachine/ProjectMachine/DrawningMachine.cs @@ -0,0 +1,167 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectMachine +{ + /// + /// Класс, отвечающий за прорисовку и перемещение объекта-сущности + /// + internal class DrawningMachine + { + /// + /// Класс-сущность + /// + public EntityMachine Machine { get; private set; } + /// + /// Левая координата отрисовки машины + /// + private float _startPosX; + /// + /// Верхняя кооридната отрисовки машины + /// + private float _startPosY; + /// + /// Ширина окна отрисовки + /// + private int? _pictureWidth = null; + /// + /// Высота окна отрисовки + /// + private int? _pictureHeight = null; + /// + /// Ширина отрисовки автомобиля + /// + private readonly int _machineWidth = 90; + /// + /// Высота отрисовки автомобиля + /// + private readonly int _machineHeight = 40; + /// + /// Инициализация свойств + /// + /// Скорость + /// Вес автомобиля + /// Цвет кузова + public void Init(int speed, float weight, Color bodyColor) + { + Machine = new EntityMachine(); + Machine.Init(speed, weight, bodyColor); + } + /// + /// Установка позиции машины + /// + /// Координата X + /// Координата Y + /// Ширина картинки + /// Высота картинки + public void SetPosition(int x, int y, int width, int height) + { + if (x < 0 || y < 0 || x > width || y > height) + { + return; + } + _startPosX = x; + _startPosY = y; + _pictureWidth = width; + _pictureHeight = height; + } + /// + /// Изменение направления пермещения + /// + /// Направление + public void MoveTransport(Direction direction) + { + if (!_pictureWidth.HasValue || !_pictureHeight.HasValue) + { + return; + } + switch (direction) + { + // вправо + case Direction.Right: + if (_startPosX + _machineWidth + Machine.Step < _pictureWidth) + { + _startPosX += Machine.Step; + } + break; + //влево + case Direction.Left: + if (_startPosX - Machine.Step > 0) + { + _startPosX -= Machine.Step; + } + break; + //вверх + case Direction.Up: + if (_startPosY - Machine.Step > 0) + { + _startPosY -= Machine.Step; + } + break; + //вниз + case Direction.Down: + if (_startPosY + _machineHeight + Machine.Step < _pictureHeight) + { + _startPosY += Machine.Step; + } + break; + } + } + /// + /// Отрисовка машины + /// + /// + public void DrawTransport(Graphics g) + { + if (_startPosX < 0 || _startPosY < 0 + || !_pictureHeight.HasValue || !_pictureWidth.HasValue) + { + return; + } + Pen pen = new(Color.Black); + Brush brBodyColor = new SolidBrush(Machine.BodyColor); + + // Гусеницы + g.DrawEllipse(pen, _startPosX, _startPosY + 11, 90, 22); + + // Кузов + g.FillRectangle(brBodyColor, _startPosX + 25, _startPosY, 40, 10); + g.FillRectangle(brBodyColor, _startPosX, _startPosY + 10, 90, 10); + + // Катки + g.DrawEllipse(pen, _startPosX + 5, _startPosY + 19, 10, 10); + g.DrawEllipse(pen, _startPosX + 76, _startPosY + 19, 10, 10); + g.DrawEllipse(pen, _startPosX + 19, _startPosY + 25, 6, 6); + g.DrawEllipse(pen, _startPosX + 34, _startPosY + 25, 6, 6); + g.DrawEllipse(pen, _startPosX + 49, _startPosY + 25, 6, 6); + g.DrawEllipse(pen, _startPosX + 64, _startPosY + 25, 6, 6); + } + /// + /// Смена границ формы отрисовки + /// + /// Ширина картинки + /// Высота картинки + public void ChangeBorders(int width, int height) + { + _pictureWidth = width; + _pictureHeight = height; + if (_pictureWidth <= _machineWidth || _pictureHeight <= _machineHeight) + { + _pictureWidth = null; + _pictureHeight = null; + return; + } + if (_startPosX + _machineWidth > _pictureWidth) + { + _startPosX = _pictureWidth.Value - _machineWidth; + } + if (_startPosY + _machineHeight > _pictureHeight) + { + _startPosY = _pictureHeight.Value - _machineHeight; + } + } + } +} diff --git a/ProjectMachine/ProjectMachine/EntityMachine.cs b/ProjectMachine/ProjectMachine/EntityMachine.cs new file mode 100644 index 0000000..2394f7e --- /dev/null +++ b/ProjectMachine/ProjectMachine/EntityMachine.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectMachine +{ + /// + /// Класс-сущность "Бронированная машина" + /// + internal class EntityMachine + { + /// + /// Скорость + /// + public int Speed { get; private set; } + /// + /// Вес + /// + public float Weight { get; private set; } + /// + /// Цвет кузова + /// + public Color BodyColor { get; private set; } + /// + /// Шаг перемещения автомобиля + /// + public float Step => Speed * 100 / Weight; + /// + /// Инициализация полей объекта-класса автомобиля + /// + /// + /// + /// + /// + public void Init(int speed, float weight, Color bodyColor) + { + Random rnd = new(); + Speed = speed <= 0 ? rnd.Next(50, 150) : speed; + Weight = weight <= 0 ? rnd.Next(40, 70) : weight; + BodyColor = bodyColor; + } + } +} diff --git a/ProjectMachine/ProjectMachine/Form1.Designer.cs b/ProjectMachine/ProjectMachine/Form1.Designer.cs deleted file mode 100644 index 0c5ae0d..0000000 --- a/ProjectMachine/ProjectMachine/Form1.Designer.cs +++ /dev/null @@ -1,39 +0,0 @@ -namespace ProjectMachine -{ - 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/ProjectMachine/ProjectMachine/Form1.cs b/ProjectMachine/ProjectMachine/Form1.cs deleted file mode 100644 index 639a67b..0000000 --- a/ProjectMachine/ProjectMachine/Form1.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace ProjectMachine -{ - public partial class Form1 : Form - { - public Form1() - { - InitializeComponent(); - } - } -} \ No newline at end of file diff --git a/ProjectMachine/ProjectMachine/FormMachine.Designer.cs b/ProjectMachine/ProjectMachine/FormMachine.Designer.cs new file mode 100644 index 0000000..5ed5e6b --- /dev/null +++ b/ProjectMachine/ProjectMachine/FormMachine.Designer.cs @@ -0,0 +1,186 @@ +namespace ProjectMachine +{ + partial class FormMachine + { + /// + /// 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.pictureBoxMachine = new System.Windows.Forms.PictureBox(); + this.statusStrip1 = new System.Windows.Forms.StatusStrip(); + this.toolStripStatusLabelSpeed = new System.Windows.Forms.ToolStripStatusLabel(); + this.toolStripStatusLabelWeight = new System.Windows.Forms.ToolStripStatusLabel(); + this.toolStripStatusLabelBodyColor = new System.Windows.Forms.ToolStripStatusLabel(); + this.ButtonCreate = new System.Windows.Forms.Button(); + this.buttonDown = new System.Windows.Forms.Button(); + this.buttonRight = new System.Windows.Forms.Button(); + this.buttonUp = new System.Windows.Forms.Button(); + this.buttonLeft = new System.Windows.Forms.Button(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxMachine)).BeginInit(); + this.statusStrip1.SuspendLayout(); + this.SuspendLayout(); + // + // pictureBoxMachine + // + this.pictureBoxMachine.Dock = System.Windows.Forms.DockStyle.Fill; + this.pictureBoxMachine.Location = new System.Drawing.Point(0, 0); + this.pictureBoxMachine.MinimumSize = new System.Drawing.Size(1, 1); + this.pictureBoxMachine.Name = "pictureBoxMachine"; + this.pictureBoxMachine.Size = new System.Drawing.Size(733, 427); + this.pictureBoxMachine.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; + this.pictureBoxMachine.TabIndex = 0; + this.pictureBoxMachine.TabStop = false; + this.pictureBoxMachine.Resize += new System.EventHandler(this.pictureBoxMachine_Resize); + // + // 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, 427); + this.statusStrip1.Name = "statusStrip1"; + this.statusStrip1.Size = new System.Drawing.Size(733, 26); + this.statusStrip1.TabIndex = 1; + this.statusStrip1.Text = "statusStrip1"; + // + // toolStripStatusLabelSpeed + // + this.toolStripStatusLabelSpeed.Name = "toolStripStatusLabelSpeed"; + this.toolStripStatusLabelSpeed.Size = new System.Drawing.Size(76, 20); + this.toolStripStatusLabelSpeed.Text = "Скорость:"; + // + // toolStripStatusLabelWeight + // + this.toolStripStatusLabelWeight.Name = "toolStripStatusLabelWeight"; + this.toolStripStatusLabelWeight.Size = new System.Drawing.Size(36, 20); + this.toolStripStatusLabelWeight.Text = "Вес:"; + // + // toolStripStatusLabelBodyColor + // + this.toolStripStatusLabelBodyColor.Name = "toolStripStatusLabelBodyColor"; + this.toolStripStatusLabelBodyColor.Size = new System.Drawing.Size(45, 20); + this.toolStripStatusLabelBodyColor.Text = "Цвет:"; + // + // 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(12, 385); + this.ButtonCreate.Name = "ButtonCreate"; + this.ButtonCreate.Size = new System.Drawing.Size(94, 29); + this.ButtonCreate.TabIndex = 2; + this.ButtonCreate.Text = "Создать"; + this.ButtonCreate.UseVisualStyleBackColor = true; + this.ButtonCreate.Click += new System.EventHandler(this.ButtonCreate_Click); + // + // buttonDown + // + this.buttonDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.buttonDown.BackgroundImage = global::ProjectMachine.Properties.Resources.вниз; + this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonDown.Location = new System.Drawing.Point(651, 384); + this.buttonDown.Name = "buttonDown"; + this.buttonDown.Size = new System.Drawing.Size(30, 30); + this.buttonDown.TabIndex = 3; + this.buttonDown.Text = " \r\n\r\n"; + 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::ProjectMachine.Properties.Resources.право; + this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonRight.Location = new System.Drawing.Point(687, 384); + this.buttonRight.Name = "buttonRight"; + this.buttonRight.Size = new System.Drawing.Size(30, 30); + this.buttonRight.TabIndex = 4; + this.buttonRight.Text = " \r\n\r\n"; + this.buttonRight.UseVisualStyleBackColor = true; + this.buttonRight.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::ProjectMachine.Properties.Resources.вверх; + this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonUp.Location = new System.Drawing.Point(651, 348); + this.buttonUp.Name = "buttonUp"; + this.buttonUp.Size = new System.Drawing.Size(30, 30); + this.buttonUp.TabIndex = 5; + this.buttonUp.Text = " \r\n\r\n"; + 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::ProjectMachine.Properties.Resources.лево; + this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonLeft.Location = new System.Drawing.Point(615, 384); + this.buttonLeft.Name = "buttonLeft"; + this.buttonLeft.Size = new System.Drawing.Size(30, 30); + this.buttonLeft.TabIndex = 6; + this.buttonLeft.Text = " \r\n\r\n"; + this.buttonLeft.UseVisualStyleBackColor = true; + this.buttonLeft.Click += new System.EventHandler(this.ButtonMove_Click); + // + // FormMachine + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(733, 453); + this.Controls.Add(this.buttonLeft); + this.Controls.Add(this.buttonUp); + this.Controls.Add(this.buttonRight); + this.Controls.Add(this.buttonDown); + this.Controls.Add(this.ButtonCreate); + this.Controls.Add(this.pictureBoxMachine); + this.Controls.Add(this.statusStrip1); + this.Name = "FormMachine"; + this.Text = "Бронированная машина"; + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxMachine)).EndInit(); + this.statusStrip1.ResumeLayout(false); + this.statusStrip1.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private PictureBox pictureBoxMachine; + private StatusStrip statusStrip1; + private ToolStripStatusLabel toolStripStatusLabelSpeed; + private ToolStripStatusLabel toolStripStatusLabelWeight; + private ToolStripStatusLabel toolStripStatusLabelBodyColor; + private Button ButtonCreate; + private Button buttonDown; + private Button buttonRight; + private Button buttonUp; + private Button buttonLeft; + } +} \ No newline at end of file diff --git a/ProjectMachine/ProjectMachine/FormMachine.cs b/ProjectMachine/ProjectMachine/FormMachine.cs new file mode 100644 index 0000000..3b402e7 --- /dev/null +++ b/ProjectMachine/ProjectMachine/FormMachine.cs @@ -0,0 +1,74 @@ +namespace ProjectMachine +{ + public partial class FormMachine : Form + { + private DrawningMachine _machine; + + public FormMachine() + { + InitializeComponent(); + } + /// + /// + /// + private void Draw() + { + Bitmap bmp = new(pictureBoxMachine.Width, pictureBoxMachine.Height); + Graphics gr = Graphics.FromImage(bmp); + _machine?.DrawTransport(gr); + pictureBoxMachine.Image = bmp; + } + /// + /// "" + /// + /// + /// + private void ButtonCreate_Click(object sender, EventArgs e) + { + Random rnd = new(); + _machine = new DrawningMachine(); + _machine.Init(rnd.Next(100, 300), rnd.Next(1000, 2000), Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256))); + _machine.SetPosition(rnd.Next(10, 100), rnd.Next(10, 100), pictureBoxMachine.Width, pictureBoxMachine.Height); + toolStripStatusLabelSpeed.Text = $": {_machine.Machine.Speed}"; + toolStripStatusLabelWeight.Text = $": {_machine.Machine.Weight}"; + toolStripStatusLabelBodyColor.Text = $": {_machine.Machine.BodyColor.Name}"; + Draw(); + } + /// + /// + /// + /// + /// + private void ButtonMove_Click(object sender, EventArgs e) + { + // + string name = ((Button)sender)?.Name ?? string.Empty; + switch (name) + { + case "buttonUp": + _machine?.MoveTransport(Direction.Up); + break; + case "buttonDown": + _machine?.MoveTransport(Direction.Down); + break; + case "buttonLeft": + _machine?.MoveTransport(Direction.Left); + break; + case "buttonRight": + _machine?.MoveTransport(Direction.Right); + break; + } + Draw(); + } + /// + /// + /// + /// + /// + private void pictureBoxMachine_Resize(object sender, EventArgs e) + { + _machine?.ChangeBorders(pictureBoxMachine.Width, pictureBoxMachine.Height); + Draw(); + } + } +} \ No newline at end of file diff --git a/ProjectMachine/ProjectMachine/FormMachine.resx b/ProjectMachine/ProjectMachine/FormMachine.resx new file mode 100644 index 0000000..5cb320f --- /dev/null +++ b/ProjectMachine/ProjectMachine/FormMachine.resx @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + 17, 17 + + \ No newline at end of file diff --git a/ProjectMachine/ProjectMachine/Program.cs b/ProjectMachine/ProjectMachine/Program.cs index 5fa6e41..b8ffc19 100644 --- a/ProjectMachine/ProjectMachine/Program.cs +++ b/ProjectMachine/ProjectMachine/Program.cs @@ -11,7 +11,7 @@ namespace ProjectMachine // 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 FormMachine()); } } } \ No newline at end of file diff --git a/ProjectMachine/ProjectMachine/ProjectMachine.csproj b/ProjectMachine/ProjectMachine/ProjectMachine.csproj index b57c89e..13ee123 100644 --- a/ProjectMachine/ProjectMachine/ProjectMachine.csproj +++ b/ProjectMachine/ProjectMachine/ProjectMachine.csproj @@ -8,4 +8,19 @@ enable + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + \ No newline at end of file diff --git a/ProjectMachine/ProjectMachine/Properties/Resources.Designer.cs b/ProjectMachine/ProjectMachine/Properties/Resources.Designer.cs new file mode 100644 index 0000000..6b18963 --- /dev/null +++ b/ProjectMachine/ProjectMachine/Properties/Resources.Designer.cs @@ -0,0 +1,103 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +namespace ProjectMachine.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("ProjectMachine.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/ProjectMachine/ProjectMachine/Form1.resx b/ProjectMachine/ProjectMachine/Properties/Resources.resx similarity index 83% rename from ProjectMachine/ProjectMachine/Form1.resx rename to ProjectMachine/ProjectMachine/Properties/Resources.resx index 1af7de1..464606a 100644 --- a/ProjectMachine/ProjectMachine/Form1.resx +++ b/ProjectMachine/ProjectMachine/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\вниз.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/ProjectMachine/ProjectMachine/Resources/вверх.png b/ProjectMachine/ProjectMachine/Resources/вверх.png new file mode 100644 index 0000000000000000000000000000000000000000..a0a7a7813640e13e4a46e2249e638ec3b0c2218d GIT binary patch literal 3018 zcmZ8jc{J2(AGcME6lOw^ZDug8UEP#*7%?*#e%beg7&~`VvXqb|W3r6pk{dH7b0vFW zQrWXilCfSgib7<`Qp7uM=e+MZ?;qdibDnda^E{vDyL`Ui6l*IpA;Szr4J> zw6wIbv9Z0qy}rJ_v$ON<+qc-*SZizRPoF+%Yirlm){cyfgoK2or>ED|)eQ~~QmIsF zX=w(7ap}?}U0q!e2xMVl(bLnzX0z4R)gchbxpU_N0s^wKvfSLMBEaR8guN_>h5m)@%G8MO}ss+Po&kVS|d9N^t!~)ME2F^^IK+d`3FIG{p(6 zAA6U?XHQg^gAr~DoeqUwG6PQmMBn>=Ipt=5pLYel_IgDj4JakF!#9MqlFaTmQAjHa zfwe>hv71zHh4M45xGP=#htaH^S${`euiBs&Mu}nA7iYhqxH4Dy)X(xZwJNcU(Gbf<8Zq3fRt$ly zb`mpOUMUj5=EOy5iyC}x%uAtMJi4}cC$U|vYKv@ zdW2;@-hiyp?w#qfM6`^t68irDGo1MNc#H#A$8lG7zH}pF8&A#JLIU0j8>*h+P#@h3 zV~KhF=9%MOk9}d>dOI)e>dYvZmg~MdBpiUFybXJ@k+mi)XVv!wm z7-0-2nm2`RWmtK#w_e}T0eqE2@3||&Yg_zVM4kV)q1BH2X&&4Dnv|#y*~}zrPrrlI zC|ZwAyMfI=%8hLMQbOXb;WJr#c){x$DWpe;xM2Ih+du3tq6D+uKKXoV+4v1tZ86ON z%^xCZsK6q3s)L(ujZXNg#i4Tntv9%#Gm7$}J?-|lTrwh~<*IuZp#!8=fjTctxU?}sBL*8$&2Go6;YP0u%Sb~z>)0i9ll*|p}XB|0ZMa1nJ->dKk{ zzED{v4D#@8gl2`4LZY{4Azdh)oBQ@HBO_VA0yT10m9eDX`m@px^~If=W7AR{;ou6= z=(*W$RHRD8EKkVf6eyg;SLhySg>bdtE|PeLNUiVvITye zQ?54tx1pM{vcke%y)QOhWS$!+s>IFTss0%;BW23E=e8wsZ$y%i;EIu!d`0zphr{nW zlSz8LCP(3>>Jr3jM=hBSn&My#9p5~k233^2(5(Rs;V#P{(?7Yumz%>v712v^T?5}- zpSlT`E6XV=t2%E6bITxva!Xv8^S-d?ZI%Xtz&ObAv7G#y_PFe)+y3P%PBYWn3n_5X ziay()X8L|RU4_Xdn}YSrP^m53`SP~fn1=c!G0B8oI_fL(i3qEmQ)Q2k&(x{sRqO~S zVy&F@5Ggi*-G`{fFpyr4i4>gmyNJw*2c6FUq-11Xcy}-1xS@To`zy+^JRR8CSI|eR z42RySq9?wNm^d{ooiQ-b?7)c@j~cweV0E&5ZLoUQz$F3_ZbbGpSMY;&myAC9Cue7B zgRSJ}Q%wB|n;Lp7{WMBP~SXC zb_EnD_E|OQ>rg_h;%HA``FU1Z+ z*=Et>6Y>r3cO*$z}5j*<;kVQKxZ)NkKTY>%F2U=sAz#6+S z0WHUtaZ~+7k>AP=1g1ZiC&%$X8IXYZVzEK);bfLE#p*)hs45m+GbEwrjyWsWt)I9LzBnyP zJ-BHwTk9lGeA3vveZGr)<-COUP=yAduv9|HgRg;D6+_;W>hPJu`5*)`RdT3Sv&PiT zjBh;0IkMm}tOGYJvWb6l6(%gq&(G;IC=m*|(zn|3KnwW!t2+V=)0b-X%tSy_sC^#$ z10t0$4v{d#O}HCr$aK?|oS8gXlkM#boKmB*fr8`%ybPE}b|TKpW++}X)tt$2|Mofp z694#}Ucd6`gL3`Y2UMi=-tW<;8f8}f>zM?q)z@Ei5|Mc?Ee-zFZCPR2RN4B;1ioJ~ zF55orGaS2Zc)1d$mgwDL*ED|Hh(v9@PlY%wd;#bJ$YsQCF-d)!=l^*$9z{+!N6GK? z^o?KhDeEWhf+alPp9~`^PkJ}JNiuL3{j9(C(^g~cC**&0!f^x2jcDj3?foW z+sswx$vDp$Ag~%RFn^{;{@4>J#H-h4U=wdxv}6cv#V+ZO*!k{seTZp^Ivz=w-6^;B zMwpU&fQQ{cDmO>$215~+r~}kMz;q)Zn4Bv3{htt!y@Fi+47k#HB4IHLK{nr}S?3vK zoz`+3VEPe_p*t$?aRQ>B5vWF5IBxdA8gvU{R6_lDOJ(|($5HnljC-{3yAs-mr4svK z#J%eJLjgx#!-_*YV(*w268J`-u0X>Z3*?`lr4Grf!6VnRPwDiRV#czT<0+hcY!7av k!JP0%oiJhFfwYde{44>Rw3V_|&fv?1Hnl=k8hgh72RvA)dH?_b literal 0 HcmV?d00001 diff --git a/ProjectMachine/ProjectMachine/Resources/вниз.png b/ProjectMachine/ProjectMachine/Resources/вниз.png new file mode 100644 index 0000000000000000000000000000000000000000..57653876bb06c3b4db79ca179c3f7f7db890d50d GIT binary patch literal 2952 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 literal 0 HcmV?d00001 diff --git a/ProjectMachine/ProjectMachine/Resources/лево.png b/ProjectMachine/ProjectMachine/Resources/лево.png new file mode 100644 index 0000000000000000000000000000000000000000..98073a9d6999a879840fd22b66ca940fc6a9816e GIT binary patch literal 2874 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 Kv5-!*@A&`QD|Z|K literal 0 HcmV?d00001 diff --git a/ProjectMachineHard b/ProjectMachineHard new file mode 160000 index 0000000..c8f9424 --- /dev/null +++ b/ProjectMachineHard @@ -0,0 +1 @@ +Subproject commit c8f94246ab60ec9913b56a9a48d2d8b28914fcc5