Lab 02 hard without dopClasses
This commit is contained in:
parent
31d82d2a95
commit
93622be5ba
84
ProjectElectricLocomotive/AbstractStrategy.java
Normal file
84
ProjectElectricLocomotive/AbstractStrategy.java
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
package ProjectElectricLocomotive;
|
||||||
|
|
||||||
|
public abstract class AbstractStrategy {
|
||||||
|
private IMoveableObject _moveableObject;
|
||||||
|
|
||||||
|
private Status _state = Status.NotInit;
|
||||||
|
protected int FieldWidth;
|
||||||
|
protected int FieldHeight;
|
||||||
|
public Status GetStatus() { return _state; }
|
||||||
|
|
||||||
|
public void SetData(IMoveableObject moveableObject, int width, int height)
|
||||||
|
{
|
||||||
|
if (moveableObject == null)
|
||||||
|
{
|
||||||
|
_state = Status.NotInit;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_state = Status.InProgress;
|
||||||
|
_moveableObject = moveableObject;
|
||||||
|
FieldWidth = width;
|
||||||
|
FieldHeight = height;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void MakeStep()
|
||||||
|
{
|
||||||
|
if (_state != Status.InProgress)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (IsTargetDestinaion())
|
||||||
|
{
|
||||||
|
_state = Status.Finish;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
MoveToTarget();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected boolean MoveLeft(){
|
||||||
|
return MoveTo(DyrectionType.Left);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected boolean MoveRight(){
|
||||||
|
return MoveTo(DyrectionType.Right);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected boolean MoveUp(){
|
||||||
|
return MoveTo(DyrectionType.Up);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected boolean MoveDown(){
|
||||||
|
return MoveTo(DyrectionType.Down);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Параметры объекта
|
||||||
|
protected ObjectParameters/*?*/ GetObjectParameters(){
|
||||||
|
if(_moveableObject == null) return null;
|
||||||
|
return _moveableObject.GetObjectPosition();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected int/*?*/ GetStep()
|
||||||
|
{
|
||||||
|
if (_state != Status.InProgress)
|
||||||
|
{
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return _moveableObject.GetStep();
|
||||||
|
}
|
||||||
|
protected abstract void MoveToTarget();
|
||||||
|
|
||||||
|
protected abstract boolean IsTargetDestinaion();
|
||||||
|
|
||||||
|
private boolean MoveTo(DyrectionType directionType)
|
||||||
|
{
|
||||||
|
if (_state != Status.InProgress)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (_moveableObject.CheckCanMove(directionType) == false) return false;
|
||||||
|
{
|
||||||
|
_moveableObject.MoveObject(directionType);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,173 +1,43 @@
|
|||||||
package ProjectElectricLocomotive;
|
package ProjectElectricLocomotive;
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
public class DrawingElectricLocomotive {
|
public class DrawingElectricLocomotive extends DrawingLocomotive {
|
||||||
public EntityElectricLocomotive EntityElectricLocomotive;
|
EntityElectricLocomotive electricLocomotive;
|
||||||
private DrawingWheel _drawingWheel;
|
public DrawingElectricLocomotive(int speed, double weight, Color bodyColor, Color additionalColor,
|
||||||
private int _pictureWidth;
|
boolean horns, boolean seifBatteries, int width, int height)
|
||||||
private int _pictureHeight;
|
|
||||||
private int _startPosX;
|
|
||||||
private int _startPosY;
|
|
||||||
private final int _locoWidth = 150;
|
|
||||||
private final int _locoHeight = 50;
|
|
||||||
|
|
||||||
public boolean Init(int speed, double weight, Color bodyColor, Color additionalColor,
|
|
||||||
boolean horns, boolean seifbatteries, int width, int height)
|
|
||||||
{
|
{
|
||||||
|
super(speed, weight, bodyColor, width, height, 85, 50);
|
||||||
if (width < _locoWidth || height < _locoHeight)
|
if (EntityLocomotive != null)
|
||||||
{
|
{
|
||||||
return false;
|
EntityLocomotive = new EntityElectricLocomotive(speed, width, bodyColor, additionalColor, horns, seifBatteries);
|
||||||
}
|
}
|
||||||
_pictureWidth = width;
|
|
||||||
_pictureHeight = height;
|
|
||||||
EntityElectricLocomotive = new EntityElectricLocomotive();
|
|
||||||
_drawingWheel = new DrawingWheel();
|
|
||||||
EntityElectricLocomotive.Init(speed, weight, bodyColor, additionalColor, horns, seifbatteries);
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
@Override
|
||||||
public void SetWheelsCount(int wheelsCount) {
|
public void DrawTransport(Graphics g)
|
||||||
_drawingWheel.SetWheelsCount(wheelsCount);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SetPosition(int x, int y)
|
|
||||||
{
|
{
|
||||||
if (x < 0 || x + _locoWidth > _pictureWidth)
|
if (EntityLocomotive instanceof EntityElectricLocomotive electricLocomotive) ///////// WARNING INSTANCEOF
|
||||||
{
|
{
|
||||||
x = _pictureWidth - _locoWidth;
|
Color colorBlack = Color.BLACK;
|
||||||
}
|
/*Brush blackBrush = new SolidBrush(Color.Black);*/
|
||||||
if (y < 0 || y + _locoHeight > _pictureHeight)
|
Color windows = Color.BLUE;
|
||||||
{
|
Color bodyColor = EntityLocomotive.BodyColor;
|
||||||
y = _pictureHeight - _locoHeight;
|
Color additionalBrush = electricLocomotive.AdditionalColor;
|
||||||
}
|
|
||||||
_startPosX = x;
|
|
||||||
_startPosY = y;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void MoveTransport(DyrectionType direction){
|
if (electricLocomotive.Horns) {
|
||||||
if(EntityElectricLocomotive == null) return;
|
//horns
|
||||||
switch(direction)
|
g.setColor(colorBlack);
|
||||||
{
|
g.fillRect(_startPosX + 30, _startPosY + 15, 20, 5);
|
||||||
case Up -> {
|
g.drawLine(_startPosX + 40, _startPosY + 15, _startPosX + 50, _startPosY + 10);
|
||||||
if(_startPosY - EntityElectricLocomotive.Step() >= 0)
|
g.drawLine(_startPosX + 50, _startPosY + 10, _startPosX + 45, _startPosY);
|
||||||
_startPosY -= (int) EntityElectricLocomotive.Step();
|
g.drawLine(_startPosX + 45, _startPosY + 15, _startPosX + 50, _startPosY + 10);
|
||||||
|
g.drawLine(_startPosX + 50, _startPosY + 10, _startPosX + 40, _startPosY);
|
||||||
}
|
}
|
||||||
case Down -> {
|
|
||||||
if(_startPosY + EntityElectricLocomotive.Step() + _locoHeight <= _pictureHeight)
|
if (electricLocomotive.SeifBatteries) {
|
||||||
_startPosY += (int) EntityElectricLocomotive.Step();
|
g.setColor(colorBlack);
|
||||||
}
|
g.fillRect(_startPosX + 80, _startPosY + 30, 5, 10);
|
||||||
case Left -> {
|
|
||||||
if(_startPosX - EntityElectricLocomotive.Step() >= 0)
|
|
||||||
_startPosX -= (int) EntityElectricLocomotive.Step();
|
|
||||||
}
|
|
||||||
case Right -> {
|
|
||||||
if(_startPosX + EntityElectricLocomotive.Step() + _locoWidth <= _pictureWidth)
|
|
||||||
_startPosX += (int) EntityElectricLocomotive.Step();
|
|
||||||
}
|
}
|
||||||
|
super.DrawTransport(g);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public void DrawTransport(Graphics g) {
|
|
||||||
if (EntityElectricLocomotive == null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Graphics2D g2d = (Graphics2D) g;
|
|
||||||
|
|
||||||
Color bodyColor = EntityElectricLocomotive.BodyColor;
|
|
||||||
Color additionalColor = EntityElectricLocomotive.AdditionalColor;
|
|
||||||
Color blackBrush = Color.BLACK;
|
|
||||||
Color windowsColor = Color.BLUE;
|
|
||||||
|
|
||||||
_drawingWheel.DrawWheels(g, additionalColor, _startPosX, _startPosY, 5, 5);
|
|
||||||
|
|
||||||
if(EntityElectricLocomotive.Horns)
|
|
||||||
{
|
|
||||||
g2d.fillRect(_startPosX + 30, _startPosY + 15, 20, 5);
|
|
||||||
g2d.drawLine(_startPosX + 40, _startPosY + 15, _startPosX + 50, _startPosY + 10);
|
|
||||||
g2d.drawLine(_startPosX + 50, _startPosY + 10, _startPosX + 45, _startPosY);
|
|
||||||
g2d.drawLine(_startPosX + 45, _startPosY + 15, _startPosX + 50, _startPosY + 10);
|
|
||||||
g2d.drawLine(_startPosX + 50, _startPosY + 10, _startPosX + 40, _startPosY);
|
|
||||||
g2d.setColor(blackBrush);
|
|
||||||
}
|
|
||||||
|
|
||||||
//locomotive
|
|
||||||
Polygon loco = new Polygon();
|
|
||||||
|
|
||||||
loco.addPoint(_startPosX, _startPosY + 40);
|
|
||||||
loco.addPoint(_startPosX, _startPosY + 30);
|
|
||||||
loco.addPoint(_startPosX + 20, _startPosY + 20);
|
|
||||||
loco.addPoint(_startPosX + 70, _startPosY + 20);
|
|
||||||
loco.addPoint(_startPosX +80, _startPosY + 30);
|
|
||||||
loco.addPoint(_startPosX +80, _startPosY + 40);
|
|
||||||
loco.addPoint(_startPosX +75, _startPosY + 45);
|
|
||||||
loco.addPoint(_startPosX +5, _startPosY + 45);
|
|
||||||
loco.addPoint(_startPosX, _startPosY + 40);
|
|
||||||
|
|
||||||
g2d.setColor(blackBrush);
|
|
||||||
g2d.drawPolygon(loco);
|
|
||||||
g2d.setColor(bodyColor);
|
|
||||||
g2d.fillPolygon(loco);
|
|
||||||
// windows
|
|
||||||
Polygon window = new Polygon();
|
|
||||||
window.addPoint(_startPosX + 10, _startPosY + 30);
|
|
||||||
window.addPoint(_startPosX +15, _startPosY + 25);
|
|
||||||
window.addPoint(_startPosX + 20, _startPosY + 25);
|
|
||||||
window.addPoint(_startPosX + 20, _startPosY + 30);
|
|
||||||
window.addPoint(_startPosX +10, _startPosY + 30);
|
|
||||||
|
|
||||||
g2d.setColor(blackBrush);
|
|
||||||
g2d.drawPolygon(window);
|
|
||||||
g2d.setColor(windowsColor);
|
|
||||||
g2d.fillPolygon(window);
|
|
||||||
|
|
||||||
g2d.fillRect(_startPosX + 25, _startPosY + 25, 10, 5);
|
|
||||||
g2d.setColor(windowsColor);
|
|
||||||
g2d.drawRect(_startPosX + 25, _startPosY + 25, 10, 5);
|
|
||||||
g2d.setColor(blackBrush);
|
|
||||||
//locomotive
|
|
||||||
|
|
||||||
if(EntityElectricLocomotive.SeifBatteries)
|
|
||||||
{
|
|
||||||
g2d.drawRect(_startPosX + 50, _startPosY + 25, 20, 10);
|
|
||||||
g2d.setColor(blackBrush);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//обязательные колеса
|
|
||||||
//loco
|
|
||||||
g2d.fillOval(_startPosX + 10, _startPosY + 45, 5, 5);
|
|
||||||
g2d.fillOval(_startPosX + 25, _startPosY + 45, 5, 5);
|
|
||||||
g2d.fillOval(_startPosX + 50, _startPosY + 45, 5, 5);
|
|
||||||
g2d.fillOval(_startPosX + 65, _startPosY + 45, 5, 5);
|
|
||||||
|
|
||||||
|
|
||||||
//telega
|
|
||||||
g2d.setColor(blackBrush);
|
|
||||||
g2d.fillOval(_startPosX + 95, _startPosY + 45, 5, 5);
|
|
||||||
g2d.fillOval(_startPosX + 140, _startPosY + 45, 5, 5);
|
|
||||||
|
|
||||||
//telejka
|
|
||||||
Polygon telega = new Polygon();
|
|
||||||
|
|
||||||
telega.addPoint(_startPosX + 90, _startPosY + 25);
|
|
||||||
telega.addPoint(_startPosX + 95, _startPosY + 20);
|
|
||||||
telega.addPoint(_startPosX + 145, _startPosY + 20);
|
|
||||||
telega.addPoint(_startPosX + 150, _startPosY + 25);
|
|
||||||
telega.addPoint(_startPosX + 150, _startPosY + 45);
|
|
||||||
telega.addPoint(_startPosX + 90, _startPosY + 45);
|
|
||||||
telega.addPoint(_startPosX + 90, _startPosY + 25);
|
|
||||||
|
|
||||||
g2d.setColor(additionalColor);
|
|
||||||
g2d.fillPolygon(telega);
|
|
||||||
g2d.setColor(blackBrush);
|
|
||||||
g2d.drawPolygon(telega);
|
|
||||||
//telejka
|
|
||||||
|
|
||||||
//телега окна
|
|
||||||
g2d.setColor(blackBrush);
|
|
||||||
g.drawLine(_startPosX + 80, _startPosY + 40, _startPosX + 90, _startPosY + 40);
|
|
||||||
g2d.setColor(windowsColor); g.fillRect(_startPosX + 95, _startPosY + 30, 10, 5);
|
|
||||||
g.fillRect(_startPosX + 115, _startPosY + 30, 10, 5);
|
|
||||||
g.fillRect(_startPosX + 135, _startPosY + 30, 10, 5);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
178
ProjectElectricLocomotive/DrawingLocomotive.java
Normal file
178
ProjectElectricLocomotive/DrawingLocomotive.java
Normal file
@ -0,0 +1,178 @@
|
|||||||
|
package ProjectElectricLocomotive;
|
||||||
|
import java.awt.*;
|
||||||
|
import java.security.cert.PolicyNode;
|
||||||
|
|
||||||
|
public class DrawingLocomotive {
|
||||||
|
public EntityLocomotive EntityLocomotive;
|
||||||
|
private DrawingWheel _drawingWheel;
|
||||||
|
private int _pictureWidth;
|
||||||
|
private int _pictureHeight;
|
||||||
|
public int _startPosX;
|
||||||
|
public int _startPosY;
|
||||||
|
private int _locoWidth = 150;
|
||||||
|
private int _locoHeight = 50;
|
||||||
|
|
||||||
|
public int GetPosX(){
|
||||||
|
return _startPosX;
|
||||||
|
}
|
||||||
|
public int GetPosY(){
|
||||||
|
return _startPosY;
|
||||||
|
}
|
||||||
|
public int GetWidth(){
|
||||||
|
return _locoWidth;
|
||||||
|
}
|
||||||
|
public int GetHeight(){
|
||||||
|
return _locoHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
public DrawingLocomotive(int speed, double weight, Color bodyColor, int width, int heigth)
|
||||||
|
{
|
||||||
|
if (width < _locoWidth || heigth < _locoHeight)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_pictureWidth = width;
|
||||||
|
_pictureHeight = heigth;
|
||||||
|
EntityLocomotive = new EntityLocomotive(speed, weight, bodyColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected DrawingLocomotive(int speed, double weight, Color bodyColor, int width,
|
||||||
|
int height, int locoWidth, int locoHeight)
|
||||||
|
{
|
||||||
|
if (width < _locoWidth || height < _locoHeight)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_pictureWidth = width;
|
||||||
|
_pictureHeight = height;
|
||||||
|
_locoWidth = locoWidth;
|
||||||
|
_locoHeight = locoHeight;
|
||||||
|
EntityLocomotive = new EntityLocomotive(speed, weight, bodyColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Установка позиции
|
||||||
|
public void SetPosition(int x, int y)
|
||||||
|
{
|
||||||
|
if (x < 0 || x + _locoWidth > _pictureWidth)
|
||||||
|
{
|
||||||
|
x = _pictureWidth - _locoWidth;
|
||||||
|
}
|
||||||
|
if (y < 0 || y + _locoHeight > _pictureHeight)
|
||||||
|
{
|
||||||
|
y = _pictureHeight - _locoHeight;
|
||||||
|
}
|
||||||
|
_startPosX = x;
|
||||||
|
_startPosY = y;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void MoveTransport(DyrectionType direction) {
|
||||||
|
if (EntityLocomotive == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
switch (direction) {
|
||||||
|
case Left:
|
||||||
|
if (_startPosX - EntityLocomotive.Step() > 0) {
|
||||||
|
_startPosX -= (int) EntityLocomotive.Step();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case Up:
|
||||||
|
if (_startPosY - EntityLocomotive.Step() > 0) {
|
||||||
|
_startPosY -= (int) EntityLocomotive.Step();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case Right:
|
||||||
|
if (_startPosX + EntityLocomotive.Step() + _locoWidth < _pictureWidth) {
|
||||||
|
_startPosX += (int) EntityLocomotive.Step();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case Down:
|
||||||
|
if (_startPosY + EntityLocomotive.Step() + _locoHeight < _pictureHeight) {
|
||||||
|
_startPosY += (int) EntityLocomotive.Step();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public void DrawTransport(Graphics g)
|
||||||
|
{
|
||||||
|
{
|
||||||
|
if (EntityLocomotive == null) return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Color colorBlack = Color.BLACK;
|
||||||
|
/*Brush blackBrush = new SolidBrush(Color.Black);*/
|
||||||
|
Color windows = Color.BLUE;
|
||||||
|
Color bodyColor = EntityLocomotive.BodyColor;
|
||||||
|
|
||||||
|
//локомотив
|
||||||
|
g.setColor(bodyColor);
|
||||||
|
Polygon locoP = new Polygon();
|
||||||
|
locoP.addPoint(_startPosX, _startPosY + 40);
|
||||||
|
locoP.addPoint(_startPosX, _startPosY + 30);
|
||||||
|
locoP.addPoint(_startPosX + 20, _startPosY + 20);
|
||||||
|
locoP.addPoint(_startPosX + 70, _startPosY + 20);
|
||||||
|
locoP.addPoint(_startPosX +80, _startPosY + 30);
|
||||||
|
locoP.addPoint(_startPosX +80, _startPosY + 40);
|
||||||
|
locoP.addPoint(_startPosX +75, _startPosY + 45);
|
||||||
|
locoP.addPoint(_startPosX +5, _startPosY + 45);
|
||||||
|
locoP.addPoint(_startPosX, _startPosY + 40);
|
||||||
|
g.fillPolygon(locoP);
|
||||||
|
|
||||||
|
g.setColor(colorBlack);
|
||||||
|
/*locoP.addPoint(_startPosX, _startPosY + 40);
|
||||||
|
locoP.addPoint(_startPosX, _startPosY + 30);
|
||||||
|
locoP.addPoint(_startPosX + 20, _startPosY + 20);
|
||||||
|
locoP.addPoint(_startPosX + 70, _startPosY + 20);
|
||||||
|
locoP.addPoint(_startPosX +80, _startPosY + 30);
|
||||||
|
locoP.addPoint(_startPosX +80, _startPosY + 40);
|
||||||
|
locoP.addPoint(_startPosX +75, _startPosY + 45);
|
||||||
|
locoP.addPoint(_startPosX +5, _startPosY + 45);
|
||||||
|
locoP.addPoint(_startPosX, _startPosY + 40);*/
|
||||||
|
g.drawPolygon(locoP);
|
||||||
|
|
||||||
|
|
||||||
|
//окошки
|
||||||
|
Polygon window = new Polygon();
|
||||||
|
window.addPoint(_startPosX + 10, _startPosY + 30);
|
||||||
|
window.addPoint(_startPosX +15, _startPosY + 25);
|
||||||
|
window.addPoint(_startPosX + 20, _startPosY + 25);
|
||||||
|
window.addPoint(_startPosX + 20, _startPosY + 30);
|
||||||
|
window.addPoint(_startPosX +10, _startPosY + 30);
|
||||||
|
g.setColor(windows);
|
||||||
|
g.fillPolygon(window);
|
||||||
|
g.fillRect(_startPosX + 25, _startPosY + 25, 10, 5);
|
||||||
|
g.setColor(Color.black);
|
||||||
|
g.drawPolygon(window);
|
||||||
|
g.drawRect(_startPosX + 25, _startPosY + 25, 10, 5);
|
||||||
|
|
||||||
|
//обязательные колеса
|
||||||
|
//loco
|
||||||
|
g.fillOval(_startPosX + 10, _startPosY + 45, 5, 5);
|
||||||
|
g.fillOval(_startPosX + 25, _startPosY + 45, 5, 5);
|
||||||
|
g.fillOval(_startPosX + 50, _startPosY + 45, 5, 5);
|
||||||
|
g.fillOval(_startPosX + 65, _startPosY + 45, 5, 5);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean CanMove(DyrectionType direction)
|
||||||
|
{
|
||||||
|
if (EntityLocomotive == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
switch(direction) {
|
||||||
|
//влево
|
||||||
|
case Left:
|
||||||
|
if (_startPosX - EntityLocomotive.Step() > 0) return true;
|
||||||
|
break;
|
||||||
|
case Up:
|
||||||
|
if (_startPosY - EntityLocomotive.Step() > 0) return true;
|
||||||
|
break;
|
||||||
|
case Right:
|
||||||
|
if (_startPosX + EntityLocomotive.Step() < _pictureWidth) return true;
|
||||||
|
break;
|
||||||
|
case Down:
|
||||||
|
if (_startPosY + EntityLocomotive.Step() < _pictureHeight) return true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
28
ProjectElectricLocomotive/DrawingObjectLocomotive.java
Normal file
28
ProjectElectricLocomotive/DrawingObjectLocomotive.java
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
package ProjectElectricLocomotive;
|
||||||
|
|
||||||
|
public class DrawingObjectLocomotive implements IMoveableObject {
|
||||||
|
private DrawingLocomotive _drawningLocomotive = null;
|
||||||
|
|
||||||
|
public DrawingObjectLocomotive(DrawingLocomotive drawningLocomotive)
|
||||||
|
{
|
||||||
|
_drawningLocomotive = drawningLocomotive;
|
||||||
|
}
|
||||||
|
public ObjectParameters GetObjectPosition()
|
||||||
|
{
|
||||||
|
if (_drawningLocomotive == null || _drawningLocomotive.EntityLocomotive == null)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return new ObjectParameters(_drawningLocomotive.GetPosX(), _drawningLocomotive.GetPosY(),
|
||||||
|
_drawningLocomotive.GetWidth(), _drawningLocomotive.GetHeight());
|
||||||
|
}
|
||||||
|
public int GetStep(){
|
||||||
|
return (int)(_drawningLocomotive.EntityLocomotive.Step());
|
||||||
|
}
|
||||||
|
public boolean CheckCanMove(DyrectionType direction){
|
||||||
|
return _drawningLocomotive.CanMove(direction);
|
||||||
|
}
|
||||||
|
public void MoveObject(DyrectionType direction){
|
||||||
|
_drawningLocomotive.MoveTransport(direction);
|
||||||
|
}
|
||||||
|
}
|
@ -1,5 +1,5 @@
|
|||||||
package ProjectElectricLocomotive;
|
package ProjectElectricLocomotive;
|
||||||
|
|
||||||
public enum DyrectionType {
|
public enum DyrectionType {
|
||||||
Up, Down, Left, Right
|
Up, Down, Left, Right;
|
||||||
}
|
}
|
||||||
|
@ -2,25 +2,17 @@ package ProjectElectricLocomotive;
|
|||||||
|
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
|
||||||
public class EntityElectricLocomotive {
|
public class EntityElectricLocomotive extends EntityLocomotive {
|
||||||
public int Speed;
|
|
||||||
public double Weight;
|
|
||||||
public Color BodyColor;
|
|
||||||
public Color AdditionalColor;
|
public Color AdditionalColor;
|
||||||
public boolean Horns;
|
public boolean Horns;
|
||||||
|
|
||||||
public boolean SeifBatteries;
|
public boolean SeifBatteries;
|
||||||
public double Step()
|
public EntityElectricLocomotive(int speed, double weight, Color bodyColor, Color additionalColor, boolean horns, boolean seifBatteries)
|
||||||
{
|
{
|
||||||
return (double) Speed * 100 / Weight;
|
super(speed, weight, bodyColor);
|
||||||
}
|
|
||||||
public void Init(int speed, double weight, Color bodyColor, Color additionalColor,
|
|
||||||
boolean horns, boolean seifBatteries)
|
|
||||||
{
|
|
||||||
Speed = speed;
|
|
||||||
Weight = weight;
|
|
||||||
BodyColor = bodyColor;
|
|
||||||
AdditionalColor = additionalColor;
|
AdditionalColor = additionalColor;
|
||||||
Horns = horns;
|
Horns = horns;
|
||||||
SeifBatteries = seifBatteries;
|
SeifBatteries = seifBatteries;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
25
ProjectElectricLocomotive/EntityLocomotive.java
Normal file
25
ProjectElectricLocomotive/EntityLocomotive.java
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
package ProjectElectricLocomotive;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
public class EntityLocomotive {
|
||||||
|
public int Speed;
|
||||||
|
public double Weight;
|
||||||
|
public Color BodyColor;
|
||||||
|
|
||||||
|
public EntityLocomotive(int speed, double weight, Color bodyColor) {
|
||||||
|
Speed = speed;
|
||||||
|
Weight = weight;
|
||||||
|
BodyColor = bodyColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
public double Step()
|
||||||
|
{
|
||||||
|
return (double) Speed * 100 / Weight;
|
||||||
|
}
|
||||||
|
public void Init(int speed, double weight, Color bodyColor, Color additionalColor, boolean horns, boolean seifbatteries) {
|
||||||
|
Speed = speed;
|
||||||
|
Weight = weight;
|
||||||
|
BodyColor = bodyColor;
|
||||||
|
}
|
||||||
|
}
|
@ -1,64 +1,62 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="ProjectElectricLocomotive.FormElectricLocomotive">
|
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="ProjectElectricLocomotive.FormElectricLocomotive">
|
||||||
<grid id="27dc6" binding="pictureBox" layout-manager="GridLayoutManager" row-count="3" column-count="5" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
|
<grid id="27dc6" binding="pictureBox" layout-manager="GridLayoutManager" row-count="5" column-count="6" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
|
||||||
<margin top="0" left="0" bottom="0" right="0"/>
|
<margin top="0" left="0" bottom="0" right="0"/>
|
||||||
<constraints>
|
<constraints>
|
||||||
<xy x="24" y="37" width="635" height="500"/>
|
<xy x="24" y="37" width="663" height="500"/>
|
||||||
</constraints>
|
</constraints>
|
||||||
<properties>
|
<properties>
|
||||||
<minimumSize width="500" height="300"/>
|
<minimumSize width="650" height="400"/>
|
||||||
<preferredSize width="500" height="300"/>
|
<preferredSize width="650" height="400"/>
|
||||||
</properties>
|
</properties>
|
||||||
<border type="none">
|
<border type="none">
|
||||||
<font/>
|
<font/>
|
||||||
</border>
|
</border>
|
||||||
<children>
|
<children>
|
||||||
<hspacer id="ce44b">
|
|
||||||
<constraints>
|
|
||||||
<grid row="2" column="1" row-span="1" col-span="1" vsize-policy="1" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
|
|
||||||
</constraints>
|
|
||||||
</hspacer>
|
|
||||||
<vspacer id="17764">
|
<vspacer id="17764">
|
||||||
<constraints>
|
<constraints>
|
||||||
<grid row="0" column="0" row-span="1" col-span="1" vsize-policy="6" hsize-policy="1" anchor="0" fill="2" indent="0" use-parent-layout="false"/>
|
<grid row="2" column="0" row-span="1" col-span="1" vsize-policy="6" hsize-policy="1" anchor="0" fill="2" indent="0" use-parent-layout="false"/>
|
||||||
</constraints>
|
</constraints>
|
||||||
</vspacer>
|
</vspacer>
|
||||||
<component id="2fa92" class="javax.swing.JButton" binding="buttonDown">
|
<component id="6cb47" class="javax.swing.JButton" binding="buttonCreateElectricLocomotive">
|
||||||
<constraints>
|
<constraints>
|
||||||
<grid row="2" column="3" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false">
|
<grid row="4" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
|
||||||
<minimum-size width="30" height="30"/>
|
|
||||||
<preferred-size width="30" height="30"/>
|
|
||||||
<maximum-size width="30" height="30"/>
|
|
||||||
</grid>
|
|
||||||
</constraints>
|
</constraints>
|
||||||
<properties>
|
<properties>
|
||||||
<hideActionText value="true"/>
|
<text value="Создать электролокомотив"/>
|
||||||
<horizontalTextPosition value="0"/>
|
|
||||||
<icon value="ProjectElectricLocomotive/img/arrowDown.jpg"/>
|
|
||||||
<text value=""/>
|
|
||||||
</properties>
|
</properties>
|
||||||
</component>
|
</component>
|
||||||
<component id="326c5" class="javax.swing.JButton" binding="buttonLeft">
|
<component id="ca377" class="javax.swing.JButton" binding="buttonCreateLocomotive">
|
||||||
<constraints>
|
<constraints>
|
||||||
<grid row="2" column="2" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="0" indent="0" use-parent-layout="false">
|
<grid row="4" column="1" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
|
||||||
<minimum-size width="30" height="30"/>
|
|
||||||
<preferred-size width="30" height="30"/>
|
|
||||||
<maximum-size width="30" height="30"/>
|
|
||||||
</grid>
|
|
||||||
</constraints>
|
</constraints>
|
||||||
<properties>
|
<properties>
|
||||||
<hideActionText value="false"/>
|
<text value="Создать локомотив"/>
|
||||||
<horizontalTextPosition value="0"/>
|
</properties>
|
||||||
<icon value="ProjectElectricLocomotive/img/arrowLeft.jpg"/>
|
</component>
|
||||||
<text value=""/>
|
<component id="dac01" class="javax.swing.JComboBox" binding="comboBoxStrategy">
|
||||||
|
<constraints>
|
||||||
|
<grid row="0" column="2" row-span="1" col-span="1" vsize-policy="0" hsize-policy="2" anchor="8" fill="1" indent="0" use-parent-layout="false"/>
|
||||||
|
</constraints>
|
||||||
|
<properties>
|
||||||
|
<model>
|
||||||
|
<item value="MoveToCenter"/>
|
||||||
|
<item value="MoveToRightCorner"/>
|
||||||
|
</model>
|
||||||
|
<toolTipText value=""/>
|
||||||
|
</properties>
|
||||||
|
</component>
|
||||||
|
<component id="42f28" class="javax.swing.JButton" binding="buttonStep">
|
||||||
|
<constraints>
|
||||||
|
<grid row="1" column="2" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
|
||||||
|
</constraints>
|
||||||
|
<properties>
|
||||||
|
<text value="Шаг"/>
|
||||||
</properties>
|
</properties>
|
||||||
<clientProperties>
|
|
||||||
<hideActionText class="java.lang.Boolean" value="false"/>
|
|
||||||
</clientProperties>
|
|
||||||
</component>
|
</component>
|
||||||
<component id="cc460" class="javax.swing.JButton" binding="buttonRight">
|
<component id="cc460" class="javax.swing.JButton" binding="buttonRight">
|
||||||
<constraints>
|
<constraints>
|
||||||
<grid row="2" column="4" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false">
|
<grid row="4" column="5" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false">
|
||||||
<minimum-size width="30" height="30"/>
|
<minimum-size width="30" height="30"/>
|
||||||
<preferred-size width="30" height="30"/>
|
<preferred-size width="30" height="30"/>
|
||||||
<maximum-size width="30" height="30"/>
|
<maximum-size width="30" height="30"/>
|
||||||
@ -71,9 +69,24 @@
|
|||||||
<text value=""/>
|
<text value=""/>
|
||||||
</properties>
|
</properties>
|
||||||
</component>
|
</component>
|
||||||
|
<component id="2fa92" class="javax.swing.JButton" binding="buttonDown">
|
||||||
|
<constraints>
|
||||||
|
<grid row="4" column="4" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false">
|
||||||
|
<minimum-size width="30" height="30"/>
|
||||||
|
<preferred-size width="30" height="30"/>
|
||||||
|
<maximum-size width="30" height="30"/>
|
||||||
|
</grid>
|
||||||
|
</constraints>
|
||||||
|
<properties>
|
||||||
|
<hideActionText value="true"/>
|
||||||
|
<horizontalTextPosition value="0"/>
|
||||||
|
<icon value="ProjectElectricLocomotive/img/arrowDown.jpg"/>
|
||||||
|
<text value=""/>
|
||||||
|
</properties>
|
||||||
|
</component>
|
||||||
<component id="bbbb" class="javax.swing.JButton" binding="buttonUp">
|
<component id="bbbb" class="javax.swing.JButton" binding="buttonUp">
|
||||||
<constraints>
|
<constraints>
|
||||||
<grid row="1" column="3" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false">
|
<grid row="3" column="4" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false">
|
||||||
<minimum-size width="30" height="30"/>
|
<minimum-size width="30" height="30"/>
|
||||||
<preferred-size width="30" height="30"/>
|
<preferred-size width="30" height="30"/>
|
||||||
<maximum-size width="30" height="30"/>
|
<maximum-size width="30" height="30"/>
|
||||||
@ -90,13 +103,23 @@
|
|||||||
<hideActionText class="java.lang.Boolean" value="false"/>
|
<hideActionText class="java.lang.Boolean" value="false"/>
|
||||||
</clientProperties>
|
</clientProperties>
|
||||||
</component>
|
</component>
|
||||||
<component id="6cb47" class="javax.swing.JButton" binding="buttonCreate">
|
<component id="326c5" class="javax.swing.JButton" binding="buttonLeft">
|
||||||
<constraints>
|
<constraints>
|
||||||
<grid row="2" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
|
<grid row="4" column="3" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="0" indent="0" use-parent-layout="false">
|
||||||
|
<minimum-size width="30" height="30"/>
|
||||||
|
<preferred-size width="30" height="30"/>
|
||||||
|
<maximum-size width="30" height="30"/>
|
||||||
|
</grid>
|
||||||
</constraints>
|
</constraints>
|
||||||
<properties>
|
<properties>
|
||||||
<text value="Создать"/>
|
<hideActionText value="false"/>
|
||||||
|
<horizontalTextPosition value="0"/>
|
||||||
|
<icon value="ProjectElectricLocomotive/img/arrowLeft.jpg"/>
|
||||||
|
<text value=""/>
|
||||||
</properties>
|
</properties>
|
||||||
|
<clientProperties>
|
||||||
|
<hideActionText class="java.lang.Boolean" value="false"/>
|
||||||
|
</clientProperties>
|
||||||
</component>
|
</component>
|
||||||
</children>
|
</children>
|
||||||
</grid>
|
</grid>
|
||||||
|
@ -1,17 +1,23 @@
|
|||||||
package ProjectElectricLocomotive;
|
package ProjectElectricLocomotive;
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
import java.awt.event.ActionEvent;
|
||||||
import java.awt.event.ActionListener;
|
import java.awt.event.ActionListener;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
public class FormElectricLocomotive {
|
public class FormElectricLocomotive {
|
||||||
DrawingElectricLocomotive _drawingElectricLocomotive = new DrawingElectricLocomotive();
|
//DrawingElectricLocomotive _drawingElectricLocomotive = new DrawingElectricLocomotive();
|
||||||
private JButton buttonCreate;
|
private JButton buttonCreateElectricLocomotive;
|
||||||
private JPanel pictureBox;
|
private JPanel pictureBox;
|
||||||
private JButton buttonUp;
|
private JButton buttonUp;
|
||||||
private JButton buttonDown;
|
private JButton buttonDown;
|
||||||
private JButton buttonLeft;
|
private JButton buttonLeft;
|
||||||
private JButton buttonRight;
|
private JButton buttonRight;
|
||||||
|
public JComboBox comboBoxStrategy;
|
||||||
|
private JButton buttonStep;
|
||||||
|
private JButton buttonCreateLocomotive;
|
||||||
|
private DrawingLocomotive _drawingLocomotive;
|
||||||
|
private AbstractStrategy _abstractStrategy;
|
||||||
|
|
||||||
public JPanel getPictureBox() {
|
public JPanel getPictureBox() {
|
||||||
return pictureBox;
|
return pictureBox;
|
||||||
@ -23,41 +29,82 @@ public class FormElectricLocomotive {
|
|||||||
buttonLeft.setName("buttonLeft");
|
buttonLeft.setName("buttonLeft");
|
||||||
buttonRight.setName("buttonRight");
|
buttonRight.setName("buttonRight");
|
||||||
|
|
||||||
buttonCreate.addActionListener(e -> {
|
buttonCreateLocomotive.addActionListener(e -> {
|
||||||
_drawingElectricLocomotive = new DrawingElectricLocomotive();
|
Random rnd = new Random();
|
||||||
Random random = new Random();
|
_drawingLocomotive = new DrawingLocomotive(rnd.nextInt(100, 300), rnd.nextInt(1000, 3000),
|
||||||
|
new Color(rnd.nextInt(0, 256), rnd.nextInt(0, 256), rnd.nextInt(0, 256)),
|
||||||
_drawingElectricLocomotive.Init(
|
pictureBox.getWidth(), pictureBox.getHeight());
|
||||||
random.nextInt(100, 300),
|
_drawingLocomotive.SetPosition(rnd.nextInt(10, 100), rnd.nextInt(10, 100));
|
||||||
random.nextInt(1000, 3000),
|
|
||||||
new Color(random.nextInt(256), random.nextInt(256), random.nextInt(256)),
|
|
||||||
new Color(random.nextInt(256), random.nextInt(256), random.nextInt(256)),
|
|
||||||
random.nextBoolean(),
|
|
||||||
random.nextBoolean(),
|
|
||||||
pictureBox.getWidth(),
|
|
||||||
pictureBox.getHeight()
|
|
||||||
);
|
|
||||||
|
|
||||||
_drawingElectricLocomotive.SetWheelsCount(random.nextInt(2, 5));
|
|
||||||
_drawingElectricLocomotive.SetPosition(random.nextInt(10, 100), random.nextInt(10, 100));
|
|
||||||
Draw();
|
Draw();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
buttonCreateElectricLocomotive.addActionListener(e -> {
|
||||||
|
Random random = new Random();
|
||||||
|
_drawingLocomotive = new DrawingElectricLocomotive(random.nextInt(100, 300),random.nextInt(1000, 3000),
|
||||||
|
new Color(random.nextInt(0, 256), random.nextInt(0, 256), random.nextInt(0, 256)),
|
||||||
|
new Color(random.nextInt(0, 256), random.nextInt(0, 256), random.nextInt(0, 256)),
|
||||||
|
random.nextBoolean(),
|
||||||
|
random.nextBoolean(),
|
||||||
|
pictureBox.getWidth(), pictureBox.getHeight());
|
||||||
|
_drawingLocomotive.SetPosition(random.nextInt(10, 100), random.nextInt(10, 100));
|
||||||
|
Draw();
|
||||||
|
});
|
||||||
|
|
||||||
|
buttonStep.addActionListener(new ActionListener() {
|
||||||
|
@Override
|
||||||
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
if (_drawingLocomotive == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (comboBoxStrategy.isEnabled()) {
|
||||||
|
switch(comboBoxStrategy.getSelectedIndex())
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
_abstractStrategy = new MoveToCenter();
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
_abstractStrategy = new MoveToRigthCorner();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
_abstractStrategy = null;
|
||||||
|
break;
|
||||||
|
} ;
|
||||||
|
if (_abstractStrategy == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_abstractStrategy.SetData(new
|
||||||
|
DrawingObjectLocomotive(_drawingLocomotive), pictureBox.getWidth(),
|
||||||
|
pictureBox.getHeight());
|
||||||
|
comboBoxStrategy.setEnabled(false);
|
||||||
|
}
|
||||||
|
if (_abstractStrategy == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_abstractStrategy.MakeStep();
|
||||||
|
Draw();
|
||||||
|
if (_abstractStrategy.GetStatus() == Status.Finish) {
|
||||||
|
comboBoxStrategy.setEnabled(true);
|
||||||
|
_abstractStrategy = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
ActionListener buttonMoveClickedListener = e -> {
|
ActionListener buttonMoveClickedListener = e -> {
|
||||||
String buttonName = ((JButton) e.getSource()).getName();
|
String buttonName = ((JButton) e.getSource()).getName();
|
||||||
|
|
||||||
switch (buttonName) {
|
switch (buttonName) {
|
||||||
case ("buttonUp") -> {
|
case ("buttonUp") -> {
|
||||||
_drawingElectricLocomotive.MoveTransport(DyrectionType.Up);
|
_drawingLocomotive.MoveTransport(DyrectionType.Up);
|
||||||
}
|
}
|
||||||
case ("buttonDown") -> {
|
case ("buttonDown") -> {
|
||||||
_drawingElectricLocomotive.MoveTransport(DyrectionType.Down);
|
_drawingLocomotive.MoveTransport(DyrectionType.Down);
|
||||||
}
|
}
|
||||||
case ("buttonLeft") -> {
|
case ("buttonLeft") -> {
|
||||||
_drawingElectricLocomotive.MoveTransport(DyrectionType.Left);
|
_drawingLocomotive.MoveTransport(DyrectionType.Left);
|
||||||
}
|
}
|
||||||
case ("buttonRight") -> {
|
case ("buttonRight") -> {
|
||||||
_drawingElectricLocomotive.MoveTransport(DyrectionType.Right);
|
_drawingLocomotive.MoveTransport(DyrectionType.Right);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Draw();
|
Draw();
|
||||||
@ -68,12 +115,11 @@ public class FormElectricLocomotive {
|
|||||||
buttonRight.addActionListener(buttonMoveClickedListener);
|
buttonRight.addActionListener(buttonMoveClickedListener);
|
||||||
}
|
}
|
||||||
public void Draw() {
|
public void Draw() {
|
||||||
if (_drawingElectricLocomotive.EntityElectricLocomotive == null) {
|
if (_drawingLocomotive.EntityLocomotive == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Graphics g = pictureBox.getGraphics();
|
Graphics g = pictureBox.getGraphics();
|
||||||
pictureBox.paint(g);
|
pictureBox.paint(g);
|
||||||
_drawingElectricLocomotive.DrawTransport(g);
|
_drawingLocomotive.DrawTransport(g);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
10
ProjectElectricLocomotive/IMoveableObject.java
Normal file
10
ProjectElectricLocomotive/IMoveableObject.java
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
package ProjectElectricLocomotive;
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
public interface IMoveableObject {
|
||||||
|
ObjectParameters GetObjectPosition();
|
||||||
|
int GetStep();
|
||||||
|
|
||||||
|
boolean CheckCanMove(DyrectionType direction);
|
||||||
|
void MoveObject(DyrectionType direction);
|
||||||
|
}
|
45
ProjectElectricLocomotive/MoveToCenter.java
Normal file
45
ProjectElectricLocomotive/MoveToCenter.java
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
package ProjectElectricLocomotive;
|
||||||
|
|
||||||
|
public class MoveToCenter extends AbstractStrategy{
|
||||||
|
@Override
|
||||||
|
protected boolean IsTargetDestinaion()
|
||||||
|
{
|
||||||
|
var objParams = GetObjectParameters();
|
||||||
|
if (objParams == null) return false;
|
||||||
|
|
||||||
|
return objParams.ObjectMiddleHorizontal() <= FieldWidth / 2 && objParams.ObjectMiddleHorizontal() + GetStep()
|
||||||
|
>= FieldWidth / 2 && objParams.ObjectMiddleVertical() <= FieldHeight / 2 && objParams.ObjectMiddleVertical()
|
||||||
|
+ GetStep() >= FieldHeight / 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void MoveToTarget()
|
||||||
|
{
|
||||||
|
var objParams = GetObjectParameters();
|
||||||
|
if (objParams == null) return;
|
||||||
|
var diffX = objParams.ObjectMiddleHorizontal() - FieldWidth / 2;
|
||||||
|
if (Math.abs(diffX) > GetStep())
|
||||||
|
{
|
||||||
|
if (diffX > 0)
|
||||||
|
{
|
||||||
|
MoveLeft();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MoveRight();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var diffY = objParams.ObjectMiddleVertical() - FieldHeight / 2;
|
||||||
|
if (Math.abs(diffY) > GetStep())
|
||||||
|
{
|
||||||
|
if (diffY > 0)
|
||||||
|
{
|
||||||
|
MoveUp();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MoveDown();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
23
ProjectElectricLocomotive/MoveToRigthCorner.java
Normal file
23
ProjectElectricLocomotive/MoveToRigthCorner.java
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
package ProjectElectricLocomotive;
|
||||||
|
|
||||||
|
public class MoveToRigthCorner extends AbstractStrategy {
|
||||||
|
@Override
|
||||||
|
protected boolean IsTargetDestinaion()
|
||||||
|
{
|
||||||
|
var objParams = GetObjectParameters();
|
||||||
|
if (objParams == null) return false;
|
||||||
|
|
||||||
|
return objParams.RightBorder() >= FieldWidth - GetStep() && objParams.DownBorder() >= FieldHeight - GetStep();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void MoveToTarget()
|
||||||
|
{
|
||||||
|
var objParams = GetObjectParameters();
|
||||||
|
if (objParams == null) return;
|
||||||
|
|
||||||
|
if (objParams.RightBorder() < FieldWidth - GetStep()) MoveRight();
|
||||||
|
if (objParams.DownBorder() < FieldHeight - GetStep()) MoveDown();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -1,3 +1,4 @@
|
|||||||
|
package ProjectElectricLocomotive;
|
||||||
public class ObjectParameters {
|
public class ObjectParameters {
|
||||||
private final int _x;
|
private final int _x;
|
||||||
private final int _y;
|
private final int _y;
|
7
ProjectElectricLocomotive/Status.java
Normal file
7
ProjectElectricLocomotive/Status.java
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
package ProjectElectricLocomotive;
|
||||||
|
|
||||||
|
public enum Status {
|
||||||
|
NotInit,
|
||||||
|
InProgress,
|
||||||
|
Finish
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user