Абстрактный класс.
This commit is contained in:
parent
fecbbfd469
commit
4a9cdb1255
121
ContainerShip/ContainerShip/AbstractMap.cs
Normal file
121
ContainerShip/ContainerShip/AbstractMap.cs
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ContainerShip
|
||||||
|
{
|
||||||
|
internal abstract class AbstractMap
|
||||||
|
{
|
||||||
|
private IDrawingObject _drawingObject = 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, IDrawingObject drawingObject)
|
||||||
|
{
|
||||||
|
_width = width;
|
||||||
|
_height = height;
|
||||||
|
_drawingObject = drawingObject;
|
||||||
|
GenerateMap();
|
||||||
|
while (!SetObjectOnMap())
|
||||||
|
{
|
||||||
|
GenerateMap();
|
||||||
|
}
|
||||||
|
return DrawMapWithObject();
|
||||||
|
}
|
||||||
|
public Bitmap MoveObject(Direction direction)
|
||||||
|
{
|
||||||
|
if (_drawingObject == null) return DrawMapWithObject();
|
||||||
|
bool canMove = true;
|
||||||
|
switch (direction)
|
||||||
|
{
|
||||||
|
case Direction.Left:
|
||||||
|
if (!CheckForBarriers(0, -1 * _drawingObject.Step, -1 * _drawingObject.Step, 0)) canMove = false;
|
||||||
|
break;
|
||||||
|
case Direction.Right:
|
||||||
|
if (!CheckForBarriers(0, _drawingObject.Step, _drawingObject.Step, 0)) canMove = false;
|
||||||
|
break;
|
||||||
|
case Direction.Up:
|
||||||
|
if (!CheckForBarriers(-1 * _drawingObject.Step, 0, 0, -1 * _drawingObject.Step)) canMove = false;
|
||||||
|
break;
|
||||||
|
case Direction.Down:
|
||||||
|
if (!CheckForBarriers(_drawingObject.Step, 0, 0, _drawingObject.Step)) canMove = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (canMove)
|
||||||
|
{
|
||||||
|
_drawingObject.MoveObject(direction);
|
||||||
|
}
|
||||||
|
return DrawMapWithObject();
|
||||||
|
}
|
||||||
|
//Вспомогательная функция проверки
|
||||||
|
private bool CheckForBarriers(float topBorder, float rightBorder, float leftBorder, float bottomBorder)
|
||||||
|
{
|
||||||
|
int top = Convert.ToInt32((_drawingObject.GetCurrentPosition().Top + topBorder)/_size_y);
|
||||||
|
int bottom = Convert.ToInt32((_drawingObject.GetCurrentPosition().Bottom + bottomBorder)/_size_y);
|
||||||
|
int right = Convert.ToInt32((_drawingObject.GetCurrentPosition().Right + rightBorder)/_size_x);
|
||||||
|
int left = Convert.ToInt32((_drawingObject.GetCurrentPosition().Left + leftBorder)/_size_x);
|
||||||
|
|
||||||
|
if (left < 0 || top < 0 || right >= _map.GetLength(0) || bottom >= _map.GetLength(1))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = top; i <= bottom; i++)
|
||||||
|
{
|
||||||
|
for (int j = left; j <= right; j++)
|
||||||
|
{
|
||||||
|
if (_map[j, i] == 1) return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
private bool SetObjectOnMap()
|
||||||
|
{
|
||||||
|
if (_drawingObject == null || _map == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
int x = _random.Next(0, 10);
|
||||||
|
int y = _random.Next(0, 10);
|
||||||
|
_drawingObject.SetObject(x, y, _width, _height);
|
||||||
|
if (!CheckForBarriers(0, 0, 0, 0)) return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
private Bitmap DrawMapWithObject()
|
||||||
|
{
|
||||||
|
Bitmap bmp = new(_width, _height);
|
||||||
|
if (_drawingObject == 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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_drawingObject.DrawingObject(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);
|
||||||
|
}
|
||||||
|
}
|
@ -8,6 +8,7 @@ namespace ContainerShip
|
|||||||
{
|
{
|
||||||
internal enum Direction
|
internal enum Direction
|
||||||
{
|
{
|
||||||
|
None = 0,
|
||||||
Up = 1,
|
Up = 1,
|
||||||
Down = 2,
|
Down = 2,
|
||||||
Left = 3,
|
Left = 3,
|
||||||
|
@ -19,7 +19,7 @@ namespace ContainerShip
|
|||||||
/// <param name="wing">Признак наличия антикрыла</param>
|
/// <param name="wing">Признак наличия антикрыла</param>
|
||||||
/// <param name="sportLine">Признак наличия гоночной полосы</param>
|
/// <param name="sportLine">Признак наличия гоночной полосы</param>
|
||||||
public DrawingContainerShip(int speed, float weight, Color bodyColor, Color dopColor, bool crane, bool containers) :
|
public DrawingContainerShip(int speed, float weight, Color bodyColor, Color dopColor, bool crane, bool containers) :
|
||||||
base(speed, weight, bodyColor)
|
base(speed, weight, bodyColor, 135, 70)
|
||||||
{
|
{
|
||||||
Ship = new EntityContainerShip(speed, weight, bodyColor, dopColor, crane, containers);
|
Ship = new EntityContainerShip(speed, weight, bodyColor, dopColor, crane, containers);
|
||||||
}
|
}
|
||||||
@ -34,40 +34,45 @@ namespace ContainerShip
|
|||||||
Brush dopBrush = new SolidBrush(containerShip.DopColor);
|
Brush dopBrush = new SolidBrush(containerShip.DopColor);
|
||||||
Pen dopPen = new (containerShip.DopColor);
|
Pen dopPen = new (containerShip.DopColor);
|
||||||
|
|
||||||
|
_startPosY += 30;
|
||||||
base.DrawTransport(g);
|
base.DrawTransport(g);
|
||||||
|
_startPosY -= 30;
|
||||||
|
int _startPosYInt = (int)_startPosY;
|
||||||
|
int _startPosXInt = (int)_startPosX;
|
||||||
if (containerShip.Containers)
|
if (containerShip.Containers)
|
||||||
{
|
{
|
||||||
Point[] container1 =
|
Point[] container1 =
|
||||||
{
|
{
|
||||||
new Point((int)(_startPosX + 5), (int)(_startPosY + 15)),
|
new Point(_startPosXInt + 5, _startPosYInt + 45),
|
||||||
new Point((int)(_startPosX + 5), (int)(_startPosY + 5)),
|
new Point(_startPosXInt + 5, _startPosYInt + 35),
|
||||||
new Point((int)(_startPosX + 25), (int)_startPosY + 5),
|
new Point(_startPosXInt + 25, _startPosYInt + 35),
|
||||||
new Point((int)_startPosX + 25, (int)_startPosY + 15)
|
new Point(_startPosXInt + 25, _startPosYInt + 45)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
Point[] container2 =
|
Point[] container2 =
|
||||||
{
|
{
|
||||||
new Point((int)_startPosX + 40, (int)_startPosY + 15),
|
new Point(_startPosXInt + 40, _startPosYInt + 45),
|
||||||
new Point((int)_startPosX + 40, (int)_startPosY + 5),
|
new Point(_startPosXInt + 40, _startPosYInt + 35),
|
||||||
new Point((int)_startPosX + 75, (int)_startPosY + 5),
|
new Point(_startPosXInt + 75, _startPosYInt + 35),
|
||||||
new Point((int)_startPosX + 75, (int)_startPosY + 15)
|
new Point(_startPosXInt + 75, _startPosYInt + 45),
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Point[] container3 =
|
Point[] container3 =
|
||||||
{
|
{
|
||||||
new Point((int)_startPosX + 16 * 5, (int)_startPosY + 15),
|
new Point(_startPosXInt + 80, _startPosYInt + 45),
|
||||||
new Point((int)_startPosX + 16 * 5, (int)_startPosY + 5),
|
new Point(_startPosXInt + 80, _startPosYInt + 35),
|
||||||
new Point((int)_startPosX + 22 * 5, (int)_startPosY + 5),
|
new Point(_startPosXInt + 110, _startPosYInt + 35),
|
||||||
new Point((int)_startPosX + 22 * 5, (int)_startPosY + 15)
|
new Point(_startPosXInt + 110, _startPosYInt + 45)
|
||||||
};
|
};
|
||||||
|
|
||||||
Point[] container4 =
|
Point[] container4 =
|
||||||
{
|
{
|
||||||
new Point((int)_startPosX + 22 * 5, (int)_startPosY + 15),
|
new Point(_startPosXInt + 110, _startPosYInt + 30),
|
||||||
new Point((int)_startPosX + 22 * 5, (int)_startPosY),
|
new Point(_startPosXInt + 110, _startPosYInt + 45),
|
||||||
new Point((int)_startPosX + 26 * 5, (int)_startPosY),
|
new Point(_startPosXInt + 130, _startPosYInt + 45),
|
||||||
new Point((int)_startPosX + 26 * 5, (int)_startPosY + 15)
|
new Point(_startPosXInt + 130, _startPosYInt + 30)
|
||||||
};
|
};
|
||||||
|
|
||||||
g.FillPolygon(dopBrush, container1);
|
g.FillPolygon(dopBrush, container1);
|
||||||
@ -81,16 +86,12 @@ namespace ContainerShip
|
|||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (containerShip.Crane)
|
if (containerShip.Crane)
|
||||||
{
|
{
|
||||||
g.DrawLine(dopPen, _startPosX + 8 * 5, _startPosY - 15, _startPosX + 8 * 5, _startPosY - 30);
|
g.DrawLine(dopPen, _startPosX + 40, _startPosY + 15, _startPosX + 40, _startPosY);
|
||||||
g.DrawLine(dopPen, _startPosX + 8 * 5, _startPosY - 30, _startPosX + 8 * 5 + 8 * 5, _startPosY - 30);
|
g.DrawLine(dopPen, _startPosX + 40, _startPosY, _startPosX + 80, _startPosY);
|
||||||
g.DrawLine(dopPen, _startPosX + 8 * 5, _startPosY - 30, _startPosX + 8 * 5 + 8 * 5, _startPosY - 25);
|
g.DrawLine(dopPen, _startPosX + 40, _startPosY, _startPosX + 80, _startPosY + 5);
|
||||||
g.DrawLine(dopPen, _startPosX + 8 * 5 + 8 * 5, _startPosY - 30, _startPosX + 8 * 5 + 8 * 5, _startPosY);
|
g.DrawLine(dopPen, _startPosX + 80, _startPosY, _startPosX + 80, _startPosY + 30);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,7 @@ namespace ContainerShip
|
|||||||
|
|
||||||
public float Step => _ship?.Ship?.Step ?? 0;
|
public float Step => _ship?.Ship?.Step ?? 0;
|
||||||
|
|
||||||
public (float Left, float Right, float Top, float Bottom) GetCurrentPosition()
|
public (float Left, float Top, float Right, float Bottom) GetCurrentPosition()
|
||||||
{
|
{
|
||||||
return _ship?.GetCurrentPosition() ?? default;
|
return _ship?.GetCurrentPosition() ?? default;
|
||||||
}
|
}
|
||||||
@ -34,7 +34,15 @@ namespace ContainerShip
|
|||||||
|
|
||||||
void IDrawingObject.DrawingObject(Graphics g)
|
void IDrawingObject.DrawingObject(Graphics g)
|
||||||
{
|
{
|
||||||
//TODO
|
if (_ship == null) return;
|
||||||
|
if (_ship is DrawingContainerShip ship)
|
||||||
|
{
|
||||||
|
ship.DrawTransport(g);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_ship.DrawTransport(g);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,7 @@ namespace ContainerShip
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Ширина отрисовки автомобиля
|
/// Ширина отрисовки автомобиля
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private readonly int _shipWidth = 120;
|
private readonly int _shipWidth = 135;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Высота отрисовки автомобиля
|
/// Высота отрисовки автомобиля
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -38,6 +38,13 @@ namespace ContainerShip
|
|||||||
Ship = new EntityShip(speed, weight, bodyColor);
|
Ship = new EntityShip(speed, weight, bodyColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected DrawingShip(int speed, float weight, Color bodyColor, int
|
||||||
|
shipWidth, int shipHeight) :
|
||||||
|
this(speed, weight, bodyColor)
|
||||||
|
{
|
||||||
|
_shipWidth = shipWidth;
|
||||||
|
_shipHeight = shipHeight;
|
||||||
|
}
|
||||||
/// <param name="x">Координата X</param>
|
/// <param name="x">Координата X</param>
|
||||||
/// <param name="y">Координата Y</param>
|
/// <param name="y">Координата Y</param>
|
||||||
/// <param name="width">Ширина картинки</param>
|
/// <param name="width">Ширина картинки</param>
|
||||||
@ -129,7 +136,6 @@ namespace ContainerShip
|
|||||||
g.DrawLine(pen, _startPosXInt + 30, _startPosYInt + 20, _startPosXInt + 30, _startPosYInt + 30);
|
g.DrawLine(pen, _startPosXInt + 30, _startPosYInt + 20, _startPosXInt + 30, _startPosYInt + 30);
|
||||||
g.DrawLine(pen, _startPosXInt + 25, _startPosYInt + 25, _startPosXInt + 35, _startPosYInt + 25);
|
g.DrawLine(pen, _startPosXInt + 25, _startPosYInt + 25, _startPosXInt + 35, _startPosYInt + 25);
|
||||||
g.DrawLine(pen, _startPosXInt + 25, _startPosYInt + 30, _startPosXInt + 35, _startPosYInt + 30);
|
g.DrawLine(pen, _startPosXInt + 25, _startPosYInt + 30, _startPosXInt + 35, _startPosYInt + 30);
|
||||||
|
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Смена границ формы отрисовки
|
/// Смена границ формы отрисовки
|
||||||
@ -160,7 +166,7 @@ namespace ContainerShip
|
|||||||
/// Получение текущей позиции объекта
|
/// Получение текущей позиции объекта
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public (float Left, float Right, float Top, float Bottom) GetCurrentPosition()
|
public (float Left, float Top, float Right, float Bottom) GetCurrentPosition()
|
||||||
{
|
{
|
||||||
return (_startPosX, _startPosY, _startPosX + _shipWidth, _startPosY + _shipHeight);
|
return (_startPosX, _startPosY, _startPosX + _shipWidth, _startPosY + _shipHeight);
|
||||||
}
|
}
|
||||||
|
212
ContainerShip/ContainerShip/FormMap.Designer.cs
generated
Normal file
212
ContainerShip/ContainerShip/FormMap.Designer.cs
generated
Normal file
@ -0,0 +1,212 @@
|
|||||||
|
namespace ContainerShip
|
||||||
|
{
|
||||||
|
partial class FormMap
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Windows Form Designer generated code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
private void InitializeComponent()
|
||||||
|
{
|
||||||
|
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.buttonRight = new System.Windows.Forms.Button();
|
||||||
|
this.buttonUp = new System.Windows.Forms.Button();
|
||||||
|
this.buttonDown = new System.Windows.Forms.Button();
|
||||||
|
this.buttonLeft = new System.Windows.Forms.Button();
|
||||||
|
this.pictureBoxShip = new System.Windows.Forms.PictureBox();
|
||||||
|
this.ButtonCreate = new System.Windows.Forms.Button();
|
||||||
|
this.ButtonCreateModif = new System.Windows.Forms.Button();
|
||||||
|
this.ComboBoxSelectorMap = new System.Windows.Forms.ComboBox();
|
||||||
|
this.statusStrip1.SuspendLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxShip)).BeginInit();
|
||||||
|
this.SuspendLayout();
|
||||||
|
//
|
||||||
|
// statusStrip1
|
||||||
|
//
|
||||||
|
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
|
||||||
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||||
|
this.toolStripStatusLabelSpeed,
|
||||||
|
this.toolStripStatusLabelWeight,
|
||||||
|
this.toolStripStatusLabelBodyColor});
|
||||||
|
this.statusStrip1.Location = new System.Drawing.Point(0, 418);
|
||||||
|
this.statusStrip1.Name = "statusStrip1";
|
||||||
|
this.statusStrip1.Size = new System.Drawing.Size(800, 32);
|
||||||
|
this.statusStrip1.TabIndex = 0;
|
||||||
|
this.statusStrip1.Text = "statusStrip1";
|
||||||
|
//
|
||||||
|
// toolStripStatusLabelSpeed
|
||||||
|
//
|
||||||
|
this.toolStripStatusLabelSpeed.Name = "toolStripStatusLabelSpeed";
|
||||||
|
this.toolStripStatusLabelSpeed.Size = new System.Drawing.Size(93, 25);
|
||||||
|
this.toolStripStatusLabelSpeed.Text = "Скорость:";
|
||||||
|
//
|
||||||
|
// toolStripStatusLabelWeight
|
||||||
|
//
|
||||||
|
this.toolStripStatusLabelWeight.Name = "toolStripStatusLabelWeight";
|
||||||
|
this.toolStripStatusLabelWeight.Size = new System.Drawing.Size(43, 25);
|
||||||
|
this.toolStripStatusLabelWeight.Text = "Вес:";
|
||||||
|
//
|
||||||
|
// toolStripStatusLabelBodyColor
|
||||||
|
//
|
||||||
|
this.toolStripStatusLabelBodyColor.Name = "toolStripStatusLabelBodyColor";
|
||||||
|
this.toolStripStatusLabelBodyColor.Size = new System.Drawing.Size(55, 25);
|
||||||
|
this.toolStripStatusLabelBodyColor.Text = "Цвет:";
|
||||||
|
//
|
||||||
|
// buttonRight
|
||||||
|
//
|
||||||
|
this.buttonRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
|
this.buttonRight.BackgroundImage = global::ContainerShip.Properties.Resources.LeftArrow;
|
||||||
|
this.buttonRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||||
|
this.buttonRight.Location = new System.Drawing.Point(738, 353);
|
||||||
|
this.buttonRight.Name = "buttonRight";
|
||||||
|
this.buttonRight.Size = new System.Drawing.Size(50, 50);
|
||||||
|
this.buttonRight.TabIndex = 2;
|
||||||
|
this.buttonRight.UseVisualStyleBackColor = true;
|
||||||
|
this.buttonRight.Click += new System.EventHandler(this.ButtonMove_Click);
|
||||||
|
//
|
||||||
|
// buttonUp
|
||||||
|
//
|
||||||
|
this.buttonUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
|
this.buttonUp.BackgroundImage = global::ContainerShip.Properties.Resources.upArrow;
|
||||||
|
this.buttonUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||||
|
this.buttonUp.Location = new System.Drawing.Point(682, 306);
|
||||||
|
this.buttonUp.Name = "buttonUp";
|
||||||
|
this.buttonUp.Size = new System.Drawing.Size(50, 50);
|
||||||
|
this.buttonUp.TabIndex = 3;
|
||||||
|
this.buttonUp.UseVisualStyleBackColor = true;
|
||||||
|
this.buttonUp.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::ContainerShip.Properties.Resources.DownArrow;
|
||||||
|
this.buttonDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||||
|
this.buttonDown.Location = new System.Drawing.Point(682, 352);
|
||||||
|
this.buttonDown.Name = "buttonDown";
|
||||||
|
this.buttonDown.Size = new System.Drawing.Size(50, 50);
|
||||||
|
this.buttonDown.TabIndex = 4;
|
||||||
|
this.buttonDown.UseVisualStyleBackColor = true;
|
||||||
|
this.buttonDown.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::ContainerShip.Properties.Resources.RightArrow;
|
||||||
|
this.buttonLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||||
|
this.buttonLeft.Location = new System.Drawing.Point(626, 353);
|
||||||
|
this.buttonLeft.Name = "buttonLeft";
|
||||||
|
this.buttonLeft.Size = new System.Drawing.Size(50, 50);
|
||||||
|
this.buttonLeft.TabIndex = 5;
|
||||||
|
this.buttonLeft.UseVisualStyleBackColor = true;
|
||||||
|
this.buttonLeft.Click += new System.EventHandler(this.ButtonMove_Click);
|
||||||
|
//
|
||||||
|
// pictureBoxShip
|
||||||
|
//
|
||||||
|
this.pictureBoxShip.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
|
this.pictureBoxShip.Location = new System.Drawing.Point(0, 0);
|
||||||
|
this.pictureBoxShip.Name = "pictureBoxShip";
|
||||||
|
this.pictureBoxShip.Size = new System.Drawing.Size(800, 418);
|
||||||
|
this.pictureBoxShip.TabIndex = 7;
|
||||||
|
this.pictureBoxShip.TabStop = false;
|
||||||
|
//
|
||||||
|
// ButtonCreate
|
||||||
|
//
|
||||||
|
this.ButtonCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||||
|
this.ButtonCreate.BackColor = System.Drawing.SystemColors.Window;
|
||||||
|
this.ButtonCreate.Location = new System.Drawing.Point(12, 381);
|
||||||
|
this.ButtonCreate.Name = "ButtonCreate";
|
||||||
|
this.ButtonCreate.Size = new System.Drawing.Size(112, 34);
|
||||||
|
this.ButtonCreate.TabIndex = 8;
|
||||||
|
this.ButtonCreate.Text = "Создать";
|
||||||
|
this.ButtonCreate.UseVisualStyleBackColor = false;
|
||||||
|
this.ButtonCreate.Click += new System.EventHandler(this.ButtonCreate_Click);
|
||||||
|
//
|
||||||
|
// ButtonCreateModif
|
||||||
|
//
|
||||||
|
this.ButtonCreateModif.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||||
|
this.ButtonCreateModif.BackColor = System.Drawing.SystemColors.Window;
|
||||||
|
this.ButtonCreateModif.Location = new System.Drawing.Point(130, 381);
|
||||||
|
this.ButtonCreateModif.Name = "ButtonCreateModif";
|
||||||
|
this.ButtonCreateModif.Size = new System.Drawing.Size(143, 34);
|
||||||
|
this.ButtonCreateModif.TabIndex = 9;
|
||||||
|
this.ButtonCreateModif.Text = "Модификация";
|
||||||
|
this.ButtonCreateModif.UseVisualStyleBackColor = false;
|
||||||
|
this.ButtonCreateModif.Click += new System.EventHandler(this.ButtonCreateModif_Click);
|
||||||
|
//
|
||||||
|
// ComboBoxSelectorMap
|
||||||
|
//
|
||||||
|
this.ComboBoxSelectorMap.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
||||||
|
this.ComboBoxSelectorMap.FormattingEnabled = true;
|
||||||
|
this.ComboBoxSelectorMap.Items.AddRange(new object[] {
|
||||||
|
"Простая карта",
|
||||||
|
"Модифицированная карта"});
|
||||||
|
this.ComboBoxSelectorMap.Location = new System.Drawing.Point(279, 385);
|
||||||
|
this.ComboBoxSelectorMap.Name = "ComboBoxSelectorMap";
|
||||||
|
this.ComboBoxSelectorMap.Size = new System.Drawing.Size(182, 33);
|
||||||
|
this.ComboBoxSelectorMap.TabIndex = 10;
|
||||||
|
this.ComboBoxSelectorMap.SelectedIndexChanged += new System.EventHandler(this.ComboBoxSelectorMap_SelectedIndexChanged_1);
|
||||||
|
//
|
||||||
|
// FormMap
|
||||||
|
//
|
||||||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
|
||||||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
||||||
|
this.Controls.Add(this.ComboBoxSelectorMap);
|
||||||
|
this.Controls.Add(this.ButtonCreateModif);
|
||||||
|
this.Controls.Add(this.ButtonCreate);
|
||||||
|
this.Controls.Add(this.buttonLeft);
|
||||||
|
this.Controls.Add(this.buttonDown);
|
||||||
|
this.Controls.Add(this.buttonUp);
|
||||||
|
this.Controls.Add(this.buttonRight);
|
||||||
|
this.Controls.Add(this.pictureBoxShip);
|
||||||
|
this.Controls.Add(this.statusStrip1);
|
||||||
|
this.Name = "FormMap";
|
||||||
|
this.Text = "Карта";
|
||||||
|
this.Click += new System.EventHandler(this.ButtonMove_Click);
|
||||||
|
this.statusStrip1.ResumeLayout(false);
|
||||||
|
this.statusStrip1.PerformLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxShip)).EndInit();
|
||||||
|
this.ResumeLayout(false);
|
||||||
|
this.PerformLayout();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private StatusStrip statusStrip1;
|
||||||
|
private Button buttonRight;
|
||||||
|
private Button buttonUp;
|
||||||
|
private Button buttonDown;
|
||||||
|
private Button buttonLeft;
|
||||||
|
private ToolStripStatusLabel toolStripStatusLabelSpeed;
|
||||||
|
private ToolStripStatusLabel toolStripStatusLabelWeight;
|
||||||
|
private ToolStripStatusLabel toolStripStatusLabelBodyColor;
|
||||||
|
private PictureBox pictureBoxShip;
|
||||||
|
private Button ButtonCreate;
|
||||||
|
private Button ButtonCreateModif;
|
||||||
|
private ComboBox ComboBoxSelectorMap;
|
||||||
|
}
|
||||||
|
}
|
102
ContainerShip/ContainerShip/FormMap.cs
Normal file
102
ContainerShip/ContainerShip/FormMap.cs
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
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 ContainerShip
|
||||||
|
{
|
||||||
|
public partial class FormMap : Form
|
||||||
|
{
|
||||||
|
private DrawingShip _ship;
|
||||||
|
private AbstractMap _abstractMap;
|
||||||
|
|
||||||
|
public FormMap()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
_abstractMap = new SimpleMap();
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// Изменение размеров формы
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="sender"></param>
|
||||||
|
/// <param name="e"></param>
|
||||||
|
private void SetData(DrawingShip ship)
|
||||||
|
{
|
||||||
|
toolStripStatusLabelSpeed.Text = $"Скорость: {ship.Ship.Speed}";
|
||||||
|
toolStripStatusLabelWeight.Text = $"Вес: {ship.Ship.Weight}";
|
||||||
|
toolStripStatusLabelBodyColor.Text = $"Цвет: {ship.Ship.BodyColor.Name}";
|
||||||
|
pictureBoxShip.Image = _abstractMap.CreateMap(pictureBoxShip.Width, pictureBoxShip.Height,
|
||||||
|
new DrawingObjectShip(ship));
|
||||||
|
}
|
||||||
|
private void ButtonCreate_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
Random rnd = new();
|
||||||
|
var ship = new DrawingShip(rnd.Next(100, 300), rnd.Next(1000, 2000), Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)));
|
||||||
|
SetData(ship);
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// Изменение размеров формы
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="sender"></param>
|
||||||
|
/// <param name="e"></param>
|
||||||
|
private void ButtonMove_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
//получаем имя кнопки
|
||||||
|
string name = ((Button)sender)?.Name ?? string.Empty;
|
||||||
|
Direction dir = Direction.None;
|
||||||
|
switch (name)
|
||||||
|
{
|
||||||
|
case "buttonUp":
|
||||||
|
dir = Direction.Up;
|
||||||
|
break;
|
||||||
|
case "buttonDown":
|
||||||
|
dir = Direction.Down;
|
||||||
|
break;
|
||||||
|
case "buttonLeft":
|
||||||
|
dir = Direction.Left;
|
||||||
|
break;
|
||||||
|
case "buttonRight":
|
||||||
|
dir = Direction.Right;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
pictureBoxShip.Image = _abstractMap?.MoveObject(dir);
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// Обработка нажатия кнопки "Модификация"
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="sender"></param>
|
||||||
|
/// <param name="e"></param>
|
||||||
|
private void ButtonCreateModif_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
Random rnd = new();
|
||||||
|
var ship = new DrawingContainerShip(rnd.Next(100, 300), rnd.Next(1000, 2000),
|
||||||
|
Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)),
|
||||||
|
Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)),
|
||||||
|
Convert.ToBoolean(rnd.Next(0, 2)), Convert.ToBoolean(rnd.Next(0, 2)));
|
||||||
|
SetData(ship);
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// Смена карты
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="sender"></param>
|
||||||
|
/// <param name="e"></param>
|
||||||
|
|
||||||
|
private void ComboBoxSelectorMap_SelectedIndexChanged_1(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
switch (ComboBoxSelectorMap.Text)
|
||||||
|
{
|
||||||
|
case "Простая карта":
|
||||||
|
_abstractMap = new SimpleMap();
|
||||||
|
break;
|
||||||
|
case "Модифицированная карта":
|
||||||
|
_abstractMap = new ModifyMap();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
63
ContainerShip/ContainerShip/FormMap.resx
Normal file
63
ContainerShip/ContainerShip/FormMap.resx
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
<root>
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<metadata name="statusStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
|
</root>
|
@ -90,5 +90,6 @@ namespace ContainerShip
|
|||||||
SetData();
|
SetData();
|
||||||
Draw();
|
Draw();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -35,6 +35,6 @@ namespace ContainerShip
|
|||||||
/// Получение текущей позиции объекта
|
/// Получение текущей позиции объекта
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
(float Left, float Right, float Top, float Bottom) GetCurrentPosition();
|
(float Left, float Top, float Right, float Bottom) GetCurrentPosition();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
58
ContainerShip/ContainerShip/ModifyMap.cs
Normal file
58
ContainerShip/ContainerShip/ModifyMap.cs
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics.Metrics;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Reflection;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ContainerShip
|
||||||
|
{
|
||||||
|
internal class ModifyMap : AbstractMap
|
||||||
|
{
|
||||||
|
private readonly Brush barrierColor = new SolidBrush(Color.WhiteSmoke);
|
||||||
|
private readonly Brush roadColor = new SolidBrush(Color.Blue);
|
||||||
|
|
||||||
|
protected override void DrawBarrierPart(Graphics g, int i, int j)
|
||||||
|
{
|
||||||
|
g.FillRectangle(barrierColor, i * _size_x, j * _size_y, _size_x, _size_y);
|
||||||
|
}
|
||||||
|
protected override void DrawRoadPart(Graphics g, int i, int j)
|
||||||
|
{
|
||||||
|
g.FillRectangle(roadColor, i * _size_x, j * _size_y, _size_x, _size_y);
|
||||||
|
}
|
||||||
|
protected override void GenerateMap()
|
||||||
|
{
|
||||||
|
Random random = new Random();
|
||||||
|
int firstPointX;
|
||||||
|
int secondPointX;
|
||||||
|
int pointY;
|
||||||
|
_map = new int[100, 100];
|
||||||
|
_size_x = (float)_width / _map.GetLength(0);
|
||||||
|
_size_y = (float)_height / _map.GetLength(1);
|
||||||
|
int counter = 0;
|
||||||
|
while(counter < 15)
|
||||||
|
{
|
||||||
|
bool freePlace = true;
|
||||||
|
firstPointX = random.Next(0, _map.GetLength(0)-10);
|
||||||
|
secondPointX = random.Next(firstPointX, _map.GetLength(0)-10);
|
||||||
|
pointY = random.Next(0, _map.GetLength(1)-10);
|
||||||
|
for(int i = firstPointX; i <secondPointX; i++)
|
||||||
|
{
|
||||||
|
if (_map[i, pointY] == _barrier)
|
||||||
|
{
|
||||||
|
freePlace = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
_map[i, pointY] = _barrier;
|
||||||
|
}
|
||||||
|
if (freePlace)
|
||||||
|
{
|
||||||
|
counter++;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -11,7 +11,7 @@ namespace ContainerShip
|
|||||||
// To customize application configuration such as set high DPI settings or default font,
|
// To customize application configuration such as set high DPI settings or default font,
|
||||||
// see https://aka.ms/applicationconfiguration.
|
// see https://aka.ms/applicationconfiguration.
|
||||||
ApplicationConfiguration.Initialize();
|
ApplicationConfiguration.Initialize();
|
||||||
Application.Run(new FormShip());
|
Application.Run(new FormMap());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
53
ContainerShip/ContainerShip/SimpleMap.cs
Normal file
53
ContainerShip/ContainerShip/SimpleMap.cs
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ContainerShip
|
||||||
|
{
|
||||||
|
internal class SimpleMap : AbstractMap
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Цвет участка закрытого
|
||||||
|
/// </summary>
|
||||||
|
private readonly Brush barrierColor = new SolidBrush(Color.Black);
|
||||||
|
/// <summary>
|
||||||
|
/// Цвет участка открытого
|
||||||
|
/// </summary>
|
||||||
|
private readonly Brush roadColor = new SolidBrush(Color.LightBlue);
|
||||||
|
|
||||||
|
protected override void DrawBarrierPart(Graphics g, int i, int j)
|
||||||
|
{
|
||||||
|
g.FillRectangle(barrierColor, i * _size_x, j * _size_y, _size_x, _size_y);
|
||||||
|
}
|
||||||
|
protected override void DrawRoadPart(Graphics g, int i, int j)
|
||||||
|
{
|
||||||
|
g.FillRectangle(roadColor, i * _size_x, j * _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++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user