diff --git a/Bulldozer/Bulldozer/Bulldozer.csproj b/Bulldozer/Bulldozer/Bulldozer.csproj deleted file mode 100644 index 13ee123..0000000 --- a/Bulldozer/Bulldozer/Bulldozer.csproj +++ /dev/null @@ -1,26 +0,0 @@ - - - - WinExe - net6.0-windows - enable - true - enable - - - - - True - True - Resources.resx - - - - - - ResXFileCodeGenerator - Resources.Designer.cs - - - - \ No newline at end of file diff --git a/Bulldozer/Bulldozer/Direction.cs b/Bulldozer/Bulldozer/Direction.cs deleted file mode 100644 index 1c0ea86..0000000 --- a/Bulldozer/Bulldozer/Direction.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Bulldozer -{ - internal enum Direction - { - Up = 1, - Down = 2, - Left = 3, - Right = 4 - } -} diff --git a/Bulldozer/Bulldozer/DrawingBulldozer.cs b/Bulldozer/Bulldozer/DrawingBulldozer.cs deleted file mode 100644 index 8f5762d..0000000 --- a/Bulldozer/Bulldozer/DrawingBulldozer.cs +++ /dev/null @@ -1,146 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Bulldozer -{ - internal class DrawingBulldozer - { - - - - private float _startPosX; - private float _startPosY; - private int? _pictureWidth = null; - private int? _pictureHeight = null; - private readonly int _bulldozerWidth = 80; - private readonly int _bulldozerHeight = 80; - - public void Init(int speed, float weight, Color bodyColor, EntityBulldozer Bulldozer) - { - - Bulldozer.Init(speed, weight, bodyColor); - } - - public void SetPosition(int x, int y, int width, int height) - { - - if (x < 0 || x + _bulldozerWidth >= width || y < 0 || y + _bulldozerHeight >= height) return; - _startPosX = x; - _startPosY = y; - _pictureWidth = width; - _pictureHeight = height; - } - - public void MoveTransport(Direction direction, EntityBulldozer Bulldozer) - { - if (!_pictureWidth.HasValue || !_pictureHeight.HasValue) - { - return; - } - switch (direction) - { - case Direction.Right: - if (_startPosX + _bulldozerWidth + Bulldozer.Step < _pictureWidth) - { - _startPosX += Bulldozer.Step; - } - break; - case Direction.Left: - if (_startPosX - Bulldozer.Step > 0) - { - _startPosX -= Bulldozer.Step; - } - break; - case Direction.Up: - if (_startPosY - Bulldozer.Step > 0) - { - _startPosY -= Bulldozer.Step; - } - break; - case Direction.Down: - if (_startPosY + _bulldozerHeight + Bulldozer.Step < _pictureHeight) - { - _startPosY += Bulldozer.Step; - } - break; - } - } - public void DrawTransport(Graphics g, EntityBulldozer Bulldozer) - { - if (_startPosX < 0 || _startPosY < 0 - || !_pictureHeight.HasValue || !_pictureWidth.HasValue) - { - return; - } - Pen pen = new Pen(Color.Black); - //границы - g.DrawRectangle(pen, _startPosX, _startPosY + 25, 75, 20); - g.DrawRectangle(pen, _startPosX, _startPosY, 25, 25); - g.DrawRectangle(pen, _startPosX + 4, _startPosY + 4, 17, 17); - g.DrawRectangle(pen, _startPosX + 52, _startPosY + 7, 6, 18); - g.DrawEllipse(pen, _startPosX - 5, _startPosY + 45, 20, 20); - g.DrawEllipse(pen, _startPosX + 63, _startPosY + 45, 20, 20); - g.DrawRectangle(pen, _startPosX + 5, _startPosY + 45, 68, 20); - g.DrawEllipse(pen, _startPosX - 1, _startPosY + 46, 18, 18); - g.DrawEllipse(pen, _startPosX + 62, _startPosY + 46, 18, 18); - g.DrawEllipse(pen, _startPosX + 20, _startPosY + 53, 10, 10); - g.DrawEllipse(pen, _startPosX + 35, _startPosY + 53, 10, 10); - g.DrawEllipse(pen, _startPosX + 50, _startPosY + 53, 10, 10); - g.DrawRectangle(pen, _startPosX + 30, _startPosY + 45, 4, 6); - g.DrawRectangle(pen, _startPosX + 45, _startPosY + 45, 4, 6); - - //корпус - Brush br = new SolidBrush(Bulldozer?.BodyColor ?? Color.Black); - g.FillRectangle(br, _startPosX, _startPosY + 25, 75, 25); - g.FillRectangle(br, _startPosX, _startPosY, 25, 25); - - //окно - Brush brBlue = new SolidBrush(Color.Blue); - g.FillRectangle(brBlue, _startPosX + 4, _startPosY + 4, 17, 17); - - //выхлопная труба - Brush brBrown = new SolidBrush(Color.DarkGray); - g.FillRectangle(brBrown, _startPosX + 52, _startPosY + 7, 6, 18); - - //гусеница - Brush brDarkGray = new SolidBrush(Color.DarkGray); - g.FillEllipse(brDarkGray, _startPosX - 5, _startPosY + 45, 20, 20); - g.FillEllipse(brDarkGray, _startPosX + 63, _startPosY + 45, 20, 20); - g.FillRectangle(brDarkGray, _startPosX + 5, _startPosY + 45, 68, 20); - - Brush brBlack = new SolidBrush(Color.Black); - g.FillEllipse(brBlack, _startPosX - 1, _startPosY + 46, 18, 18); - g.FillEllipse(brBlack, _startPosX + 62, _startPosY + 46, 18, 18); - g.FillEllipse(brBlack, _startPosX + 20, _startPosY + 53, 10, 10); - g.FillEllipse(brBlack, _startPosX + 35, _startPosY + 53, 10, 10); - g.FillEllipse(brBlack, _startPosX + 50, _startPosY + 53, 10, 10); - g.FillRectangle(brBlack, _startPosX + 30, _startPosY + 45, 4, 6); - g.FillRectangle(brBlack, _startPosX + 45, _startPosY + 45, 4, 6); - - - } - - public void ChangeBorders(int width, int height) - { - _pictureWidth = width; - _pictureHeight = height; - if (_pictureWidth <= _bulldozerWidth || _pictureHeight <= _bulldozerHeight) - { - _pictureWidth = null; - _pictureHeight = null; - return; - } - if (_startPosX + _bulldozerWidth > _pictureWidth) - { - _startPosX = _pictureWidth.Value - _bulldozerWidth; - } - if (_startPosY + _bulldozerHeight > _pictureHeight) - { - _startPosY = _pictureHeight.Value - _bulldozerHeight; - } - } - } -} diff --git a/Bulldozer/Bulldozer/EntityBulldozer.cs b/Bulldozer/Bulldozer/EntityBulldozer.cs deleted file mode 100644 index 5ea5077..0000000 --- a/Bulldozer/Bulldozer/EntityBulldozer.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Bulldozer -{ - internal class EntityBulldozer - { - 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/Bulldozer/Bulldozer/FormBulldozer.Designer.cs b/Bulldozer/Bulldozer/FormBulldozer.Designer.cs deleted file mode 100644 index 3b7c469..0000000 --- a/Bulldozer/Bulldozer/FormBulldozer.Designer.cs +++ /dev/null @@ -1,174 +0,0 @@ -namespace Bulldozer -{ - partial class FormBulldozer - { - - private System.ComponentModel.IContainer components = null; - - - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - - private void InitializeComponent() - { - this.buttonUp = new System.Windows.Forms.Button(); - this.buttonLeft = new System.Windows.Forms.Button(); - this.buttonRight = new System.Windows.Forms.Button(); - this.buttonDown = new System.Windows.Forms.Button(); - this.buttonCreate = new System.Windows.Forms.Button(); - 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.pictureBoxBulldozer = new System.Windows.Forms.PictureBox(); - this.statusStrip1.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBulldozer)).BeginInit(); - this.SuspendLayout(); - // - // buttonUp - // - this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.buttonUp.BackgroundImage = global::Bulldozer.Properties.Resources.up; - this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.buttonUp.Location = new System.Drawing.Point(722, 353); - this.buttonUp.Name = "buttonUp"; - this.buttonUp.Size = new System.Drawing.Size(30, 30); - this.buttonUp.TabIndex = 0; - 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::Bulldozer.Properties.Resources.left; - this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.buttonLeft.Location = new System.Drawing.Point(686, 389); - this.buttonLeft.Name = "buttonLeft"; - this.buttonLeft.Size = new System.Drawing.Size(30, 30); - this.buttonLeft.TabIndex = 1; - this.buttonLeft.UseVisualStyleBackColor = true; - this.buttonLeft.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::Bulldozer.Properties.Resources.right; - this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.buttonRight.Location = new System.Drawing.Point(758, 389); - this.buttonRight.Name = "buttonRight"; - this.buttonRight.Size = new System.Drawing.Size(30, 30); - this.buttonRight.TabIndex = 2; - 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::Bulldozer.Properties.Resources.down; - this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; - this.buttonDown.Location = new System.Drawing.Point(722, 389); - this.buttonDown.Name = "buttonDown"; - this.buttonDown.Size = new System.Drawing.Size(30, 30); - this.buttonDown.TabIndex = 3; - this.buttonDown.UseVisualStyleBackColor = true; - this.buttonDown.Click += new System.EventHandler(this.ButtonMove_Click); - // - // 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, 393); - this.buttonCreate.Name = "buttonCreate"; - this.buttonCreate.Size = new System.Drawing.Size(75, 23); - this.buttonCreate.TabIndex = 4; - this.buttonCreate.Text = "Создать"; - this.buttonCreate.UseVisualStyleBackColor = true; - this.buttonCreate.Click += new System.EventHandler(this.ButtonCreate_Click); - // - // statusStrip1 - // - this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.toolStripStatusLabelSpeed, - this.toolStripStatusLabelWeight, - this.toolStripStatusLabelBodyColor}); - this.statusStrip1.Location = new System.Drawing.Point(0, 428); - this.statusStrip1.Name = "statusStrip1"; - this.statusStrip1.Size = new System.Drawing.Size(800, 22); - this.statusStrip1.TabIndex = 5; - this.statusStrip1.Text = "statusStrip1"; - // - // toolStripStatusLabelSpeed - // - this.toolStripStatusLabelSpeed.Name = "toolStripStatusLabelSpeed"; - this.toolStripStatusLabelSpeed.Size = new System.Drawing.Size(62, 17); - this.toolStripStatusLabelSpeed.Text = "Скорость:"; - // - // toolStripStatusLabelWeight - // - this.toolStripStatusLabelWeight.Name = "toolStripStatusLabelWeight"; - this.toolStripStatusLabelWeight.Size = new System.Drawing.Size(29, 17); - this.toolStripStatusLabelWeight.Text = "Вес:"; - // - // toolStripStatusLabelBodyColor - // - this.toolStripStatusLabelBodyColor.Name = "toolStripStatusLabelBodyColor"; - this.toolStripStatusLabelBodyColor.Size = new System.Drawing.Size(36, 17); - this.toolStripStatusLabelBodyColor.Text = "Цвет:"; - // - // pictureBoxBulldozer - // - this.pictureBoxBulldozer.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.pictureBoxBulldozer.Dock = System.Windows.Forms.DockStyle.Fill; - this.pictureBoxBulldozer.Location = new System.Drawing.Point(0, 0); - this.pictureBoxBulldozer.Name = "pictureBoxBulldozer"; - this.pictureBoxBulldozer.Size = new System.Drawing.Size(800, 450); - this.pictureBoxBulldozer.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; - this.pictureBoxBulldozer.TabIndex = 6; - this.pictureBoxBulldozer.TabStop = false; - this.pictureBoxBulldozer.Click += new System.EventHandler(this.pictureBoxBulldozer_Resize); - this.pictureBoxBulldozer.Resize += new System.EventHandler(this.pictureBoxBulldozer_Resize); - // - // FormBulldozer - // - this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Controls.Add(this.statusStrip1); - this.Controls.Add(this.buttonCreate); - this.Controls.Add(this.buttonDown); - this.Controls.Add(this.buttonRight); - this.Controls.Add(this.buttonLeft); - this.Controls.Add(this.buttonUp); - this.Controls.Add(this.pictureBoxBulldozer); - this.Name = "FormBulldozer"; - this.Text = "Трактор"; - this.statusStrip1.ResumeLayout(false); - this.statusStrip1.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBulldozer)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private Button buttonUp; - private Button buttonLeft; - private Button buttonRight; - private Button buttonDown; - private Button buttonCreate; - private StatusStrip statusStrip1; - private ToolStripStatusLabel toolStripStatusLabelSpeed; - private ToolStripStatusLabel toolStripStatusLabelWeight; - private ToolStripStatusLabel toolStripStatusLabelBodyColor; - private PictureBox pictureBoxBulldozer; - } -} \ No newline at end of file diff --git a/Bulldozer/Bulldozer/FormBulldozer.cs b/Bulldozer/Bulldozer/FormBulldozer.cs deleted file mode 100644 index 9e861dc..0000000 --- a/Bulldozer/Bulldozer/FormBulldozer.cs +++ /dev/null @@ -1,63 +0,0 @@ -namespace Bulldozer -{ - public partial class FormBulldozer : Form - { - private DrawingBulldozer? _bulldozer; - private EntityBulldozer? Bulldozer { get; set; } - public FormBulldozer() - { - InitializeComponent(); - } - - private void Draw() - { - Bitmap bmp = new(pictureBoxBulldozer.Width, pictureBoxBulldozer.Height); - Graphics gr = Graphics.FromImage(bmp); - _bulldozer?.DrawTransport(gr, Bulldozer); - pictureBoxBulldozer.Image = bmp; - } - - private void ButtonCreate_Click(object sender, EventArgs e) - { - Random rnd = new(); - _bulldozer = new DrawingBulldozer(); - Bulldozer = new EntityBulldozer(); - - _bulldozer.Init(rnd.Next(100, 300), rnd.Next(1000, 2000), - Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)), Bulldozer); - _bulldozer.SetPosition(rnd.Next(10, 100), rnd.Next(10, 100), - pictureBoxBulldozer.Width, pictureBoxBulldozer.Height); - toolStripStatusLabelSpeed.Text = $": {Bulldozer.Speed}"; - toolStripStatusLabelWeight.Text = $": {Bulldozer.Weight}"; - toolStripStatusLabelBodyColor.Text = $": {Bulldozer.BodyColor.Name} "; - Draw(); - } - - private void ButtonMove_Click(object sender, EventArgs e) - { - string name = ((Button)sender)?.Name ?? string.Empty; - switch (name) - { - case "buttonUp": - _bulldozer?.MoveTransport(Direction.Up, Bulldozer); - break; - case "buttonDown": - _bulldozer?.MoveTransport(Direction.Down, Bulldozer); - break; - case "buttonLeft": - _bulldozer?.MoveTransport(Direction.Left, Bulldozer); - break; - case "buttonRight": - _bulldozer?.MoveTransport(Direction.Right, Bulldozer); - break; - } - Draw(); - } - - private void pictureBoxBulldozer_Resize(object sender, EventArgs e) - { - _bulldozer?.ChangeBorders(pictureBoxBulldozer.Width, pictureBoxBulldozer.Height); - Draw(); - } - } -} \ No newline at end of file diff --git a/Bulldozer/Bulldozer/FormBulldozer.resx b/Bulldozer/Bulldozer/FormBulldozer.resx deleted file mode 100644 index 796091e..0000000 --- a/Bulldozer/Bulldozer/FormBulldozer.resx +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 - - - 25 - - \ No newline at end of file diff --git a/Bulldozer/Bulldozer/Program.cs b/Bulldozer/Bulldozer/Program.cs deleted file mode 100644 index e8221a5..0000000 --- a/Bulldozer/Bulldozer/Program.cs +++ /dev/null @@ -1,14 +0,0 @@ -namespace Bulldozer -{ - internal static class Program - { - [STAThread] - static void Main() - { - // To customize application configuration such as set high DPI settings or default font, - // see https://aka.ms/applicationconfiguration. - ApplicationConfiguration.Initialize(); - Application.Run(new FormBulldozer()); - } - } -} \ No newline at end of file diff --git a/Bulldozer/Bulldozer/Properties/Resources.Designer.cs b/Bulldozer/Bulldozer/Properties/Resources.Designer.cs deleted file mode 100644 index afbb674..0000000 --- a/Bulldozer/Bulldozer/Properties/Resources.Designer.cs +++ /dev/null @@ -1,103 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Этот код создан программой. -// Исполняемая версия:4.0.30319.42000 -// -// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае -// повторной генерации кода. -// -//------------------------------------------------------------------------------ - -namespace Bulldozer.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("Bulldozer.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 left { - get { - object obj = ResourceManager.GetObject("left", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Поиск локализованного ресурса типа System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap right { - get { - object obj = ResourceManager.GetObject("right", 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)); - } - } - } -} diff --git a/Bulldozer/Bulldozer/Resources/down.png b/Bulldozer/Bulldozer/Resources/down.png deleted file mode 100644 index a252c58..0000000 Binary files a/Bulldozer/Bulldozer/Resources/down.png and /dev/null differ diff --git a/Bulldozer/Bulldozer/Resources/left.png b/Bulldozer/Bulldozer/Resources/left.png deleted file mode 100644 index 9c19136..0000000 Binary files a/Bulldozer/Bulldozer/Resources/left.png and /dev/null differ diff --git a/Bulldozer/Bulldozer/Resources/right.png b/Bulldozer/Bulldozer/Resources/right.png deleted file mode 100644 index a612474..0000000 Binary files a/Bulldozer/Bulldozer/Resources/right.png and /dev/null differ diff --git a/Bulldozer/Bulldozer/Resources/up.png b/Bulldozer/Bulldozer/Resources/up.png deleted file mode 100644 index d07d751..0000000 Binary files a/Bulldozer/Bulldozer/Resources/up.png and /dev/null differ diff --git a/Bulldozer/Bulldozer.sln b/Bulldozer/HoistingCrane.sln similarity index 55% rename from Bulldozer/Bulldozer.sln rename to Bulldozer/HoistingCrane.sln index afcf79d..5f9588c 100644 --- a/Bulldozer/Bulldozer.sln +++ b/Bulldozer/HoistingCrane.sln @@ -1,9 +1,9 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 -VisualStudioVersion = 17.3.32825.248 +VisualStudioVersion = 17.3.32922.545 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bulldozer", "Bulldozer\Bulldozer.csproj", "{E5F857A0-7B7F-4F53-8C92-330D2F451FBA}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HoistingCrane", "HoistingCrane\HoistingCrane.csproj", "{44B433E0-4B64-464F-B7B2-85F92D68A14D}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,15 +11,15 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {E5F857A0-7B7F-4F53-8C92-330D2F451FBA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E5F857A0-7B7F-4F53-8C92-330D2F451FBA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E5F857A0-7B7F-4F53-8C92-330D2F451FBA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E5F857A0-7B7F-4F53-8C92-330D2F451FBA}.Release|Any CPU.Build.0 = Release|Any CPU + {44B433E0-4B64-464F-B7B2-85F92D68A14D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {44B433E0-4B64-464F-B7B2-85F92D68A14D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {44B433E0-4B64-464F-B7B2-85F92D68A14D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {44B433E0-4B64-464F-B7B2-85F92D68A14D}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {A2E69D0E-100A-4D29-BF23-5EB2E6ED3E33} + SolutionGuid = {FF7CBA77-84DA-4B39-BFC8-808056D2EEAF} EndGlobalSection EndGlobal diff --git a/Bulldozer/HoistingCrane/App.config b/Bulldozer/HoistingCrane/App.config new file mode 100644 index 0000000..193aecc --- /dev/null +++ b/Bulldozer/HoistingCrane/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Bulldozer/HoistingCrane/FormhoistingCrane.Designer.cs b/Bulldozer/HoistingCrane/FormhoistingCrane.Designer.cs new file mode 100644 index 0000000..7aa834e --- /dev/null +++ b/Bulldozer/HoistingCrane/FormhoistingCrane.Designer.cs @@ -0,0 +1,48 @@ +namespace HoistingCrane +{ + partial class FormHoistingCrane + { + /// + /// Обязательная переменная конструктора. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Освободить все используемые ресурсы. + /// + /// истинно, если управляемый ресурс должен быть удален; иначе ложно. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Код, автоматически созданный конструктором форм Windows + + /// + /// Требуемый метод для поддержки конструктора — не изменяйте + /// содержимое этого метода с помощью редактора кода. + /// + private void InitializeComponent() + { + this.SuspendLayout(); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Name = "Form1"; + this.Text = "Form1"; + this.Load += new System.EventHandler(this.FormHoistingCrane_Load); + this.ResumeLayout(false); + + } + + #endregion + } +} + diff --git a/Bulldozer/HoistingCrane/FormhoistingCrane.cs b/Bulldozer/HoistingCrane/FormhoistingCrane.cs new file mode 100644 index 0000000..b8fb27d --- /dev/null +++ b/Bulldozer/HoistingCrane/FormhoistingCrane.cs @@ -0,0 +1,25 @@ +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 HoistingCrane +{ + public partial class FormHoistingCrane : Form + { + public FormHoistingCrane() + { + InitializeComponent(); + } + + private void FormHoistingCrane_Load(object sender, EventArgs e) + { + + } + } +} diff --git a/Bulldozer/Bulldozer/Properties/Resources.resx b/Bulldozer/HoistingCrane/FormhoistingCrane.resx similarity index 84% rename from Bulldozer/Bulldozer/Properties/Resources.resx rename to Bulldozer/HoistingCrane/FormhoistingCrane.resx index 53ec0b4..1af7de1 100644 --- a/Bulldozer/Bulldozer/Properties/Resources.resx +++ b/Bulldozer/HoistingCrane/FormhoistingCrane.resx @@ -117,17 +117,4 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ..\Resources\down.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\left.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\right.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 - \ No newline at end of file diff --git a/Bulldozer/HoistingCrane/HoistingCrane.csproj b/Bulldozer/HoistingCrane/HoistingCrane.csproj new file mode 100644 index 0000000..2065310 --- /dev/null +++ b/Bulldozer/HoistingCrane/HoistingCrane.csproj @@ -0,0 +1,83 @@ + + + + + Debug + AnyCPU + {44B433E0-4B64-464F-B7B2-85F92D68A14D} + WinExe + HoistingCrane + HoistingCrane + v4.8 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + Form + + + FormhoistingCrane.cs + + + + + FormhoistingCrane.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file diff --git a/Bulldozer/HoistingCrane/Program.cs b/Bulldozer/HoistingCrane/Program.cs new file mode 100644 index 0000000..3668be5 --- /dev/null +++ b/Bulldozer/HoistingCrane/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace HoistingCrane +{ + internal static class Program + { + /// + /// Главная точка входа для приложения. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new FormHoistingCrane()); + } + } +} diff --git a/Bulldozer/HoistingCrane/Properties/AssemblyInfo.cs b/Bulldozer/HoistingCrane/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..21817b8 --- /dev/null +++ b/Bulldozer/HoistingCrane/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Общие сведения об этой сборке предоставляются следующим набором +// набора атрибутов. Измените значения этих атрибутов для изменения сведений, +// связанных со сборкой. +[assembly: AssemblyTitle("HoistingCrane")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("HoistingCrane")] +[assembly: AssemblyCopyright("Copyright © 2022")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми +// для компонентов COM. Если необходимо обратиться к типу в этой сборке через +// COM, следует установить атрибут ComVisible в TRUE для этого типа. +[assembly: ComVisible(false)] + +// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM +[assembly: Guid("44b433e0-4b64-464f-b7b2-85f92d68a14d")] + +// Сведения о версии сборки состоят из указанных ниже четырех значений: +// +// Основной номер версии +// Дополнительный номер версии +// Номер сборки +// Редакция +// +// Можно задать все значения или принять номера сборки и редакции по умолчанию +// используя "*", как показано ниже: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Bulldozer/HoistingCrane/Properties/Resources.Designer.cs b/Bulldozer/HoistingCrane/Properties/Resources.Designer.cs new file mode 100644 index 0000000..3b7cfad --- /dev/null +++ b/Bulldozer/HoistingCrane/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программным средством. +// Версия среды выполнения: 4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильному поведению и будут утрачены, если +// код создан повторно. +// +//------------------------------------------------------------------------------ + +namespace HoistingCrane.Properties +{ + + + /// + /// Класс ресурсов со строгим типом для поиска локализованных строк и пр. + /// + // Этот класс был автоматически создан при помощи StronglyTypedResourceBuilder + // класс с помощью таких средств, как ResGen или Visual Studio. + // Для добавления или удаления члена измените файл .ResX, а затем перезапустите ResGen + // с параметром /str или заново постройте свой VS-проект. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.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 ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HoistingCrane.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; + } + } + } +} diff --git a/Bulldozer/HoistingCrane/Properties/Resources.resx b/Bulldozer/HoistingCrane/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/Bulldozer/HoistingCrane/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Bulldozer/HoistingCrane/Properties/Settings.Designer.cs b/Bulldozer/HoistingCrane/Properties/Settings.Designer.cs new file mode 100644 index 0000000..e3e2b5e --- /dev/null +++ b/Bulldozer/HoistingCrane/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace HoistingCrane.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/Bulldozer/HoistingCrane/Properties/Settings.settings b/Bulldozer/HoistingCrane/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/Bulldozer/HoistingCrane/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + +