Лабораторная 2
This commit is contained in:
parent
9bb10333ef
commit
41dc8a4325
29
Tank/.gitignore
vendored
Normal file
29
Tank/.gitignore
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
### IntelliJ IDEA ###
|
||||
out/
|
||||
!**/src/main/**/out/
|
||||
!**/src/test/**/out/
|
||||
|
||||
### Eclipse ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
.sts4-cache
|
||||
bin/
|
||||
!**/src/main/**/bin/
|
||||
!**/src/test/**/bin/
|
||||
|
||||
### NetBeans ###
|
||||
/nbproject/private/
|
||||
/nbbuild/
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
|
||||
### VS Code ###
|
||||
.vscode/
|
||||
|
||||
### Mac OS ###
|
||||
.DS_Store
|
5
Tank/.idea/.gitignore
vendored
5
Tank/.idea/.gitignore
vendored
@ -1,3 +1,8 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
|
@ -1,3 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_20" default="true" project-jdk-name="19" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
|
@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
|
||||
</component>
|
||||
</project>
|
@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
@ -1,5 +1,4 @@
|
||||
public abstract class AbstractStrategy {
|
||||
|
||||
// Перемещаемый объект
|
||||
private IMoveableObject _moveableObject;
|
||||
|
||||
@ -13,7 +12,9 @@ public abstract class AbstractStrategy {
|
||||
protected int FieldHeight;
|
||||
|
||||
// Статус перемещения
|
||||
public Status GetStatus() { return _state; }
|
||||
public Status GetStatus() {
|
||||
return _state;
|
||||
}
|
||||
|
||||
// Установка данных
|
||||
public void SetData(IMoveableObject moveableObject, int width, int height) {
|
||||
@ -32,7 +33,7 @@ public abstract class AbstractStrategy {
|
||||
if (_state != Status.InProgress) {
|
||||
return;
|
||||
}
|
||||
if (IsTargetDestinaion()) {
|
||||
if (IsTargetDestination()) {
|
||||
_state = Status.Finish;
|
||||
return;
|
||||
}
|
||||
@ -40,19 +41,29 @@ public abstract class AbstractStrategy {
|
||||
}
|
||||
|
||||
// Перемещение влево
|
||||
protected boolean MoveLeft() { return MoveTo(Direction.Left);}
|
||||
protected boolean MoveLeft() {
|
||||
return MoveTo(Direction.Left);
|
||||
}
|
||||
|
||||
// Перемещение вправо
|
||||
protected boolean MoveRight() { return MoveTo(Direction.Right);}
|
||||
protected boolean MoveRight() {
|
||||
return MoveTo(Direction.Right);
|
||||
}
|
||||
|
||||
// Перемещение вверх
|
||||
protected boolean MoveUp() { return MoveTo(Direction.Up);}
|
||||
protected boolean MoveUp() {
|
||||
return MoveTo(Direction.Up);
|
||||
}
|
||||
|
||||
// Перемещение вниз
|
||||
protected boolean MoveDown() { return MoveTo(Direction.Down);}
|
||||
protected boolean MoveDown() {
|
||||
return MoveTo(Direction.Down);
|
||||
}
|
||||
|
||||
// Параметры объекта
|
||||
protected ObjectParameters GetObjectParameters() { return _moveableObject.GetObjectPosition(); }
|
||||
protected ObjectParameters GetObjectParameters() {
|
||||
return _moveableObject.GetObjectPosition();
|
||||
}
|
||||
|
||||
// Шаг объекта
|
||||
protected int GetStep() {
|
||||
@ -66,7 +77,7 @@ public abstract class AbstractStrategy {
|
||||
protected abstract void MoveToTarget();
|
||||
|
||||
// Достигнута ли цель
|
||||
protected abstract boolean IsTargetDestinaion();
|
||||
protected abstract boolean IsTargetDestination();
|
||||
|
||||
// Попытка перемещения в требуемом направлении
|
||||
private boolean MoveTo(Direction Direction) {
|
||||
|
@ -4,9 +4,6 @@ import java.util.Random;
|
||||
public class DrawingArmoVehicle {
|
||||
protected IOrnamentForm OrnamentsForm;
|
||||
public EntityArmoVehicle ArmoVehicle;
|
||||
public EntityArmoVehicle getTank() {
|
||||
return ArmoVehicle;
|
||||
}
|
||||
protected int _pictureWidth;
|
||||
protected int _pictureHeight;
|
||||
protected int _startPosX;
|
||||
@ -27,7 +24,7 @@ public class DrawingArmoVehicle {
|
||||
OrnamentsForm = new DrawingWheelsCombination();
|
||||
break;
|
||||
case 1:
|
||||
OrnamentsForm = new DrawingAsteriskOrnament();
|
||||
OrnamentsForm = new DrawingStarOrnament();
|
||||
break;
|
||||
case 2:
|
||||
OrnamentsForm = new DrawingSuspensionOrnament();
|
||||
@ -47,7 +44,7 @@ public class DrawingArmoVehicle {
|
||||
public int GetPosX (){ return _startPosX; }
|
||||
public int GetPosY (){ return _startPosY; }
|
||||
public int GetWidth (){ return _TankWidth; }
|
||||
public int GetHeight (){return _TankHeight;}
|
||||
public int GetHeight (){ return _TankHeight; }
|
||||
|
||||
public boolean CanMove(Direction direction) {
|
||||
if (ArmoVehicle == null) {
|
||||
@ -91,38 +88,20 @@ public class DrawingArmoVehicle {
|
||||
}
|
||||
}
|
||||
|
||||
public void SetWheels(int number) {
|
||||
OrnamentsForm.setDigit(number);
|
||||
}
|
||||
public void DrawTransport(Graphics2D g) {
|
||||
if (ArmoVehicle == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
g.setColor(Color.BLUE);
|
||||
// body
|
||||
g.setColor(ArmoVehicle.BodyColor);
|
||||
int[] xPoints = {_startPosX + 5, _startPosX + 140, _startPosX + 130,_startPosX + 12};
|
||||
int[] yPoints = {_startPosY + 30, _startPosY + 30, _startPosY + 42, _startPosY + 42};
|
||||
int nPoints = 4;
|
||||
int nPoints = xPoints.length;
|
||||
g.drawPolygon(xPoints,yPoints,nPoints);
|
||||
g.fillPolygon(xPoints,yPoints,nPoints);
|
||||
|
||||
//wheels
|
||||
OrnamentsForm.Draw(g, _startPosX, _startPosY);
|
||||
}
|
||||
|
||||
public void ChangeBorders(int width,int height) {
|
||||
_pictureWidth = width;
|
||||
_pictureHeight = height;
|
||||
if (_pictureWidth<=_TankWidth||_pictureHeight<=_TankHeight) {
|
||||
_pictureWidth = Integer.parseInt(null);
|
||||
_pictureHeight = Integer.parseInt(null);
|
||||
return;
|
||||
}
|
||||
if (_startPosX + _TankWidth > _pictureWidth) {
|
||||
_startPosX = _pictureWidth - _TankWidth;
|
||||
}
|
||||
if (_startPosY + _TankHeight > _pictureHeight) {
|
||||
_startPosY = _pictureHeight - _TankHeight;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,17 +1,17 @@
|
||||
public class DrawingObjectTank implements IMoveableObject {
|
||||
private DrawingArmoVehicle _ArmoVehicle = null;
|
||||
public DrawingObjectTank(DrawingArmoVehicle drawingTrain)
|
||||
private DrawingArmoVehicle _drawingArmoVehicle = null;
|
||||
public DrawingObjectTank(DrawingArmoVehicle drawingTank)
|
||||
{
|
||||
_ArmoVehicle = drawingTrain;
|
||||
_drawingArmoVehicle = drawingTank;
|
||||
}
|
||||
public ObjectParameters GetObjectPosition() {
|
||||
if (_ArmoVehicle == null || _ArmoVehicle.ArmoVehicle == null) {
|
||||
if (_drawingArmoVehicle == null || _drawingArmoVehicle.ArmoVehicle == null) {
|
||||
return null;
|
||||
}
|
||||
return new ObjectParameters(_ArmoVehicle.GetPosX(),_ArmoVehicle.GetPosY(),
|
||||
_ArmoVehicle.GetWidth(), _ArmoVehicle.GetHeight());
|
||||
return new ObjectParameters(_drawingArmoVehicle.GetPosX(),_drawingArmoVehicle.GetPosY(),
|
||||
_drawingArmoVehicle.GetWidth(), _drawingArmoVehicle.GetHeight());
|
||||
}
|
||||
public int GetStep(){ return (int)_ArmoVehicle.ArmoVehicle.Step; }
|
||||
public boolean CheckCanMove(Direction direction) { return _ArmoVehicle.CanMove(direction);}
|
||||
public void MoveObject(Direction direction) { _ArmoVehicle.MoveTransport(direction); }
|
||||
public int GetStep(){ return (int)_drawingArmoVehicle.ArmoVehicle.Step; }
|
||||
public boolean CheckCanMove(Direction direction) { return _drawingArmoVehicle.CanMove(direction);}
|
||||
public void MoveObject(Direction direction) { _drawingArmoVehicle.MoveTransport(direction); }
|
||||
}
|
@ -1,8 +1,8 @@
|
||||
import java.awt.*;
|
||||
|
||||
public class DrawingAsteriskOrnament implements IOrnamentForm {
|
||||
public class DrawingStarOrnament implements IOrnamentForm {
|
||||
private CountWheels wheels;
|
||||
private Color additionalColor;
|
||||
private Color StarColor;
|
||||
public CountWheels getNumWheel() {
|
||||
return wheels;
|
||||
}
|
||||
@ -25,8 +25,8 @@ public class DrawingAsteriskOrnament implements IOrnamentForm {
|
||||
}
|
||||
|
||||
public void CaterpillarStar(Graphics g, int _startPosX, int _startPosY) {
|
||||
additionalColor = Color.RED;
|
||||
g.setColor(additionalColor);
|
||||
StarColor = Color.RED;
|
||||
g.setColor(StarColor);
|
||||
int xPontsStar[] = {_startPosX + 15, _startPosX + 18, _startPosX + 21, _startPosX + 18, _startPosX + 19, _startPosX + 16, _startPosX + 12, _startPosX + 12, _startPosX + 11, _startPosX + 15, _startPosX + 16};
|
||||
int yPontsStar[] = {_startPosY + 35, _startPosY + 38, _startPosY + 38, _startPosY + 42, _startPosY + 45, _startPosY + 42, _startPosY + 45, _startPosY + 41, _startPosY + 38, _startPosY + 38, _startPosY + 35};
|
||||
g.drawPolygon(xPontsStar, yPontsStar, xPontsStar.length);
|
@ -2,7 +2,7 @@ import java.awt.*;
|
||||
|
||||
public class DrawingSuspensionOrnament implements IOrnamentForm {
|
||||
private CountWheels wheels;
|
||||
private Color additionalColor;
|
||||
private Color SuspensionColor;
|
||||
public CountWheels getNumWheel() {
|
||||
return wheels;
|
||||
}
|
||||
@ -29,14 +29,19 @@ public class DrawingSuspensionOrnament implements IOrnamentForm {
|
||||
g.fillOval(10 + _startPosX, 42 + _startPosY, 20, 20);
|
||||
}
|
||||
|
||||
public void DrawSuspension(Graphics g, int _startPosX, int _startPosY) {
|
||||
SuspensionColor = Color.BLUE;
|
||||
g.setColor(SuspensionColor);
|
||||
g.fillRect(_startPosX + 27, _startPosY + 50, 10, 3);
|
||||
}
|
||||
|
||||
public void Draw(Graphics g, int _startPosX, int _startPosY) {
|
||||
if (wheels == CountWheels.Two){
|
||||
if (wheels == CountWheels.Two) {
|
||||
DrawWheels(g,_startPosX, _startPosY);
|
||||
DrawWheels(g,_startPosX + 100, _startPosY);
|
||||
additionalColor = Color.RED;
|
||||
g.setColor(additionalColor);
|
||||
g.fillRect(_startPosX + 27, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 100, _startPosY + 50, 10, 3);
|
||||
|
||||
DrawSuspension(g, _startPosX, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 73, _startPosY);
|
||||
}
|
||||
|
||||
if (wheels == CountWheels.Three) {
|
||||
@ -44,9 +49,9 @@ public class DrawingSuspensionOrnament implements IOrnamentForm {
|
||||
DrawWheels(g,_startPosX + 50, _startPosY);
|
||||
DrawWheels(g,_startPosX + 100, _startPosY);
|
||||
|
||||
g.fillRect(_startPosX + 27, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 51, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 100, _startPosY + 50, 10, 3);
|
||||
DrawSuspension(g, _startPosX, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 24, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 73, _startPosY);
|
||||
}
|
||||
|
||||
if (wheels == CountWheels.Four) {
|
||||
@ -56,10 +61,10 @@ public class DrawingSuspensionOrnament implements IOrnamentForm {
|
||||
DrawWheels(g,_startPosX + 75, _startPosY);
|
||||
DrawWheels(g,_startPosX + 100, _startPosY);
|
||||
|
||||
g.fillRect(_startPosX + 27, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 51, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 80, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 101, _startPosY + 50, 10, 3);
|
||||
DrawSuspension(g, _startPosX, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 24, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 53, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 73, _startPosY);
|
||||
}
|
||||
}
|
||||
}
|
@ -2,32 +2,25 @@ import java.awt.*;
|
||||
|
||||
public class DrawingTank extends DrawingArmoVehicle {
|
||||
protected IOrnamentForm OrnamentsForm;
|
||||
private boolean WheelsOrnament;
|
||||
private Color AdditionalColor;
|
||||
private boolean OrnamentAdd;
|
||||
|
||||
public DrawingTank(int speed, double weight, Color bodyColor, int _numWheel, Color additionalColor, boolean bodyKit, boolean caterpillar, boolean tower, int width, int height, boolean wheelsOrnament, boolean ornamentAdd)
|
||||
{
|
||||
public DrawingTank(int speed, double weight, Color bodyColor, int _numWheel, Color additionalColor, boolean bodyKit, boolean caterpillar, boolean tower, int width, int height, boolean ornamentAdd) {
|
||||
super(speed, weight, bodyColor, _numWheel, width, height);
|
||||
ArmoVehicle = new EntityTank(speed, weight, bodyColor, _numWheel, additionalColor, bodyKit, caterpillar, tower);
|
||||
_TankWidth = ((EntityTank)ArmoVehicle).BodyKit ? 169 : 83;
|
||||
|
||||
this.AdditionalColor = additionalColor;
|
||||
this.OrnamentAdd = ornamentAdd;
|
||||
}
|
||||
|
||||
// Установка позиции
|
||||
public void SetPosition(int x, int y) {
|
||||
_startPosX = Math.min(x, _pictureWidth-_TankWidth);
|
||||
_startPosY = Math.min(y, _pictureHeight-_TankHeight);
|
||||
}
|
||||
|
||||
public boolean isOrnamentAdd() {
|
||||
return OrnamentAdd;
|
||||
}
|
||||
private void setOrnamentAdd(boolean ornamentAdd) {
|
||||
this.OrnamentAdd = ornamentAdd;
|
||||
}
|
||||
private boolean setOrnamentAdd() { return OrnamentAdd; }
|
||||
|
||||
// Прорисовка объекта
|
||||
public void DrawTransport(Graphics2D g) {
|
||||
if (ArmoVehicle == null) {
|
||||
return;
|
||||
@ -35,7 +28,7 @@ public class DrawingTank extends DrawingArmoVehicle {
|
||||
super.DrawTransport(g);
|
||||
|
||||
if (((EntityTank) ArmoVehicle).BodyKit) {
|
||||
g.setColor(Color.DARK_GRAY);
|
||||
g.setColor(((EntityTank) ArmoVehicle).AdditionalColor);
|
||||
int[] xPointsBody = {_startPosX + 52, _startPosX + 52, _startPosX + 40, _startPosX + 15,_startPosX + 15, _startPosX + 60,_startPosX + 90,_startPosX + 120,_startPosX + 100,_startPosX + 95, _startPosX + 90};
|
||||
int[] yPointsBody = {_startPosY + 30, _startPosY + 27, _startPosY + 23, _startPosY + 18,_startPosY + 15, _startPosY + 11,_startPosY + 11,_startPosY + 20,_startPosY + 25,_startPosY + 27,_startPosY + 30};
|
||||
int nPointsBody = xPointsBody.length;
|
||||
@ -51,10 +44,10 @@ public class DrawingTank extends DrawingArmoVehicle {
|
||||
}
|
||||
|
||||
if (((EntityTank) ArmoVehicle).Tower) {
|
||||
g.setColor(AdditionalColor);
|
||||
g.setColor(Color.DARK_GRAY);
|
||||
// Орудие
|
||||
g.drawRect(_startPosX + 112, _startPosY + 17, 60, 4);
|
||||
g.fillRect(_startPosX + 112, _startPosY + 17, 60, 4);
|
||||
g.drawRect(_startPosX + 112, _startPosY + 17, 60, 5);
|
||||
g.fillRect(_startPosX + 112, _startPosY + 17, 60, 5);
|
||||
|
||||
// Зенитное орудие
|
||||
int[] xPointsGun = {_startPosX + 45, _startPosX + 45, _startPosX + 41, _startPosX + 41, _startPosX + 42, _startPosX + 41, _startPosX + 44,_startPosX + 50 ,_startPosX + 52,_startPosX + 53, _startPosX + 58};
|
||||
|
@ -1,9 +1,8 @@
|
||||
import java.awt.*;
|
||||
|
||||
public class DrawingWheelsCombination implements IOrnamentForm {
|
||||
private CountWheels _wheels;
|
||||
private CountWheels wheels;
|
||||
private Color additionalColor;
|
||||
private Color CombinationColor;
|
||||
public CountWheels getNumWheel() {
|
||||
return wheels;
|
||||
}
|
||||
@ -26,14 +25,20 @@ public class DrawingWheelsCombination implements IOrnamentForm {
|
||||
}
|
||||
|
||||
public void CaterpillarStar(Graphics g, int _startPosX, int _startPosY) {
|
||||
additionalColor = Color.RED;
|
||||
g.setColor(additionalColor);
|
||||
CombinationColor = Color.RED;
|
||||
g.setColor(CombinationColor);
|
||||
int xPontsStar[] = {_startPosX + 15, _startPosX + 18, _startPosX + 21, _startPosX + 18, _startPosX + 19, _startPosX + 16, _startPosX + 12, _startPosX + 13, _startPosX + 12, _startPosX + 15, _startPosX + 16};
|
||||
int yPontsStar[] = {_startPosY + 35, _startPosY + 38, _startPosY + 38, _startPosY + 42, _startPosY + 45, _startPosY + 42, _startPosY + 45, _startPosY + 41, _startPosY + 38, _startPosY + 38, _startPosY + 35};
|
||||
g.drawPolygon(xPontsStar, yPontsStar, xPontsStar.length);
|
||||
g.fillPolygon(xPontsStar, yPontsStar, xPontsStar.length);
|
||||
}
|
||||
|
||||
public void DrawSuspension(Graphics g, int _startPosX, int _startPosY) {
|
||||
CombinationColor = Color.BLUE;
|
||||
g.setColor(CombinationColor);
|
||||
g.fillRect(_startPosX + 27, _startPosY + 50, 10, 3);
|
||||
}
|
||||
|
||||
public void DrawWheels(Graphics g, int _startPosX, int _startPosY){
|
||||
g.setColor(Color.BLACK);
|
||||
g.fillOval(10 + _startPosX, 42 + _startPosY, 20, 20);
|
||||
@ -44,8 +49,8 @@ public class DrawingWheelsCombination implements IOrnamentForm {
|
||||
DrawWheels(g,_startPosX, _startPosY);
|
||||
DrawWheels(g,_startPosX + 100, _startPosY);
|
||||
|
||||
g.fillRect(_startPosX + 27, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 101, _startPosY + 50, 10, 3);
|
||||
DrawSuspension(g, _startPosX, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 73, _startPosY);
|
||||
|
||||
CaterpillarStar(g,_startPosX + 5, _startPosY + 12);
|
||||
CaterpillarStar(g,_startPosX + 105, _startPosY + 12);
|
||||
@ -56,9 +61,9 @@ public class DrawingWheelsCombination implements IOrnamentForm {
|
||||
DrawWheels(g,_startPosX + 50, _startPosY);
|
||||
DrawWheels(g,_startPosX + 100, _startPosY);
|
||||
|
||||
g.fillRect(_startPosX + 27, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 51, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 100, _startPosY + 50, 10, 3);
|
||||
DrawSuspension(g, _startPosX, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 24, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 73, _startPosY);
|
||||
|
||||
CaterpillarStar(g,_startPosX + 5, _startPosY + 12);
|
||||
CaterpillarStar(g,_startPosX + 55, _startPosY + 12);
|
||||
@ -71,10 +76,10 @@ public class DrawingWheelsCombination implements IOrnamentForm {
|
||||
DrawWheels(g,_startPosX + 50, _startPosY);
|
||||
DrawWheels(g,_startPosX + 100, _startPosY);
|
||||
|
||||
g.fillRect(_startPosX + 27, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 51, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 80, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 101, _startPosY + 50, 10, 3);
|
||||
DrawSuspension(g, _startPosX, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 24, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 53, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 73, _startPosY);
|
||||
|
||||
CaterpillarStar(g,_startPosX + 5, _startPosY + 12);
|
||||
CaterpillarStar(g,_startPosX + 30, _startPosY + 12);
|
||||
@ -89,10 +94,10 @@ public class DrawingWheelsCombination implements IOrnamentForm {
|
||||
DrawWheels(g,_startPosX + 75, _startPosY);
|
||||
DrawWheels(g,_startPosX + 100, _startPosY);
|
||||
|
||||
g.fillRect(_startPosX + 27, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 51, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 80, _startPosY + 50, 10, 3);
|
||||
g.fillRect(_startPosX + 101, _startPosY + 50, 10, 3);
|
||||
DrawSuspension(g, _startPosX, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 24, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 53, _startPosY);
|
||||
DrawSuspension(g,_startPosX + 73, _startPosY);
|
||||
|
||||
CaterpillarStar(g,_startPosX + 5, _startPosY + 12);
|
||||
CaterpillarStar(g,_startPosX + 30, _startPosY + 12);
|
||||
|
@ -3,9 +3,6 @@ import java.awt.*;
|
||||
public class EntityArmoVehicle {
|
||||
public int Speed;
|
||||
public double Weight;
|
||||
public double getWeight() {
|
||||
return Weight;
|
||||
}
|
||||
public Color BodyColor;
|
||||
public double Step;
|
||||
public int numWheel;
|
||||
@ -15,6 +12,6 @@ public class EntityArmoVehicle {
|
||||
Weight = weight;
|
||||
BodyColor = bodyColor;
|
||||
numWheel = _numWheel;
|
||||
Step = (double) Speed * 300 / Weight;
|
||||
Step = (double) Speed * 200 / Weight;
|
||||
}
|
||||
}
|
||||
|
@ -1,112 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="FormTank">
|
||||
<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"/>
|
||||
<constraints>
|
||||
<xy x="20" y="20" width="980" height="560"/>
|
||||
</constraints>
|
||||
<properties>
|
||||
<minimumSize width="960" height="560"/>
|
||||
<preferredSize width="960" height="560"/>
|
||||
</properties>
|
||||
<border type="none"/>
|
||||
<children>
|
||||
<hspacer id="f9ba0">
|
||||
<constraints>
|
||||
<grid row="4" column="2" 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="ce5ea">
|
||||
<constraints>
|
||||
<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>
|
||||
</vspacer>
|
||||
<component id="ac2ff" 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="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>
|
||||
<properties>
|
||||
<hideActionText value="true"/>
|
||||
<horizontalTextPosition value="0"/>
|
||||
<text value=""/>
|
||||
</properties>
|
||||
</component>
|
||||
<component id="b1382" class="javax.swing.JButton" binding="buttonUp">
|
||||
<constraints>
|
||||
<grid row="3" column="4" 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>
|
||||
<properties>
|
||||
<hideActionText value="true"/>
|
||||
<horizontalTextPosition value="0"/>
|
||||
<text value=""/>
|
||||
</properties>
|
||||
</component>
|
||||
<component id="8b2ff" class="javax.swing.JButton" binding="buttonLeft">
|
||||
<constraints>
|
||||
<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>
|
||||
<properties>
|
||||
<hideActionText value="true"/>
|
||||
<horizontalTextPosition value="0"/>
|
||||
<text value=""/>
|
||||
<verticalAlignment value="0"/>
|
||||
</properties>
|
||||
</component>
|
||||
<component id="25771" class="javax.swing.JButton" binding="buttonRight">
|
||||
<constraints>
|
||||
<grid row="4" column="5" 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>
|
||||
<properties>
|
||||
<horizontalTextPosition value="0"/>
|
||||
<text value=""/>
|
||||
</properties>
|
||||
</component>
|
||||
<component id="aefae" class="javax.swing.JComboBox" binding="comboBoxStrategy" custom-create="true">
|
||||
<constraints>
|
||||
<grid row="0" column="3" row-span="1" col-span="3" vsize-policy="0" hsize-policy="2" anchor="8" fill="1" indent="0" use-parent-layout="false"/>
|
||||
</constraints>
|
||||
<properties/>
|
||||
</component>
|
||||
<component id="c79a6" class="javax.swing.JButton" binding="buttonStep">
|
||||
<constraints>
|
||||
<grid row="1" column="3" row-span="1" col-span="3" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
|
||||
</constraints>
|
||||
<properties>
|
||||
<text value="Шаг"/>
|
||||
</properties>
|
||||
</component>
|
||||
<component id="d1f31" class="javax.swing.JButton" binding="buttonCreateVehicle">
|
||||
<constraints>
|
||||
<grid row="3" column="1" row-span="2" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
|
||||
</constraints>
|
||||
<properties>
|
||||
<text value="Создать бронемашину"/>
|
||||
</properties>
|
||||
</component>
|
||||
<component id="35f01" class="javax.swing.JButton" binding="buttonCreateTank">
|
||||
<constraints>
|
||||
<grid row="3" column="0" row-span="2" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
|
||||
</constraints>
|
||||
<properties>
|
||||
<text value="Создать Танк"/>
|
||||
</properties>
|
||||
</component>
|
||||
</children>
|
||||
</grid>
|
||||
</form>
|
@ -1,149 +1,198 @@
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
import java.util.Random;
|
||||
|
||||
public class FormTank {
|
||||
DrawingArmoVehicle _drawingTank;
|
||||
AbstractStrategy _abstractStrategy;
|
||||
private JButton buttonCreateTank;
|
||||
private JPanel pictureBox;
|
||||
private JButton buttonDown;
|
||||
private JButton buttonUp;
|
||||
private JButton buttonLeft;
|
||||
private JButton buttonRight;
|
||||
private JButton buttonCreateVehicle;
|
||||
private JComboBox comboBoxStrategy;
|
||||
private JButton buttonStep;
|
||||
private DrawingArmoVehicle _drawingArmoVehicle;
|
||||
private AbstractStrategy abstractStrategy;
|
||||
Canvas canv;
|
||||
static int pictureBoxWidth = 980;
|
||||
static int pictureBoxHeight = 560;
|
||||
|
||||
public JPanel getPictureBox() {
|
||||
return pictureBox;
|
||||
public void Draw() {
|
||||
canv.repaint();
|
||||
}
|
||||
|
||||
public FormTank() {
|
||||
buttonUp.setName("buttonUp");
|
||||
buttonDown.setName("buttonDown");
|
||||
buttonLeft.setName("buttonLeft");
|
||||
buttonRight.setName("buttonRight");
|
||||
JFrame Frame = new JFrame("Tank");
|
||||
JButton buttonCreateArmoVehicle = new JButton("Создать Бронемашину");
|
||||
JButton buttonCreateTank = new JButton("Создать Танк");
|
||||
JButton buttonStrategysStep = new JButton("Шаг");
|
||||
JComboBox ComboBoxStrategy = new JComboBox(new String[]{"к центру", "к краю формочки"});
|
||||
|
||||
ImageIcon iconUp = new ImageIcon("Resources/KeyUp.png");
|
||||
buttonUp.setIcon(iconUp);
|
||||
ImageIcon iconDown = new ImageIcon("Resources/KeyDown.png");
|
||||
buttonDown.setIcon(iconDown);
|
||||
ImageIcon iconRight = new ImageIcon("Resources/KeyRight.png");
|
||||
buttonRight.setIcon(iconRight);
|
||||
ImageIcon iconLeft = new ImageIcon("Resources/KeyLeft.png");
|
||||
buttonLeft.setIcon(iconLeft);
|
||||
Icon iconUp = new ImageIcon("Resources/KeyUp.png");
|
||||
JButton up = new JButton(iconUp);
|
||||
up.setName("up");
|
||||
|
||||
buttonCreateTank.addActionListener(e -> {
|
||||
Icon iconDown = new ImageIcon("Resources/KeyDown.png");
|
||||
JButton down = new JButton(iconDown);
|
||||
down.setName("down");
|
||||
|
||||
Icon iconRight = new ImageIcon("Resources/KeyRight.png");
|
||||
JButton right = new JButton(iconRight);
|
||||
right.setName("right");
|
||||
|
||||
Icon iconLeft = new ImageIcon("Resources/KeyLeft.png");
|
||||
JButton left = new JButton(iconLeft);
|
||||
left.setName("left");
|
||||
|
||||
buttonStrategysStep.addActionListener(
|
||||
new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
if (_drawingArmoVehicle == null) {
|
||||
return;
|
||||
}
|
||||
if (ComboBoxStrategy.isEnabled()) {
|
||||
switch (ComboBoxStrategy.getSelectedIndex()) {
|
||||
case 0:
|
||||
abstractStrategy = new MoveToCenter();
|
||||
break;
|
||||
case 1:
|
||||
abstractStrategy = new MoveToBorder();
|
||||
break;
|
||||
default:
|
||||
abstractStrategy = null;
|
||||
break;
|
||||
}
|
||||
|
||||
if (abstractStrategy == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
abstractStrategy.SetData(new
|
||||
DrawingObjectTank(_drawingArmoVehicle), pictureBoxWidth, pictureBoxHeight);
|
||||
ComboBoxStrategy.setEnabled(false);
|
||||
}
|
||||
if (abstractStrategy == null) {
|
||||
return;
|
||||
}
|
||||
abstractStrategy.MakeStep();
|
||||
Draw();
|
||||
if (abstractStrategy.GetStatus() == Status.Finish) {
|
||||
ComboBoxStrategy.setEnabled(true);
|
||||
abstractStrategy = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
buttonCreateTank.addActionListener(
|
||||
new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
Random random = new Random();
|
||||
_drawingTank = new DrawingTank(
|
||||
_drawingArmoVehicle = new DrawingTank(
|
||||
random.nextInt(100, 300),
|
||||
random.nextInt(1000, 3000),
|
||||
new Color(random.nextInt(256), random.nextInt(256), random.nextInt(256)),
|
||||
new Color(random.nextInt(0, 256), random.nextInt(0, 256), random.nextInt(0, 256)),
|
||||
random.nextInt(2, 6),
|
||||
new Color(random.nextInt(256), random.nextInt(256), random.nextInt(256)),
|
||||
new Color(random.nextInt(0, 256), random.nextInt(0, 256), random.nextInt(0, 256)),
|
||||
true,
|
||||
true,
|
||||
true,
|
||||
pictureBox.getWidth(),
|
||||
pictureBox.getHeight(),
|
||||
true,
|
||||
pictureBoxWidth,
|
||||
pictureBoxHeight,
|
||||
true
|
||||
);
|
||||
|
||||
_drawingTank.SetWheels(random.nextInt(2, 6));
|
||||
_drawingTank.SetPosition(random.nextInt(10, 100), random.nextInt(10, 100));
|
||||
|
||||
_drawingArmoVehicle.SetPosition(random.nextInt(10, 100), random.nextInt(10, 100));
|
||||
canv._drawingArmoVehicle = _drawingArmoVehicle;
|
||||
Draw();
|
||||
});
|
||||
|
||||
buttonCreateVehicle.addActionListener(e -> {
|
||||
Random random = new Random();
|
||||
_drawingTank = new DrawingArmoVehicle(
|
||||
random.nextInt(100, 300),
|
||||
random.nextInt(1000, 3000),
|
||||
new Color(random.nextInt(256), random.nextInt(256), random.nextInt(256)),
|
||||
random.nextInt(2, 6),
|
||||
pictureBox.getWidth(),
|
||||
pictureBox.getHeight()
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
_drawingTank.SetWheels(random.nextInt(2, 6));
|
||||
_drawingTank.SetPosition(random.nextInt(10, 100), random.nextInt(10, 100));
|
||||
|
||||
buttonCreateArmoVehicle.addActionListener(
|
||||
new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
Random random = new Random();
|
||||
_drawingArmoVehicle = new DrawingArmoVehicle(
|
||||
random.nextInt(100, 300),
|
||||
random.nextInt(1000, 3000),
|
||||
new Color(random.nextInt(0, 256), random.nextInt(0, 256), random.nextInt(0, 256)),
|
||||
random.nextInt(2, 5),
|
||||
1000,
|
||||
560);
|
||||
_drawingArmoVehicle.SetPosition(random.nextInt(10, 100), random.nextInt(10, 100));
|
||||
canv._drawingArmoVehicle = _drawingArmoVehicle;
|
||||
Draw();
|
||||
});
|
||||
|
||||
buttonStep.addActionListener(e -> {
|
||||
if (_drawingTank == null)
|
||||
return;
|
||||
if (comboBoxStrategy.isEnabled()) {
|
||||
_abstractStrategy = null;
|
||||
int comboBoxStrategySelectedIndex = comboBoxStrategy.getSelectedIndex();
|
||||
if (comboBoxStrategySelectedIndex == 0) {
|
||||
_abstractStrategy = new MoveToCenter();
|
||||
} else if (comboBoxStrategySelectedIndex == 1) {
|
||||
_abstractStrategy = new MoveToBorder();
|
||||
}
|
||||
if (_abstractStrategy == null)
|
||||
return;
|
||||
_abstractStrategy.SetData(new DrawingObjectTank(_drawingTank), pictureBox.getWidth(), pictureBox.getHeight());
|
||||
comboBoxStrategy.setEnabled(false);
|
||||
}
|
||||
);
|
||||
|
||||
if (_abstractStrategy == null)
|
||||
ActionListener actioListener = new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
if (_drawingArmoVehicle == null) {
|
||||
return;
|
||||
_abstractStrategy.MakeStep();
|
||||
}
|
||||
switch (((JButton) (e.getSource())).getName()) {
|
||||
case "up":
|
||||
_drawingArmoVehicle.MoveTransport(Direction.Up);
|
||||
break;
|
||||
case "down":
|
||||
_drawingArmoVehicle.MoveTransport(Direction.Down);
|
||||
break;
|
||||
case "left":
|
||||
_drawingArmoVehicle.MoveTransport(Direction.Left);
|
||||
break;
|
||||
case "right":
|
||||
_drawingArmoVehicle.MoveTransport(Direction.Right);
|
||||
break;
|
||||
}
|
||||
Draw();
|
||||
if (_abstractStrategy.GetStatus() == Status.Finish) {
|
||||
comboBoxStrategy.setEnabled(true);
|
||||
_abstractStrategy = null;
|
||||
}
|
||||
});
|
||||
|
||||
ActionListener buttonMoveClickedListener = e -> {
|
||||
String buttonName = ((JButton) e.getSource()).getName();
|
||||
|
||||
switch (buttonName) {
|
||||
case ("buttonUp") -> {
|
||||
_drawingTank.MoveTransport(Direction.Up);
|
||||
}
|
||||
case ("buttonDown") -> {
|
||||
_drawingTank.MoveTransport(Direction.Down);
|
||||
}
|
||||
case ("buttonLeft") -> {
|
||||
_drawingTank.MoveTransport(Direction.Left);
|
||||
}
|
||||
case ("buttonRight") -> {
|
||||
_drawingTank.MoveTransport(Direction.Right);
|
||||
}
|
||||
}
|
||||
|
||||
Draw();
|
||||
};
|
||||
|
||||
buttonUp.addActionListener(buttonMoveClickedListener);
|
||||
buttonDown.addActionListener(buttonMoveClickedListener);
|
||||
buttonLeft.addActionListener(buttonMoveClickedListener);
|
||||
buttonRight.addActionListener(buttonMoveClickedListener);
|
||||
}
|
||||
up.addActionListener(actioListener);
|
||||
down.addActionListener(actioListener);
|
||||
left.addActionListener(actioListener);
|
||||
right.addActionListener(actioListener);
|
||||
|
||||
public void Draw() {
|
||||
if (_drawingTank == null) {
|
||||
return;
|
||||
}
|
||||
Frame.setSize(1000, 600);
|
||||
Frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||
Frame.setLayout(null);
|
||||
canv = new Canvas();
|
||||
canv.setBounds(0, 0, pictureBoxWidth, pictureBoxHeight);
|
||||
|
||||
Graphics g = pictureBox.getGraphics();
|
||||
pictureBox.paint(g);
|
||||
_drawingTank.DrawTransport((Graphics2D)g);
|
||||
}
|
||||
buttonCreateArmoVehicle.setBounds(5, 500, 170, 40);
|
||||
buttonCreateTank.setBounds(185, 500, 170, 40);
|
||||
|
||||
private void createUIComponents() {
|
||||
String[] strategiesList = {
|
||||
"Движение к центру",
|
||||
"Движение к краю формы"
|
||||
};
|
||||
comboBoxStrategy = new JComboBox(strategiesList);
|
||||
up.setBounds(900, 480, 40, 40);
|
||||
down.setBounds(900, 520, 40, 40);
|
||||
left.setBounds(860, 520, 40, 40);
|
||||
right.setBounds(940, 520, 40, 40);
|
||||
|
||||
ComboBoxStrategy.setBounds(pictureBoxWidth - 150, 20, 150, 20);
|
||||
buttonStrategysStep.setBounds(pictureBoxWidth - 150, 45, 150, 20);
|
||||
|
||||
Frame.add(canv);
|
||||
Frame.add(buttonCreateArmoVehicle);
|
||||
Frame.add(buttonCreateTank);
|
||||
Frame.add(up);
|
||||
Frame.add(down);
|
||||
Frame.add(left);
|
||||
Frame.add(right);
|
||||
|
||||
Frame.add(ComboBoxStrategy);
|
||||
Frame.add(buttonStrategysStep);
|
||||
|
||||
Frame.setVisible(true);
|
||||
}
|
||||
}
|
||||
|
||||
class Canvas extends JComponent {
|
||||
public DrawingArmoVehicle _drawingArmoVehicle;
|
||||
|
||||
public Canvas() {
|
||||
}
|
||||
|
||||
public void paintComponent(Graphics g) {
|
||||
if (_drawingArmoVehicle == null) {
|
||||
return;
|
||||
}
|
||||
super.paintComponents(g);
|
||||
Graphics2D g2d = (Graphics2D) g;
|
||||
_drawingArmoVehicle.DrawTransport(g2d);
|
||||
super.repaint();
|
||||
}
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
import javax.swing.*;
|
||||
|
||||
public class FrameTank extends JFrame {
|
||||
private FormTank _formTank;
|
||||
|
||||
public FrameTank() {
|
||||
super();
|
||||
setTitle("Танк");
|
||||
setDefaultCloseOperation(EXIT_ON_CLOSE);
|
||||
_formTank = new FormTank();
|
||||
setContentPane(_formTank.getPictureBox());
|
||||
setDefaultLookAndFeelDecorated(false);
|
||||
setLocation(300, 100);
|
||||
pack();
|
||||
setVisible(true);
|
||||
}
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
new FrameTank();
|
||||
new FormTank();
|
||||
}
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
public class MoveToBorder extends AbstractStrategy{
|
||||
protected boolean IsTargetDestinaion() {
|
||||
protected boolean IsTargetDestination() {
|
||||
var objParams = GetObjectParameters();
|
||||
if (objParams == null) {
|
||||
return false;
|
||||
|
@ -1,5 +1,5 @@
|
||||
public class MoveToCenter extends AbstractStrategy {
|
||||
protected boolean IsTargetDestinaion() {
|
||||
protected boolean IsTargetDestination() {
|
||||
var objParams = GetObjectParameters();
|
||||
if (objParams == null) {
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user