diff --git a/Stormtrooper/Stormtrooper.sln b/Stormtrooper/Stormtrooper.sln index 8dd330a..f58eca3 100644 --- a/Stormtrooper/Stormtrooper.sln +++ b/Stormtrooper/Stormtrooper.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.7.34024.191 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Stormtrooper", "Stormtrooper\Stormtrooper.csproj", "{A775C90C-D40F-469A-8611-8AD280F825A7}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Stormtrooper", "Stormtrooper\Stormtrooper.csproj", "{4514655F-132F-407B-9B51-2E0EC52BC983}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,15 +11,15 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A775C90C-D40F-469A-8611-8AD280F825A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A775C90C-D40F-469A-8611-8AD280F825A7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A775C90C-D40F-469A-8611-8AD280F825A7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A775C90C-D40F-469A-8611-8AD280F825A7}.Release|Any CPU.Build.0 = Release|Any CPU + {4514655F-132F-407B-9B51-2E0EC52BC983}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4514655F-132F-407B-9B51-2E0EC52BC983}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4514655F-132F-407B-9B51-2E0EC52BC983}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4514655F-132F-407B-9B51-2E0EC52BC983}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {1E81B7C7-7A49-44CB-A3CF-084E7ED9D5A0} + SolutionGuid = {C4A7E3D1-19CD-4A52-A751-F28B86FF0564} EndGlobalSection EndGlobal diff --git a/Stormtrooper/Stormtrooper/DirectionType.cs b/Stormtrooper/Stormtrooper/DirectionType.cs new file mode 100644 index 0000000..cf5dd7d --- /dev/null +++ b/Stormtrooper/Stormtrooper/DirectionType.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Stormtrooper +{ + public enum DirectionType + { + Up = 1, + + Down = 2, + + Left = 3, + + Right = 4, + + } +} diff --git a/Stormtrooper/Stormtrooper/DrawningStormtrooper.cs b/Stormtrooper/Stormtrooper/DrawningStormtrooper.cs new file mode 100644 index 0000000..28471bc --- /dev/null +++ b/Stormtrooper/Stormtrooper/DrawningStormtrooper.cs @@ -0,0 +1,242 @@ +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Drawing.Drawing2D; +using System.Linq; +using System.Reflection.Metadata; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Stormtrooper; +public class DrawningStormtrooper +{ + // Класс-сущность + public EntityStormtrooper? EntityStormtrooper { get; private set; } + + // Ширина окна + + public int? _pictureWidth; + + // Высота окна + + public int? _pictureHeight; + + // Левая координата прорисовки штурмовика + + public int? _startPosX; + + // Верхняя координата прорисовки автомобиля + + public int? _startPosY; + + // Ширина прорисовки штурмовика + + private readonly int _drawningStormtrooperWidth = 140; + + // Высота прорисовки штурмовика + + private readonly int _drawningStormtrooperHeight = 150; + + // Инициализация свойств + + /// Скорость + /// Вес + /// Основной цвет + /// Дополнительный цвет + /// Признак наличия ракет + /// Признак наличия бомбы + /// Признак наличия крыла + public void Init(int speed, double weight, Color bodyColor, Color + additionalColor, bool rocket, bool bomb, bool wing) + { + EntityStormtrooper = new EntityStormtrooper(); + EntityStormtrooper.Init(speed, weight, bodyColor, additionalColor,rocket, bomb, wing); + _pictureWidth = null; + _pictureHeight = null; + _startPosX = null; + _startPosY = null; + } + // Установка границ поля + + /// Ширина поля + /// Высота поля + public bool SetPictureSize(int width, int height) + { + if (_drawningStormtrooperHeight > height || _drawningStormtrooperWidth > width) + { + return false; + } + + _pictureWidth = width; + _pictureHeight = height; + + if (_startPosX.HasValue && _startPosY.HasValue) + { + SetPosition(_startPosX.Value, _startPosY.Value); + } + + return true; + } + + // Установка позиции + /// Координата X + /// Координата Y + public void SetPosition(int x, int y) + { + if (!_pictureHeight.HasValue || !_pictureWidth.HasValue) + { + return; + } + + if (x < 0 || x + _drawningStormtrooperWidth > _pictureWidth || y < 0 || y + _drawningStormtrooperHeight > _pictureHeight) + { + _startPosX = _pictureWidth - _drawningStormtrooperWidth; + _startPosY = _pictureHeight - _drawningStormtrooperHeight; + } + else + { + _startPosX = x; + _startPosY = y; + } + } + + // Изменение направления перемещения + public bool MoveTransport(DirectionType direction) + { + if (EntityStormtrooper == null || !_startPosX.HasValue || !_startPosY.HasValue) + { + return false; + } + switch (direction) + { + //влево + case DirectionType.Left: + if (_startPosX.Value - EntityStormtrooper.Step > 0) + { + _startPosX -= (int)EntityStormtrooper.Step; + } + return true; + //вверх + case DirectionType.Up: + if (_startPosY.Value - EntityStormtrooper.Step > 0) + { + _startPosY -= (int)EntityStormtrooper.Step; + } + return true; + // вправо + case DirectionType.Right: + if (_startPosX.Value + EntityStormtrooper.Step + _drawningStormtrooperWidth < _pictureWidth) + { + _startPosX += (int)EntityStormtrooper.Step; + return true; + } + return true; + //вниз + case DirectionType.Down: + if (_startPosY.Value + EntityStormtrooper.Step + _drawningStormtrooperHeight < _pictureHeight) + { + _startPosY += (int)EntityStormtrooper.Step; + } + return true; + default: + return false; + } + } + /// Прорисовка объекта + /// + public void DrawTransport(Graphics g) + { + if (EntityStormtrooper == null || !_startPosX.HasValue || !_startPosY.HasValue) + { + return; + } + + Pen pen = new(Color.Black); + Brush bodyColorBrush = new SolidBrush(EntityStormtrooper.BodyColor); + Brush additionalBrush = new SolidBrush(EntityStormtrooper.AdditionalColor); + + //нос штурмовика + Brush brBlack = new SolidBrush(Color.Black); + + Point[] Nose = new Point[3]; + Nose[0].X = _startPosX.Value + 20; Nose[0].Y = _startPosY.Value + 80; + Nose[1].X = _startPosX.Value + 20; Nose[1].Y = _startPosY.Value + 60; + Nose[2].X = _startPosX.Value; Nose[2].Y = _startPosY.Value + 70; + g.FillPolygon(brBlack, Nose); + g.DrawPolygon(pen, Nose); + //Заднии крылья штурмовика + + Point[] pflybtwings = new Point[6]; + pflybtwings[0].X = _startPosX.Value + 120; pflybtwings[0].Y = _startPosY.Value + 60; + pflybtwings[1].X = _startPosX.Value + 120; pflybtwings[1].Y = _startPosY.Value + 50; + pflybtwings[2].X = _startPosX.Value + 140; pflybtwings[2].Y = _startPosY.Value + 30; + pflybtwings[3].X = _startPosX.Value + 140; pflybtwings[3].Y = _startPosY.Value + 110; + pflybtwings[4].X = _startPosX.Value + 120; pflybtwings[4].Y = _startPosY.Value + 90; + pflybtwings[5].X = _startPosX.Value + 120; pflybtwings[5].Y = _startPosY.Value + 80; + g.FillPolygon(bodyColorBrush, pflybtwings); + g.DrawPolygon(pen, pflybtwings); + //Тело штурмовика + g.FillRectangle(bodyColorBrush, _startPosX.Value + 20, _startPosY.Value + 60, 120, 20); + g.DrawRectangle(pen, _startPosX.Value + 20, _startPosY.Value + 60, 120, 20); + + + //Крылья штурмовика + + + Point[] frontwings = new Point[4]; + frontwings[0].X = _startPosX.Value + 60; frontwings[0].Y = _startPosY.Value + 60; + frontwings[1].X = _startPosX.Value + 60; frontwings[1].Y = _startPosY.Value; + frontwings[2].X = _startPosX.Value + 70; frontwings[2].Y = _startPosY.Value; + frontwings[3].X = _startPosX.Value + 80; frontwings[3].Y = _startPosY.Value + 60; + g.FillPolygon(bodyColorBrush, frontwings); + g.DrawPolygon(pen, frontwings); + + Point[] frontwings2 = new Point[4]; + frontwings2[0].X = _startPosX.Value + 60; frontwings2[0].Y = _startPosY.Value + 80; + frontwings2[1].X = _startPosX.Value + 60; frontwings2[1].Y = _startPosY.Value + 140; + frontwings2[2].X = _startPosX.Value + 70; frontwings2[2].Y = _startPosY.Value + 140; + frontwings2[3].X = _startPosX.Value + 80; frontwings2[3].Y = _startPosY.Value + 80; + g.FillPolygon(bodyColorBrush, frontwings2); + g.DrawPolygon(pen, frontwings2); + + + //Ракеты штурмовика + + + + if (EntityStormtrooper.Rocket) + { + Point[] rockets = new Point[3]; + rockets[0].X = _startPosX.Value + 45; rockets[0].Y = _startPosY.Value + 20; + rockets[1].X = _startPosX.Value + 37; rockets[1].Y = _startPosY.Value + 22; + rockets[2].X = _startPosX.Value + 45; rockets[2].Y = _startPosY.Value + 25; + + Point[] rockets2 = new Point[3]; + rockets2[0].X = _startPosX.Value + 45; rockets2[0].Y = _startPosY.Value + 110; + rockets2[1].X = _startPosX.Value + 37; rockets2[1].Y = _startPosY.Value + 112; + rockets2[2].X = _startPosX.Value + 45; rockets2[2].Y = _startPosY.Value + 115; + g.FillRectangle(additionalBrush, _startPosX.Value + 45, _startPosY.Value + 20, 15, 5); + g.FillRectangle(additionalBrush, _startPosX.Value + 45, _startPosY.Value + 110, 15, 5); + g.DrawRectangle(pen, _startPosX.Value + 45, _startPosY.Value + 20, 15, 5); + g.DrawRectangle(pen, _startPosX.Value + 45, _startPosY.Value + 110, 15, 5); + g.FillPolygon(bodyColorBrush, rockets); + g.DrawPolygon(pen, rockets); + g.FillPolygon(bodyColorBrush, rockets2); + g.DrawPolygon(pen, rockets2); + + + } + //Бомбы бомбардировщика + + + if (EntityStormtrooper.Bomb) + { + g.FillRectangle(additionalBrush, _startPosX.Value + 50, _startPosY.Value + 40, 10, 10); + g.FillRectangle(additionalBrush, _startPosX.Value + 50, _startPosY.Value + 90, 10, 10); + g.DrawRectangle(pen, _startPosX.Value + 50, _startPosY.Value + 40, 10, 10); + g.DrawRectangle(pen, _startPosX.Value + 50, _startPosY.Value + 90, 10, 10); + + } + } +} \ No newline at end of file diff --git a/Stormtrooper/Stormtrooper/EntityStormtrooper.cs b/Stormtrooper/Stormtrooper/EntityStormtrooper.cs new file mode 100644 index 0000000..3a6e4cf --- /dev/null +++ b/Stormtrooper/Stormtrooper/EntityStormtrooper.cs @@ -0,0 +1,50 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Stormtrooper +{ + public class EntityStormtrooper + { + 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 Rocket { get; private set; } + // ракета + public bool Bomb { get; private set; } + // бомба + public bool Wing { get; private set; } + // крыло + public double Step => Speed * 100 / Weight; + // шаг в поле + + /// Инициализация полей объекта-класса штурмовика + + /// Скорость + /// Вес штурмовика + /// Основной цвет + /// Дополнительный цвет + /// Признак наличия ракет + /// Признак наличия бомб + /// Признак наличия крыла а + + public void Init(int speed, double weight, Color bodyColor, Color + additionalColor, bool rocket, bool bomb, bool wing) + { + Speed = speed; + Weight = weight; + BodyColor = bodyColor; + AdditionalColor = additionalColor; + Rocket = rocket; + Bomb = bomb; + Wing = wing; + } + } +} diff --git a/Stormtrooper/Stormtrooper/Form1.Designer.cs b/Stormtrooper/Stormtrooper/Form1.Designer.cs deleted file mode 100644 index 28d28b5..0000000 --- a/Stormtrooper/Stormtrooper/Form1.Designer.cs +++ /dev/null @@ -1,39 +0,0 @@ -namespace Stormtrooper -{ - 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/Stormtrooper/Stormtrooper/Form1.cs b/Stormtrooper/Stormtrooper/Form1.cs deleted file mode 100644 index 57525e6..0000000 --- a/Stormtrooper/Stormtrooper/Form1.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace Stormtrooper -{ - public partial class Form1 : Form - { - public Form1() - { - InitializeComponent(); - } - } -} \ No newline at end of file diff --git a/Stormtrooper/Stormtrooper/FormStormtrooper.Designer.cs b/Stormtrooper/Stormtrooper/FormStormtrooper.Designer.cs new file mode 100644 index 0000000..3561ad3 --- /dev/null +++ b/Stormtrooper/Stormtrooper/FormStormtrooper.Designer.cs @@ -0,0 +1,137 @@ +namespace Stormtrooper +{ + partial class FormStormtrooper + { + /// + /// 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() + { + pictureBoxStormtrooper = new PictureBox(); + buttonCreate = new Button(); + buttonUp = new Button(); + buttonDown = new Button(); + buttonLeft = new Button(); + buttonRight = new Button(); + ((System.ComponentModel.ISupportInitialize)pictureBoxStormtrooper).BeginInit(); + SuspendLayout(); + // + // pictureBoxStormtrooper + // + pictureBoxStormtrooper.Dock = DockStyle.Fill; + pictureBoxStormtrooper.Location = new Point(0, 0); + pictureBoxStormtrooper.Name = "pictureBoxStormtrooper"; + pictureBoxStormtrooper.Size = new Size(773, 439); + pictureBoxStormtrooper.TabIndex = 0; + pictureBoxStormtrooper.TabStop = false; + pictureBoxStormtrooper.Click += pictureBoxStormtrooper_Click; + // + // buttonCreate + // + buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; + buttonCreate.Location = new Point(12, 398); + buttonCreate.Name = "buttonCreate"; + buttonCreate.Size = new Size(94, 29); + buttonCreate.TabIndex = 1; + buttonCreate.Text = "Создать"; + buttonCreate.UseVisualStyleBackColor = true; + buttonCreate.Click += ButtonCreate_Click; + // + // buttonUp + // + buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonUp.BackgroundImage = Properties.Resources.Вверх; + buttonUp.BackgroundImageLayout = ImageLayout.Stretch; + buttonUp.Location = new Point(663, 293); + buttonUp.Name = "buttonUp"; + buttonUp.Size = new Size(35, 35); + buttonUp.TabIndex = 2; + 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(663, 374); + buttonDown.Name = "buttonDown"; + buttonDown.Size = new Size(35, 35); + buttonDown.TabIndex = 4; + buttonDown.UseVisualStyleBackColor = true; + buttonDown.Click += ButtonMove_Click; + // + // buttonLeft + // + buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; + buttonLeft.BackgroundImage = Properties.Resources.Влево; + buttonLeft.BackgroundImageLayout = ImageLayout.Stretch; + buttonLeft.Location = new Point(617, 331); + buttonLeft.Name = "buttonLeft"; + buttonLeft.Size = new Size(35, 35); + buttonLeft.TabIndex = 5; + 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(711, 331); + buttonRight.Name = "buttonRight"; + buttonRight.Size = new Size(35, 35); + buttonRight.TabIndex = 6; + buttonRight.UseVisualStyleBackColor = true; + buttonRight.Click += ButtonMove_Click; + // + // FormStormtrooper + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(773, 439); + Controls.Add(buttonRight); + Controls.Add(buttonLeft); + Controls.Add(buttonDown); + Controls.Add(buttonUp); + Controls.Add(buttonCreate); + Controls.Add(pictureBoxStormtrooper); + Name = "FormStormtrooper"; + Text = "Штурмовик"; + Load += FormStormtrooper_Load; + Click += ButtonMove_Click; + ((System.ComponentModel.ISupportInitialize)pictureBoxStormtrooper).EndInit(); + ResumeLayout(false); + } + + #endregion + + private PictureBox pictureBoxStormtrooper; + private Button buttonCreate; + private Button buttonUp; + private Button buttonDown; + private Button buttonLeft; + private Button buttonRight; + } +} \ No newline at end of file diff --git a/Stormtrooper/Stormtrooper/FormStormtrooper.cs b/Stormtrooper/Stormtrooper/FormStormtrooper.cs new file mode 100644 index 0000000..00bc307 --- /dev/null +++ b/Stormtrooper/Stormtrooper/FormStormtrooper.cs @@ -0,0 +1,95 @@ +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 Stormtrooper +{ + public partial class FormStormtrooper : Form + { + // Поле объект для прорисовки объекта + public DrawningStormtrooper? _drawningStormtrooper; + // Конструктор формы + public FormStormtrooper() + { + InitializeComponent(); + } + + // Метод прорисовки машины + private void FormStormtrooper_Load(object sender, EventArgs e) + { + + } + + // Обработка нажатия кнопки Создать + private void ButtonCreate_Click(object sender, EventArgs e) + { + Random random = new(); + _drawningStormtrooper = new DrawningStormtrooper(); + _drawningStormtrooper.Init(random.Next(100, 300), 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)), Convert.ToBoolean(random.Next(0, 2))); + _drawningStormtrooper.SetPictureSize(pictureBoxStormtrooper.Width, pictureBoxStormtrooper.Height); + _drawningStormtrooper.SetPosition(random.Next(10, 100), random.Next(10, 100)); + + Bitmap bmp = new(pictureBoxStormtrooper.Width, pictureBoxStormtrooper.Height); + Graphics gr = Graphics.FromImage(bmp); + _drawningStormtrooper.DrawTransport(gr); + pictureBoxStormtrooper.Image = bmp; + } + private void Draw() + { + if (_drawningStormtrooper == null) + { + return; + } + Bitmap bmp = new(pictureBoxStormtrooper.Width, + pictureBoxStormtrooper.Height); + Graphics gr = Graphics.FromImage(bmp); + _drawningStormtrooper.DrawTransport(gr); + pictureBoxStormtrooper.Image = bmp; + } + private void ButtonMove_Click(object sender, EventArgs e) + { + if (_drawningStormtrooper == null) + { + return; + } + + string name = ((Button)sender)?.Name ?? string.Empty; + bool result = false; + switch (name) + { + case "buttonUp": + result = _drawningStormtrooper.MoveTransport(DirectionType.Up); + break; + case "buttonDown": + result = _drawningStormtrooper.MoveTransport(DirectionType.Down); + break; + case "buttonLeft": + result = _drawningStormtrooper.MoveTransport(DirectionType.Left); + break; + case "buttonRight": + result = _drawningStormtrooper.MoveTransport(DirectionType.Right); + break; + } + if (result) + { + Draw(); + } + + + } + + private void pictureBoxStormtrooper_Click(object sender, EventArgs e) + { + + } + } +} diff --git a/Stormtrooper/Stormtrooper/Form1.resx b/Stormtrooper/Stormtrooper/FormStormtrooper.resx similarity index 93% rename from Stormtrooper/Stormtrooper/Form1.resx rename to Stormtrooper/Stormtrooper/FormStormtrooper.resx index 1af7de1..af32865 100644 --- a/Stormtrooper/Stormtrooper/Form1.resx +++ b/Stormtrooper/Stormtrooper/FormStormtrooper.resx @@ -1,17 +1,17 @@  - diff --git a/Stormtrooper/Stormtrooper/Program.cs b/Stormtrooper/Stormtrooper/Program.cs index 6351355..f56f0d8 100644 --- a/Stormtrooper/Stormtrooper/Program.cs +++ b/Stormtrooper/Stormtrooper/Program.cs @@ -11,7 +11,7 @@ namespace Stormtrooper // 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 FormStormtrooper()); } } } \ No newline at end of file diff --git a/Stormtrooper/Stormtrooper/Properties/Resources.Designer.cs b/Stormtrooper/Stormtrooper/Properties/Resources.Designer.cs new file mode 100644 index 0000000..0356d6f --- /dev/null +++ b/Stormtrooper/Stormtrooper/Properties/Resources.Designer.cs @@ -0,0 +1,103 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +namespace Stormtrooper.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("Stormtrooper.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/Stormtrooper/Stormtrooper/Properties/Resources.resx b/Stormtrooper/Stormtrooper/Properties/Resources.resx new file mode 100644 index 0000000..ba0583c --- /dev/null +++ b/Stormtrooper/Stormtrooper/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/Stormtrooper/Stormtrooper/Resources/Вверх.png b/Stormtrooper/Stormtrooper/Resources/Вверх.png new file mode 100644 index 0000000..9797b9b Binary files /dev/null and b/Stormtrooper/Stormtrooper/Resources/Вверх.png differ diff --git a/Stormtrooper/Stormtrooper/Resources/Влево.png b/Stormtrooper/Stormtrooper/Resources/Влево.png new file mode 100644 index 0000000..c255965 Binary files /dev/null and b/Stormtrooper/Stormtrooper/Resources/Влево.png differ diff --git a/Stormtrooper/Stormtrooper/Resources/Вниз.png b/Stormtrooper/Stormtrooper/Resources/Вниз.png new file mode 100644 index 0000000..9b9f133 Binary files /dev/null and b/Stormtrooper/Stormtrooper/Resources/Вниз.png differ diff --git a/Stormtrooper/Stormtrooper/Resources/Вправо.png b/Stormtrooper/Stormtrooper/Resources/Вправо.png new file mode 100644 index 0000000..b8e592a Binary files /dev/null and b/Stormtrooper/Stormtrooper/Resources/Вправо.png differ diff --git a/Stormtrooper/Stormtrooper/Stormtrooper.csproj b/Stormtrooper/Stormtrooper/Stormtrooper.csproj index e1a0735..244387d 100644 --- a/Stormtrooper/Stormtrooper/Stormtrooper.csproj +++ b/Stormtrooper/Stormtrooper/Stormtrooper.csproj @@ -8,4 +8,19 @@ enable + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + \ No newline at end of file