PIbd-23_Mochalov_D.V._Locom.../DrawningLocomotive.java

130 lines
4.4 KiB
Java
Raw Normal View History

2022-09-24 17:19:00 +04:00
import java.awt.*;
class DrawningLocomotive {
public EntityLocomotive Locomotive;
2022-09-25 13:45:19 +04:00
public ExtraWheelsDraw extraWheelsDraw;
2022-09-24 17:19:00 +04:00
/// Левая координата отрисовки локомотива
private float _startPosX;
/// Верхняя координата отрисовки локомотива
private float _startPosY;
/// Ширина окна отрисовки
private Integer _pictureWidth = null;
/// Высота окна отрисовки
private Integer _pictureHeight = null;
/// Ширина отрисовки локомотива
2022-09-27 16:26:05 +04:00
private final int _locomotiveWidth = 120;
2022-09-24 17:19:00 +04:00
/// Высота отрисовки локомотива
private final int _locomotiveHeight = 50;
/// Инициализация свойств
2022-09-25 13:45:19 +04:00
public void Init(int speed, float weight, Color bodyColor, int wheelsNum, EntityLocomotive entity)
2022-09-24 17:19:00 +04:00
{
Locomotive = entity;
2022-09-27 16:26:05 +04:00
extraWheelsDraw = new ExtraWheelsDraw();
extraWheelsDraw.Init(wheelsNum, bodyColor);
2022-09-24 17:19:00 +04:00
Locomotive.Init(speed, weight, bodyColor);
}
/// Установка позиции локомотива
public void SetPosition(int x, int y, int width, int height)
{
if (x < 0 || x + _locomotiveWidth >= width)
{
return;
}
if (y < 0 || y + _locomotiveHeight >= height)
{
return;
}
_startPosX = x;
_startPosY = y;
_pictureWidth = width;
_pictureHeight = height;
}
public void MoveTransport(Direction direction)
{
if (_pictureWidth == null || _pictureHeight == null)
{
return;
}
switch (direction)
{
// вправо
case Right:
if (_startPosX + _locomotiveWidth + Locomotive.Step() < _pictureWidth)
{
_startPosX += Locomotive.Step();
}
else _startPosX = _pictureWidth - _locomotiveWidth;
break;
//влево
case Left:
if (_startPosX - Locomotive.Step() >= 0)
{
_startPosX -= Locomotive.Step();
}
else _startPosX = 0;
break;
//вверх
case Up:
if (_startPosY - Locomotive.Step() >= 0)
{
_startPosY -= Locomotive.Step();
}
else _startPosY = 0;
break;
//вниз
case Down:
if (_startPosY + _locomotiveHeight + Locomotive.Step() < _pictureHeight)
{
_startPosY += Locomotive.Step();
}
else _startPosY = _pictureHeight - _locomotiveHeight;
break;
}
}
2022-09-24 19:51:41 +04:00
public void DrawTransport(Graphics2D g) {
2022-09-24 18:00:56 +04:00
if (_startPosX < 0 || _startPosY < 0
|| _pictureHeight == null || _pictureWidth == null)
{
return;
}
//тело
g.setColor(Color.BLACK);
2022-09-27 16:26:05 +04:00
g.drawRect((int)_startPosX , (int)_startPosY, _locomotiveWidth - 20, _locomotiveHeight - 10);
2022-09-24 18:00:56 +04:00
//окна
g.setColor(Locomotive.getBodyColor());
g.fillRect((int)_startPosX + 10, (int)_startPosY + 10, 10, 10);
g.fillRect((int)_startPosX + 30, (int)_startPosY + 10, 10, 10);
g.fillRect((int)_startPosX + 80, (int)_startPosY + 10, 10, 10);
//дверь
g.setColor(Color.BLACK);
g.drawRect( (int)_startPosX + 50, (int)_startPosY + 10, 10, 20);
//колеса
2022-09-25 13:45:19 +04:00
extraWheelsDraw.DrawWheels((int)_startPosX, (int)_startPosY, g);
2022-09-24 18:00:56 +04:00
//движок
g.setColor(Locomotive.getBodyColor());
g.fillRect((int)_startPosX + 100, (int)_startPosY + 10, 10, 30);
2022-09-24 17:19:00 +04:00
}
public void ChangeBorders(int width, int height)
{
_pictureWidth = width;
2022-09-24 21:33:44 +04:00
_pictureHeight = height - 75;
2022-09-24 17:19:00 +04:00
if (_pictureWidth <= _locomotiveWidth || _pictureHeight <= _locomotiveHeight)
{
_pictureWidth = null;
_pictureHeight = null;
return;
}
if (_startPosX + _locomotiveWidth > _pictureWidth)
{
_startPosX = _pictureWidth - _locomotiveWidth;
}
if (_startPosY + _locomotiveHeight > _pictureHeight)
{
_startPosY = _pictureHeight - _locomotiveHeight;
}
}
}