From c91d9c8830360c9f0b2395eb017fe74233b52b87 Mon Sep 17 00:00:00 2001 From: NikGapon <45200250+NikGapon@users.noreply.github.com> Date: Mon, 7 Nov 2022 15:35:37 +0400 Subject: [PATCH] rewrite for fix --- Airbus/Airbus/AbstractMap.cs | 122 ++++++++++++++ Airbus/Airbus/Direction.cs | 1 + Airbus/Airbus/DrawingAirbus.cs | 51 ++++++ Airbus/Airbus/DrawingAirplane.cs | 29 ++-- Airbus/Airbus/DrawningObjectAirplane.cs | 35 ++++ Airbus/Airbus/EntityAirbus.cs | 24 +++ Airbus/Airbus/EntityAirplane.cs | 2 +- Airbus/Airbus/FormAirplane.Designer.cs | 17 +- Airbus/Airbus/FormAirplane.cs | 22 ++- Airbus/Airbus/FormMap.Designer.cs | 205 ++++++++++++++++++++++++ Airbus/Airbus/FormMap.cs | 86 ++++++++++ Airbus/Airbus/FormMap.resx | 63 ++++++++ Airbus/Airbus/IDrawningObject.cs | 18 +++ Airbus/Airbus/Program.cs | 2 +- Airbus/Airbus/SecondMap.cs | 57 +++++++ Airbus/Airbus/SimpleMap.cs | 48 ++++++ Airbus/Airbus/ThirdMap.cs | 57 +++++++ 17 files changed, 821 insertions(+), 18 deletions(-) create mode 100644 Airbus/Airbus/AbstractMap.cs create mode 100644 Airbus/Airbus/DrawingAirbus.cs create mode 100644 Airbus/Airbus/DrawningObjectAirplane.cs create mode 100644 Airbus/Airbus/EntityAirbus.cs create mode 100644 Airbus/Airbus/FormMap.Designer.cs create mode 100644 Airbus/Airbus/FormMap.cs create mode 100644 Airbus/Airbus/FormMap.resx create mode 100644 Airbus/Airbus/IDrawningObject.cs create mode 100644 Airbus/Airbus/SecondMap.cs create mode 100644 Airbus/Airbus/SimpleMap.cs create mode 100644 Airbus/Airbus/ThirdMap.cs diff --git a/Airbus/Airbus/AbstractMap.cs b/Airbus/Airbus/AbstractMap.cs new file mode 100644 index 0000000..da78b80 --- /dev/null +++ b/Airbus/Airbus/AbstractMap.cs @@ -0,0 +1,122 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Airbus +{ + internal abstract class AbstractMap + { + private IDrawningObject _drawningObject = null; + + protected int[,] _map = null; + protected int _width; + protected int _height; + protected float _size_x; + protected float _size_y; + protected readonly Random _random = new(); + protected readonly int _freeRoad = 0; + protected readonly int _barrier = 1; + + public Bitmap CreateMap(int width, int height, IDrawningObject drawningObject) + { + _width = width; + _height = height; + _drawningObject = drawningObject; + GenerateMap(); + while (!SetObjectOnMap()) + { + GenerateMap(); + } + return DrawMapWithObject(); + } + + private bool CanMove(Direction direction, (float Left, float Right, float Top, float Bottom) position) //Проверка на возможность шага + { + + for (int i = (int)(position.Top / _size_y); i <=(int)((position.Bottom + 25) / _size_y); ++i) + { + for (int j = (int)(position.Left / _size_x); j <= (int)((position.Right + 5) / _size_x); ++j) + { + if (i >= 0 && j >= 0 && i < _map.GetLength(0) && j < _map.GetLength(1) && _map[i, j] == _barrier) return false; + } + } + return true; + } + + public Bitmap MoveObject(Direction direction) + { + (float Left, float Right, float Top, float Bottom) position = _drawningObject.GetCurrentPosition(); + if (direction == Direction.Left) + { + position.Left -= _drawningObject.Step; + } + else if (direction == Direction.Right) + { + position.Right += _drawningObject.Step; + } + else if (direction == Direction.Up) + { + position.Top -= _drawningObject.Step; + } + else if (direction == Direction.Down) + { + position.Bottom += _drawningObject.Step; + } + + if (CanMove(direction, position)) + { + _drawningObject.MoveObject(direction); + } + return DrawMapWithObject(); + } + + private bool SetObjectOnMap() + { + if (_drawningObject == null || _map == null) + { + return false; + } + int x = _random.Next(0, 10); + int y = _random.Next(0, 10); + _drawningObject.SetObject(x, y, _width, _height); + for (int i = (int)(_drawningObject.GetCurrentPosition().Top / _size_y); i <= (int)((_drawningObject.GetCurrentPosition().Bottom + 25) / _size_y); ++i) + { + for (int j = (int)(_drawningObject.GetCurrentPosition().Left / _size_x); j <= (int)((_drawningObject.GetCurrentPosition().Right + 5)/ _size_x); ++j) + { + if (_map[i, j] == _barrier) _map[i, j] = _freeRoad; + } + } + return true; + } + private Bitmap DrawMapWithObject() + { + Bitmap bmp = new(_width, _height); + if (_drawningObject == null || _map == null) + { + return bmp; + } + Graphics gr = Graphics.FromImage(bmp); + for (int i = 0; i < _map.GetLength(0); ++i) + { + for (int j = 0; j < _map.GetLength(1); ++j) + { + if (_map[i, j] == _freeRoad) + { + DrawRoadPart(gr, i, j); + } + else if (_map[i, j] == _barrier) + { + DrawBarrierPart(gr, i, j); + } + } + } + _drawningObject.DrawningObject(gr); + return bmp; + } + protected abstract void GenerateMap(); + protected abstract void DrawRoadPart(Graphics g, int i, int j); + protected abstract void DrawBarrierPart(Graphics g, int i, int j); + } +} diff --git a/Airbus/Airbus/Direction.cs b/Airbus/Airbus/Direction.cs index 5601bf7..6079158 100644 --- a/Airbus/Airbus/Direction.cs +++ b/Airbus/Airbus/Direction.cs @@ -8,6 +8,7 @@ namespace Airbus { internal enum Direction { + None = 0, Left = 1, //Влево Up = 2, //Вверх Right = 3, //Вправо diff --git a/Airbus/Airbus/DrawingAirbus.cs b/Airbus/Airbus/DrawingAirbus.cs new file mode 100644 index 0000000..12f6603 --- /dev/null +++ b/Airbus/Airbus/DrawingAirbus.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Airbus +{ + internal class DrawingAirbus : DrawningAirplane + { + public DrawingAirbus(int speed, float weight, Color bodyColor, Color dopColor, bool compartment, bool engine) : + base(speed, weight, bodyColor, 150, 30) + { + airplane = new EntityAirbus(speed, weight, bodyColor, dopColor, compartment, engine); + } + + public override void DrawTransport(Graphics g) + { + if (airplane is not EntityAirbus grandAirbus) + { + return; + } + + Pen pen = new(Color.Black, 2); + Brush dopBrush = new SolidBrush(grandAirbus.DopColor); + if (grandAirbus.Engine) + { + g.FillRectangle(dopBrush, _startPosX , _startPosY + 12 + _airplaneWidth / 10, 10, 10); + g.FillRectangle(dopBrush, _startPosX, _startPosY + 12 + _airplaneWidth / 5, 10, 10); + + } + + _startPosX += 10; + base.DrawTransport(g); + _startPosX -= 10; + + if (grandAirbus.Compartment) + { + g.FillRectangle(dopBrush, _startPosX + 85, _startPosY + 10, 50, 15); + g.DrawPolygon(pen, new[] + { + new Point((int)(_startPosX + 85), (int)(_startPosY + 10)), + new Point((int)(_startPosX + 85), (int)(_startPosY + 25)), + new Point((int)(_startPosX + 60), (int)(_startPosY + 25)), + new Point((int)(_startPosX + 85), (int)(_startPosY + 10)), + }); + } + + } + } +} diff --git a/Airbus/Airbus/DrawingAirplane.cs b/Airbus/Airbus/DrawingAirplane.cs index 16598f0..c0ea70d 100644 --- a/Airbus/Airbus/DrawingAirplane.cs +++ b/Airbus/Airbus/DrawingAirplane.cs @@ -9,22 +9,21 @@ namespace Airbus internal class DrawningAirplane { /// Класс-сущность - public EntityAirplane airplane { private set; get; } + public EntityAirplane airplane { protected set; get; } /// Левая координата отрисовки автомобиля - private float _startPosX; + protected float _startPosX; /// Верхняя кооридната отрисовки автомобиля - private float _startPosY; + protected float _startPosY; /// Ширина окна отрисовки private int? _pictureWidth = null; /// Высота окна отрисовки private int? _pictureHeight = null; /// Ширина отрисовки автомобиля - private readonly int _airplaneWidth = 150; //Ширина отрисовки корабля - private readonly int _airplaneHeight = 30; //Высота отрисовки корабля - public void Init(int speed, float weight, Color bodyColor) + protected readonly int _airplaneWidth = 150; //Ширина отрисовки корабля + protected readonly int _airplaneHeight = 30; //Высота отрисовки корабля + public DrawningAirplane(int speed, float weight, Color bodyColor) { - airplane = new EntityAirplane(); - airplane.Init(speed, weight, bodyColor); + airplane = new EntityAirplane(speed, weight, bodyColor); } public void SetPosition(int x, int y, int width, int height) @@ -59,8 +58,14 @@ namespace Airbus break; } } - - public void DrawTransport(Graphics g) + protected DrawningAirplane(int speed, float weight, Color bodyColor, int + carWidth, int carHeight) : + this(speed, weight, bodyColor) + { + _airplaneWidth = carWidth; + _airplaneHeight = carHeight; + } + public virtual void DrawTransport(Graphics g) { if (_startPosX < 0 || _startPosY < 0 || !_pictureHeight.HasValue || !_pictureWidth.HasValue) { @@ -114,6 +119,10 @@ namespace Airbus _startPosY = _pictureHeight.Value - _airplaneHeight; } } + public (float Left, float Right, float Top, float Bottom) GetCurrentPosition() + { + return (_startPosX, _startPosX + _airplaneWidth, _startPosY, _startPosY + _airplaneHeight); } + } } diff --git a/Airbus/Airbus/DrawningObjectAirplane.cs b/Airbus/Airbus/DrawningObjectAirplane.cs new file mode 100644 index 0000000..65bb174 --- /dev/null +++ b/Airbus/Airbus/DrawningObjectAirplane.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Airbus +{ + internal class DrawningObjectAirplane : IDrawningObject + { + private DrawningAirplane _airplane = null; + + public DrawningObjectAirplane(DrawningAirplane airplane) + { + _airplane = airplane; + } + public float Step => _airplane?.airplane?.Step ?? 0; + public void DrawningObject(Graphics g) + { + _airplane?.DrawTransport(g); + } + public (float Left, float Right, float Top, float Bottom) GetCurrentPosition() + { + return _airplane?.GetCurrentPosition() ?? default; + } + public void MoveObject(Direction direction) + { + _airplane?.MoveTransport(direction); + } + public void SetObject(int x, int y, int width, int height) + { + _airplane?.SetPosition(x, y, width, height); + } + } +} diff --git a/Airbus/Airbus/EntityAirbus.cs b/Airbus/Airbus/EntityAirbus.cs new file mode 100644 index 0000000..6e390ef --- /dev/null +++ b/Airbus/Airbus/EntityAirbus.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Airbus +{ + internal class EntityAirbus : EntityAirplane + { + public Color DopColor { get; private set; } + public bool Compartment { get; private set; } + public bool Engine { get; private set; } + public EntityAirbus(int speed, float weight, Color bodyColor, Color + dopColor, bool compartment, bool engine) : + base(speed, weight, bodyColor) + { + DopColor = dopColor; + Compartment = compartment; + Engine = engine; + } + + } +} diff --git a/Airbus/Airbus/EntityAirplane.cs b/Airbus/Airbus/EntityAirplane.cs index 0cfad23..7b1cf93 100644 --- a/Airbus/Airbus/EntityAirplane.cs +++ b/Airbus/Airbus/EntityAirplane.cs @@ -13,7 +13,7 @@ namespace Airbus public Color BodyColor { get; private set; } //Цвет public float Step => Speed * 100 / Weight; //Шаг при перемещении //Инициализация - public void Init(int speed, float weight, Color bodyColor) + public EntityAirplane(int speed, float weight, Color bodyColor) { Random random = new Random(); Speed = speed <= 0 ? random.Next(50, 150) : speed; diff --git a/Airbus/Airbus/FormAirplane.Designer.cs b/Airbus/Airbus/FormAirplane.Designer.cs index 4b6bfa6..bf709db 100644 --- a/Airbus/Airbus/FormAirplane.Designer.cs +++ b/Airbus/Airbus/FormAirplane.Designer.cs @@ -36,6 +36,7 @@ this.buttonRight = new System.Windows.Forms.Button(); this.buttonLeft = new System.Windows.Forms.Button(); this.buttonDown = new System.Windows.Forms.Button(); + this.buttonModCreate = new System.Windows.Forms.Button(); this.statusStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit(); this.SuspendLayout(); @@ -140,11 +141,22 @@ this.buttonDown.UseVisualStyleBackColor = true; this.buttonDown.Click += new System.EventHandler(this.ButtonMove_Click); // - // FormAirplane + // buttonModCreate + // + this.buttonModCreate.Location = new System.Drawing.Point(81, 402); + this.buttonModCreate.Name = "buttonModCreate"; + this.buttonModCreate.Size = new System.Drawing.Size(75, 23); + this.buttonModCreate.TabIndex = 7; + this.buttonModCreate.Text = "Модификация"; + this.buttonModCreate.UseVisualStyleBackColor = true; + this.buttonModCreate.Click += new System.EventHandler(this.buttonModCreate_Click); + // + // FormAirbus // 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.buttonModCreate); this.Controls.Add(this.buttonDown); this.Controls.Add(this.buttonLeft); this.Controls.Add(this.buttonRight); @@ -152,7 +164,7 @@ this.Controls.Add(this.buttonCreate); this.Controls.Add(this.statusStrip1); this.Controls.Add(this.pictureBox); - this.Name = "FormAirplane"; + this.Name = "FormAirbus"; this.Text = "Airbus"; this.statusStrip1.ResumeLayout(false); this.statusStrip1.PerformLayout(); @@ -172,5 +184,6 @@ private Button buttonRight; private Button buttonLeft; private Button buttonDown; + private Button buttonModCreate; } } diff --git a/Airbus/Airbus/FormAirplane.cs b/Airbus/Airbus/FormAirplane.cs index 26ef0e1..5dbc5ff 100644 --- a/Airbus/Airbus/FormAirplane.cs +++ b/Airbus/Airbus/FormAirplane.cs @@ -27,16 +27,20 @@ namespace Airbus airplane.DrawTransport(g); pictureBox.Image = bmp; } - - private void buttonCreate_Click(object sender, EventArgs e) + private void SetData() { Random random = new Random(); - airplane = new DrawningAirplane(); - airplane.Init(random.Next(100, 300), random.Next(1000, 3000), Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256))); airplane.SetPosition(random.Next(10, 100), random.Next(10, 100), pictureBox.Width, pictureBox.Height); toolStripStatusLabelSpeed.Text = $"Скорость: {airplane.airplane?.Speed}"; toolStripStatusLabelWight.Text = $"Вес: {airplane.airplane?.Weight}"; toolStripStatusLabelColor.Text = $" : {airplane.airplane?.BodyColor}"; + } + private void buttonCreate_Click(object sender, EventArgs e) + { + Random random = new Random(); + airplane = new DrawningAirplane(random.Next(100, 300), random.Next(1000, 3000), Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256))); + + SetData(); Draw(); } @@ -67,5 +71,15 @@ namespace Airbus airplane?.ChangeBorders(pictureBox.Width, pictureBox.Height); Draw(); } + private void buttonModCreate_Click(object sender, EventArgs e) + { + Random random = new Random(); + airplane = new DrawingAirbus(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)), + true, true); + SetData(); + Draw(); + } } } diff --git a/Airbus/Airbus/FormMap.Designer.cs b/Airbus/Airbus/FormMap.Designer.cs new file mode 100644 index 0000000..d4556b7 --- /dev/null +++ b/Airbus/Airbus/FormMap.Designer.cs @@ -0,0 +1,205 @@ +namespace Airbus +{ + partial class FormMap + { + /// + /// 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.statusStrip1 = new System.Windows.Forms.StatusStrip(); + this.toolStripStatusLabelSpeed = new System.Windows.Forms.ToolStripStatusLabel(); + this.toolStripStatusLabelWight = new System.Windows.Forms.ToolStripStatusLabel(); + this.toolStripStatusLabelColor = new System.Windows.Forms.ToolStripStatusLabel(); + this.pictureBox = new System.Windows.Forms.PictureBox(); + this.buttonCreate = new System.Windows.Forms.Button(); + this.buttonUp = new System.Windows.Forms.Button(); + this.buttonRight = new System.Windows.Forms.Button(); + this.buttonLeft = new System.Windows.Forms.Button(); + this.buttonDown = new System.Windows.Forms.Button(); + this.buttonModCreate = new System.Windows.Forms.Button(); + this.comboBoxSelectorMap = new System.Windows.Forms.ComboBox(); + this.statusStrip1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit(); + this.SuspendLayout(); + // + // statusStrip1 + // + this.statusStrip1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.statusStrip1.Dock = System.Windows.Forms.DockStyle.None; + this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripStatusLabelSpeed, + this.toolStripStatusLabelWight, + this.toolStripStatusLabelColor}); + this.statusStrip1.Location = new System.Drawing.Point(0, 428); + this.statusStrip1.Name = "statusStrip1"; + this.statusStrip1.Size = new System.Drawing.Size(135, 22); + this.statusStrip1.TabIndex = 0; + this.statusStrip1.Text = "statusStrip1"; + // + // toolStripStatusLabelSpeed + // + this.toolStripStatusLabelSpeed.Name = "toolStripStatusLabelSpeed"; + this.toolStripStatusLabelSpeed.Size = new System.Drawing.Size(59, 17); + this.toolStripStatusLabelSpeed.Text = "Скорость"; + // + // toolStripStatusLabelWight + // + this.toolStripStatusLabelWight.Name = "toolStripStatusLabelWight"; + this.toolStripStatusLabelWight.Size = new System.Drawing.Size(26, 17); + this.toolStripStatusLabelWight.Text = "Вес"; + // + // toolStripStatusLabelColor + // + this.toolStripStatusLabelColor.Name = "toolStripStatusLabelColor"; + this.toolStripStatusLabelColor.Size = new System.Drawing.Size(33, 17); + this.toolStripStatusLabelColor.Text = "Цвет"; + // + // pictureBox + // + this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill; + this.pictureBox.Location = new System.Drawing.Point(0, 0); + this.pictureBox.Name = "pictureBox"; + this.pictureBox.Size = new System.Drawing.Size(800, 450); + this.pictureBox.TabIndex = 1; + this.pictureBox.TabStop = false; + // + // 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(0, 402); + this.buttonCreate.Name = "buttonCreate"; + this.buttonCreate.Size = new System.Drawing.Size(75, 23); + this.buttonCreate.TabIndex = 2; + this.buttonCreate.Text = "Создать"; + this.buttonCreate.UseVisualStyleBackColor = true; + this.buttonCreate.Click += new System.EventHandler(this.buttonCreate_Click); + // + // buttonUp + // + this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.buttonUp.BackgroundImage = global::Airbus.Properties.Resources.v2; + this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonUp.Location = new System.Drawing.Point(719, 326); + this.buttonUp.Name = "buttonUp"; + this.buttonUp.Size = new System.Drawing.Size(35, 35); + this.buttonUp.TabIndex = 3; + this.buttonUp.UseVisualStyleBackColor = true; + this.buttonUp.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::Airbus.Properties.Resources.v3; + this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonRight.Location = new System.Drawing.Point(753, 358); + this.buttonRight.Name = "buttonRight"; + this.buttonRight.Size = new System.Drawing.Size(35, 35); + this.buttonRight.TabIndex = 4; + this.buttonRight.UseVisualStyleBackColor = true; + this.buttonRight.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::Airbus.Properties.Resources.v1; + this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonLeft.Location = new System.Drawing.Point(686, 358); + this.buttonLeft.Name = "buttonLeft"; + this.buttonLeft.Size = new System.Drawing.Size(35, 35); + this.buttonLeft.TabIndex = 5; + this.buttonLeft.UseVisualStyleBackColor = true; + this.buttonLeft.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::Airbus.Properties.Resources.v4; + this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.buttonDown.Location = new System.Drawing.Point(719, 390); + this.buttonDown.Name = "buttonDown"; + this.buttonDown.Size = new System.Drawing.Size(35, 35); + this.buttonDown.TabIndex = 6; + this.buttonDown.UseVisualStyleBackColor = true; + this.buttonDown.Click += new System.EventHandler(this.ButtonMove_Click); + // + // buttonModCreate + // + this.buttonModCreate.Location = new System.Drawing.Point(81, 402); + this.buttonModCreate.Name = "buttonModCreate"; + this.buttonModCreate.Size = new System.Drawing.Size(75, 23); + this.buttonModCreate.TabIndex = 7; + this.buttonModCreate.Text = "Модификация"; + this.buttonModCreate.UseVisualStyleBackColor = true; + this.buttonModCreate.Click += new System.EventHandler(this.buttonModCreate_Click); + // + // comboBoxSelectorMap + // + this.comboBoxSelectorMap.FormattingEnabled = true; + this.comboBoxSelectorMap.Items.AddRange(new object[] { + "Первая карта", + "Вторая карта", + "Третья карта"}); + this.comboBoxSelectorMap.Location = new System.Drawing.Point(12, 12); + this.comboBoxSelectorMap.Name = "comboBoxSelectorMap"; + this.comboBoxSelectorMap.Size = new System.Drawing.Size(121, 23); + this.comboBoxSelectorMap.TabIndex = 8; + this.comboBoxSelectorMap.SelectedIndexChanged += new System.EventHandler(this.comboBoxSelectorMap_SelectedIndexChanged); + // + // FormMap + // + 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.comboBoxSelectorMap); + this.Controls.Add(this.buttonModCreate); + this.Controls.Add(this.buttonDown); + this.Controls.Add(this.buttonLeft); + this.Controls.Add(this.buttonRight); + this.Controls.Add(this.buttonUp); + this.Controls.Add(this.buttonCreate); + this.Controls.Add(this.statusStrip1); + this.Controls.Add(this.pictureBox); + this.Name = "FormMap"; + this.Text = "Airbus"; + this.statusStrip1.ResumeLayout(false); + this.statusStrip1.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + #endregion + private StatusStrip statusStrip1; + private ToolStripStatusLabel toolStripStatusLabelSpeed; + private ToolStripStatusLabel toolStripStatusLabelWight; + private ToolStripStatusLabel toolStripStatusLabelColor; + private PictureBox pictureBox; + private Button buttonCreate; + private Button buttonUp; + private Button buttonRight; + private Button buttonLeft; + private Button buttonDown; + private Button buttonModCreate; + private ComboBox comboBoxSelectorMap; + } +} diff --git a/Airbus/Airbus/FormMap.cs b/Airbus/Airbus/FormMap.cs new file mode 100644 index 0000000..c452576 --- /dev/null +++ b/Airbus/Airbus/FormMap.cs @@ -0,0 +1,86 @@ +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 Airbus +{ + public partial class FormMap : Form + { + + private AbstractMap _abstractMap; + public FormMap() + { + InitializeComponent(); + _abstractMap = new SimpleMap(); + } + private void SetData(DrawningAirplane airplane) + { + toolStripStatusLabelSpeed.Text = $"Скорость: {airplane.airplane?.Speed}"; + toolStripStatusLabelWight.Text = $"Вес: {airplane.airplane?.Weight}"; + toolStripStatusLabelColor.Text = $" : {airplane.airplane?.BodyColor}"; + pictureBox.Image = _abstractMap.CreateMap(pictureBox.Width, pictureBox.Height, new DrawningObjectAirplane(airplane)); + } + private void buttonCreate_Click(object sender, EventArgs e) + { + Random random = new Random(); + var airbus = new DrawningAirplane(random.Next(100, 300), random.Next(1000, 3000), Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256))); + + SetData(airbus); + } + + private void ButtonMove_Click(object sender, EventArgs e) + { + string name = ((Button)sender)?.Name ?? string.Empty; + Direction direction = Direction.None; + switch (name) + { + case "buttonLeft": + direction = Direction.Left; + break; + case "buttonUp": + direction = Direction.Up; + break; + case "buttonRight": + direction = Direction.Right; + break; + case "buttonDown": + direction = Direction.Down; + break; + } + pictureBox.Image = _abstractMap?.MoveObject(direction); + } + + private void buttonModCreate_Click(object sender, EventArgs e) + { + Random random = new Random(); + var airbus = new DrawingAirbus(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)), + true, true); + SetData(airbus); + + } + + private void comboBoxSelectorMap_SelectedIndexChanged(object sender, EventArgs e) + { + switch (comboBoxSelectorMap.Text) + { + case "Первая карта": + _abstractMap = new SimpleMap(); + break; + case "Вторая карта": + _abstractMap = new SecondMap(); + break; + case "Третья карта": + _abstractMap = new ThirdMap(); + break; + } + } + } +} diff --git a/Airbus/Airbus/FormMap.resx b/Airbus/Airbus/FormMap.resx new file mode 100644 index 0000000..5cb320f --- /dev/null +++ b/Airbus/Airbus/FormMap.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/Airbus/Airbus/IDrawningObject.cs b/Airbus/Airbus/IDrawningObject.cs new file mode 100644 index 0000000..0390d83 --- /dev/null +++ b/Airbus/Airbus/IDrawningObject.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Airbus +{ + internal interface IDrawningObject + { + public float Step { get; } + void SetObject(int x, int y, int width, int height); + void MoveObject(Direction direction); + void DrawningObject(Graphics g); + (float Left, float Right, float Top, float Bottom) + GetCurrentPosition(); + } +} diff --git a/Airbus/Airbus/Program.cs b/Airbus/Airbus/Program.cs index d0fc544..3c7e1fb 100644 --- a/Airbus/Airbus/Program.cs +++ b/Airbus/Airbus/Program.cs @@ -11,7 +11,7 @@ namespace Airbus // To customize application configuration such as set high DPI settings or default font, // see https://aka.ms/applicationconfiguration. ApplicationConfiguration.Initialize(); - Application.Run(new FormAirplane()); + Application.Run(new FormMap()); } } } \ No newline at end of file diff --git a/Airbus/Airbus/SecondMap.cs b/Airbus/Airbus/SecondMap.cs new file mode 100644 index 0000000..cde7dc6 --- /dev/null +++ b/Airbus/Airbus/SecondMap.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Airbus +{ + internal class SecondMap : AbstractMap + { + private readonly Brush barrierColor = new SolidBrush(Color.Black); + + private readonly Brush roadColor = new SolidBrush(Color.Blue); + + protected override void DrawBarrierPart(Graphics g, int i, int j) + { + g.FillRectangle(barrierColor, j * _size_x, i * _size_y, _size_x, _size_y); + } + protected override void DrawRoadPart(Graphics g, int i, int j) + { + g.FillRectangle(roadColor, j * _size_x, i * _size_y, _size_x, _size_y); + } + protected override void GenerateMap() + { + _map = new int[100, 100]; + _size_x = (float)_width / _map.GetLength(0); + _size_y = (float)_height / _map.GetLength(1); + int counter = 0; + for (int i = 0; i < _map.GetLength(0); ++i) + { + for (int j = 0; j < _map.GetLength(1); ++j) + { + _map[i, j] = _freeRoad; + } + } + for (int i = 40; i < _map.GetLength(0); ++i) + { + _map[i, _map.GetLength(1) / 2] = _barrier; + _map[i, _map.GetLength(1) - 1] = _barrier; + } + for (int j = 0; j < _map.GetLength(1); ++j) + { + _map[_map.GetLength(0) - 1, j] = _barrier; + } + while (counter < 45) + { + int x = _random.Next(0, 100); + int y = _random.Next(0, 100); + if (_map[x, y] == _freeRoad) + { + _map[x, y] = _barrier; + counter++; + } + } + } + } +} diff --git a/Airbus/Airbus/SimpleMap.cs b/Airbus/Airbus/SimpleMap.cs new file mode 100644 index 0000000..2f4017c --- /dev/null +++ b/Airbus/Airbus/SimpleMap.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Airbus +{ + internal class SimpleMap : AbstractMap + { + private readonly Brush barrierColor = new SolidBrush(Color.Black); + + private readonly Brush roadColor = new SolidBrush(Color.Gray); + + protected override void DrawBarrierPart(Graphics g, int i, int j) + { + g.FillRectangle(barrierColor, j * _size_x, i * _size_y, _size_x, _size_y); + } + protected override void DrawRoadPart(Graphics g, int i, int j) + { + g.FillRectangle(roadColor, j * _size_x, i * _size_y, _size_x, _size_y); + } + protected override void GenerateMap() + { + _map = new int[100, 100]; + _size_x = (float)_width / _map.GetLength(0); + _size_y = (float)_height / _map.GetLength(1); + int counter = 0; + for (int i = 0; i < _map.GetLength(0); ++i) + { + for (int j = 0; j < _map.GetLength(1); ++j) + { + _map[i, j] = _freeRoad; + } + } + while (counter < 50) + { + int x = _random.Next(0, 100); + int y = _random.Next(0, 100); + if (_map[x, y] == _freeRoad) + { + _map[x, y] = _barrier; + counter++; + } + } + } + } +} diff --git a/Airbus/Airbus/ThirdMap.cs b/Airbus/Airbus/ThirdMap.cs new file mode 100644 index 0000000..c629c4a --- /dev/null +++ b/Airbus/Airbus/ThirdMap.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Airbus +{ + internal class ThirdMap : AbstractMap + { + + private readonly Brush barrierColor = new SolidBrush(Color.Yellow); + + private readonly Brush roadColor = new SolidBrush(Color.Purple); + + protected override void DrawBarrierPart(Graphics g, int i, int j) + { + g.FillRectangle(barrierColor, j * _size_x, i * _size_y, _size_x, _size_y); + } + protected override void DrawRoadPart(Graphics g, int i, int j) + { + g.FillRectangle(roadColor, j * _size_x, i * _size_y, _size_x, _size_y); + } + protected override void GenerateMap() + { + _map = new int[100, 100]; + _size_x = (float)_width / _map.GetLength(0); + _size_y = (float)_height / _map.GetLength(1); + int counter = 0; + for (int i = 0; i < _map.GetLength(0); ++i) + { + for (int j = 0; j < _map.GetLength(1); ++j) + { + _map[i, j] = _freeRoad; + } + } + while (counter < 10) + { + int x = _random.Next(0, 100); + int y = _random.Next(0, 100); + if (_map[x, y] == _freeRoad) + { + _map[x, y] = _barrier; + if (x > 0 && y > 0 && x < _map.GetLength(0) - 1 && y < _map.GetLength(1) - 1) + { + + _map[x + 1, y] = _barrier; + + _map[x - 1, y ] = _barrier; + } + counter++; + } + } + } + } + +}