попытка
This commit is contained in:
parent
f832c0c333
commit
c387d6137b
@ -19,7 +19,7 @@ public class DrawningContainerShip : DrawningShip
|
||||
/// <param name="container">Признак наличия контейнеров</param>
|
||||
public DrawningContainerShip(int speed, double weight, Color bodyColor, Color additionalColor, bool crane, bool container) : base(125, 60)
|
||||
{
|
||||
EntityShip = new EntityContainerShip(speed, weight, bodyColor, additionalColor, crane, container);
|
||||
EntityShip = new EntityContainerShip(speed, weight, bodyColor, additionalColor, crane, container);
|
||||
}
|
||||
/// <returns>true - объект создан, false - проверка не пройдена, нельзя создать объект в этих размерах</returns>
|
||||
public override void DrawTransport(Graphics g)
|
||||
@ -35,6 +35,18 @@ public class DrawningContainerShip : DrawningShip
|
||||
base.DrawTransport(g);
|
||||
_startPosX -= 5;
|
||||
_startPosY -= 30;
|
||||
|
||||
// контейнеры
|
||||
if (containerShip.Container)
|
||||
{
|
||||
g.DrawRectangle(pen, _startPosX.Value + 60, _startPosY.Value + 55, 40, 5);
|
||||
g.FillRectangle(additionalBrush, _startPosX.Value + 60, _startPosY.Value + 55, 40, 5);
|
||||
g.DrawRectangle(pen, _startPosX.Value + 60, _startPosY.Value + 50, 40, 5);
|
||||
g.FillRectangle(additionalBrush, _startPosX.Value + 60, _startPosY.Value + 50, 40, 5);
|
||||
g.DrawRectangle(pen, _startPosX.Value + 60, _startPosY.Value + 45, 40, 5);
|
||||
g.FillRectangle(additionalBrush, _startPosX.Value + 60, _startPosY.Value + 45, 40, 5);
|
||||
}
|
||||
|
||||
// кран
|
||||
if (containerShip.Crane)
|
||||
{
|
||||
@ -47,16 +59,6 @@ public class DrawningContainerShip : DrawningShip
|
||||
|
||||
}
|
||||
|
||||
// контейнеры
|
||||
if (containerShip.Container)
|
||||
{
|
||||
g.DrawRectangle(pen, _startPosX.Value + 60, _startPosY.Value + 55, 40, 5);
|
||||
g.FillRectangle(additionalBrush, _startPosX.Value + 60, _startPosY.Value + 55, 40, 5);
|
||||
g.DrawRectangle(pen, _startPosX.Value + 60, _startPosY.Value + 50, 40, 5);
|
||||
g.FillRectangle(additionalBrush, _startPosX.Value + 60, _startPosY.Value + 50, 40, 5);
|
||||
g.DrawRectangle(pen, _startPosX.Value + 60, _startPosY.Value + 45, 40, 5);
|
||||
g.FillRectangle(additionalBrush, _startPosX.Value + 60, _startPosY.Value + 45, 40, 5);
|
||||
}
|
||||
_startPosX += 5;
|
||||
_startPosY += 30;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user