Compare commits
16 Commits
Author | SHA1 | Date | |
---|---|---|---|
ea083799c6 | |||
4116ffde87 | |||
8e5a2bdeca | |||
3c0124841e | |||
74ae24d23b | |||
8bd7a3ee39 | |||
5f2bc387d9 | |||
f0138b67c1 | |||
ec6e19c626 | |||
7dda1f708a | |||
1c8fb269b1 | |||
74bedf29c8 | |||
ac95e05cf4 | |||
7425d24b87 | |||
588e670457 | |||
5e7e145d60 |
151
GasolineTanker/GasolineTanker/AbstractMap.cs
Normal file
151
GasolineTanker/GasolineTanker/AbstractMap.cs
Normal file
@ -0,0 +1,151 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace GasolineTanker
|
||||||
|
{
|
||||||
|
internal abstract class AbstractMap
|
||||||
|
{
|
||||||
|
private IDrawingObject _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;
|
||||||
|
|
||||||
|
private Direction GetOpositDirection(Direction d)
|
||||||
|
{
|
||||||
|
switch (d)
|
||||||
|
{
|
||||||
|
case Direction.None:
|
||||||
|
return Direction.None;
|
||||||
|
case Direction.Up:
|
||||||
|
return Direction.Down;
|
||||||
|
case Direction.Down:
|
||||||
|
return Direction.Up;
|
||||||
|
case Direction.Left:
|
||||||
|
return Direction.Right;
|
||||||
|
case Direction.Right:
|
||||||
|
return Direction.Left;
|
||||||
|
}
|
||||||
|
return Direction.None;
|
||||||
|
}
|
||||||
|
|
||||||
|
private int CheckCollision(float Left, float Right, float Top, float Bottom)
|
||||||
|
{
|
||||||
|
int starCoordinateX = (int)(Left / _size_x);
|
||||||
|
int starCoordinateY = (int)(Right / _size_y);
|
||||||
|
int endCoordinateX = (int)(Top / _size_x);
|
||||||
|
int endCoordinateY = (int)(Bottom / _size_y);
|
||||||
|
if (starCoordinateX < 0 || starCoordinateY < 0 || endCoordinateX >= _map.GetLength(1) || endCoordinateY >= _map.GetLength(0))
|
||||||
|
{
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
for (int x = starCoordinateX; x <= endCoordinateX; x++)
|
||||||
|
{
|
||||||
|
for (int y = starCoordinateY; y <= endCoordinateY; y++)
|
||||||
|
{
|
||||||
|
if (_map[x, y] == _barrier)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Bitmap CreateMap(int width, int height, IDrawingObject drawningObject)
|
||||||
|
{
|
||||||
|
_width = width;
|
||||||
|
_height = height;
|
||||||
|
_drawningObject = drawningObject;
|
||||||
|
GenerateMap();
|
||||||
|
while (!SetObjectOnMap())
|
||||||
|
{
|
||||||
|
GenerateMap();
|
||||||
|
}
|
||||||
|
return DrawMapWithObject();
|
||||||
|
}
|
||||||
|
|
||||||
|
public Bitmap MoveObject(Direction direction)
|
||||||
|
{
|
||||||
|
if (true)
|
||||||
|
{
|
||||||
|
_drawningObject.MoveObject(direction);
|
||||||
|
}
|
||||||
|
(float Left, float Right, float Top, float Bottom) = _drawningObject.GetCurrentPosition();
|
||||||
|
if (CheckCollision(Left, Right, Top, Bottom) != 0)
|
||||||
|
{
|
||||||
|
_drawningObject.MoveObject(GetOpositDirection(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);
|
||||||
|
(float Left, float Right, float Top, float Bottom) = _drawningObject.GetCurrentPosition();
|
||||||
|
|
||||||
|
while (CheckCollision(Left, Right, Top, Bottom) != 2)
|
||||||
|
{
|
||||||
|
int resoult;
|
||||||
|
do
|
||||||
|
{
|
||||||
|
resoult = CheckCollision(Left, Right, Top, Bottom);
|
||||||
|
if (resoult == 0)
|
||||||
|
{
|
||||||
|
_drawningObject.SetObject((int)Left, (int)Right, _width, _height);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Left += _size_x;
|
||||||
|
}
|
||||||
|
} while (resoult != 2);
|
||||||
|
Left = x;
|
||||||
|
Right += _size_y;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -6,8 +6,9 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace GasolineTanker
|
namespace GasolineTanker
|
||||||
{
|
{
|
||||||
internal enum Direction
|
public enum Direction
|
||||||
{
|
{
|
||||||
|
None = 0,
|
||||||
Up = 1,
|
Up = 1,
|
||||||
Down = 2,
|
Down = 2,
|
||||||
Left = 3,
|
Left = 3,
|
||||||
|
@ -6,20 +6,29 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace GasolineTanker
|
namespace GasolineTanker
|
||||||
{
|
{
|
||||||
internal class DrawingGasolineTanker
|
public class DrawingGasolineTanker
|
||||||
{
|
{
|
||||||
public EnityGasolineTanker GasolineTanker { get; private set; }
|
public EnityGasolineTanker GasolineTanker { get; protected set; }
|
||||||
private float _startPosX;
|
protected float _startPosX;
|
||||||
private float _startPosY;
|
protected float _startPosY;
|
||||||
private int? _pictureWidth = null;
|
private int? _pictureWidth = null;
|
||||||
private int? _pictureHeight = null;
|
private int? _pictureHeight = null;
|
||||||
private readonly int _gasolineTankerWidth = 160;
|
private readonly int _gasolineTankerWidth = 160;
|
||||||
private readonly int _gasolineTankerHeight = 55;
|
private readonly int _gasolineTankerHeight = 55;
|
||||||
|
public DrawingGasolineTanker Copy(int? speed = null, float? weight = null, Color? bodyColor = null)
|
||||||
public void Init(int speed, float weight, Color bodyColor)
|
|
||||||
{
|
{
|
||||||
GasolineTanker = new EnityGasolineTanker();
|
return new DrawingGasolineTanker(speed ?? GasolineTanker.Speed, weight ?? GasolineTanker.Weight, bodyColor ?? GasolineTanker.BodyColor);
|
||||||
GasolineTanker.Init(speed, weight, bodyColor);
|
}
|
||||||
|
public DrawingGasolineTanker(int speed, float weight, Color bodyColor)
|
||||||
|
{
|
||||||
|
GasolineTanker = new EnityGasolineTanker(speed, weight, bodyColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected DrawingGasolineTanker(int speed, float weight, Color bodyColor, int gasolineTankerWidth, int gasolineTankerHeight) :
|
||||||
|
this(speed, weight, bodyColor)
|
||||||
|
{
|
||||||
|
_gasolineTankerWidth = gasolineTankerWidth;
|
||||||
|
_gasolineTankerHeight = gasolineTankerHeight;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetPosition(int x, int y, int width, int height)
|
public void SetPosition(int x, int y, int width, int height)
|
||||||
@ -71,7 +80,7 @@ namespace GasolineTanker
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public void DrawTransport(Graphics g)
|
public virtual void DrawTransport(Graphics g)
|
||||||
{
|
{
|
||||||
if (_startPosX < 0 || _startPosY < 0
|
if (_startPosX < 0 || _startPosY < 0
|
||||||
|| !_pictureHeight.HasValue || !_pictureWidth.HasValue)
|
|| !_pictureHeight.HasValue || !_pictureWidth.HasValue)
|
||||||
@ -121,5 +130,10 @@ namespace GasolineTanker
|
|||||||
_startPosY = _pictureHeight.Value - _gasolineTankerHeight;
|
_startPosY = _pictureHeight.Value - _gasolineTankerHeight;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public (float Left, float Right, float Top, float Bottom) GetCurrentPosition()
|
||||||
|
{
|
||||||
|
return (_startPosX, _startPosY, _startPosX + _gasolineTankerWidth, _startPosY + _gasolineTankerHeight);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,52 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace GasolineTanker
|
||||||
|
{
|
||||||
|
internal class DrawingImprovedGasolineTanker : DrawingGasolineTanker
|
||||||
|
{
|
||||||
|
public DrawingImprovedGasolineTanker(int speed, float weight, Color bodyColor, Color dopColor, bool bodyKit, bool ornamentWheels) :
|
||||||
|
base(speed, weight, bodyColor, 160, 55)
|
||||||
|
{
|
||||||
|
GasolineTanker = new EntityImprovedGasolineTanker(speed, weight, bodyColor, dopColor, bodyKit, ornamentWheels);
|
||||||
|
}
|
||||||
|
public DrawingImprovedGasolineTanker Copy(int? speed = null, float? weight = null, Color? bodyColor = null, Color? dopColor = null, bool? hasBombs = null, bool? hasFuelTanks = null)
|
||||||
|
{
|
||||||
|
var e = (EntityImprovedGasolineTanker)GasolineTanker;
|
||||||
|
return new DrawingImprovedGasolineTanker(speed ?? e.Speed, weight ?? e.Weight, bodyColor ?? e.BodyColor, dopColor ?? e.DopColor, hasBombs ?? e.BodyKit, hasFuelTanks ?? e.OrnamentWheels);
|
||||||
|
}
|
||||||
|
public override void DrawTransport(Graphics g)
|
||||||
|
{
|
||||||
|
if (GasolineTanker is not EntityImprovedGasolineTanker improvedGasolineTanker)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (improvedGasolineTanker.BodyKit)
|
||||||
|
{
|
||||||
|
Brush dopBrush = new SolidBrush(improvedGasolineTanker.DopColor);
|
||||||
|
g.FillRectangle(dopBrush, _startPosX + 25, _startPosY + 5, 100, 35);
|
||||||
|
Brush brRed = new SolidBrush(Color.Red);
|
||||||
|
g.FillRectangle(brRed, _startPosX + 80, _startPosY, 10, 5);
|
||||||
|
}
|
||||||
|
|
||||||
|
_startPosX += 10;
|
||||||
|
_startPosY += 5;
|
||||||
|
base.DrawTransport(g);
|
||||||
|
_startPosX -= 10;
|
||||||
|
_startPosY -= 5;
|
||||||
|
|
||||||
|
if (improvedGasolineTanker.OrnamentWheels)
|
||||||
|
{
|
||||||
|
Pen penGray = new(Color.Gray);
|
||||||
|
Brush brBlack = new SolidBrush(Color.Gray);
|
||||||
|
g.DrawEllipse(penGray, _startPosX + 140, _startPosY + 50, 20, 5);
|
||||||
|
g.DrawEllipse(penGray, _startPosX + 40, _startPosY + 50, 20, 5);
|
||||||
|
g.DrawEllipse(penGray, _startPosX + 20, _startPosY + 50, 20, 5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
42
GasolineTanker/GasolineTanker/DrawingObjectGasolineTanker.cs
Normal file
42
GasolineTanker/GasolineTanker/DrawingObjectGasolineTanker.cs
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace GasolineTanker
|
||||||
|
{
|
||||||
|
internal class DrawingObjectGasolineTanker : IDrawingObject
|
||||||
|
{
|
||||||
|
private DrawingGasolineTanker _gasolineTanker = null;
|
||||||
|
|
||||||
|
public DrawingObjectGasolineTanker(DrawingGasolineTanker gasolineTanker)
|
||||||
|
{
|
||||||
|
_gasolineTanker = gasolineTanker;
|
||||||
|
}
|
||||||
|
|
||||||
|
public float Step => _gasolineTanker?.GasolineTanker?.Step ?? 0;
|
||||||
|
|
||||||
|
public (float Left, float Right, float Top, float Bottom) GetCurrentPosition()
|
||||||
|
{
|
||||||
|
return _gasolineTanker?.GetCurrentPosition() ?? default;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void MoveObject(Direction direction)
|
||||||
|
{
|
||||||
|
_gasolineTanker?.MoveTransport(direction);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void SetObject(int x, int y, int width, int height)
|
||||||
|
{
|
||||||
|
_gasolineTanker.SetPosition(x, y, width, height);
|
||||||
|
}
|
||||||
|
|
||||||
|
void IDrawingObject.DrawningObject(Graphics g)
|
||||||
|
{
|
||||||
|
_gasolineTanker.DrawTransport(g);
|
||||||
|
}
|
||||||
|
public string GetInfo() => _gasolineTanker?.GetDataForSave();
|
||||||
|
public static IDrawingObject Create(string data) => new DrawingObjectGasolineTanker(data.CreateDrawingGasolineTanker());
|
||||||
|
}
|
||||||
|
}
|
@ -6,13 +6,13 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace GasolineTanker
|
namespace GasolineTanker
|
||||||
{
|
{
|
||||||
internal class EnityGasolineTanker
|
public class EnityGasolineTanker
|
||||||
{
|
{
|
||||||
public int Speed { get; private set; }
|
public int Speed { get; private set; }
|
||||||
public float Weight { get; private set; }
|
public float Weight { get; private set; }
|
||||||
public Color BodyColor { get; private set; }
|
public Color BodyColor { get; private set; }
|
||||||
public float Step => Speed * 100 / Weight;
|
public float Step => Speed * 100 / Weight;
|
||||||
public void Init(int speed, float weight, Color bodyColor)
|
public EnityGasolineTanker(int speed, float weight, Color bodyColor)
|
||||||
{
|
{
|
||||||
Random rnd = new Random();
|
Random rnd = new Random();
|
||||||
Speed = speed <= 0 ? rnd.Next(50, 100) : speed;
|
Speed = speed <= 0 ? rnd.Next(50, 100) : speed;
|
||||||
|
@ -0,0 +1,22 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace GasolineTanker
|
||||||
|
{
|
||||||
|
internal class EntityImprovedGasolineTanker : EnityGasolineTanker
|
||||||
|
{
|
||||||
|
public Color DopColor { get; private set; }
|
||||||
|
public bool BodyKit { get; private set; }
|
||||||
|
public bool OrnamentWheels { get; private set; }
|
||||||
|
public EntityImprovedGasolineTanker(int speed, float weight, Color bodyColor, Color dopColor, bool bodyKit, bool ornamentWheels) :
|
||||||
|
base(speed, weight, bodyColor)
|
||||||
|
{
|
||||||
|
DopColor = dopColor;
|
||||||
|
BodyKit = bodyKit;
|
||||||
|
OrnamentWheels = ornamentWheels;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
41
GasolineTanker/GasolineTanker/ExtentionGasolineTanker.cs
Normal file
41
GasolineTanker/GasolineTanker/ExtentionGasolineTanker.cs
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace GasolineTanker
|
||||||
|
{
|
||||||
|
internal static class ExtentionGasolineTanker
|
||||||
|
{
|
||||||
|
private static readonly char _separatorForObject = ':';
|
||||||
|
|
||||||
|
public static DrawingGasolineTanker CreateDrawingGasolineTanker(this string info)
|
||||||
|
{
|
||||||
|
string[] strs = info.Split(_separatorForObject);
|
||||||
|
if (strs.Length == 3)
|
||||||
|
{
|
||||||
|
return new DrawingGasolineTanker(Convert.ToInt32(strs[0]),
|
||||||
|
Convert.ToInt32(strs[1]), Color.FromName(strs[2]));
|
||||||
|
}
|
||||||
|
if (strs.Length == 6)
|
||||||
|
{
|
||||||
|
return new DrawingImprovedGasolineTanker(Convert.ToInt32(strs[0]),
|
||||||
|
Convert.ToInt32(strs[1]), Color.FromName(strs[2]),
|
||||||
|
Color.FromName(strs[3]), Convert.ToBoolean(strs[4]),
|
||||||
|
Convert.ToBoolean(strs[5]));
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
public static string GetDataForSave(this DrawingGasolineTanker drawingGasolineTanker)
|
||||||
|
{
|
||||||
|
var GasolineTanker = drawingGasolineTanker.GasolineTanker;
|
||||||
|
var str = $"{GasolineTanker.Speed}{_separatorForObject}{GasolineTanker.Weight}{_separatorForObject}{GasolineTanker.BodyColor.Name}";
|
||||||
|
if (GasolineTanker is not EntityImprovedGasolineTanker improvedGasolineTanker)
|
||||||
|
{
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
return $"{str}{_separatorForObject}{improvedGasolineTanker.DopColor.Name}{_separatorForObject}{improvedGasolineTanker.BodyKit}{_separatorForObject}{improvedGasolineTanker.OrnamentWheels}";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -38,6 +38,8 @@
|
|||||||
this.keyUp = new System.Windows.Forms.Button();
|
this.keyUp = new System.Windows.Forms.Button();
|
||||||
this.keyLeft = new System.Windows.Forms.Button();
|
this.keyLeft = new System.Windows.Forms.Button();
|
||||||
this.keyRight = new System.Windows.Forms.Button();
|
this.keyRight = new System.Windows.Forms.Button();
|
||||||
|
this.ButtonCreateImproved = new System.Windows.Forms.Button();
|
||||||
|
this.buttonChoose = new System.Windows.Forms.Button();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxGasolineTanker)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxGasolineTanker)).BeginInit();
|
||||||
this.statusStrip1.SuspendLayout();
|
this.statusStrip1.SuspendLayout();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
@ -46,9 +48,8 @@
|
|||||||
//
|
//
|
||||||
this.pictureBoxGasolineTanker.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.pictureBoxGasolineTanker.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
this.pictureBoxGasolineTanker.Location = new System.Drawing.Point(0, 0);
|
this.pictureBoxGasolineTanker.Location = new System.Drawing.Point(0, 0);
|
||||||
this.pictureBoxGasolineTanker.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|
||||||
this.pictureBoxGasolineTanker.Name = "pictureBoxGasolineTanker";
|
this.pictureBoxGasolineTanker.Name = "pictureBoxGasolineTanker";
|
||||||
this.pictureBoxGasolineTanker.Size = new System.Drawing.Size(922, 574);
|
this.pictureBoxGasolineTanker.Size = new System.Drawing.Size(807, 428);
|
||||||
this.pictureBoxGasolineTanker.TabIndex = 0;
|
this.pictureBoxGasolineTanker.TabIndex = 0;
|
||||||
this.pictureBoxGasolineTanker.TabStop = false;
|
this.pictureBoxGasolineTanker.TabStop = false;
|
||||||
//
|
//
|
||||||
@ -59,52 +60,49 @@
|
|||||||
this.toolStripStatusSpeed,
|
this.toolStripStatusSpeed,
|
||||||
this.toolStripStatusWeight,
|
this.toolStripStatusWeight,
|
||||||
this.toolStripStatusBodyColor});
|
this.toolStripStatusBodyColor});
|
||||||
this.statusStrip1.Location = new System.Drawing.Point(0, 574);
|
this.statusStrip1.Location = new System.Drawing.Point(0, 428);
|
||||||
this.statusStrip1.Name = "statusStrip1";
|
this.statusStrip1.Name = "statusStrip1";
|
||||||
this.statusStrip1.Padding = new System.Windows.Forms.Padding(1, 0, 16, 0);
|
this.statusStrip1.Size = new System.Drawing.Size(807, 22);
|
||||||
this.statusStrip1.Size = new System.Drawing.Size(922, 26);
|
|
||||||
this.statusStrip1.TabIndex = 1;
|
this.statusStrip1.TabIndex = 1;
|
||||||
this.statusStrip1.Text = "statusStrip1";
|
this.statusStrip1.Text = "statusStrip1";
|
||||||
//
|
//
|
||||||
// toolStripStatusSpeed
|
// toolStripStatusSpeed
|
||||||
//
|
//
|
||||||
this.toolStripStatusSpeed.Name = "toolStripStatusSpeed";
|
this.toolStripStatusSpeed.Name = "toolStripStatusSpeed";
|
||||||
this.toolStripStatusSpeed.Size = new System.Drawing.Size(51, 20);
|
this.toolStripStatusSpeed.Size = new System.Drawing.Size(39, 17);
|
||||||
this.toolStripStatusSpeed.Text = "Speed";
|
this.toolStripStatusSpeed.Text = "Speed";
|
||||||
//
|
//
|
||||||
// toolStripStatusWeight
|
// toolStripStatusWeight
|
||||||
//
|
//
|
||||||
this.toolStripStatusWeight.Name = "toolStripStatusWeight";
|
this.toolStripStatusWeight.Name = "toolStripStatusWeight";
|
||||||
this.toolStripStatusWeight.Size = new System.Drawing.Size(56, 20);
|
this.toolStripStatusWeight.Size = new System.Drawing.Size(45, 17);
|
||||||
this.toolStripStatusWeight.Text = "Weight";
|
this.toolStripStatusWeight.Text = "Weight";
|
||||||
//
|
//
|
||||||
// toolStripStatusBodyColor
|
// toolStripStatusBodyColor
|
||||||
//
|
//
|
||||||
this.toolStripStatusBodyColor.Name = "toolStripStatusBodyColor";
|
this.toolStripStatusBodyColor.Name = "toolStripStatusBodyColor";
|
||||||
this.toolStripStatusBodyColor.Size = new System.Drawing.Size(45, 20);
|
this.toolStripStatusBodyColor.Size = new System.Drawing.Size(36, 17);
|
||||||
this.toolStripStatusBodyColor.Text = "Color";
|
this.toolStripStatusBodyColor.Text = "Color";
|
||||||
//
|
//
|
||||||
// buttonCreate
|
// buttonCreate
|
||||||
//
|
//
|
||||||
this.buttonCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
this.buttonCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||||
this.buttonCreate.Location = new System.Drawing.Point(14, 524);
|
this.buttonCreate.Location = new System.Drawing.Point(12, 393);
|
||||||
this.buttonCreate.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|
||||||
this.buttonCreate.Name = "buttonCreate";
|
this.buttonCreate.Name = "buttonCreate";
|
||||||
this.buttonCreate.Size = new System.Drawing.Size(86, 31);
|
this.buttonCreate.Size = new System.Drawing.Size(75, 23);
|
||||||
this.buttonCreate.TabIndex = 2;
|
this.buttonCreate.TabIndex = 2;
|
||||||
this.buttonCreate.Text = "Create";
|
this.buttonCreate.Text = "Create";
|
||||||
this.buttonCreate.UseVisualStyleBackColor = true;
|
this.buttonCreate.UseVisualStyleBackColor = true;
|
||||||
this.buttonCreate.Click += new System.EventHandler(this.buttonCreate_Click_1);
|
this.buttonCreate.Click += new System.EventHandler(this.ButtonCreate_Click_1);
|
||||||
//
|
//
|
||||||
// keyDown
|
// keyDown
|
||||||
//
|
//
|
||||||
this.keyDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
this.keyDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
this.keyDown.BackgroundImage = global::GasolineTanker.Properties.Resources.KeyDown;
|
this.keyDown.BackgroundImage = global::GasolineTanker.Properties.Resources.KeyDown;
|
||||||
this.keyDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
this.keyDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||||
this.keyDown.Location = new System.Drawing.Point(827, 515);
|
this.keyDown.Location = new System.Drawing.Point(724, 386);
|
||||||
this.keyDown.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|
||||||
this.keyDown.Name = "keyDown";
|
this.keyDown.Name = "keyDown";
|
||||||
this.keyDown.Size = new System.Drawing.Size(34, 40);
|
this.keyDown.Size = new System.Drawing.Size(30, 30);
|
||||||
this.keyDown.TabIndex = 3;
|
this.keyDown.TabIndex = 3;
|
||||||
this.keyDown.UseVisualStyleBackColor = true;
|
this.keyDown.UseVisualStyleBackColor = true;
|
||||||
this.keyDown.Click += new System.EventHandler(this.ButtonMove_Click);
|
this.keyDown.Click += new System.EventHandler(this.ButtonMove_Click);
|
||||||
@ -114,10 +112,9 @@
|
|||||||
this.keyUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
this.keyUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
this.keyUp.BackgroundImage = global::GasolineTanker.Properties.Resources.KeyUp;
|
this.keyUp.BackgroundImage = global::GasolineTanker.Properties.Resources.KeyUp;
|
||||||
this.keyUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
this.keyUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||||
this.keyUp.Location = new System.Drawing.Point(827, 467);
|
this.keyUp.Location = new System.Drawing.Point(724, 350);
|
||||||
this.keyUp.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|
||||||
this.keyUp.Name = "keyUp";
|
this.keyUp.Name = "keyUp";
|
||||||
this.keyUp.Size = new System.Drawing.Size(34, 40);
|
this.keyUp.Size = new System.Drawing.Size(30, 30);
|
||||||
this.keyUp.TabIndex = 4;
|
this.keyUp.TabIndex = 4;
|
||||||
this.keyUp.UseVisualStyleBackColor = true;
|
this.keyUp.UseVisualStyleBackColor = true;
|
||||||
this.keyUp.Click += new System.EventHandler(this.ButtonMove_Click);
|
this.keyUp.Click += new System.EventHandler(this.ButtonMove_Click);
|
||||||
@ -127,10 +124,9 @@
|
|||||||
this.keyLeft.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
this.keyLeft.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
this.keyLeft.BackgroundImage = global::GasolineTanker.Properties.Resources.KeyLeft;
|
this.keyLeft.BackgroundImage = global::GasolineTanker.Properties.Resources.KeyLeft;
|
||||||
this.keyLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
this.keyLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||||
this.keyLeft.Location = new System.Drawing.Point(786, 515);
|
this.keyLeft.Location = new System.Drawing.Point(688, 386);
|
||||||
this.keyLeft.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|
||||||
this.keyLeft.Name = "keyLeft";
|
this.keyLeft.Name = "keyLeft";
|
||||||
this.keyLeft.Size = new System.Drawing.Size(34, 40);
|
this.keyLeft.Size = new System.Drawing.Size(30, 30);
|
||||||
this.keyLeft.TabIndex = 5;
|
this.keyLeft.TabIndex = 5;
|
||||||
this.keyLeft.UseVisualStyleBackColor = true;
|
this.keyLeft.UseVisualStyleBackColor = true;
|
||||||
this.keyLeft.Click += new System.EventHandler(this.ButtonMove_Click);
|
this.keyLeft.Click += new System.EventHandler(this.ButtonMove_Click);
|
||||||
@ -140,19 +136,41 @@
|
|||||||
this.keyRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
this.keyRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
this.keyRight.BackgroundImage = global::GasolineTanker.Properties.Resources.KeyRight;
|
this.keyRight.BackgroundImage = global::GasolineTanker.Properties.Resources.KeyRight;
|
||||||
this.keyRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
this.keyRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||||
this.keyRight.Location = new System.Drawing.Point(868, 515);
|
this.keyRight.Location = new System.Drawing.Point(760, 386);
|
||||||
this.keyRight.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|
||||||
this.keyRight.Name = "keyRight";
|
this.keyRight.Name = "keyRight";
|
||||||
this.keyRight.Size = new System.Drawing.Size(34, 40);
|
this.keyRight.Size = new System.Drawing.Size(30, 30);
|
||||||
this.keyRight.TabIndex = 6;
|
this.keyRight.TabIndex = 6;
|
||||||
this.keyRight.UseVisualStyleBackColor = true;
|
this.keyRight.UseVisualStyleBackColor = true;
|
||||||
this.keyRight.Click += new System.EventHandler(this.ButtonMove_Click);
|
this.keyRight.Click += new System.EventHandler(this.ButtonMove_Click);
|
||||||
//
|
//
|
||||||
|
// ButtonCreateImproved
|
||||||
|
//
|
||||||
|
this.ButtonCreateImproved.Location = new System.Drawing.Point(93, 393);
|
||||||
|
this.ButtonCreateImproved.Name = "ButtonCreateImproved";
|
||||||
|
this.ButtonCreateImproved.Size = new System.Drawing.Size(75, 23);
|
||||||
|
this.ButtonCreateImproved.TabIndex = 7;
|
||||||
|
this.ButtonCreateImproved.Text = "Improved";
|
||||||
|
this.ButtonCreateImproved.UseVisualStyleBackColor = true;
|
||||||
|
this.ButtonCreateImproved.Click += new System.EventHandler(this.ButtonCreateImproved_Click);
|
||||||
|
//
|
||||||
|
// buttonChoose
|
||||||
|
//
|
||||||
|
this.buttonChoose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||||
|
this.buttonChoose.Location = new System.Drawing.Point(598, 390);
|
||||||
|
this.buttonChoose.Name = "buttonChoose";
|
||||||
|
this.buttonChoose.Size = new System.Drawing.Size(75, 23);
|
||||||
|
this.buttonChoose.TabIndex = 8;
|
||||||
|
this.buttonChoose.Text = "Choose";
|
||||||
|
this.buttonChoose.UseVisualStyleBackColor = true;
|
||||||
|
this.buttonChoose.Click += new System.EventHandler(this.ButtonChoose_Click);
|
||||||
|
//
|
||||||
// FormGasolineTanker
|
// FormGasolineTanker
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
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(922, 600);
|
this.ClientSize = new System.Drawing.Size(807, 450);
|
||||||
|
this.Controls.Add(this.buttonChoose);
|
||||||
|
this.Controls.Add(this.ButtonCreateImproved);
|
||||||
this.Controls.Add(this.keyRight);
|
this.Controls.Add(this.keyRight);
|
||||||
this.Controls.Add(this.keyLeft);
|
this.Controls.Add(this.keyLeft);
|
||||||
this.Controls.Add(this.keyUp);
|
this.Controls.Add(this.keyUp);
|
||||||
@ -160,7 +178,6 @@
|
|||||||
this.Controls.Add(this.buttonCreate);
|
this.Controls.Add(this.buttonCreate);
|
||||||
this.Controls.Add(this.pictureBoxGasolineTanker);
|
this.Controls.Add(this.pictureBoxGasolineTanker);
|
||||||
this.Controls.Add(this.statusStrip1);
|
this.Controls.Add(this.statusStrip1);
|
||||||
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|
||||||
this.Name = "FormGasolineTanker";
|
this.Name = "FormGasolineTanker";
|
||||||
this.Text = "Gasoline tanker";
|
this.Text = "Gasoline tanker";
|
||||||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxGasolineTanker)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxGasolineTanker)).EndInit();
|
||||||
@ -183,5 +200,7 @@
|
|||||||
private Button keyUp;
|
private Button keyUp;
|
||||||
private Button keyLeft;
|
private Button keyLeft;
|
||||||
private Button keyRight;
|
private Button keyRight;
|
||||||
|
private Button ButtonCreateImproved;
|
||||||
|
private Button buttonChoose;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -3,6 +3,7 @@ namespace GasolineTanker
|
|||||||
public partial class FormGasolineTanker : Form
|
public partial class FormGasolineTanker : Form
|
||||||
{
|
{
|
||||||
private DrawingGasolineTanker _gasolineTanker;
|
private DrawingGasolineTanker _gasolineTanker;
|
||||||
|
public DrawingGasolineTanker SelectedGasolineTanker { get; private set; }
|
||||||
public FormGasolineTanker()
|
public FormGasolineTanker()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
@ -14,22 +15,33 @@ namespace GasolineTanker
|
|||||||
_gasolineTanker?.DrawTransport(gr);
|
_gasolineTanker?.DrawTransport(gr);
|
||||||
pictureBoxGasolineTanker.Image = bmp;
|
pictureBoxGasolineTanker.Image = bmp;
|
||||||
}
|
}
|
||||||
|
private void SetData()
|
||||||
|
{
|
||||||
|
Random rnd = new();
|
||||||
|
_gasolineTanker.SetPosition(rnd.Next(10, 100), rnd.Next(10, 100), pictureBoxGasolineTanker.Width, pictureBoxGasolineTanker.Height);
|
||||||
|
toolStripStatusSpeed.Text = $"Speed {_gasolineTanker.GasolineTanker.Speed}";
|
||||||
|
toolStripStatusWeight.Text = $"Weight {_gasolineTanker.GasolineTanker.Weight}";
|
||||||
|
toolStripStatusBodyColor.Text = $"Color {_gasolineTanker.GasolineTanker.BodyColor.Name}";
|
||||||
|
}
|
||||||
private void PictureBoxCar_Resize(object sender, EventArgs e)
|
private void PictureBoxCar_Resize(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
_gasolineTanker?.ChangeBorders(pictureBoxGasolineTanker.Width, pictureBoxGasolineTanker.Height);
|
_gasolineTanker?.ChangeBorders(pictureBoxGasolineTanker.Width, pictureBoxGasolineTanker.Height);
|
||||||
Draw();
|
Draw();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void buttonCreate_Click_1(object sender, EventArgs e)
|
private void ButtonCreate_Click_1(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
Random rnd = new();
|
Random rnd = new();
|
||||||
_gasolineTanker = new DrawingGasolineTanker();
|
Color color = Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256),rnd.Next(0, 256));
|
||||||
_gasolineTanker.Init(rnd.Next(100, 300), rnd.Next(1000, 2000), Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256)));
|
ColorDialog dialog = new();
|
||||||
_gasolineTanker.SetPosition(rnd.Next(10, 100),rnd.Next(50, 100), pictureBoxGasolineTanker.Width, pictureBoxGasolineTanker.Height);
|
if (dialog.ShowDialog() == DialogResult.OK)
|
||||||
toolStripStatusSpeed.Text = $"Speed {_gasolineTanker.GasolineTanker.Speed}";
|
{
|
||||||
toolStripStatusWeight.Text = $"Weight {_gasolineTanker.GasolineTanker.Weight}";
|
color = dialog.Color;
|
||||||
toolStripStatusBodyColor.Text = $"Color {_gasolineTanker.GasolineTanker.BodyColor.Name}";
|
}
|
||||||
|
_gasolineTanker = new DrawingGasolineTanker(rnd.Next(100, 300), rnd.Next(1000, 2000),color);
|
||||||
|
SetData();
|
||||||
Draw();
|
Draw();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ButtonMove_Click(object sender, EventArgs e)
|
private void ButtonMove_Click(object sender, EventArgs e)
|
||||||
@ -59,5 +71,31 @@ namespace GasolineTanker
|
|||||||
_gasolineTanker?.ChangeBorders(pictureBoxGasolineTanker.Width, pictureBoxGasolineTanker.Height);
|
_gasolineTanker?.ChangeBorders(pictureBoxGasolineTanker.Width, pictureBoxGasolineTanker.Height);
|
||||||
Draw();
|
Draw();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void ButtonCreateImproved_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
Random rnd = new();
|
||||||
|
Color color = Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256),rnd.Next(0, 256));
|
||||||
|
ColorDialog dialog = new();
|
||||||
|
if (dialog.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
color = dialog.Color;
|
||||||
|
}
|
||||||
|
Color colorDop = Color.FromArgb(rnd.Next(0, 256), rnd.Next(0, 256), rnd.Next(0, 256));
|
||||||
|
ColorDialog dialogDop = new();
|
||||||
|
if (dialogDop.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
colorDop = dialogDop.Color;
|
||||||
|
}
|
||||||
|
_gasolineTanker = new DrawingImprovedGasolineTanker(rnd.Next(100, 300), rnd.Next(1000, 2000), color, colorDop, Convert.ToBoolean(rnd.Next(0, 2)), Convert.ToBoolean(rnd.Next(0, 2)));
|
||||||
|
SetData();
|
||||||
|
Draw();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ButtonChoose_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
SelectedGasolineTanker = _gasolineTanker;
|
||||||
|
DialogResult = DialogResult.OK;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
381
GasolineTanker/GasolineTanker/FormGasolineTankerConfig.Designer.cs
generated
Normal file
381
GasolineTanker/GasolineTanker/FormGasolineTankerConfig.Designer.cs
generated
Normal file
@ -0,0 +1,381 @@
|
|||||||
|
namespace GasolineTanker
|
||||||
|
{
|
||||||
|
partial class FormGasolineTankerConfig
|
||||||
|
{
|
||||||
|
/// <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.groupBoxConfig = new System.Windows.Forms.GroupBox();
|
||||||
|
this.numericUpDownWeight = new System.Windows.Forms.NumericUpDown();
|
||||||
|
this.numericUpDownSpeed = new System.Windows.Forms.NumericUpDown();
|
||||||
|
this.labelImrovedObject = new System.Windows.Forms.Label();
|
||||||
|
this.labelSimpleObject = new System.Windows.Forms.Label();
|
||||||
|
this.groupBoxColor = new System.Windows.Forms.GroupBox();
|
||||||
|
this.panelPurple = new System.Windows.Forms.Panel();
|
||||||
|
this.panelRed = new System.Windows.Forms.Panel();
|
||||||
|
this.panelYellow = new System.Windows.Forms.Panel();
|
||||||
|
this.panelWhite = new System.Windows.Forms.Panel();
|
||||||
|
this.panelGreen = new System.Windows.Forms.Panel();
|
||||||
|
this.panelBlack = new System.Windows.Forms.Panel();
|
||||||
|
this.panelGray = new System.Windows.Forms.Panel();
|
||||||
|
this.panelBlue = new System.Windows.Forms.Panel();
|
||||||
|
this.checkBoxOrnamentWheel = new System.Windows.Forms.CheckBox();
|
||||||
|
this.checkBoxBodyKit = new System.Windows.Forms.CheckBox();
|
||||||
|
this.labelWeight = new System.Windows.Forms.Label();
|
||||||
|
this.labelSpeed = new System.Windows.Forms.Label();
|
||||||
|
this.pictureBoxObject = new System.Windows.Forms.PictureBox();
|
||||||
|
this.panelObject = new System.Windows.Forms.Panel();
|
||||||
|
this.labelDopColor = new System.Windows.Forms.Label();
|
||||||
|
this.labelBaseColor = new System.Windows.Forms.Label();
|
||||||
|
this.buttonCancel = new System.Windows.Forms.Button();
|
||||||
|
this.buttonOk = new System.Windows.Forms.Button();
|
||||||
|
this.groupBoxConfig.SuspendLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownWeight)).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownSpeed)).BeginInit();
|
||||||
|
this.groupBoxColor.SuspendLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxObject)).BeginInit();
|
||||||
|
this.panelObject.SuspendLayout();
|
||||||
|
this.SuspendLayout();
|
||||||
|
//
|
||||||
|
// groupBoxConfig
|
||||||
|
//
|
||||||
|
this.groupBoxConfig.Controls.Add(this.numericUpDownWeight);
|
||||||
|
this.groupBoxConfig.Controls.Add(this.numericUpDownSpeed);
|
||||||
|
this.groupBoxConfig.Controls.Add(this.labelImrovedObject);
|
||||||
|
this.groupBoxConfig.Controls.Add(this.labelSimpleObject);
|
||||||
|
this.groupBoxConfig.Controls.Add(this.groupBoxColor);
|
||||||
|
this.groupBoxConfig.Controls.Add(this.checkBoxOrnamentWheel);
|
||||||
|
this.groupBoxConfig.Controls.Add(this.checkBoxBodyKit);
|
||||||
|
this.groupBoxConfig.Controls.Add(this.labelWeight);
|
||||||
|
this.groupBoxConfig.Controls.Add(this.labelSpeed);
|
||||||
|
this.groupBoxConfig.Location = new System.Drawing.Point(12, 12);
|
||||||
|
this.groupBoxConfig.Name = "groupBoxConfig";
|
||||||
|
this.groupBoxConfig.Size = new System.Drawing.Size(451, 197);
|
||||||
|
this.groupBoxConfig.TabIndex = 0;
|
||||||
|
this.groupBoxConfig.TabStop = false;
|
||||||
|
this.groupBoxConfig.Text = "Options";
|
||||||
|
//
|
||||||
|
// numericUpDownWeight
|
||||||
|
//
|
||||||
|
this.numericUpDownWeight.Location = new System.Drawing.Point(80, 70);
|
||||||
|
this.numericUpDownWeight.Maximum = new decimal(new int[] {
|
||||||
|
1000,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0});
|
||||||
|
this.numericUpDownWeight.Minimum = new decimal(new int[] {
|
||||||
|
100,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0});
|
||||||
|
this.numericUpDownWeight.Name = "numericUpDownWeight";
|
||||||
|
this.numericUpDownWeight.Size = new System.Drawing.Size(79, 23);
|
||||||
|
this.numericUpDownWeight.TabIndex = 12;
|
||||||
|
this.numericUpDownWeight.Value = new decimal(new int[] {
|
||||||
|
100,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0});
|
||||||
|
//
|
||||||
|
// numericUpDownSpeed
|
||||||
|
//
|
||||||
|
this.numericUpDownSpeed.Location = new System.Drawing.Point(80, 28);
|
||||||
|
this.numericUpDownSpeed.Maximum = new decimal(new int[] {
|
||||||
|
1000,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0});
|
||||||
|
this.numericUpDownSpeed.Minimum = new decimal(new int[] {
|
||||||
|
100,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0});
|
||||||
|
this.numericUpDownSpeed.Name = "numericUpDownSpeed";
|
||||||
|
this.numericUpDownSpeed.Size = new System.Drawing.Size(79, 23);
|
||||||
|
this.numericUpDownSpeed.TabIndex = 11;
|
||||||
|
this.numericUpDownSpeed.Value = new decimal(new int[] {
|
||||||
|
100,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0});
|
||||||
|
//
|
||||||
|
// labelImrovedObject
|
||||||
|
//
|
||||||
|
this.labelImrovedObject.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||||
|
this.labelImrovedObject.Location = new System.Drawing.Point(321, 149);
|
||||||
|
this.labelImrovedObject.Name = "labelImrovedObject";
|
||||||
|
this.labelImrovedObject.Size = new System.Drawing.Size(97, 36);
|
||||||
|
this.labelImrovedObject.TabIndex = 8;
|
||||||
|
this.labelImrovedObject.Text = "Improved";
|
||||||
|
this.labelImrovedObject.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||||||
|
this.labelImrovedObject.MouseDown += new System.Windows.Forms.MouseEventHandler(this.LabelObject_MouseDown);
|
||||||
|
//
|
||||||
|
// labelSimpleObject
|
||||||
|
//
|
||||||
|
this.labelSimpleObject.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||||
|
this.labelSimpleObject.Location = new System.Drawing.Point(209, 149);
|
||||||
|
this.labelSimpleObject.Name = "labelSimpleObject";
|
||||||
|
this.labelSimpleObject.Size = new System.Drawing.Size(96, 36);
|
||||||
|
this.labelSimpleObject.TabIndex = 7;
|
||||||
|
this.labelSimpleObject.Text = "Simple";
|
||||||
|
this.labelSimpleObject.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||||||
|
this.labelSimpleObject.MouseDown += new System.Windows.Forms.MouseEventHandler(this.LabelObject_MouseDown);
|
||||||
|
//
|
||||||
|
// groupBoxColor
|
||||||
|
//
|
||||||
|
this.groupBoxColor.Controls.Add(this.panelPurple);
|
||||||
|
this.groupBoxColor.Controls.Add(this.panelRed);
|
||||||
|
this.groupBoxColor.Controls.Add(this.panelYellow);
|
||||||
|
this.groupBoxColor.Controls.Add(this.panelWhite);
|
||||||
|
this.groupBoxColor.Controls.Add(this.panelGreen);
|
||||||
|
this.groupBoxColor.Controls.Add(this.panelBlack);
|
||||||
|
this.groupBoxColor.Controls.Add(this.panelGray);
|
||||||
|
this.groupBoxColor.Controls.Add(this.panelBlue);
|
||||||
|
this.groupBoxColor.Location = new System.Drawing.Point(203, 12);
|
||||||
|
this.groupBoxColor.Name = "groupBoxColor";
|
||||||
|
this.groupBoxColor.Size = new System.Drawing.Size(232, 134);
|
||||||
|
this.groupBoxColor.TabIndex = 6;
|
||||||
|
this.groupBoxColor.TabStop = false;
|
||||||
|
this.groupBoxColor.Text = "Color";
|
||||||
|
//
|
||||||
|
// panelPurple
|
||||||
|
//
|
||||||
|
this.panelPurple.BackColor = System.Drawing.Color.Purple;
|
||||||
|
this.panelPurple.Location = new System.Drawing.Point(175, 80);
|
||||||
|
this.panelPurple.Name = "panelPurple";
|
||||||
|
this.panelPurple.Size = new System.Drawing.Size(40, 40);
|
||||||
|
this.panelPurple.TabIndex = 11;
|
||||||
|
//
|
||||||
|
// panelRed
|
||||||
|
//
|
||||||
|
this.panelRed.BackColor = System.Drawing.Color.Red;
|
||||||
|
this.panelRed.Location = new System.Drawing.Point(6, 29);
|
||||||
|
this.panelRed.Name = "panelRed";
|
||||||
|
this.panelRed.Size = new System.Drawing.Size(40, 40);
|
||||||
|
this.panelRed.TabIndex = 6;
|
||||||
|
//
|
||||||
|
// panelYellow
|
||||||
|
//
|
||||||
|
this.panelYellow.BackColor = System.Drawing.Color.Yellow;
|
||||||
|
this.panelYellow.Location = new System.Drawing.Point(175, 29);
|
||||||
|
this.panelYellow.Name = "panelYellow";
|
||||||
|
this.panelYellow.Size = new System.Drawing.Size(40, 40);
|
||||||
|
this.panelYellow.TabIndex = 7;
|
||||||
|
//
|
||||||
|
// panelWhite
|
||||||
|
//
|
||||||
|
this.panelWhite.BackColor = System.Drawing.Color.White;
|
||||||
|
this.panelWhite.Location = new System.Drawing.Point(6, 80);
|
||||||
|
this.panelWhite.Name = "panelWhite";
|
||||||
|
this.panelWhite.Size = new System.Drawing.Size(40, 40);
|
||||||
|
this.panelWhite.TabIndex = 10;
|
||||||
|
//
|
||||||
|
// panelGreen
|
||||||
|
//
|
||||||
|
this.panelGreen.BackColor = System.Drawing.Color.Green;
|
||||||
|
this.panelGreen.Location = new System.Drawing.Point(63, 29);
|
||||||
|
this.panelGreen.Name = "panelGreen";
|
||||||
|
this.panelGreen.Size = new System.Drawing.Size(40, 40);
|
||||||
|
this.panelGreen.TabIndex = 9;
|
||||||
|
//
|
||||||
|
// panelBlack
|
||||||
|
//
|
||||||
|
this.panelBlack.BackColor = System.Drawing.Color.Black;
|
||||||
|
this.panelBlack.Location = new System.Drawing.Point(118, 80);
|
||||||
|
this.panelBlack.Name = "panelBlack";
|
||||||
|
this.panelBlack.Size = new System.Drawing.Size(40, 40);
|
||||||
|
this.panelBlack.TabIndex = 12;
|
||||||
|
//
|
||||||
|
// panelGray
|
||||||
|
//
|
||||||
|
this.panelGray.BackColor = System.Drawing.Color.Gray;
|
||||||
|
this.panelGray.Location = new System.Drawing.Point(63, 80);
|
||||||
|
this.panelGray.Name = "panelGray";
|
||||||
|
this.panelGray.Size = new System.Drawing.Size(40, 40);
|
||||||
|
this.panelGray.TabIndex = 13;
|
||||||
|
//
|
||||||
|
// panelBlue
|
||||||
|
//
|
||||||
|
this.panelBlue.BackColor = System.Drawing.Color.Blue;
|
||||||
|
this.panelBlue.Location = new System.Drawing.Point(118, 29);
|
||||||
|
this.panelBlue.Name = "panelBlue";
|
||||||
|
this.panelBlue.Size = new System.Drawing.Size(40, 40);
|
||||||
|
this.panelBlue.TabIndex = 8;
|
||||||
|
//
|
||||||
|
// checkBoxOrnamentWheel
|
||||||
|
//
|
||||||
|
this.checkBoxOrnamentWheel.AutoSize = true;
|
||||||
|
this.checkBoxOrnamentWheel.Location = new System.Drawing.Point(21, 149);
|
||||||
|
this.checkBoxOrnamentWheel.Name = "checkBoxOrnamentWheel";
|
||||||
|
this.checkBoxOrnamentWheel.Size = new System.Drawing.Size(180, 19);
|
||||||
|
this.checkBoxOrnamentWheel.TabIndex = 5;
|
||||||
|
this.checkBoxOrnamentWheel.Text = "The presence of an ornament";
|
||||||
|
this.checkBoxOrnamentWheel.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// checkBoxBodyKit
|
||||||
|
//
|
||||||
|
this.checkBoxBodyKit.AutoSize = true;
|
||||||
|
this.checkBoxBodyKit.Location = new System.Drawing.Point(21, 114);
|
||||||
|
this.checkBoxBodyKit.Name = "checkBoxBodyKit";
|
||||||
|
this.checkBoxBodyKit.Size = new System.Drawing.Size(151, 19);
|
||||||
|
this.checkBoxBodyKit.TabIndex = 4;
|
||||||
|
this.checkBoxBodyKit.Text = "The presence of a barrel";
|
||||||
|
this.checkBoxBodyKit.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// labelWeight
|
||||||
|
//
|
||||||
|
this.labelWeight.AutoSize = true;
|
||||||
|
this.labelWeight.Location = new System.Drawing.Point(21, 72);
|
||||||
|
this.labelWeight.Name = "labelWeight";
|
||||||
|
this.labelWeight.Size = new System.Drawing.Size(45, 15);
|
||||||
|
this.labelWeight.TabIndex = 1;
|
||||||
|
this.labelWeight.Text = "Weight";
|
||||||
|
//
|
||||||
|
// labelSpeed
|
||||||
|
//
|
||||||
|
this.labelSpeed.AutoSize = true;
|
||||||
|
this.labelSpeed.Location = new System.Drawing.Point(21, 30);
|
||||||
|
this.labelSpeed.Name = "labelSpeed";
|
||||||
|
this.labelSpeed.Size = new System.Drawing.Size(39, 15);
|
||||||
|
this.labelSpeed.TabIndex = 0;
|
||||||
|
this.labelSpeed.Text = "Speed";
|
||||||
|
//
|
||||||
|
// pictureBoxObject
|
||||||
|
//
|
||||||
|
this.pictureBoxObject.Location = new System.Drawing.Point(20, 44);
|
||||||
|
this.pictureBoxObject.Name = "pictureBoxObject";
|
||||||
|
this.pictureBoxObject.Size = new System.Drawing.Size(225, 125);
|
||||||
|
this.pictureBoxObject.TabIndex = 0;
|
||||||
|
this.pictureBoxObject.TabStop = false;
|
||||||
|
//
|
||||||
|
// panelObject
|
||||||
|
//
|
||||||
|
this.panelObject.AllowDrop = true;
|
||||||
|
this.panelObject.Controls.Add(this.labelDopColor);
|
||||||
|
this.panelObject.Controls.Add(this.labelBaseColor);
|
||||||
|
this.panelObject.Controls.Add(this.pictureBoxObject);
|
||||||
|
this.panelObject.Location = new System.Drawing.Point(489, 12);
|
||||||
|
this.panelObject.Name = "panelObject";
|
||||||
|
this.panelObject.Size = new System.Drawing.Size(262, 184);
|
||||||
|
this.panelObject.TabIndex = 9;
|
||||||
|
this.panelObject.DragDrop += new System.Windows.Forms.DragEventHandler(this.PanelObject_DragDrop);
|
||||||
|
this.panelObject.DragEnter += new System.Windows.Forms.DragEventHandler(this.PanelObject_DragEnter);
|
||||||
|
//
|
||||||
|
// labelDopColor
|
||||||
|
//
|
||||||
|
this.labelDopColor.AllowDrop = true;
|
||||||
|
this.labelDopColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||||
|
this.labelDopColor.Location = new System.Drawing.Point(141, 9);
|
||||||
|
this.labelDopColor.Name = "labelDopColor";
|
||||||
|
this.labelDopColor.Size = new System.Drawing.Size(104, 32);
|
||||||
|
this.labelDopColor.TabIndex = 2;
|
||||||
|
this.labelDopColor.Text = "Dop.color";
|
||||||
|
this.labelDopColor.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||||||
|
this.labelDopColor.DragDrop += new System.Windows.Forms.DragEventHandler(this.LabelDopColor_DragDrop);
|
||||||
|
this.labelDopColor.DragEnter += new System.Windows.Forms.DragEventHandler(this.LabelDopColor_DragEnter);
|
||||||
|
//
|
||||||
|
// labelBaseColor
|
||||||
|
//
|
||||||
|
this.labelBaseColor.AllowDrop = true;
|
||||||
|
this.labelBaseColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||||
|
this.labelBaseColor.Location = new System.Drawing.Point(20, 9);
|
||||||
|
this.labelBaseColor.Name = "labelBaseColor";
|
||||||
|
this.labelBaseColor.Size = new System.Drawing.Size(104, 32);
|
||||||
|
this.labelBaseColor.TabIndex = 1;
|
||||||
|
this.labelBaseColor.Text = "Color";
|
||||||
|
this.labelBaseColor.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||||||
|
this.labelBaseColor.DragDrop += new System.Windows.Forms.DragEventHandler(this.LabelBaseColor_DragDrop);
|
||||||
|
this.labelBaseColor.DragEnter += new System.Windows.Forms.DragEventHandler(this.LabelBaseColor_DragEnter);
|
||||||
|
//
|
||||||
|
// buttonCancel
|
||||||
|
//
|
||||||
|
this.buttonCancel.Location = new System.Drawing.Point(630, 202);
|
||||||
|
this.buttonCancel.Name = "buttonCancel";
|
||||||
|
this.buttonCancel.Size = new System.Drawing.Size(104, 30);
|
||||||
|
this.buttonCancel.TabIndex = 11;
|
||||||
|
this.buttonCancel.Text = "Cancel";
|
||||||
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// buttonOk
|
||||||
|
//
|
||||||
|
this.buttonOk.Location = new System.Drawing.Point(509, 202);
|
||||||
|
this.buttonOk.Name = "buttonOk";
|
||||||
|
this.buttonOk.Size = new System.Drawing.Size(104, 30);
|
||||||
|
this.buttonOk.TabIndex = 10;
|
||||||
|
this.buttonOk.Text = "Add";
|
||||||
|
this.buttonOk.UseVisualStyleBackColor = true;
|
||||||
|
this.buttonOk.Click += new System.EventHandler(this.ButtonOk_Click);
|
||||||
|
//
|
||||||
|
// FormGasolineTankerConfig
|
||||||
|
//
|
||||||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||||||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
|
this.ClientSize = new System.Drawing.Size(793, 244);
|
||||||
|
this.Controls.Add(this.panelObject);
|
||||||
|
this.Controls.Add(this.buttonCancel);
|
||||||
|
this.Controls.Add(this.groupBoxConfig);
|
||||||
|
this.Controls.Add(this.buttonOk);
|
||||||
|
this.Name = "FormGasolineTankerConfig";
|
||||||
|
this.Text = "Create object";
|
||||||
|
this.groupBoxConfig.ResumeLayout(false);
|
||||||
|
this.groupBoxConfig.PerformLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownWeight)).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownSpeed)).EndInit();
|
||||||
|
this.groupBoxColor.ResumeLayout(false);
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxObject)).EndInit();
|
||||||
|
this.panelObject.ResumeLayout(false);
|
||||||
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private GroupBox groupBoxConfig;
|
||||||
|
private CheckBox checkBoxOrnamentWheel;
|
||||||
|
private CheckBox checkBoxBodyKit;
|
||||||
|
private Label labelWeight;
|
||||||
|
private Label labelSpeed;
|
||||||
|
private Label labelImrovedObject;
|
||||||
|
private Label labelSimpleObject;
|
||||||
|
private GroupBox groupBoxColor;
|
||||||
|
private Panel panelPurple;
|
||||||
|
private Panel panelRed;
|
||||||
|
private Panel panelYellow;
|
||||||
|
private Panel panelWhite;
|
||||||
|
private Panel panelGreen;
|
||||||
|
private Panel panelBlack;
|
||||||
|
private Panel panelGray;
|
||||||
|
private Panel panelBlue;
|
||||||
|
private PictureBox pictureBoxObject;
|
||||||
|
private Panel panelObject;
|
||||||
|
private Label labelDopColor;
|
||||||
|
private Label labelBaseColor;
|
||||||
|
private Button buttonCancel;
|
||||||
|
private Button buttonOk;
|
||||||
|
private NumericUpDown numericUpDownWeight;
|
||||||
|
private NumericUpDown numericUpDownSpeed;
|
||||||
|
}
|
||||||
|
}
|
129
GasolineTanker/GasolineTanker/FormGasolineTankerConfig.cs
Normal file
129
GasolineTanker/GasolineTanker/FormGasolineTankerConfig.cs
Normal file
@ -0,0 +1,129 @@
|
|||||||
|
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 GasolineTanker
|
||||||
|
{
|
||||||
|
public partial class FormGasolineTankerConfig : Form
|
||||||
|
{
|
||||||
|
DrawingGasolineTanker _gasolineTanker = null;
|
||||||
|
private event Action<DrawingGasolineTanker> EventAddGasolineTanker;
|
||||||
|
public FormGasolineTankerConfig()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
panelBlack.MouseDown += PanelColor_MouseDown;
|
||||||
|
panelPurple.MouseDown += PanelColor_MouseDown;
|
||||||
|
panelGray.MouseDown += PanelColor_MouseDown;
|
||||||
|
panelGreen.MouseDown += PanelColor_MouseDown;
|
||||||
|
panelRed.MouseDown += PanelColor_MouseDown;
|
||||||
|
panelWhite.MouseDown += PanelColor_MouseDown;
|
||||||
|
panelYellow.MouseDown += PanelColor_MouseDown;
|
||||||
|
panelBlue.MouseDown += PanelColor_MouseDown;
|
||||||
|
|
||||||
|
buttonCancel.Click += (s, e) => Close();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void AddEvent(Action<DrawingGasolineTanker> ev)
|
||||||
|
{
|
||||||
|
if (EventAddGasolineTanker == null)
|
||||||
|
{
|
||||||
|
EventAddGasolineTanker = ev;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
EventAddGasolineTanker += ev;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void setDragEffect(DragEventArgs e, Type needTypeData, bool condition)
|
||||||
|
{
|
||||||
|
if (e.Data.GetDataPresent(needTypeData) && condition)
|
||||||
|
{
|
||||||
|
e.Effect = DragDropEffects.Copy;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
e.Effect = DragDropEffects.None;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LabelBaseColor_DragEnter(object sender, DragEventArgs e) => setDragEffect(e, typeof(Color), _gasolineTanker != null);
|
||||||
|
private void LabelDopColor_DragEnter(object sender, DragEventArgs e) => setDragEffect(e, typeof(Color), _gasolineTanker != null && _gasolineTanker is DrawingImprovedGasolineTanker);
|
||||||
|
private void LabelBaseColor_DragDrop(object sender, DragEventArgs e)
|
||||||
|
{
|
||||||
|
var color = (Color)e.Data.GetData(typeof(Color));
|
||||||
|
if (_gasolineTanker is DrawingImprovedGasolineTanker)
|
||||||
|
{
|
||||||
|
_gasolineTanker = ((DrawingImprovedGasolineTanker)_gasolineTanker).Copy(bodyColor: color);
|
||||||
|
}
|
||||||
|
else if (_gasolineTanker is DrawingGasolineTanker)
|
||||||
|
{
|
||||||
|
_gasolineTanker = _gasolineTanker.Copy(bodyColor: color);
|
||||||
|
}
|
||||||
|
DrawGasolineTanker();
|
||||||
|
}
|
||||||
|
private void LabelDopColor_DragDrop(object sender, DragEventArgs e)
|
||||||
|
{
|
||||||
|
var color = (Color)e.Data.GetData(typeof(Color));
|
||||||
|
var gasolineTanker = _gasolineTanker as DrawingImprovedGasolineTanker;
|
||||||
|
if (gasolineTanker != null)
|
||||||
|
{
|
||||||
|
_gasolineTanker = gasolineTanker.Copy(dopColor: color);
|
||||||
|
}
|
||||||
|
DrawGasolineTanker();
|
||||||
|
}
|
||||||
|
private void ButtonOk_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
EventAddGasolineTanker?.Invoke(_gasolineTanker);
|
||||||
|
Close();
|
||||||
|
}
|
||||||
|
private void LabelObject_MouseDown(object sender, MouseEventArgs e)
|
||||||
|
{
|
||||||
|
(sender as Label).DoDragDrop((sender as Label).Name, DragDropEffects.Move | DragDropEffects.Copy);
|
||||||
|
}
|
||||||
|
private void PanelColor_MouseDown(object sender, MouseEventArgs e)
|
||||||
|
{
|
||||||
|
(sender as Control).DoDragDrop((sender as Control).BackColor, DragDropEffects.Move | DragDropEffects.Copy);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void PanelObject_DragEnter(object sender, DragEventArgs e)
|
||||||
|
{
|
||||||
|
if (e.Data.GetDataPresent(DataFormats.Text))
|
||||||
|
{
|
||||||
|
e.Effect = DragDropEffects.Copy;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
e.Effect = DragDropEffects.None;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void DrawGasolineTanker()
|
||||||
|
{
|
||||||
|
Bitmap bmp = new(pictureBoxObject.Width, pictureBoxObject.Height);
|
||||||
|
Graphics gr = Graphics.FromImage(bmp);
|
||||||
|
_gasolineTanker?.SetPosition(5, 5, pictureBoxObject.Width, pictureBoxObject.Height);
|
||||||
|
_gasolineTanker?.DrawTransport(gr);
|
||||||
|
pictureBoxObject.Image = bmp;
|
||||||
|
}
|
||||||
|
private void PanelObject_DragDrop(object sender, DragEventArgs e)
|
||||||
|
{
|
||||||
|
switch (e.Data.GetData(DataFormats.Text).ToString())
|
||||||
|
{
|
||||||
|
case "labelSimpleObject":
|
||||||
|
_gasolineTanker = new DrawingGasolineTanker((int)numericUpDownSpeed.Value, (int)numericUpDownWeight.Value, Color.White);
|
||||||
|
break;
|
||||||
|
case "labelImrovedObject":
|
||||||
|
_gasolineTanker = new DrawingImprovedGasolineTanker((int)numericUpDownSpeed.Value, (int)numericUpDownWeight.Value, Color.White, Color.Black,
|
||||||
|
checkBoxBodyKit.Checked, checkBoxOrnamentWheel.Checked);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
DrawGasolineTanker();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
60
GasolineTanker/GasolineTanker/FormGasolineTankerConfig.resx
Normal file
60
GasolineTanker/GasolineTanker/FormGasolineTankerConfig.resx
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
<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>
|
||||||
|
</root>
|
338
GasolineTanker/GasolineTanker/FormMapWithSetGasolineTanker.Designer.cs
generated
Normal file
338
GasolineTanker/GasolineTanker/FormMapWithSetGasolineTanker.Designer.cs
generated
Normal file
@ -0,0 +1,338 @@
|
|||||||
|
namespace GasolineTanker
|
||||||
|
{
|
||||||
|
partial class FormMapWithSetGasolineTanker
|
||||||
|
{
|
||||||
|
/// <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.groupBoxTools = new System.Windows.Forms.GroupBox();
|
||||||
|
this.groupBoxMaps = new System.Windows.Forms.GroupBox();
|
||||||
|
this.buttonDeleteMap = new System.Windows.Forms.Button();
|
||||||
|
this.listBoxMaps = new System.Windows.Forms.ListBox();
|
||||||
|
this.buttonAddMap = new System.Windows.Forms.Button();
|
||||||
|
this.textBoxNewMapName = new System.Windows.Forms.TextBox();
|
||||||
|
this.comboBoxSelectorMap = new System.Windows.Forms.ComboBox();
|
||||||
|
this.maskedTextBoxPosition = new System.Windows.Forms.MaskedTextBox();
|
||||||
|
this.keyRight = new System.Windows.Forms.Button();
|
||||||
|
this.keyLeft = new System.Windows.Forms.Button();
|
||||||
|
this.keyUp = new System.Windows.Forms.Button();
|
||||||
|
this.keyDown = new System.Windows.Forms.Button();
|
||||||
|
this.buttonShowOnMap = new System.Windows.Forms.Button();
|
||||||
|
this.buttonShowStorage = new System.Windows.Forms.Button();
|
||||||
|
this.buttonRemoveGasolineTanker = new System.Windows.Forms.Button();
|
||||||
|
this.buttonAddGasolineTanker = new System.Windows.Forms.Button();
|
||||||
|
this.pictureBox = new System.Windows.Forms.PictureBox();
|
||||||
|
this.menuStrip = new System.Windows.Forms.MenuStrip();
|
||||||
|
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
|
this.SaveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
|
this.LoadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
|
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
|
||||||
|
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
|
||||||
|
this.groupBoxTools.SuspendLayout();
|
||||||
|
this.groupBoxMaps.SuspendLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
||||||
|
this.menuStrip.SuspendLayout();
|
||||||
|
this.SuspendLayout();
|
||||||
|
//
|
||||||
|
// groupBoxTools
|
||||||
|
//
|
||||||
|
this.groupBoxTools.Controls.Add(this.groupBoxMaps);
|
||||||
|
this.groupBoxTools.Controls.Add(this.maskedTextBoxPosition);
|
||||||
|
this.groupBoxTools.Controls.Add(this.keyRight);
|
||||||
|
this.groupBoxTools.Controls.Add(this.keyLeft);
|
||||||
|
this.groupBoxTools.Controls.Add(this.keyUp);
|
||||||
|
this.groupBoxTools.Controls.Add(this.keyDown);
|
||||||
|
this.groupBoxTools.Controls.Add(this.buttonShowOnMap);
|
||||||
|
this.groupBoxTools.Controls.Add(this.buttonShowStorage);
|
||||||
|
this.groupBoxTools.Controls.Add(this.buttonRemoveGasolineTanker);
|
||||||
|
this.groupBoxTools.Controls.Add(this.buttonAddGasolineTanker);
|
||||||
|
this.groupBoxTools.Dock = System.Windows.Forms.DockStyle.Right;
|
||||||
|
this.groupBoxTools.Location = new System.Drawing.Point(694, 24);
|
||||||
|
this.groupBoxTools.Name = "groupBoxTools";
|
||||||
|
this.groupBoxTools.Size = new System.Drawing.Size(200, 631);
|
||||||
|
this.groupBoxTools.TabIndex = 0;
|
||||||
|
this.groupBoxTools.TabStop = false;
|
||||||
|
this.groupBoxTools.Text = "Tools";
|
||||||
|
//
|
||||||
|
// groupBoxMaps
|
||||||
|
//
|
||||||
|
this.groupBoxMaps.Controls.Add(this.buttonDeleteMap);
|
||||||
|
this.groupBoxMaps.Controls.Add(this.listBoxMaps);
|
||||||
|
this.groupBoxMaps.Controls.Add(this.buttonAddMap);
|
||||||
|
this.groupBoxMaps.Controls.Add(this.textBoxNewMapName);
|
||||||
|
this.groupBoxMaps.Controls.Add(this.comboBoxSelectorMap);
|
||||||
|
this.groupBoxMaps.Location = new System.Drawing.Point(6, 22);
|
||||||
|
this.groupBoxMaps.Name = "groupBoxMaps";
|
||||||
|
this.groupBoxMaps.Size = new System.Drawing.Size(190, 305);
|
||||||
|
this.groupBoxMaps.TabIndex = 13;
|
||||||
|
this.groupBoxMaps.TabStop = false;
|
||||||
|
this.groupBoxMaps.Text = "Maps";
|
||||||
|
//
|
||||||
|
// buttonDeleteMap
|
||||||
|
//
|
||||||
|
this.buttonDeleteMap.Location = new System.Drawing.Point(6, 241);
|
||||||
|
this.buttonDeleteMap.Name = "buttonDeleteMap";
|
||||||
|
this.buttonDeleteMap.Size = new System.Drawing.Size(175, 49);
|
||||||
|
this.buttonDeleteMap.TabIndex = 16;
|
||||||
|
this.buttonDeleteMap.Text = "Delete Map";
|
||||||
|
this.buttonDeleteMap.UseVisualStyleBackColor = true;
|
||||||
|
this.buttonDeleteMap.Click += new System.EventHandler(this.buttonDeleteMap_Click);
|
||||||
|
//
|
||||||
|
// listBoxMaps
|
||||||
|
//
|
||||||
|
this.listBoxMaps.FormattingEnabled = true;
|
||||||
|
this.listBoxMaps.ItemHeight = 15;
|
||||||
|
this.listBoxMaps.Location = new System.Drawing.Point(6, 141);
|
||||||
|
this.listBoxMaps.Name = "listBoxMaps";
|
||||||
|
this.listBoxMaps.Size = new System.Drawing.Size(176, 94);
|
||||||
|
this.listBoxMaps.TabIndex = 15;
|
||||||
|
this.listBoxMaps.SelectedIndexChanged += new System.EventHandler(this.listBoxMaps_SelectedIndexChanged);
|
||||||
|
//
|
||||||
|
// buttonAddMap
|
||||||
|
//
|
||||||
|
this.buttonAddMap.Location = new System.Drawing.Point(6, 84);
|
||||||
|
this.buttonAddMap.Name = "buttonAddMap";
|
||||||
|
this.buttonAddMap.Size = new System.Drawing.Size(176, 51);
|
||||||
|
this.buttonAddMap.TabIndex = 14;
|
||||||
|
this.buttonAddMap.Text = "Add Map";
|
||||||
|
this.buttonAddMap.UseVisualStyleBackColor = true;
|
||||||
|
this.buttonAddMap.Click += new System.EventHandler(this.buttonAddMap_Click);
|
||||||
|
//
|
||||||
|
// textBoxNewMapName
|
||||||
|
//
|
||||||
|
this.textBoxNewMapName.Location = new System.Drawing.Point(6, 24);
|
||||||
|
this.textBoxNewMapName.Name = "textBoxNewMapName";
|
||||||
|
this.textBoxNewMapName.Size = new System.Drawing.Size(178, 23);
|
||||||
|
this.textBoxNewMapName.TabIndex = 13;
|
||||||
|
//
|
||||||
|
// comboBoxSelectorMap
|
||||||
|
//
|
||||||
|
this.comboBoxSelectorMap.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
||||||
|
this.comboBoxSelectorMap.FormattingEnabled = true;
|
||||||
|
this.comboBoxSelectorMap.Items.AddRange(new object[] {
|
||||||
|
"Simple map",
|
||||||
|
"Long map"});
|
||||||
|
this.comboBoxSelectorMap.Location = new System.Drawing.Point(6, 53);
|
||||||
|
this.comboBoxSelectorMap.Name = "comboBoxSelectorMap";
|
||||||
|
this.comboBoxSelectorMap.Size = new System.Drawing.Size(178, 23);
|
||||||
|
this.comboBoxSelectorMap.TabIndex = 12;
|
||||||
|
this.comboBoxSelectorMap.SelectedIndexChanged += new System.EventHandler(this.ComboBoxSelectorMap_SelectedIndexChanged);
|
||||||
|
//
|
||||||
|
// maskedTextBoxPosition
|
||||||
|
//
|
||||||
|
this.maskedTextBoxPosition.Location = new System.Drawing.Point(10, 391);
|
||||||
|
this.maskedTextBoxPosition.Mask = "00";
|
||||||
|
this.maskedTextBoxPosition.Name = "maskedTextBoxPosition";
|
||||||
|
this.maskedTextBoxPosition.Size = new System.Drawing.Size(184, 23);
|
||||||
|
this.maskedTextBoxPosition.TabIndex = 11;
|
||||||
|
//
|
||||||
|
// keyRight
|
||||||
|
//
|
||||||
|
this.keyRight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
|
this.keyRight.BackgroundImage = global::GasolineTanker.Properties.Resources.KeyRight;
|
||||||
|
this.keyRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||||
|
this.keyRight.Location = new System.Drawing.Point(122, 589);
|
||||||
|
this.keyRight.Name = "keyRight";
|
||||||
|
this.keyRight.Size = new System.Drawing.Size(30, 30);
|
||||||
|
this.keyRight.TabIndex = 10;
|
||||||
|
this.keyRight.UseVisualStyleBackColor = true;
|
||||||
|
this.keyRight.Click += new System.EventHandler(this.ButtonMove_Click);
|
||||||
|
//
|
||||||
|
// keyLeft
|
||||||
|
//
|
||||||
|
this.keyLeft.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
|
this.keyLeft.BackgroundImage = global::GasolineTanker.Properties.Resources.KeyLeft;
|
||||||
|
this.keyLeft.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||||
|
this.keyLeft.Location = new System.Drawing.Point(50, 589);
|
||||||
|
this.keyLeft.Name = "keyLeft";
|
||||||
|
this.keyLeft.Size = new System.Drawing.Size(30, 30);
|
||||||
|
this.keyLeft.TabIndex = 9;
|
||||||
|
this.keyLeft.UseVisualStyleBackColor = true;
|
||||||
|
this.keyLeft.Click += new System.EventHandler(this.ButtonMove_Click);
|
||||||
|
//
|
||||||
|
// keyUp
|
||||||
|
//
|
||||||
|
this.keyUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
|
this.keyUp.BackgroundImage = global::GasolineTanker.Properties.Resources.KeyUp;
|
||||||
|
this.keyUp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||||
|
this.keyUp.Location = new System.Drawing.Point(86, 553);
|
||||||
|
this.keyUp.Name = "keyUp";
|
||||||
|
this.keyUp.Size = new System.Drawing.Size(30, 30);
|
||||||
|
this.keyUp.TabIndex = 8;
|
||||||
|
this.keyUp.UseVisualStyleBackColor = true;
|
||||||
|
this.keyUp.Click += new System.EventHandler(this.ButtonMove_Click);
|
||||||
|
//
|
||||||
|
// keyDown
|
||||||
|
//
|
||||||
|
this.keyDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
|
this.keyDown.BackgroundImage = global::GasolineTanker.Properties.Resources.KeyDown;
|
||||||
|
this.keyDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||||
|
this.keyDown.Location = new System.Drawing.Point(86, 589);
|
||||||
|
this.keyDown.Name = "keyDown";
|
||||||
|
this.keyDown.Size = new System.Drawing.Size(30, 30);
|
||||||
|
this.keyDown.TabIndex = 7;
|
||||||
|
this.keyDown.UseVisualStyleBackColor = true;
|
||||||
|
this.keyDown.Click += new System.EventHandler(this.ButtonMove_Click);
|
||||||
|
//
|
||||||
|
// buttonShowOnMap
|
||||||
|
//
|
||||||
|
this.buttonShowOnMap.Location = new System.Drawing.Point(8, 500);
|
||||||
|
this.buttonShowOnMap.Name = "buttonShowOnMap";
|
||||||
|
this.buttonShowOnMap.Size = new System.Drawing.Size(186, 34);
|
||||||
|
this.buttonShowOnMap.TabIndex = 4;
|
||||||
|
this.buttonShowOnMap.Text = "Show on map";
|
||||||
|
this.buttonShowOnMap.UseVisualStyleBackColor = true;
|
||||||
|
this.buttonShowOnMap.Click += new System.EventHandler(this.ButtonShowOnMap_Click);
|
||||||
|
//
|
||||||
|
// buttonShowStorage
|
||||||
|
//
|
||||||
|
this.buttonShowStorage.Location = new System.Drawing.Point(8, 460);
|
||||||
|
this.buttonShowStorage.Name = "buttonShowStorage";
|
||||||
|
this.buttonShowStorage.Size = new System.Drawing.Size(186, 34);
|
||||||
|
this.buttonShowStorage.TabIndex = 3;
|
||||||
|
this.buttonShowStorage.Text = "Show storage";
|
||||||
|
this.buttonShowStorage.UseVisualStyleBackColor = true;
|
||||||
|
this.buttonShowStorage.Click += new System.EventHandler(this.ButtonShowStorage_Click);
|
||||||
|
//
|
||||||
|
// buttonRemoveGasolineTanker
|
||||||
|
//
|
||||||
|
this.buttonRemoveGasolineTanker.Location = new System.Drawing.Point(8, 420);
|
||||||
|
this.buttonRemoveGasolineTanker.Name = "buttonRemoveGasolineTanker";
|
||||||
|
this.buttonRemoveGasolineTanker.Size = new System.Drawing.Size(186, 34);
|
||||||
|
this.buttonRemoveGasolineTanker.TabIndex = 2;
|
||||||
|
this.buttonRemoveGasolineTanker.Text = "Remove gasoline tanker";
|
||||||
|
this.buttonRemoveGasolineTanker.UseVisualStyleBackColor = true;
|
||||||
|
this.buttonRemoveGasolineTanker.Click += new System.EventHandler(this.buttonRemoveGasolineTanker_Click);
|
||||||
|
//
|
||||||
|
// buttonAddGasolineTanker
|
||||||
|
//
|
||||||
|
this.buttonAddGasolineTanker.Location = new System.Drawing.Point(10, 351);
|
||||||
|
this.buttonAddGasolineTanker.Name = "buttonAddGasolineTanker";
|
||||||
|
this.buttonAddGasolineTanker.Size = new System.Drawing.Size(186, 34);
|
||||||
|
this.buttonAddGasolineTanker.TabIndex = 1;
|
||||||
|
this.buttonAddGasolineTanker.Text = "Add gasoline tanker";
|
||||||
|
this.buttonAddGasolineTanker.UseVisualStyleBackColor = true;
|
||||||
|
this.buttonAddGasolineTanker.Click += new System.EventHandler(this.ButtonAddGasolineTanker_Click);
|
||||||
|
//
|
||||||
|
// pictureBox
|
||||||
|
//
|
||||||
|
this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
|
this.pictureBox.Location = new System.Drawing.Point(0, 24);
|
||||||
|
this.pictureBox.Name = "pictureBox";
|
||||||
|
this.pictureBox.Size = new System.Drawing.Size(694, 631);
|
||||||
|
this.pictureBox.TabIndex = 1;
|
||||||
|
this.pictureBox.TabStop = false;
|
||||||
|
//
|
||||||
|
// menuStrip
|
||||||
|
//
|
||||||
|
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||||
|
this.fileToolStripMenuItem});
|
||||||
|
this.menuStrip.Location = new System.Drawing.Point(0, 0);
|
||||||
|
this.menuStrip.Name = "menuStrip";
|
||||||
|
this.menuStrip.Size = new System.Drawing.Size(894, 24);
|
||||||
|
this.menuStrip.TabIndex = 2;
|
||||||
|
//
|
||||||
|
// fileToolStripMenuItem
|
||||||
|
//
|
||||||
|
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||||
|
this.SaveToolStripMenuItem,
|
||||||
|
this.LoadToolStripMenuItem});
|
||||||
|
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
||||||
|
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
|
||||||
|
this.fileToolStripMenuItem.Text = "File";
|
||||||
|
//
|
||||||
|
// SaveToolStripMenuItem
|
||||||
|
//
|
||||||
|
this.SaveToolStripMenuItem.Name = "SaveToolStripMenuItem";
|
||||||
|
this.SaveToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||||
|
this.SaveToolStripMenuItem.Text = "Save";
|
||||||
|
this.SaveToolStripMenuItem.Click += new System.EventHandler(this.SaveToolStripMenuItem_Click);
|
||||||
|
//
|
||||||
|
// LoadToolStripMenuItem
|
||||||
|
//
|
||||||
|
this.LoadToolStripMenuItem.Name = "LoadToolStripMenuItem";
|
||||||
|
this.LoadToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||||
|
this.LoadToolStripMenuItem.Text = "Load";
|
||||||
|
this.LoadToolStripMenuItem.Click += new System.EventHandler(this.LoadToolStripMenuItem_Click);
|
||||||
|
//
|
||||||
|
// openFileDialog
|
||||||
|
//
|
||||||
|
this.openFileDialog.Filter = "txt file | *.txt";
|
||||||
|
//
|
||||||
|
// saveFileDialog
|
||||||
|
//
|
||||||
|
this.saveFileDialog.Filter = "txt file | *.txt";
|
||||||
|
//
|
||||||
|
// FormMapWithSetGasolineTanker
|
||||||
|
//
|
||||||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||||||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
|
this.ClientSize = new System.Drawing.Size(894, 655);
|
||||||
|
this.Controls.Add(this.pictureBox);
|
||||||
|
this.Controls.Add(this.groupBoxTools);
|
||||||
|
this.Controls.Add(this.menuStrip);
|
||||||
|
this.MainMenuStrip = this.menuStrip;
|
||||||
|
this.Name = "FormMapWithSetGasolineTanker";
|
||||||
|
this.Text = "FormMapWithSetGasolineTanker";
|
||||||
|
this.groupBoxTools.ResumeLayout(false);
|
||||||
|
this.groupBoxTools.PerformLayout();
|
||||||
|
this.groupBoxMaps.ResumeLayout(false);
|
||||||
|
this.groupBoxMaps.PerformLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
||||||
|
this.menuStrip.ResumeLayout(false);
|
||||||
|
this.menuStrip.PerformLayout();
|
||||||
|
this.ResumeLayout(false);
|
||||||
|
this.PerformLayout();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private GroupBox groupBoxTools;
|
||||||
|
private Button buttonShowOnMap;
|
||||||
|
private Button buttonShowStorage;
|
||||||
|
private Button buttonRemoveGasolineTanker;
|
||||||
|
private Button buttonAddGasolineTanker;
|
||||||
|
private ComboBox comboBoxSelectorMap;
|
||||||
|
private PictureBox pictureBox;
|
||||||
|
private Button keyRight;
|
||||||
|
private Button keyLeft;
|
||||||
|
private Button keyUp;
|
||||||
|
private Button keyDown;
|
||||||
|
private MaskedTextBox maskedTextBoxPosition;
|
||||||
|
private GroupBox groupBoxMaps;
|
||||||
|
private Button buttonAddMap;
|
||||||
|
private TextBox textBoxNewMapName;
|
||||||
|
private Button buttonDeleteMap;
|
||||||
|
private ListBox listBoxMaps;
|
||||||
|
private MenuStrip menuStrip;
|
||||||
|
private ToolStripMenuItem fileToolStripMenuItem;
|
||||||
|
private ToolStripMenuItem SaveToolStripMenuItem;
|
||||||
|
private ToolStripMenuItem LoadToolStripMenuItem;
|
||||||
|
private OpenFileDialog openFileDialog;
|
||||||
|
private SaveFileDialog saveFileDialog;
|
||||||
|
}
|
||||||
|
}
|
244
GasolineTanker/GasolineTanker/FormMapWithSetGasolineTanker.cs
Normal file
244
GasolineTanker/GasolineTanker/FormMapWithSetGasolineTanker.cs
Normal file
@ -0,0 +1,244 @@
|
|||||||
|
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 GasolineTanker
|
||||||
|
{
|
||||||
|
public partial class FormMapWithSetGasolineTanker : Form
|
||||||
|
{
|
||||||
|
private readonly Dictionary<string, AbstractMap> _mapsDict = new()
|
||||||
|
{
|
||||||
|
{ "Simple map", new SimpleMap() },
|
||||||
|
{ "Long map", new LongMap() }
|
||||||
|
};
|
||||||
|
private MapWithSetGasolienTankerGeneric<DrawingObjectGasolineTanker, AbstractMap> _mapGasolineTankerCollectionGeneric;
|
||||||
|
private readonly MapsCollection _mapsCollection;
|
||||||
|
public FormMapWithSetGasolineTanker()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
_mapsCollection = new MapsCollection(pictureBox.Width, pictureBox.Height);
|
||||||
|
comboBoxSelectorMap.Items.Clear();
|
||||||
|
foreach (var elem in _mapsDict)
|
||||||
|
{
|
||||||
|
comboBoxSelectorMap.Items.Add(elem.Key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void ReloadMaps()
|
||||||
|
{
|
||||||
|
int index = listBoxMaps.SelectedIndex;
|
||||||
|
listBoxMaps.Items.Clear();
|
||||||
|
|
||||||
|
for (int i = 0; i < _mapsCollection.Keys.Count; i++)
|
||||||
|
{
|
||||||
|
listBoxMaps.Items.Add(_mapsCollection.Keys[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (listBoxMaps.Items.Count > 0 && (index == -1 || index >= listBoxMaps.Items.Count))
|
||||||
|
{
|
||||||
|
listBoxMaps.SelectedIndex = 0;
|
||||||
|
}
|
||||||
|
else if (listBoxMaps.Items.Count > 0 && index > -1 && index < listBoxMaps.Items.Count)
|
||||||
|
{
|
||||||
|
listBoxMaps.SelectedIndex = index;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ButtonDeleteMap_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (listBoxMaps.SelectedIndex == -1)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (MessageBox.Show($"Delete map {listBoxMaps.SelectedItem}?", "Delete", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
||||||
|
{
|
||||||
|
_mapsCollection.DelMap(listBoxMaps.SelectedItem?.ToString() ?? string.Empty);
|
||||||
|
ReloadMaps();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void ButtonAddGasolineTanker_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
{
|
||||||
|
var formGasolineTankerConfig = new FormGasolineTankerConfig();
|
||||||
|
formGasolineTankerConfig.AddEvent(AddGasolineTankerOnMap);
|
||||||
|
formGasolineTankerConfig.Show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void AddGasolineTankerOnMap(DrawingGasolineTanker drawingGasolineTanker)
|
||||||
|
{
|
||||||
|
if (listBoxMaps.SelectedIndex == -1)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
DrawingObjectGasolineTanker gasolineTanker = new(drawingGasolineTanker);
|
||||||
|
if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] + gasolineTanker != -1)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Object added");
|
||||||
|
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MessageBox.Show("Failed to add object");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ButtonShowStorage_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (listBoxMaps.SelectedIndex == -1)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
pictureBox.Image = _mapGasolineTankerCollectionGeneric.ShowSet();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ButtonShowOnMap_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if(listBoxMaps.SelectedIndex == -1)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowOnMap();
|
||||||
|
}
|
||||||
|
private void ButtonMove_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (listBoxMaps.SelectedIndex == -1)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
string name = ((Button)sender)?.Name ?? string.Empty;
|
||||||
|
Direction dir = Direction.None;
|
||||||
|
switch (name)
|
||||||
|
{
|
||||||
|
case "keyUp":
|
||||||
|
dir = Direction.Up;
|
||||||
|
break;
|
||||||
|
case "keyDown":
|
||||||
|
dir = Direction.Down;
|
||||||
|
break;
|
||||||
|
case "keyLeft":
|
||||||
|
dir = Direction.Left;
|
||||||
|
break;
|
||||||
|
case "keyRight":
|
||||||
|
dir = Direction.Right;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
pictureBox.Image = _mapGasolineTankerCollectionGeneric.MoveObject(dir);
|
||||||
|
}
|
||||||
|
private void ComboBoxSelectorMap_SelectedIndexChanged(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
AbstractMap map = null;
|
||||||
|
switch (comboBoxSelectorMap.Text)
|
||||||
|
{
|
||||||
|
case "Simple map":
|
||||||
|
map = new SimpleMap();
|
||||||
|
break;
|
||||||
|
case "Long map":
|
||||||
|
map = new LongMap();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (map != null)
|
||||||
|
{
|
||||||
|
_mapGasolineTankerCollectionGeneric = new MapWithSetGasolienTankerGeneric<DrawingObjectGasolineTanker, AbstractMap>(
|
||||||
|
pictureBox.Width, pictureBox.Height, map);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_mapGasolineTankerCollectionGeneric = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void buttonAddMap_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (comboBoxSelectorMap.SelectedIndex == -1 || string.IsNullOrEmpty(textBoxNewMapName.Text))
|
||||||
|
{
|
||||||
|
MessageBox.Show("Not all data saved", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!_mapsDict.ContainsKey(comboBoxSelectorMap.Text))
|
||||||
|
{
|
||||||
|
MessageBox.Show("No such card", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_mapsCollection.AddMap(textBoxNewMapName.Text, _mapsDict[comboBoxSelectorMap.Text]);
|
||||||
|
ReloadMaps();
|
||||||
|
}
|
||||||
|
private void buttonDeleteMap_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (listBoxMaps.SelectedIndex == -1)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (MessageBox.Show($"Delete map {listBoxMaps.SelectedItem}?", "Delete", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
||||||
|
{
|
||||||
|
_mapsCollection.DelMap(listBoxMaps.SelectedItem?.ToString() ?? string.Empty);
|
||||||
|
ReloadMaps();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void listBoxMaps_SelectedIndexChanged(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void buttonRemoveGasolineTanker_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (listBoxMaps.SelectedIndex == -1)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (string.IsNullOrEmpty(maskedTextBoxPosition.Text))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (MessageBox.Show("Delete object?", "Delete", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
|
||||||
|
if (_mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos != null)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Object delete");
|
||||||
|
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MessageBox.Show("Errore delete object");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void SaveToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (saveFileDialog.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
if (_mapsCollection.SaveData(saveFileDialog.FileName))
|
||||||
|
{
|
||||||
|
MessageBox.Show("Save was successful", "Result", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MessageBox.Show("Not preserved", "Result", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LoadToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (openFileDialog.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
if (_mapsCollection.LoadData(openFileDialog.FileName))
|
||||||
|
{
|
||||||
|
MessageBox.Show("Download successful", "Result", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
|
ReloadMaps();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MessageBox.Show("Didn't load", "Result", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,69 @@
|
|||||||
|
<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="menuStrip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="openFileDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>125, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="saveFileDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>265, 17</value>
|
||||||
|
</metadata>
|
||||||
|
</root>
|
18
GasolineTanker/GasolineTanker/IDrawingObject.cs
Normal file
18
GasolineTanker/GasolineTanker/IDrawingObject.cs
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace GasolineTanker
|
||||||
|
{
|
||||||
|
internal interface IDrawingObject
|
||||||
|
{
|
||||||
|
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();
|
||||||
|
string GetInfo();
|
||||||
|
}
|
||||||
|
}
|
49
GasolineTanker/GasolineTanker/LongMap.cs
Normal file
49
GasolineTanker/GasolineTanker/LongMap.cs
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace GasolineTanker
|
||||||
|
{
|
||||||
|
internal class LongMap : 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, 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 < 5)
|
||||||
|
{
|
||||||
|
int xStart = _random.Next(0, 100);
|
||||||
|
int xEnd = _random.Next(80, 100);
|
||||||
|
|
||||||
|
for (int i = xStart; i <= xEnd; ++i)
|
||||||
|
{
|
||||||
|
_map[i, xStart] = _barrier;
|
||||||
|
}
|
||||||
|
|
||||||
|
counter++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
138
GasolineTanker/GasolineTanker/MapWithSetGasolienTankerGeneric.cs
Normal file
138
GasolineTanker/GasolineTanker/MapWithSetGasolienTankerGeneric.cs
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics.Metrics;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace GasolineTanker
|
||||||
|
{
|
||||||
|
internal class MapWithSetGasolienTankerGeneric<T, U>
|
||||||
|
where T : class, IDrawingObject
|
||||||
|
where U : AbstractMap
|
||||||
|
{
|
||||||
|
private readonly int _pictureWidth;
|
||||||
|
private readonly int _pictureHeight;
|
||||||
|
private readonly int _placeSizeWidth = 210;
|
||||||
|
private readonly int _placeSizeHeight = 90;
|
||||||
|
private readonly SetGasolineTankerGeneric<T> _setGasolineTanker;
|
||||||
|
private readonly U _map;
|
||||||
|
public MapWithSetGasolienTankerGeneric(int picWidth, int picHeight, U map)
|
||||||
|
{
|
||||||
|
int width = picWidth / _placeSizeWidth;
|
||||||
|
int height = picHeight / _placeSizeHeight;
|
||||||
|
_setGasolineTanker = new SetGasolineTankerGeneric<T>(width * height);
|
||||||
|
_pictureWidth = picWidth;
|
||||||
|
_pictureHeight = picHeight;
|
||||||
|
_map = map;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int operator +(MapWithSetGasolienTankerGeneric<T, U> map, T gasolineTanker)
|
||||||
|
{
|
||||||
|
return map._setGasolineTanker.Insert(gasolineTanker);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static T operator -(MapWithSetGasolienTankerGeneric<T, U> map, int position)
|
||||||
|
{
|
||||||
|
return map._setGasolineTanker.Remove(position);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Bitmap ShowSet()
|
||||||
|
{
|
||||||
|
Bitmap bmp = new(_pictureWidth, _pictureHeight);
|
||||||
|
Graphics gr = Graphics.FromImage(bmp);
|
||||||
|
DrawBackground(gr);
|
||||||
|
DrawGasolineTanker(gr);
|
||||||
|
return bmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Bitmap ShowOnMap()
|
||||||
|
{
|
||||||
|
Shaking();
|
||||||
|
foreach (var gasolineTanker in _setGasolineTanker.GetGasolineTanker())
|
||||||
|
{
|
||||||
|
|
||||||
|
return _map.CreateMap(_pictureWidth, _pictureHeight, gasolineTanker);
|
||||||
|
|
||||||
|
}
|
||||||
|
return new(_pictureWidth, _pictureHeight);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Bitmap MoveObject(Direction direction)
|
||||||
|
{
|
||||||
|
if (_map != null)
|
||||||
|
{
|
||||||
|
return _map.MoveObject(direction);
|
||||||
|
}
|
||||||
|
return new(_pictureWidth, _pictureHeight);
|
||||||
|
}
|
||||||
|
public string GetData(char separatorType, char separatorData)
|
||||||
|
{
|
||||||
|
string data = $"{_map.GetType().Name}{separatorType}";
|
||||||
|
foreach (var gasolineTanker in _setGasolineTanker.GetGasolineTanker())
|
||||||
|
{
|
||||||
|
data += $"{gasolineTanker.GetInfo()}{separatorData}";
|
||||||
|
}
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
public void LoadData(string[] records)
|
||||||
|
{
|
||||||
|
foreach (var rec in records)
|
||||||
|
{
|
||||||
|
_setGasolineTanker.Insert(DrawingObjectGasolineTanker.Create(rec) as T);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void Shaking()
|
||||||
|
{
|
||||||
|
int j = _setGasolineTanker.Count - 1;
|
||||||
|
for (int i = 0; i < _setGasolineTanker.Count; i++)
|
||||||
|
{
|
||||||
|
if (_setGasolineTanker[i] == null)
|
||||||
|
{
|
||||||
|
for (; j > i; j--)
|
||||||
|
{
|
||||||
|
var gasolineTanker = _setGasolineTanker[j];
|
||||||
|
if (gasolineTanker != null)
|
||||||
|
{
|
||||||
|
_setGasolineTanker.Insert(gasolineTanker, i);
|
||||||
|
_setGasolineTanker.Remove(j);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (j <= i)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void DrawBackground(Graphics g)
|
||||||
|
{
|
||||||
|
Pen pen = new(Color.Black, 5);
|
||||||
|
for (int i = 0; i < _pictureWidth / _placeSizeWidth; i++)
|
||||||
|
{
|
||||||
|
for (int j = 0; j < _pictureHeight / _placeSizeHeight + 1; ++j)
|
||||||
|
{
|
||||||
|
g.DrawLine(pen, i * _placeSizeWidth + 10, j * _placeSizeHeight + 2, i * _placeSizeWidth + (int)(_placeSizeWidth * 0.8), j * _placeSizeHeight + 2);
|
||||||
|
g.DrawLine(pen, i * _placeSizeWidth + (int)(_placeSizeWidth * 0.8), j * _placeSizeHeight + 2, i * _placeSizeWidth + (int)(_placeSizeWidth * 0.9) + 10, j * _placeSizeHeight + 2 + 20);
|
||||||
|
g.DrawLine(pen, i * _placeSizeWidth + (int)(_placeSizeWidth * 0.9) + 10, j * _placeSizeHeight + 2 + 20, i * _placeSizeWidth + (int)(_placeSizeWidth * 0.9) + 10, j * _placeSizeHeight + 2 + 20);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void DrawGasolineTanker(Graphics g)
|
||||||
|
{
|
||||||
|
int width = _pictureWidth / _placeSizeWidth;
|
||||||
|
int height = _pictureHeight / _placeSizeHeight;
|
||||||
|
int i = 0;
|
||||||
|
|
||||||
|
foreach (var gasolineTanker in _setGasolineTanker.GetGasolineTanker())
|
||||||
|
{
|
||||||
|
gasolineTanker.SetObject(i % width * _placeSizeWidth+10, (height - 1 - i / width) * _placeSizeHeight + 10, _pictureWidth, _pictureHeight);
|
||||||
|
gasolineTanker.DrawningObject(g);
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
97
GasolineTanker/GasolineTanker/MapsCollection.cs
Normal file
97
GasolineTanker/GasolineTanker/MapsCollection.cs
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace GasolineTanker
|
||||||
|
{
|
||||||
|
internal class MapsCollection
|
||||||
|
{
|
||||||
|
readonly Dictionary<string, MapWithSetGasolienTankerGeneric<IDrawingObject, AbstractMap>> _mapStorages;
|
||||||
|
|
||||||
|
public List<string> Keys => _mapStorages.Keys.ToList();
|
||||||
|
|
||||||
|
private readonly int _pictureWidth;
|
||||||
|
|
||||||
|
private readonly int _pictureHeight;
|
||||||
|
private readonly char separatorDict = '|';
|
||||||
|
private readonly char separatorData = ';';
|
||||||
|
|
||||||
|
public MapsCollection(int pictureWidth, int pictureHeight)
|
||||||
|
{
|
||||||
|
_mapStorages = new Dictionary<string, MapWithSetGasolienTankerGeneric<IDrawingObject, AbstractMap>>();
|
||||||
|
_pictureWidth = pictureWidth;
|
||||||
|
_pictureHeight = pictureHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void AddMap(string name, AbstractMap map)
|
||||||
|
{
|
||||||
|
if (!_mapStorages.ContainsKey(name)) _mapStorages.Add(name, new MapWithSetGasolienTankerGeneric<IDrawingObject, AbstractMap>(_pictureWidth, _pictureHeight, map));
|
||||||
|
}
|
||||||
|
|
||||||
|
public void DelMap(string name)
|
||||||
|
{
|
||||||
|
_mapStorages.Remove(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
public MapWithSetGasolienTankerGeneric<IDrawingObject, AbstractMap> this[string ind]
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (_mapStorages.TryGetValue(ind, out var map)) return map;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public bool SaveData(string filename)
|
||||||
|
{
|
||||||
|
if (File.Exists(filename))
|
||||||
|
{
|
||||||
|
File.Delete(filename);
|
||||||
|
}
|
||||||
|
using (StreamWriter sw = new StreamWriter(filename))
|
||||||
|
{
|
||||||
|
sw.WriteLine($"MapsCollection");
|
||||||
|
foreach (var storage in _mapStorages)
|
||||||
|
{
|
||||||
|
sw.WriteLine($"{storage.Key}{separatorDict}{storage.Value.GetData(separatorDict, separatorData)}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public bool LoadData(string filename)
|
||||||
|
{
|
||||||
|
if (!File.Exists(filename))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
using (StreamReader sr = new StreamReader(filename))
|
||||||
|
{
|
||||||
|
string str;
|
||||||
|
_mapStorages.Clear();
|
||||||
|
str = sr.ReadLine();
|
||||||
|
if (!str.Contains("MapsCollection"))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
while ((str = sr.ReadLine()) != null)
|
||||||
|
{
|
||||||
|
var elem = str.Split(separatorDict);
|
||||||
|
AbstractMap map = null;
|
||||||
|
switch (elem[1])
|
||||||
|
{
|
||||||
|
case "Simple map":
|
||||||
|
map = new SimpleMap();
|
||||||
|
break;
|
||||||
|
case "Long map":
|
||||||
|
map = new LongMap();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
_mapStorages.Add(elem[0], new MapWithSetGasolienTankerGeneric<IDrawingObject, AbstractMap>(_pictureWidth, _pictureHeight, map));
|
||||||
|
_mapStorages[elem[0]].LoadData(elem[2].Split(separatorData, StringSplitOptions.RemoveEmptyEntries));
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -11,7 +11,7 @@ namespace GasolineTanker
|
|||||||
// 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 FormGasolineTanker());
|
Application.Run(new FormMapWithSetGasolineTanker());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
74
GasolineTanker/GasolineTanker/SetGasolineTankerGeneric.cs
Normal file
74
GasolineTanker/GasolineTanker/SetGasolineTankerGeneric.cs
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace GasolineTanker
|
||||||
|
{
|
||||||
|
internal class SetGasolineTankerGeneric<T>
|
||||||
|
where T : class
|
||||||
|
{
|
||||||
|
private readonly List<T> _places;
|
||||||
|
public int Count => _places.Count;
|
||||||
|
private readonly int _maxCount;
|
||||||
|
public SetGasolineTankerGeneric(int count)
|
||||||
|
{
|
||||||
|
_maxCount = count;
|
||||||
|
_places = new List<T>();
|
||||||
|
}
|
||||||
|
public int Insert(T gasolineTanker)
|
||||||
|
{
|
||||||
|
if (_places.Count < _maxCount)
|
||||||
|
{
|
||||||
|
_places.Add(gasolineTanker);
|
||||||
|
for (int i = 0; i < _places.Count; i++)
|
||||||
|
{
|
||||||
|
if (_places[i] == gasolineTanker) return i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
public int Insert(T gasolineTanker, int position)
|
||||||
|
{
|
||||||
|
if (position < 0 || position >= _places.Count) return -1;
|
||||||
|
_places.Insert(position, gasolineTanker);
|
||||||
|
return position;
|
||||||
|
}
|
||||||
|
public T Remove(int position)
|
||||||
|
{
|
||||||
|
if (position < 0 || position >= _places.Count) return null;
|
||||||
|
if (_places[position] == null) return null;
|
||||||
|
T removed = _places[position];
|
||||||
|
_places.RemoveAt(position);
|
||||||
|
return removed;
|
||||||
|
}
|
||||||
|
public T this[int position]
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (position < 0 || position >= _places.Count) return null;
|
||||||
|
return _places[position];
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if (position < 0 || position >= _places.Count) return;
|
||||||
|
_places.Insert(position, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public IEnumerable<T> GetGasolineTanker()
|
||||||
|
{
|
||||||
|
foreach (var gasolineTanker in _places)
|
||||||
|
{
|
||||||
|
if (gasolineTanker != null)
|
||||||
|
{
|
||||||
|
yield return gasolineTanker;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
yield break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
47
GasolineTanker/GasolineTanker/SimpleMap.cs
Normal file
47
GasolineTanker/GasolineTanker/SimpleMap.cs
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace GasolineTanker
|
||||||
|
{
|
||||||
|
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, i * _size_x, j * _size_y, i * (_size_x + 1), j * (_size_y + 1));
|
||||||
|
}
|
||||||
|
protected override void DrawRoadPart(Graphics g, int i, int j)
|
||||||
|
{
|
||||||
|
g.FillRectangle(roadColor, i * _size_x, j * _size_y, i * (_size_x + 1), j * (_size_y + 1));
|
||||||
|
}
|
||||||
|
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