This commit is contained in:
Александр Чегодаев 2023-12-14 00:48:20 +04:00
parent 7b9c27b2b6
commit 160e1ae53b
18 changed files with 615 additions and 63 deletions

View File

@ -0,0 +1,102 @@
using ProjectCruiser.DrawningObjects;
using ProjectCruiser.MovementStrategy;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectCruiser
{
internal class CruiserGenericCollection<T, U>
where T : DrawningCruiser
where U : IMoveableObject
{
private readonly int _pictureWidth;
private readonly int _pictureHeight;
private readonly int _placeSizeWidth = 210;
private readonly int _placeSizeHeight = 100;
private readonly SetGeneric<T> _collection;
public CruiserGenericCollection(int picWidth, int picHeight)
{
int width = picWidth / _placeSizeWidth;
int height = picHeight / _placeSizeHeight;
_pictureWidth = picWidth;
_pictureHeight = picHeight;
_collection = new SetGeneric<T>(width * height);
}
public static int? operator +(CruiserGenericCollection<T, U> collect, T? obj)
{
if (obj == null)
{
return -1;
}
return collect?._collection.Insert(obj);
}
public static bool operator -(CruiserGenericCollection<T, U> collect, int pos)
{
T? obj = collect._collection.Get(pos);
if (obj != null)
{
return collect._collection.Remove(pos);
}
return false;
}
public U? GetU(int pos)
{
return (U?)_collection.Get(pos)?.GetMoveableObject;
}
public Bitmap ShowCruiser()
{
Bitmap bmp = new(_pictureWidth, _pictureHeight);
Graphics gr = Graphics.FromImage(bmp);
DrawBackground(gr);
DrawObjects(gr);
return bmp;
}
private void DrawBackground(Graphics g)
{
Pen pen = new(Color.Black, 3);
for (int i = 0; i < _pictureWidth / _placeSizeWidth; i++)
{
for (int j = 0; j < _pictureHeight / _placeSizeHeight +
1; ++j)
{
g.DrawLine(pen, i * _placeSizeWidth, j *
_placeSizeHeight, i * _placeSizeWidth + _placeSizeWidth / 2 + 2, j *
_placeSizeHeight);
}
g.DrawLine(pen, i * _placeSizeWidth, 0, i *
_placeSizeWidth, _pictureHeight / _placeSizeHeight * _placeSizeHeight);
}
}
private void DrawObjects(Graphics g)
{
int Ix = 3;
int Iy = 15;
for (int i = 0; i < _collection.Count - 1; i++)
{
_collection.Get(i)?.SetPosition(Ix, Iy);
_collection.Get(i)?.DrawTransport(g);
Ix += _placeSizeWidth;
if (Ix + _placeSizeHeight > _pictureWidth)
{
Ix = 0;
Iy = _placeSizeHeight;
}
}
}
}
}

View File

@ -6,7 +6,6 @@ using System.Threading.Tasks;
namespace ProjectCruiser.Drawnings namespace ProjectCruiser.Drawnings
{ {
public enum DirectionType public enum DirectionType
{ {
Up = 1, Up = 1,

View File

@ -7,6 +7,7 @@ using System.Threading.Tasks;
using ProjectCruiser.Entities; using ProjectCruiser.Entities;
using ProjectCruiser.Drawnings; using ProjectCruiser.Drawnings;
using System.Drawing.Drawing2D; using System.Drawing.Drawing2D;
using ProjectCruiser.MovementStrategy;
namespace ProjectCruiser.DrawningObjects namespace ProjectCruiser.DrawningObjects
{ {
@ -22,9 +23,9 @@ namespace ProjectCruiser.DrawningObjects
protected int _startPosY; protected int _startPosY;
protected readonly int _cruiserWidth = 145; protected readonly int _carWidth = 145;
protected readonly int _cruiserHeight = 45; protected readonly int _carHeight = 45;
public DrawningCruiser(int speed, double weight, Color bodyColor, int public DrawningCruiser(int speed, double weight, Color bodyColor, int
width, int height) width, int height)
@ -32,25 +33,27 @@ namespace ProjectCruiser.DrawningObjects
_pictureWidth = width; _pictureWidth = width;
_pictureHeight = height; _pictureHeight = height;
EntityCruiser = new EntityCruiser(speed, weight, bodyColor); EntityCruiser = new EntityCruiser(speed, weight, bodyColor);
} }
protected DrawningCruiser(int speed, double weight, Color bodyColor, int protected DrawningCruiser(int speed, double weight, Color bodyColor, int
width, int height, int cruiserWidth, int cruiserHeight) width, int height, int carWidth, int carHeight)
{ {
if (width <= _pictureWidth || height <= _pictureHeight) if (width <= _pictureWidth || height <= _pictureHeight)
{ {
return; return;
} }
_pictureWidth = width; _pictureWidth = width;
_pictureHeight = height; _pictureHeight = height;
_cruiserWidth = cruiserWidth; _carWidth = carWidth;
_cruiserHeight = cruiserHeight; _carHeight = carHeight;
EntityCruiser = new EntityCruiser(speed, weight, bodyColor); EntityCruiser = new EntityCruiser(speed, weight, bodyColor);
} }
public void SetPosition(int x, int y) public void SetPosition(int x, int y)
{ {
if (x < 0 || y < 0 || x + _cruiserWidth > _pictureWidth || y + _cruiserHeight > _pictureHeight) if (x < 0 || y < 0 || x + _carWidth > _pictureWidth || y + _carHeight > _pictureHeight)
{ {
x = 10; x = 10;
y = 10; y = 10;
@ -59,6 +62,8 @@ namespace ProjectCruiser.DrawningObjects
_startPosY = y; _startPosY = y;
} }
public IMoveableObject GetMoveableObject => new DrawningObjectCruiser(this);
protected int PictureWidth protected int PictureWidth
{ {
get { return _pictureWidth; } get { return _pictureWidth; }
@ -73,9 +78,9 @@ namespace ProjectCruiser.DrawningObjects
public int GetPosY => _startPosY; public int GetPosY => _startPosY;
public int GetWidth => _cruiserWidth; public int GetWidth => _carWidth;
public int GetHeight => _cruiserHeight; public int GetHeight => _carHeight;
public virtual bool CanMove(DirectionType direction) public virtual bool CanMove(DirectionType direction)
{ {
@ -89,9 +94,9 @@ namespace ProjectCruiser.DrawningObjects
DirectionType.Up => _startPosY - EntityCruiser.Step > 7, DirectionType.Up => _startPosY - EntityCruiser.Step > 7,
DirectionType.Right => _startPosX + EntityCruiser.Step + _cruiserWidth <= _pictureWidth, DirectionType.Right => _startPosX + EntityCruiser.Step + _carWidth <= _pictureWidth,
DirectionType.Down => _startPosY + EntityCruiser.Step + _cruiserHeight <= _pictureHeight, DirectionType.Down => _startPosY + EntityCruiser.Step + _carHeight <= _pictureHeight,
_ => false, _ => false,
}; };
} }
@ -126,6 +131,7 @@ namespace ProjectCruiser.DrawningObjects
return; return;
} }
Pen pen = new(Color.Black); Pen pen = new(Color.Black);
Brush BodyColor = new SolidBrush(EntityCruiser.BodyColor); Brush BodyColor = new SolidBrush(EntityCruiser.BodyColor);
GraphicsPath path1 = new GraphicsPath(); GraphicsPath path1 = new GraphicsPath();

View File

@ -24,36 +24,33 @@ namespace ProjectCruiser.DrawningObjects
public override void DrawTransport(Graphics g) public override void DrawTransport(Graphics g)
{ {
if (EntityCruiser is not EntityCruiserDou cruiserWith) if (EntityCruiser is not EntityCruiserDou cruiserDou)
{ {
return; return;
} }
Pen pen = new(Color.Black); Pen pen = new(Color.Black);
Brush additionalBrush = new SolidBrush(cruiserWith.AdditionalColor); Brush additionalBrush = new SolidBrush(cruiserDou.AdditionalColor);
Brush BodyColor = new SolidBrush(EntityCruiser.BodyColor);
Brush brBlack = new SolidBrush(Color.Black); Brush brBlack = new SolidBrush(Color.Black);
base.DrawTransport(g); base.DrawTransport(g);
if (cruiserWith.Vert) if (cruiserDou.Vert)
{ {
Brush brRed = new SolidBrush(Color.Red); Brush brRed = new SolidBrush(Color.Red);
g.FillEllipse(brRed, _startPosX + 95, _startPosY + 15, 20, 20); g.FillEllipse(additionalBrush, _startPosX + 95, _startPosY + 15, 20, 20);
g.DrawEllipse(pen, _startPosX + 95, _startPosY + 15, 20, 20); g.DrawEllipse(pen, _startPosX + 95, _startPosY + 15, 20, 20);
} }
if (cruiserWith.Rocket) if (cruiserDou.Rocket)
{ {
g.DrawEllipse(pen, _startPosX + 8, _startPosY + 3, 15, 12); g.DrawEllipse(pen, _startPosX + 8, _startPosY + 3, 15, 12);
g.FillEllipse(brBlack, _startPosX + 8, _startPosY + 3, 15, 12); g.FillEllipse(additionalBrush, _startPosX + 8, _startPosY + 3, 15, 12);
g.DrawEllipse(pen, _startPosX + 8, _startPosY + 18, 15, 12); g.DrawEllipse(pen, _startPosX + 8, _startPosY + 18, 15, 12);
g.FillEllipse(brBlack, _startPosX + 8, _startPosY + 18, 15, 12); g.FillEllipse(additionalBrush, _startPosX + 8, _startPosY + 18, 15, 12);
g.DrawEllipse(pen, _startPosX + 8, _startPosY + 33, 15, 12); g.DrawEllipse(pen, _startPosX + 8, _startPosY + 33, 15, 12);
g.FillEllipse(brBlack, _startPosX + 8, _startPosY + 33, 15, 12); g.FillEllipse(additionalBrush, _startPosX + 8, _startPosY + 33, 15, 12);
} }
} }
} }
} }

View File

@ -4,6 +4,7 @@ namespace ProjectCruiser.Entities
{ {
public class EntityCruiserDou : EntityCruiser public class EntityCruiserDou : EntityCruiser
{ {
public Color AdditionalColor { get; private set; } public Color AdditionalColor { get; private set; }
public bool Vert { get; private set; } public bool Vert { get; private set; }

View File

@ -38,6 +38,7 @@
this.buttonLeft = new System.Windows.Forms.Button(); this.buttonLeft = new System.Windows.Forms.Button();
this.buttonRight = new System.Windows.Forms.Button(); this.buttonRight = new System.Windows.Forms.Button();
this.pictureBoxCruiser = new System.Windows.Forms.PictureBox(); this.pictureBoxCruiser = new System.Windows.Forms.PictureBox();
this.ButtonSelectCruiser = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxCruiser)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxCruiser)).BeginInit();
this.SuspendLayout(); this.SuspendLayout();
// //
@ -62,17 +63,17 @@
this.ButtonCreateCruiserBat.TabIndex = 1; this.ButtonCreateCruiserBat.TabIndex = 1;
this.ButtonCreateCruiserBat.Text = "Создать крейсер с ракетными шахтами и площадкой под вертолет"; this.ButtonCreateCruiserBat.Text = "Создать крейсер с ракетными шахтами и площадкой под вертолет";
this.ButtonCreateCruiserBat.UseVisualStyleBackColor = true; this.ButtonCreateCruiserBat.UseVisualStyleBackColor = true;
this.ButtonCreateCruiserBat.Click += new System.EventHandler(this.ButtonCreateUstaBat_Click); this.ButtonCreateCruiserBat.Click += new System.EventHandler(this.ButtonCreateCruiserBat_Click);
// //
// ButtonCreateCruiser // ButtonCreateCruiser
// //
this.ButtonCreateCruiser.Location = new System.Drawing.Point(185, 386); this.ButtonCreateCruiser.Location = new System.Drawing.Point(185, 386);
this.ButtonCreateCruiser.Name = "ButtonCreateCruiser"; this.ButtonCreateCruiser.Name = "ButtonCreateCruiser";
this.ButtonCreateCruiser.Size = new System.Drawing.Size(157, 55); this.ButtonCreateCruiser.Size = new System.Drawing.Size(160, 57);
this.ButtonCreateCruiser.TabIndex = 2; this.ButtonCreateCruiser.TabIndex = 2;
this.ButtonCreateCruiser.Text = "Создать крейсер"; this.ButtonCreateCruiser.Text = "Создать крейсер";
this.ButtonCreateCruiser.UseVisualStyleBackColor = true; this.ButtonCreateCruiser.UseVisualStyleBackColor = true;
this.ButtonCreateCruiser.Click += new System.EventHandler(this.ButtonCreateUsta_Click); this.ButtonCreateCruiser.Click += new System.EventHandler(this.ButtonCreateCruiser_Click);
// //
// ButtonStep // ButtonStep
// //
@ -138,11 +139,22 @@
this.pictureBoxCruiser.TabIndex = 8; this.pictureBoxCruiser.TabIndex = 8;
this.pictureBoxCruiser.TabStop = false; this.pictureBoxCruiser.TabStop = false;
// //
// ButtonSelectCruiser
//
this.ButtonSelectCruiser.Location = new System.Drawing.Point(351, 386);
this.ButtonSelectCruiser.Name = "ButtonSelectCruiser";
this.ButtonSelectCruiser.Size = new System.Drawing.Size(160, 57);
this.ButtonSelectCruiser.TabIndex = 9;
this.ButtonSelectCruiser.Text = "Выбор";
this.ButtonSelectCruiser.UseVisualStyleBackColor = true;
this.ButtonSelectCruiser.Click += new System.EventHandler(this.ButtonSelectCruiser_Click);
//
// FormCruiser // FormCruiser
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450); this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.ButtonSelectCruiser);
this.Controls.Add(this.buttonRight); this.Controls.Add(this.buttonRight);
this.Controls.Add(this.buttonLeft); this.Controls.Add(this.buttonLeft);
this.Controls.Add(this.buttonDown); this.Controls.Add(this.buttonDown);
@ -170,5 +182,6 @@
private Button buttonLeft; private Button buttonLeft;
private Button buttonRight; private Button buttonRight;
private PictureBox pictureBoxCruiser; private PictureBox pictureBoxCruiser;
private Button ButtonSelectCruiser;
} }
} }

View File

@ -1,18 +1,22 @@
using ProjectCruiser.DrawningObjects; using ProjectCruiser.DrawningObjects;
using ProjectCruiser.Drawnings; using ProjectCruiser.Drawnings;
using ProjectCruiser.MovementStrategy; using ProjectCruiser.MovementStrategy;
namespace ProjectCruiser namespace ProjectCruiser
{ {
public partial class FormCruiser : Form public partial class FormCruiser : Form
{ {
private DrawningCruiser? _drawningCruiser; private DrawningCruiser? _drawningCruiser;
private AbstractStrategy? _abstractStrategy; private AbstractStrategy? _abstractStrategy;
public DrawningCruiser? SelectedCruiser { get; private set; }
public FormCruiser() public FormCruiser()
{ {
InitializeComponent(); InitializeComponent();
_abstractStrategy = null;
SelectedCruiser = null;
} }
private void Draw() private void Draw()
@ -28,32 +32,50 @@ namespace ProjectCruiser
pictureBoxCruiser.Image = bmp; pictureBoxCruiser.Image = bmp;
} }
private void ButtonCreateUstaBat_Click(object sender, EventArgs e) private void ButtonCreateCruiserBat_Click(object sender, EventArgs e)
{ {
Random random = new(); Random random = new();
Color color = Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256));
ColorDialog dialog = new();
if (dialog.ShowDialog() == DialogResult.OK)
{
color = dialog.Color;
}
Color dopColor = Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256));
ColorDialog dialog_dop = new();
if (dialog_dop.ShowDialog() == DialogResult.OK)
{
dopColor = dialog_dop.Color;
}
_drawningCruiser = new DrawningCruiserDou(random.Next(100, 300), _drawningCruiser = new DrawningCruiserDou(random.Next(100, 300),
random.Next(1000, 3000), random.Next(1000, 3000),
Color.FromArgb(random.Next(0, 256), random.Next(0, 256), color,
random.Next(0, 256)), dopColor,
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)), Convert.ToBoolean(random.Next(0, 2)),
pictureBoxCruiser.Width, pictureBoxCruiser.Height); pictureBoxCruiser.Width, pictureBoxCruiser.Height);
_drawningCruiser.SetPosition(random.Next(10, 100), random.Next(10, _drawningCruiser.SetPosition(random.Next(10, 100), random.Next(10,100));
100));
Draw(); Draw();
} }
private void ButtonCreateUsta_Click(object sender, EventArgs e) private void ButtonCreateCruiser_Click(object sender, EventArgs e)
{ {
Random random = new(); Random random = new();
Color color = Color.FromArgb(random.Next(0, 256),
random.Next(0, 256), random.Next(0, 256));
ColorDialog dialog = new();
if (dialog.ShowDialog() == DialogResult.OK)
{
color = dialog.Color;
}
_drawningCruiser = new DrawningCruiser(random.Next(100, 300), _drawningCruiser = new DrawningCruiser(random.Next(100, 300),
random.Next(1000, 3000), random.Next(1000, 3000),
Color.FromArgb(random.Next(0, 256), random.Next(0, 256), color,
random.Next(0, 256)),
pictureBoxCruiser.Width, pictureBoxCruiser.Height); pictureBoxCruiser.Width, pictureBoxCruiser.Height);
_drawningCruiser.SetPosition(random.Next(10, 100), random.Next(10, _drawningCruiser.SetPosition(random.Next(10, 100), random.Next(10,100));
100));
Draw(); Draw();
} }
@ -119,5 +141,10 @@ namespace ProjectCruiser
} }
} }
private void ButtonSelectCruiser_Click(object sender, EventArgs e)
{
SelectedCruiser = _drawningCruiser;
DialogResult = DialogResult.OK;
}
} }
} }

View File

@ -0,0 +1,126 @@
namespace ProjectCruiser
{
partial class FormCruiserCollection
{
/// <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()
{
groupBox1 = new GroupBox();
maskedTextBoxNumber = new MaskedTextBox();
ButtonRefreshCollection = new Button();
ButtonRemoveCruiser = new Button();
buttonAddCruiser = new Button();
pictureBoxCollection = new PictureBox();
groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit();
SuspendLayout();
//
// groupBox1
//
groupBox1.Controls.Add(maskedTextBoxNumber);
groupBox1.Controls.Add(ButtonRefreshCollection);
groupBox1.Controls.Add(ButtonRemoveCruiser);
groupBox1.Controls.Add(buttonAddCruiser);
groupBox1.Location = new Point(844, 12);
groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(196, 319);
groupBox1.TabIndex = 0;
groupBox1.TabStop = false;
groupBox1.Text = "Инструменты";
//
// maskedTextBoxNumber
//
maskedTextBoxNumber.Font = new Font("Lucida Sans Unicode", 9F, FontStyle.Regular, GraphicsUnit.Point);
maskedTextBoxNumber.Location = new Point(29, 78);
maskedTextBoxNumber.Mask = "00";
maskedTextBoxNumber.Name = "maskedTextBoxNumber";
maskedTextBoxNumber.Size = new Size(130, 26);
maskedTextBoxNumber.TabIndex = 3;
//
// ButtonRefreshCollection
//
ButtonRefreshCollection.Location = new Point(6, 195);
ButtonRefreshCollection.Name = "ButtonRefreshCollection";
ButtonRefreshCollection.Size = new Size(184, 33);
ButtonRefreshCollection.TabIndex = 2;
ButtonRefreshCollection.Text = "Обовить коллекцию";
ButtonRefreshCollection.UseVisualStyleBackColor = true;
ButtonRefreshCollection.Click += ButtonRefreshCollection_Click;
//
// ButtonRemoveCruiser
//
ButtonRemoveCruiser.Location = new Point(6, 136);
ButtonRemoveCruiser.Name = "ButtonRemoveCruiser";
ButtonRemoveCruiser.Size = new Size(184, 33);
ButtonRemoveCruiser.TabIndex = 1;
ButtonRemoveCruiser.Text = "Удалить Крейсер";
ButtonRemoveCruiser.UseVisualStyleBackColor = true;
ButtonRemoveCruiser.Click += ButtonRemoveCruiser_Click;
//
// buttonAddCruiser
//
buttonAddCruiser.Location = new Point(6, 22);
buttonAddCruiser.Name = "buttonAddCruiser";
buttonAddCruiser.Size = new Size(184, 33);
buttonAddCruiser.TabIndex = 0;
buttonAddCruiser.Text = "Добавить Крейсер";
buttonAddCruiser.UseVisualStyleBackColor = true;
buttonAddCruiser.Click += buttonAddCruiser_Click;
//
// pictureBoxCollection
//
pictureBoxCollection.Location = new Point(0, -1);
pictureBoxCollection.Name = "pictureBoxCollection";
pictureBoxCollection.Size = new Size(838, 432);
pictureBoxCollection.SizeMode = PictureBoxSizeMode.Zoom;
pictureBoxCollection.TabIndex = 1;
pictureBoxCollection.TabStop = false;
//
// FormCruiserCollection
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1062, 489);
Controls.Add(pictureBoxCollection);
Controls.Add(groupBox1);
Name = "FormCruiserCollection";
Text = "FormCruiserCollection";
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit();
ResumeLayout(false);
}
#endregion
private GroupBox groupBox1;
private MaskedTextBox maskedTextBoxNumber;
private Button ButtonRefreshCollection;
private Button ButtonRemoveCruiser;
private Button buttonAddCruiser;
private PictureBox pictureBoxCollection;
}
}

View File

@ -0,0 +1,65 @@
using ProjectCruiser.DrawningObjects;
using ProjectCruiser.MovementStrategy;
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 ProjectCruiser
{
public partial class FormCruiserCollection : Form
{
private readonly CruiserGenericCollection<DrawningCruiser, DrawningObjectCruiser> _cruiser;
public FormCruiserCollection()
{
InitializeComponent();
_cruiser = new CruiserGenericCollection<DrawningCruiser, DrawningObjectCruiser>(pictureBoxCollection.Width, pictureBoxCollection.Height);
}
private void buttonAddCruiser_Click(object sender, EventArgs e)
{
FormCruiser form = new();
if (form.ShowDialog() == DialogResult.OK)
{
if (_cruiser + form.SelectedCruiser > -1)
{
MessageBox.Show("Объект добавлен");
pictureBoxCollection.Image = _cruiser.ShowCruiser();
}
else
{
MessageBox.Show("Не удалось добавить объект");
}
}
}
private void ButtonRemoveCruiser_Click(object sender, EventArgs e)
{
if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
{
return;
}
int pos = Convert.ToInt32(maskedTextBoxNumber.Text);
if (_cruiser - pos != null)
{
MessageBox.Show("Объект удален");
pictureBoxCollection.Image = _cruiser.ShowCruiser();
}
else
{
MessageBox.Show("Не удалось удалить объект");
}
}
private void ButtonRefreshCollection_Click(object sender, EventArgs e)
{
pictureBoxCollection.Image = _cruiser.ShowCruiser();
}
}
}

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<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>
</root>

View File

@ -9,6 +9,7 @@ namespace ProjectCruiser.MovementStrategy
{ {
public interface IMoveableObject public interface IMoveableObject
{ {
ObjectParameters? GetObjectPosition { get; } ObjectParameters? GetObjectPosition { get; }
int GetStep { get; } int GetStep { get; }
@ -16,6 +17,10 @@ namespace ProjectCruiser.MovementStrategy
bool CheckCanMove(DirectionType direction); bool CheckCanMove(DirectionType direction);
void MoveObject(DirectionType direction); void MoveObject(DirectionType direction);
void SetPosition(int x, int y);
void Draw(Graphics g);
} }
} }

View File

@ -9,6 +9,7 @@ using ProjectCruiser.Drawnings;
namespace ProjectCruiser.MovementStrategy namespace ProjectCruiser.MovementStrategy
{ {
public class DrawningObjectCruiser : IMoveableObject public class DrawningObjectCruiser : IMoveableObject
{ {
private readonly DrawningCruiser? _drawningCruiser = null; private readonly DrawningCruiser? _drawningCruiser = null;
@ -34,5 +35,20 @@ namespace ProjectCruiser.MovementStrategy
_drawningCruiser?.CanMove(direction) ?? false; _drawningCruiser?.CanMove(direction) ?? false;
public void MoveObject(DirectionType direction) => public void MoveObject(DirectionType direction) =>
_drawningCruiser?.MoveTransport(direction); _drawningCruiser?.MoveTransport(direction);
public void SetPosition(int x, int y)
{
if (_drawningCruiser != null)
{
_drawningCruiser.SetPosition(x, y);
}
}
public void Draw(Graphics g)
{
if (_drawningCruiser != null)
{
_drawningCruiser.DrawTransport(g);
}
}
} }
} }

View File

@ -58,7 +58,6 @@ namespace ProjectCruiser.MovementStrategy
} }
} }
} }
} }
} }

View File

@ -11,7 +11,7 @@ namespace ProjectCruiser
// 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 FormCruiser()); Application.Run(new FormCruiserCollection());
} }
} }
} }

View File

@ -0,0 +1,76 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectCruiser
{
internal class SetGeneric<T>
where T : class
{
private readonly T?[] _places;
public int Count => _places.Length;
public SetGeneric(int count)
{
_places = new T?[count];
}
public int Insert(T cruiser)
{
return Insert(cruiser, 0);
}
public int Insert(T cruiser, int position)
{
if (position < 0 && position > Count)
{
return -1;
}
if (_places[position] != null)
{
int d = 0;
for (int j = 1; j < Count - position; j++)
{
if (_places[position + j] == null)
{
d = position + j;
break;
}
}
if (d == 0)
{
return -1;
}
for (int j = d; j > position; j--)
{
_places[j] = _places[j - 1];
}
}
_places[position] = cruiser;
return position;
}
public bool Remove(int position)
{
if (position < 0 || position >= _places.Length)
{
return false;
}
_places[position] = null;
return true;
}
public T? Get(int position)
{
if (position < 0 || position >= _places.Length)
{
return null;
}
return _places[position];
}
}
}