Compare commits

...

19 Commits

Author SHA1 Message Date
59ad3e8c05 Финал 3-й лабораторной. 2022-11-17 23:15:40 +04:00
194f28b701 Мелкие правки по оформлению. 2022-11-17 23:13:43 +04:00
b1aa92cbec Мелкие правки. 2022-11-10 23:30:18 +04:00
a58a16db28 Доработка формы с прорисовкой случайных наборов. 2022-11-08 10:13:23 +04:00
3288b08c04 Доработка формы. 2022-11-06 17:34:50 +04:00
3ab8e81bd9 Мелкие правки. 2022-11-06 15:06:43 +04:00
8320f6de72 Доработка доп. формы по заданию. 2022-11-06 15:04:39 +04:00
186c08abd8 Создание доп. формы по доп. заданию. 2022-11-06 14:04:17 +04:00
e4aca29884 Добавление доп. класса по заданию, доработка классов отрисовки DrawPlane и DrawAirbus для взаимодействия с ним. 2022-11-06 13:43:57 +04:00
fb505d1628 Доработка отрисовки хранилища. 2022-11-06 12:53:10 +04:00
3818ea591b Настройка отображения хранилища и выбранной карты, а также объектов в хранилище. 2022-11-06 12:34:47 +04:00
571b302e4b Доработка формы, модификкация FormPlane и одного класса Generic. 2022-11-06 00:34:21 +04:00
6474259b5f Создание новой формы. 2022-11-05 22:19:32 +04:00
02db6481fc Добавление Generic. 2022-11-05 21:26:27 +04:00
98cf530e89 Установка правильных названий. 2022-11-05 20:56:34 +04:00
08ea99c93e Правки по оформлению. 2022-11-05 13:06:59 +04:00
5adccc16a3 Исправление проблемы с отображением выбранной карты на форме. 2022-11-05 01:24:27 +04:00
90ceb3ed94 Добавление классов отрисовки карт, формы, и т.д. 2022-11-03 23:34:20 +04:00
6bdd753c33 Добавление интерфейсов и абстрактного класса. 2022-11-03 22:49:09 +04:00
35 changed files with 2114 additions and 253 deletions

View File

@ -2,7 +2,9 @@
<module type="JAVA_MODULE" version="4"> <module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true"> <component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output /> <exclude-output />
<content url="file://$MODULE_DIR$" /> <content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" /> <orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
</component> </component>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="ProjectRootManager"> <component name="ProjectRootManager" version="2" languageLevel="JDK_X" default="true" project-jdk-name="openjdk-18" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" /> <output url="file://$PROJECT_DIR$/out" />
</component> </component>
</project> </project>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_X" default="true" project-jdk-name="openjdk-18" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_X" project-jdk-name="openjdk-18" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" /> <output url="file://$PROJECT_DIR$/out" />
</component> </component>
</project> </project>

3
Project/src/.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_X" default="true" project-jdk-name="openjdk-18" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/Project.iml" filepath="$PROJECT_DIR$/Project.iml" />
</modules>
</component>
</project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
</component>
</project>

View File

@ -0,0 +1,184 @@
import java.awt.*;
import java.awt.image.BufferedImage;
import java.util.Random;
public abstract class AbstractMap
{
private IDrawningObject _drawingObject = null;
protected int[][] _map = null;
protected int _width;
protected int _height;
protected float _size_x;
protected float _size_y;
protected Random _random = new Random();
protected int _freeRoad = 0;
protected int _barrier = 1;
public BufferedImage CreateMap(int width, int height, IDrawningObject drawningObject)
{
_width = width;
_height = height;
_drawingObject = drawningObject;
GenerateMap();
while (!SetObjectOnMap())
{
GenerateMap();
}
return DrawMapWithObject();
}
//проверка на "накладывание"
protected boolean CheckPosition(float Left, float Right, float Top, float Bottom)
{
int x_start = (int)(Left / _size_x);
int y_start = (int)(Right / _size_y);
int x_end = (int)(Top / _size_x);
int y_end = (int)(Bottom / _size_y);
for(int i = x_start; i <= x_end; i++)
{
for(int j = y_start; j <= y_end; j++)
{
if (_map[i][j] == _barrier)
{
return true;
}
}
}
return false;
}
public BufferedImage MoveObject(Direction direction)
{
float[] cortege = _drawingObject.GetCurrentPosition();
int leftCell = (int)(cortege[0] / _size_x);
int upCell = (int)(cortege[1] / _size_y);
int downCell = (int)(cortege[3] / _size_y);
int rightCell = (int)(cortege[2] / _size_x);
int step = (int)_drawingObject.Step();
boolean canMove = true;
switch (direction)
{
case Left:
for (int i = leftCell - (int)(step / _size_x) - 1 >= 0 ? leftCell - (int)(step / _size_x) - 1 : leftCell; i < leftCell; i++)
{
for (int j = upCell; j < downCell; j++)
{
if (_map[i][j] == _barrier)
{
canMove = false;
}
}
}
break;
case Up:
for (int i = leftCell; i <= rightCell; i++)
{
for (int j = upCell - (int)(step / _size_x) - 1 >= 0 ? upCell - (int)(step / _size_x) - 1 : downCell - (int)(step / _size_x); j < downCell - (int)(step / _size_x); j++)
{
if (_map[i][j] == _barrier)
{
canMove = false;
}
}
}
break;
case Down:
for (int i = leftCell; i <= rightCell; i++)
{
for (int j = downCell + (int)(step / _size_x) + 1 <= _map.length - 1 ? downCell + (int)(step / _size_x) + 1 : upCell; j > upCell; j--)
{
if (_map[i][j] == _barrier)
{
canMove = false;
}
}
}
break;
case Right:
for (int i = rightCell + (int)(step / _size_x) + 1 <= _map.length - 1 ? rightCell + (int)(step / _size_x) + 1 : rightCell; i > rightCell; i--)
{
for (int j = upCell; j < downCell; j++)
{
if (_map[i][j] == _barrier)
{
canMove = false;
}
}
}
break;
}
if (canMove)
{
_drawingObject.MoveObject(direction);
}
return DrawMapWithObject();
}
private boolean SetObjectOnMap()
{
if(_drawingObject == null || _map == null)
{
return false;
}
int x = _random.nextInt(10);
int y = _random.nextInt(10);
_drawingObject.SetObject(x, y, _width, _height);
for (int i = 0; i < _map.length; ++i)
{
for(int j = 0; j < _map[0].length; ++j)
{
if(i * _size_x >= x && j * _size_y >= y &&
i * _size_x <= x + _drawingObject.GetCurrentPosition()[1] &&
j * _size_y <= j + _drawingObject.GetCurrentPosition()[2])
{
if (_map[i][j] == _barrier)
{
return false;
}
}
}
}
return true;
}
private BufferedImage DrawMapWithObject()
{
BufferedImage bmp = new BufferedImage(_width, _height, BufferedImage.TYPE_INT_RGB);
if(_drawingObject == null || _map == null)
{
return bmp;
}
Graphics gr = bmp.getGraphics();
for(int i = 0; i < _map.length; ++i)
{
for(int j = 0; j < _map[i].length; ++j)
{
if (_map[i][j] == _freeRoad)
{
DrawRoadPart(gr, i, j);
}
else if (_map[i][j] == _barrier)
{
DrawBarrierPart(gr, i, j);
}
}
}
_drawingObject.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);
}

View File

@ -10,7 +10,8 @@ public enum Additional_Enum {
this.addEnum = i; this.addEnum = i;
} }
public int GetAddEnum(){ public int GetAddEnum()
{
return addEnum; return addEnum;
} }
} }

View File

@ -0,0 +1,55 @@
import java.awt.*;
public class DesertStormMap extends AbstractMap
{
//цвет закрытого участка
private final Color barriedColor = new Color(139, 0, 0);
//цвет открытого участка
private final Color roadColor = new Color(255, 140, 0);
@Override
protected void GenerateMap()
{
_map = new int[100][100];
_size_x = (float)_width / _map.length;
_size_y = (float)_height / _map[0].length;
int counter = 0;
for(int i = 0; i < _map.length; ++i)
{
for(int j = 0; j < _map[0].length; ++j)
{
_map[i][j] = _freeRoad;
}
}
while(counter < 50)
{
int x = _random.nextInt(0, 100);
int y = _random.nextInt(0, 100);
if (_map[x][y] == _freeRoad)
{
_map[x][y] = _barrier;
counter++;
}
}
}
@Override
protected void DrawRoadPart(Graphics g, int i, int j)
{
Graphics2D g2d = (Graphics2D)g;
g2d.setPaint(roadColor);
g2d.fillRect((int)(i * _size_x), (int)(j * _size_y), (int)(i * (_size_x + 1)), (int)(j *(_size_y + 1)));
}
@Override
protected void DrawBarrierPart(Graphics g, int i, int j)
{
Graphics2D g2d = (Graphics2D)g;
g2d.setPaint(barriedColor);
g.fillRect((int)(i * _size_x), (int)(j * _size_y), (int)(i * (_size_x + 1)), (int)(j *(_size_y + 1)));
}
}

View File

@ -1,4 +1,6 @@
public enum Direction { //направление перемещения
public enum Direction
{
Up(1), Up(1),
Down(2), Down(2),
Left(3), Left(3),
@ -6,7 +8,7 @@ public enum Direction {
private final int DirectionCode; private final int DirectionCode;
private Direction(int directionCode) Direction(int directionCode)
{ {
this.DirectionCode = directionCode; this.DirectionCode = directionCode;
} }

View File

@ -0,0 +1,55 @@
import java.awt.*;
public class DrawingAirbus extends DrawingPlane
{
//Конструктор
public DrawingAirbus(int speed, int weight, Color corpusColor, Color addColor, boolean addCompartment, boolean addEngine)
{
super(speed, weight, corpusColor, 70, 30);
Plane = new EntityAirbus(speed, weight, corpusColor, addColor, addCompartment, addEngine);
}
//Второй конструктор
public DrawingAirbus(EntityPlane plane, IAdditionalDrawingObject addWindows)
{
super(plane, addWindows);
Plane = plane;
}
@Override
public void DrawTransport(Graphics g)
{
Graphics2D g2d = (Graphics2D) g;
EntityAirbus airbus;
if (!(GetPlane() instanceof EntityAirbus))
{
return;
}
airbus = (EntityAirbus) Plane;
_startPosX += 10;
_startPosY += 5;
super.DrawTransport(g);
_startPosX -= 10;
_startPosY -= 5;
//дополнительный пассажирский отсек
if (airbus.AddСompartment)
{
g2d.setPaint(airbus.AddColor);
g.fillRect((int)_startPosX + 30, (int)_startPosY + 12, 14, 3);
g2d.setPaint(Color.BLACK);
g.drawRect((int)_startPosX + 30, (int)_startPosY + 12, 14, 3);
}
//дополнительный двигатель
if (airbus.AddEngine)
{
g2d.setPaint(airbus.AddColor);
g.fillOval((int)_startPosX + 24, (int)_startPosY + 22, 10, 5);
g2d.setPaint(Color.BLACK);
g.drawOval((int)_startPosX + 24, (int)_startPosY + 22, 10, 5);
}
}
}

View File

@ -1,16 +1,19 @@
import javax.swing.*; import javax.swing.*;
import java.awt.*; import java.awt.*;
public class DrawingAirplaneWindow extends JComponent public class DrawingAirplaneWindow extends JComponent implements IAdditionalDrawingObject
{ {
private Additional_Enum _airplaneWindowEnum; private Additional_Enum _airplaneWindowEnum;
public void SetAddEnum(int decksAmount) { @Override
public void SetAddEnum(int airplaneWindow)
{
for(Additional_Enum item : _airplaneWindowEnum.values()) for(Additional_Enum item : _airplaneWindowEnum.values())
{ {
if(item.GetAddEnum() == decksAmount) if(item.GetAddEnum() == airplaneWindow)
{ {
_airplaneWindowEnum = item; _airplaneWindowEnum = item;
return; return;
} }
} }
@ -21,35 +24,31 @@ public class DrawingAirplaneWindow extends JComponent
super.paintComponent(g); super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g; Graphics2D g2d = (Graphics2D) g;
switch(_airplaneWindowEnum.GetAddEnum()) if(_airplaneWindowEnum.GetAddEnum() >= 1)
{ {
case 1: g2d.setPaint(colorWindow);
g2d.setPaint(colorWindow); g2d.fillOval((int)_startPosX + 9, (int)_startPosY + 11, 6, 4);
g2d.fillOval((int)_startPosX + 9, (int)_startPosY + 11, 6, 4);
g2d.setPaint(Color.BLACK); g2d.setPaint(Color.BLACK);
g2d.drawOval((int)_startPosX + 9, (int)_startPosY + 11, 6, 4); g2d.drawOval((int)_startPosX + 9, (int)_startPosY + 11, 6, 4);
break; }
case 2:
g2d.setPaint(colorWindow);
g2d.fillOval((int)_startPosX + 9, (int)_startPosY + 11, 6, 4);
g2d.fillOval((int)_startPosX + 18, (int)_startPosY + 11, 6, 4);
g2d.setPaint(Color.BLACK); if(_airplaneWindowEnum.GetAddEnum() >= 2)
g2d.drawOval((int)_startPosX + 9, (int)_startPosY + 11, 6, 4); {
g2d.drawOval((int)_startPosX + 18, (int)_startPosY + 11, 6, 4); g2d.setPaint(colorWindow);
break; g2d.fillOval((int)_startPosX + 18, (int)_startPosY + 11, 6, 4);
case 3:
g2d.setPaint(colorWindow);
g2d.fillOval((int)_startPosX + 9, (int)_startPosY + 11, 6, 4);
g2d.fillOval((int)_startPosX + 18, (int)_startPosY + 11, 6, 4);
g2d.fillOval((int)_startPosX + 27, (int)_startPosY + 11, 6, 4);
g2d.setPaint(Color.BLACK); g2d.setPaint(Color.BLACK);
g2d.drawOval((int)_startPosX + 9, (int)_startPosY + 11, 6, 4); g2d.drawOval((int)_startPosX + 18, (int)_startPosY + 11, 6, 4);
g2d.drawOval((int)_startPosX + 18, (int)_startPosY + 11, 6, 4); }
g2d.drawOval((int)_startPosX + 27, (int)_startPosY + 11, 6, 4);
break; if(_airplaneWindowEnum.GetAddEnum() >= 3)
{
g2d.setPaint(colorWindow);
g2d.fillOval((int)_startPosX + 27, (int)_startPosY + 11, 6, 4);
g2d.setPaint(Color.BLACK);
g2d.drawOval((int)_startPosX + 27, (int)_startPosY + 11, 6, 4);
} }
} }
} }

View File

@ -0,0 +1,82 @@
import java.lang.reflect.Array;
import java.util.Random;
public class DrawingEntities <T extends EntityPlane, U extends IAdditionalDrawingObject>
{
public T[] _arrPlane;
public U[] _arrWindow;
int countArrPlane = 0;
int countArrWindows = 0;
String _x_index;
String _y_index;
//конструктор
public DrawingEntities(int sizeArr, Class<T> objectT, Class<U> objectU)
{
final T[] arrPlane = (T[]) Array.newInstance(objectT, sizeArr);
_arrPlane = arrPlane;
final U[] arrWindod = (U[]) Array.newInstance(objectU, sizeArr);
_arrWindow = arrWindod;
}
//добавить сущность-самолёт
public int Insert(T plane)
{
if(countArrPlane < _arrPlane.length)
{
_arrPlane[countArrPlane] = plane;
countArrPlane++;
return countArrPlane - 1;
}
return -1;
}
//добавить кол-во и тип иллюминаторов
public int Insert(U addElement)
{
if(countArrWindows < _arrWindow.length)
{
_arrWindow[countArrWindows] = addElement;
countArrWindows++;
return countArrWindows - 1;
}
return -1;
}
//фиксирование индексов
public void SetIndex(int indexFirst, int indexSecond)
{
_x_index = Integer.toString(indexFirst);
_y_index = Integer.toString(indexSecond);
}
public DrawingPlane CreatePlane()
{
Random rnd = new Random();
int indexPlane = 0;
int indexArrWindow = 0;
if(countArrPlane - 1 != 0 && countArrWindows - 1 != 0)
{
indexPlane = rnd.nextInt(0, countArrPlane - 1);
indexArrWindow = rnd.nextInt(0, countArrWindows - 1);
}
T plane = (T)_arrPlane[indexPlane];
U windows = (U)_arrWindow[indexArrWindow];
SetIndex(indexPlane, indexArrWindow);
if(plane instanceof EntityAirbus)
{
return new DrawingAirbus(plane, windows);
}
return new DrawingPlane(plane, windows);
}
}

View File

@ -1,40 +1,75 @@
import java.awt.*; import java.awt.*;
import javax.swing.*;
import java.awt.Color; import java.awt.Color;
import java.util.Random; import java.util.Random;
public class DrawingPlane public class DrawingPlane extends JPanel
{ {
public EntityPlane Airbus; //класс-сущность protected EntityPlane Plane; //класс-сущность
public DrawingAirplaneWindow _airplaneWindow; //для дополнительной отрисовки public IAdditionalDrawingObject _airplaneWindow; //для дополнительной отрисовки
private float _startPosX; //левая координата отрисовки
private float _startPosY; //верхняя координата отрисовки
private Integer _pictureWidth = null; //ширина окна отрисовки
private Integer _pictureHeight = null; //высота окна отрисовки
protected final int _airbusWidth = 50; //ширина отрисовки самолёта
protected final int _airbusHeight = 16; //высота отрисовки самолёта
//инициализаци свойств
public void Initial(int speed, float weight, Color corpusColor)
{
Airbus = new EntityPlane();
Airbus.Initial(speed, weight, corpusColor);
_airplaneWindow = new DrawingAirplaneWindow();
SetAddEnum();
}
//установка кол-ва иллюминаторов
public void SetAddEnum() public void SetAddEnum()
{ {
Random rnd = new Random(); Random rnd = new Random();
int countWindow = rnd.nextInt(1, 4); int numbEnum = rnd.nextInt(1, 4);
_airplaneWindow.SetAddEnum(countWindow); _airplaneWindow.SetAddEnum(numbEnum);
}
public void SetFormEnum()
{
Random rnd = new Random();
int numbEnum = rnd.nextInt(1, 4);
if(numbEnum == 1)
{
_airplaneWindow = new DrawingAirplaneWindow();
}
if(numbEnum == 2)
{
_airplaneWindow = new DrawingTriangleAirplaneWindow();
}
if(numbEnum == 3)
{
_airplaneWindow = new DrawingRectAirplaneWindow();
}
} }
public EntityPlane GetPlane() public EntityPlane GetPlane()
{ {
return Airbus; return Plane;
}
protected float _startPosX; //левая координата отрисовки
protected float _startPosY; //верхняя координата отрисовки
private Integer _pictureWidth = null; //ширина окна отрисовки
private Integer _pictureHeight = null; //высота окна отрисовки
protected int _airbusWidth = 50; //ширина отрисовки самолёта
protected int _airbusHeight = 16; //высота отрисовки самолёта
//конструктор
public DrawingPlane(int speed, float weight, Color corpusColor)
{
Plane = new EntityPlane(speed, weight, corpusColor);
SetFormEnum();
SetAddEnum();
}
//конструктор
public DrawingPlane(int speed, float weight, Color corpusColor, int planeWidth, int planeHeight)
{
this(speed, weight, corpusColor);
_airbusWidth = planeWidth;
_airbusHeight = planeHeight;
}
//второй конструктор
public DrawingPlane(EntityPlane plane, IAdditionalDrawingObject countWindow)
{
Plane = plane;
_airplaneWindow = countWindow;
} }
//установка координат позиции самолёта //установка координат позиции самолёта
@ -65,30 +100,30 @@ public class DrawingPlane
switch (direction) switch (direction)
{ {
case Right: //вправо case Right: //вправо
if (_startPosX + _airbusWidth + Airbus.GetStep() < _pictureWidth) if (_startPosX + _airbusWidth + Plane.GetStep() < _pictureWidth)
{ {
_startPosX += Airbus.GetStep(); _startPosX += Plane.GetStep();
} }
break; break;
case Left: //влево case Left: //влево
if (_startPosX - _airbusWidth - Airbus.GetStep() > 0) if (_startPosX - _airbusWidth - Plane.GetStep() > 0)
{ {
_startPosX -= Airbus.GetStep(); _startPosX -= Plane.GetStep();
} }
break; break;
case Up: //вверх case Up: //вверх
if (_startPosY - _airbusHeight - Airbus.GetStep() > 0) if (_startPosY - _airbusHeight - Plane.GetStep() > 0)
{ {
_startPosY -= Airbus.GetStep(); _startPosY -= Plane.GetStep();
} }
break; break;
case Down: //вниз case Down: //вниз
if (_startPosY + _airbusHeight + Airbus.GetStep() < _pictureHeight) if (_startPosY + _airbusHeight + Plane.GetStep() < _pictureHeight)
{ {
_startPosY += Airbus.GetStep(); _startPosY += Plane.GetStep();
} }
break; break;
} }
@ -107,19 +142,15 @@ public class DrawingPlane
Graphics2D g2d = (Graphics2D)g; Graphics2D g2d = (Graphics2D)g;
g2d.setColor(Color.WHITE); //заливка корпуса
g2d.fillRect(0, 0, _pictureWidth, _pictureHeight); g2d.setColor(Plane.GetColor());
g2d.fillRect((int)_startPosX, (int)_startPosY + 10, 40, 10);
//заливает фигуру
g2d.setPaint(Color.BLACK);
//крыло //крыло
g2d.setColor(Color.BLACK);
g2d.fillRect((int)_startPosX + 10, (int)_startPosY + 15, 20, 2); g2d.fillRect((int)_startPosX + 10, (int)_startPosY + 15, 20, 2);
g2d.fillRect((int)_startPosX + 12, (int)_startPosY + 17, 16, 2); g2d.fillRect((int)_startPosX + 12, (int)_startPosY + 17, 16, 2);
//заднее поперечное крыло
g2d.fillOval((int)_startPosX - 3, (int)_startPosY + 7, 10, 5);
//задние шасси //задние шасси
g2d.fillRect((int)_startPosX + 10, (int)_startPosY + 21, 2, 2); g2d.fillRect((int)_startPosX + 10, (int)_startPosY + 21, 2, 2);
g2d.fillRect((int)_startPosX + 12, (int)_startPosY + 23, 4, 4); g2d.fillRect((int)_startPosX + 12, (int)_startPosY + 23, 4, 4);
@ -129,21 +160,39 @@ public class DrawingPlane
g2d.fillRect((int)_startPosX + 35, (int)_startPosY + 21, 2, 2); g2d.fillRect((int)_startPosX + 35, (int)_startPosY + 21, 2, 2);
g2d.fillRect((int)_startPosX + 35, (int)_startPosY + 23, 4, 4); g2d.fillRect((int)_startPosX + 35, (int)_startPosY + 23, 4, 4);
g2d.setColor(Color.BLACK); //рисует контур //заливка хвостового крыла
//корпус g2d.setColor(Plane.GetColor());
g2d.drawRect((int)_startPosX, (int)_startPosY + 10, 40, 10); int[] xCoordFirst = {(int)_startPosX, (int)_startPosX, (int)_startPosX + 10};
int[] yCoordFirst = {(int)_startPosY + 10, (int)_startPosY, (int)_startPosY + 10};
g2d.fillPolygon(xCoordFirst, yCoordFirst, xCoordFirst.length);
//хвостовое крыло //заливка носа самолёта
int[] xCoordSecond = {(int)_startPosX + 40, (int)_startPosX + 47, (int)_startPosX + 40};
int[] yCoordSecond = {(int)_startPosY + 15, (int)_startPosY + 15, (int)_startPosY + 10};
g2d.fillPolygon(xCoordSecond, yCoordSecond, xCoordSecond.length);
int[] xCoordThird = {(int)_startPosX + 40, (int)_startPosX + 50, (int)_startPosX + 40};
int[] yCoordThird = {(int)_startPosY + 15, (int)_startPosY + 15, (int)_startPosY + 20};
g2d.fillPolygon(xCoordThird, yCoordThird, xCoordThird.length);
//контур хвостового крыла
g2d.setColor(Color.BLACK);
g2d.drawLine((int)_startPosX, (int)_startPosY + 10, (int)_startPosX, (int)_startPosY); g2d.drawLine((int)_startPosX, (int)_startPosY + 10, (int)_startPosX, (int)_startPosY);
g2d.drawLine((int)_startPosX, (int)_startPosY, (int)_startPosX + 10, (int)_startPosY + 10); g2d.drawLine((int)_startPosX, (int)_startPosY, (int)_startPosX + 10, (int)_startPosY + 10);
//нос самолёта //отрисовка контура самолёта
g2d.drawLine((int)_startPosX + 40, (int)_startPosY + 15, (int)_startPosX + 50, (int)_startPosY + 16); g2d.drawLine((int)_startPosX + 40, (int)_startPosY + 15, (int)_startPosX + 50, (int)_startPosY + 15);
g2d.drawLine((int)_startPosX + 40, (int)_startPosY + 10, (int)_startPosX + 47, (int)_startPosY + 15); g2d.drawLine((int)_startPosX + 40, (int)_startPosY + 10, (int)_startPosX + 47, (int)_startPosY + 15);
g2d.drawLine((int)_startPosX + 40, (int)_startPosY + 20, (int)_startPosX + 50, (int)_startPosY + 15); g2d.drawLine((int)_startPosX + 40, (int)_startPosY + 20, (int)_startPosX + 50, (int)_startPosY + 15);
//контур корпуса
g2d.drawRect((int)_startPosX, (int)_startPosY + 10, 40, 10);
//заднее поперечное крыло
g2d.fillOval((int)_startPosX - 3, (int)_startPosY + 7, 10, 5);
//отрисовка иллюминаторов //отрисовка иллюминаторов
_airplaneWindow.DrawAirplaneWindow(Airbus.GetColor(), g, _startPosX, _startPosY); _airplaneWindow.DrawAirplaneWindow(Plane.GetColor(), g, _startPosX, _startPosY);
} }
//смена границ формы отрисовки //смена границ формы отрисовки
@ -169,4 +218,9 @@ public class DrawingPlane
_startPosY = _pictureHeight - _airbusHeight; _startPosY = _pictureHeight - _airbusHeight;
} }
} }
}
public float[] GetCurrentPosition()
{
return new float[]{_startPosX, _startPosY, _startPosX + _airbusWidth, _startPosY + _airbusHeight};
}
}

View File

@ -0,0 +1,54 @@
import javax.swing.*;
import java.awt.*;
public class DrawingRectAirplaneWindow extends JComponent implements IAdditionalDrawingObject
{
private Additional_Enum _airplaneWindowEnum;
@Override
public void SetAddEnum(int airplaneWindow)
{
for(Additional_Enum item : _airplaneWindowEnum.values())
{
if(item.GetAddEnum() == airplaneWindow)
{
_airplaneWindowEnum = item;
return;
}
}
}
public void DrawAirplaneWindow(Color colorWindow, Graphics g, float _startPosX, float _startPosY)
{
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g;
if(_airplaneWindowEnum.GetAddEnum() >= 1)
{
g2d.setPaint(colorWindow);
g2d.fillRect((int)_startPosX + 9, (int)_startPosY + 11, 6, 4);
g2d.setPaint(Color.BLACK);
g2d.drawRect((int)_startPosX + 9, (int)_startPosY + 11, 6, 4);
}
if(_airplaneWindowEnum.GetAddEnum() >= 2)
{
g2d.setPaint(colorWindow);
g2d.fillRect((int)_startPosX + 18, (int)_startPosY + 11, 6, 4);
g2d.setPaint(Color.BLACK);
g2d.drawRect((int)_startPosX + 18, (int)_startPosY + 11, 6, 4);
}
if(_airplaneWindowEnum.GetAddEnum() >= 3)
{
g2d.setPaint(colorWindow);
g2d.fillRect((int)_startPosX + 27, (int)_startPosY + 11, 6, 4);
g2d.setPaint(Color.BLACK);
g2d.drawRect((int)_startPosX + 27, (int)_startPosY + 11, 6, 4);
}
}
}

View File

@ -0,0 +1,63 @@
import javax.swing.*;
import java.awt.*;
public class DrawingTriangleAirplaneWindow extends JComponent implements IAdditionalDrawingObject
{
private Additional_Enum _airplaneWindowEnum;
@Override
public void SetAddEnum(int airplaneWindow)
{
for(Additional_Enum item : _airplaneWindowEnum.values())
{
if(item.GetAddEnum() == airplaneWindow)
{
_airplaneWindowEnum = item;
return;
}
}
}
public void DrawAirplaneWindow(Color colorWindow, Graphics g, float _startPosX, float _startPosY)
{
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g;
if(_airplaneWindowEnum.GetAddEnum() >= 1)
{
int[] x_point = {(int)_startPosX + 12, (int)_startPosX + 16, (int)_startPosX + 9};
int[] y_point = {(int)_startPosY + 11, (int)_startPosY + 15, (int)_startPosY + 15};
g2d.setPaint(colorWindow);
g2d.fillPolygon(x_point, y_point, 3);
g2d.setPaint(Color.BLACK);
g2d.drawPolygon(x_point, y_point, 3);
}
if(_airplaneWindowEnum.GetAddEnum() >= 2)
{
int[] x_point = {(int)_startPosX + 21, (int)_startPosX + 25, (int)_startPosX + 18};
int[] y_point = {(int)_startPosY + 11, (int)_startPosY + 15, (int)_startPosY + 15};
g2d.setPaint(colorWindow);
g2d.fillPolygon(x_point, y_point, 3);
g2d.setPaint(Color.BLACK);
g2d.drawPolygon(x_point, y_point, 3);
}
if(_airplaneWindowEnum.GetAddEnum() >= 3)
{
int[] x_point = {(int)_startPosX + 30, (int)_startPosX + 34, (int)_startPosX + 27};
int[] y_point = {(int)_startPosY + 11, (int)_startPosY + 15, (int)_startPosY + 15};
g2d.setPaint(colorWindow);
g2d.fillPolygon(x_point, y_point, 3);
g2d.setPaint(Color.BLACK);
g2d.drawPolygon(x_point, y_point, 3);
}
}
}

View File

@ -0,0 +1,48 @@
import java.awt.*;
public class DrawningObjectPlane implements IDrawningObject
{
private DrawingPlane _plane = null;
public DrawningObjectPlane(DrawingPlane plane){ _plane = plane; }
@Override
public float Step()
{
if(_plane != null && _plane.Plane != null)
{
return _plane.Plane.GetStep();
}
return 0;
}
@Override
public void SetObject(int x, int y, int width, int height)
{
_plane.SetPosition(x, y, width, height);
}
@Override
public void MoveObject(Direction direction)
{
_plane.MoveTransport(direction);
}
@Override
public void DrawningObject(Graphics g)
{
_plane.DrawTransport(g);
}
@Override
public float[] GetCurrentPosition()
{
if(_plane != null)
{
return _plane.GetCurrentPosition();
}
return null;
}
}

View File

@ -0,0 +1,22 @@
import java.awt.*;
public class EntityAirbus extends EntityPlane
{
//Дополнительный цвет
public Color AddColor;
//Признак наличия дополнительно пассажирского отсека
public boolean AddСompartment;
//Признак наличия дополнительных двигателей
public boolean AddEngine;
//Инициализация свойств
public EntityAirbus(int speed, float weight, Color corpusColor, Color addColor, boolean addCompartment, boolean addEngine)
{
super(speed, weight, corpusColor);
AddColor = addColor;
AddСompartment = addCompartment;
AddEngine = addEngine;
}
}

View File

@ -2,30 +2,37 @@ import java.awt.*;
public class EntityPlane public class EntityPlane
{ {
public int Speed; //скорость //скорость
public int GetSpeed(){ public int Speed;
public int GetSpeed()
{
return Speed; return Speed;
} }
public float Weight; //вес //вес
public float GetWeight(){ public float Weight;
public float GetWeight()
{
return Weight; return Weight;
} }
public Color CorpusColor; //цвет корпуса //цвет корпуса
public Color GetColor(){ public Color CorpusColor;
public Color GetColor()
{
return CorpusColor; return CorpusColor;
} }
//шаг перемещения самолёта //шаг перемещения самолёта
public float GetStep(){ public float GetStep()
{
return Speed * 100 / Weight; return Speed * 100 / Weight;
} }
public void Initial(int speed, float weight, Color corpusColor) public EntityPlane(int speed, float weight, Color corpusColor)
{ {
Speed = speed; Speed = speed;
Weight = weight; Weight = weight;
CorpusColor = corpusColor; CorpusColor = corpusColor;
} }
} }

View File

@ -1,120 +0,0 @@
import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import java.util.Random;
public class FormAirbus
{
protected DrawingPlane plane = new DrawingPlane();
public JPanel MainPanel;
private JButton ButtonCreate;
private JButton ButtonLeft;
private JButton ButtonDown;
private JButton ButtonRight;
private JButton ButtonUp;
private JToolBar StatusStrip;
private JPanel PictureBox;
private JLabel LabelSpeed = new JLabel();
private JLabel LabelWeight = new JLabel();
private JLabel LabelColor = new JLabel();
public FormAirbus()
{
//создание строки отображения скорости, веса и цвета объекта
Box LableBox = Box.createHorizontalBox();
LableBox.setMinimumSize(new Dimension(1, 20));
LableBox.add(LabelSpeed);
LableBox.add(LabelWeight);
LableBox.add(LabelColor);
StatusStrip.add(LableBox);
try
{
Image img = ImageIO.read(getClass().getResource("resourses/Up.png"));
ButtonUp.setIcon(new ImageIcon(img));
img = ImageIO.read(getClass().getResource("resourses/Left.png"));
ButtonLeft.setIcon(new ImageIcon(img));
img = ImageIO.read(getClass().getResource("resourses/Down.png"));
ButtonDown.setIcon(new ImageIcon(img));
img = ImageIO.read(getClass().getResource("resourses/Right.png"));
ButtonRight.setIcon(new ImageIcon(img));
} catch (Exception ex){
System.out.println(ex.getMessage());
}
ButtonCreate.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
plane = new DrawingPlane();
Random rnd = new Random();
plane.Initial(rnd.nextInt(100, 300), rnd.nextInt(1000, 2000),
new Color(rnd.nextInt(256), rnd.nextInt(256), rnd.nextInt(256)));
plane.SetPosition(rnd.nextInt(10, 100), rnd.nextInt(10, 100),
PictureBox.getWidth(), PictureBox.getHeight());
LabelSpeed.setText("Скорость: " + plane.GetPlane().GetSpeed() + " ");
LabelWeight.setText("Вес: " + plane.GetPlane().GetWeight() + " ");
LabelColor.setText("Цвет: r = " + plane.GetPlane().GetColor().getRed() + " g = " + plane.GetPlane().GetColor().getGreen() +
" b = " + plane.GetPlane().GetColor().getBlue());
Draw();
}
});
//обновление размеров формы
MainPanel.addComponentListener(new ComponentAdapter() {
@Override
public void componentResized(ComponentEvent e) {
super.componentResized(e);
plane.ChangeBorders(PictureBox.getWidth(), PictureBox.getHeight());
Draw();
}
});
ButtonUp.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
plane.MoveTransport(Direction.Up);
Draw();
}
});
ButtonLeft.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
plane.MoveTransport(Direction.Left);
Draw();
}
});
ButtonDown.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
plane.MoveTransport(Direction.Down);
Draw();
}
});
ButtonRight.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
plane.MoveTransport(Direction.Right);
Draw();
}
});
}
public void Draw()
{
if(plane.GetPlane() == null)
{
return;
}
plane.DrawTransport(PictureBox.getGraphics());
}
}

View File

@ -0,0 +1,189 @@
<?xml version="1.0" encoding="UTF-8"?>
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="FormMapWithSetPlanesGeneric">
<grid id="27dc6" binding="MainPanel" layout-manager="GridLayoutManager" row-count="1" column-count="2" 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="994" height="609"/>
</constraints>
<properties/>
<border type="none"/>
<children>
<grid id="92d87" binding="PictureBoxPlane" layout-manager="BorderLayout" hgap="0" vgap="0">
<constraints>
<grid row="0" column="0" row-span="1" col-span="1" vsize-policy="3" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false">
<minimum-size width="730" height="550"/>
<preferred-size width="730" height="550"/>
<maximum-size width="730" height="550"/>
</grid>
</constraints>
<properties/>
<border type="none"/>
<children/>
</grid>
<grid id="4871f" binding="ButtonGroupPanel" layout-manager="GridLayoutManager" row-count="13" column-count="3" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
<margin top="0" left="0" bottom="0" right="0"/>
<constraints>
<grid row="0" column="1" row-span="1" col-span="1" vsize-policy="3" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false">
<minimum-size width="250" height="550"/>
<preferred-size width="250" height="550"/>
<maximum-size width="250" height="550"/>
</grid>
</constraints>
<properties/>
<border type="none" title="Инструменты"/>
<children>
<component id="1388e" class="javax.swing.JComboBox" binding="ComboBoxSelectorMap">
<constraints>
<grid row="0" column="0" row-span="1" col-span="3" vsize-policy="0" hsize-policy="2" anchor="0" fill="0" indent="0" use-parent-layout="false">
<minimum-size width="220" height="30"/>
<preferred-size width="220" height="30"/>
<maximum-size width="220" height="30"/>
</grid>
</constraints>
<properties>
<model>
<item value="Простая карта"/>
<item value="Буря в пустыне"/>
<item value="Звёздные войны"/>
</model>
</properties>
</component>
<component id="d0967" class="javax.swing.JButton" binding="ButtonLeft">
<constraints>
<grid row="12" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="4" fill="0" indent="0" use-parent-layout="false">
<minimum-size width="45" height="45"/>
<preferred-size width="45" height="45"/>
<maximum-size width="45" height="45"/>
</grid>
</constraints>
<properties>
<text value=""/>
</properties>
</component>
<component id="d9af3" class="javax.swing.JButton" binding="ButtonDown">
<constraints>
<grid row="12" 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="45" height="45"/>
<preferred-size width="45" height="45"/>
<maximum-size width="45" height="45"/>
</grid>
</constraints>
<properties>
<text value=""/>
</properties>
</component>
<component id="9e43" class="javax.swing.JButton" binding="ButtonRight">
<constraints>
<grid row="12" column="2" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="8" fill="0" indent="0" use-parent-layout="false">
<minimum-size width="45" height="45"/>
<preferred-size width="45" height="45"/>
<maximum-size width="45" height="45"/>
</grid>
</constraints>
<properties>
<text value=""/>
</properties>
</component>
<component id="4d1dd" class="javax.swing.JButton" binding="ButtonUp">
<constraints>
<grid row="11" 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="45" height="45"/>
<preferred-size width="45" height="45"/>
<maximum-size width="45" height="45"/>
</grid>
</constraints>
<properties>
<text value=""/>
</properties>
</component>
<component id="67190" class="javax.swing.JButton" binding="ButtonShowOnMap">
<constraints>
<grid row="9" column="0" row-span="1" col-span="3" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false">
<minimum-size width="220" height="30"/>
<preferred-size width="220" height="30"/>
<maximum-size width="220" height="30"/>
</grid>
</constraints>
<properties>
<text value="Посмотреть карту"/>
</properties>
</component>
<component id="28576" class="javax.swing.JButton" binding="ButtonShowStorage">
<constraints>
<grid row="7" column="0" row-span="1" col-span="3" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false">
<minimum-size width="220" height="30"/>
<preferred-size width="220" height="30"/>
<maximum-size width="220" height="30"/>
</grid>
</constraints>
<properties>
<text value="Посмотреть хранилище"/>
</properties>
</component>
<component id="7119" class="javax.swing.JButton" binding="ButtonAddPlane">
<constraints>
<grid row="2" column="0" row-span="1" col-span="3" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false">
<minimum-size width="220" height="30"/>
<preferred-size width="220" height="30"/>
<maximum-size width="220" height="30"/>
</grid>
</constraints>
<properties>
<text value="Добавить самолёт"/>
</properties>
</component>
<component id="6f119" class="javax.swing.JTextField" binding="MaskedTextBoxPosition">
<constraints>
<grid row="4" column="0" row-span="1" col-span="3" vsize-policy="0" hsize-policy="6" anchor="0" fill="0" indent="0" use-parent-layout="false">
<minimum-size width="220" height="30"/>
<preferred-size width="220" height="30"/>
<maximum-size width="220" height="30"/>
</grid>
</constraints>
<properties>
<columns value="2"/>
<text value=""/>
</properties>
</component>
<component id="d75e9" class="javax.swing.JButton" binding="ButtonRemovePlane">
<constraints>
<grid row="5" column="0" row-span="1" col-span="3" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false">
<minimum-size width="220" height="30"/>
<preferred-size width="220" height="30"/>
<maximum-size width="220" height="30"/>
</grid>
</constraints>
<properties>
<text value="Удалить самолёт"/>
</properties>
</component>
<vspacer id="85889">
<constraints>
<grid row="1" 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>
<vspacer id="ed421">
<constraints>
<grid row="3" 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>
<vspacer id="f972a">
<constraints>
<grid row="6" 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>
<vspacer id="65c78">
<constraints>
<grid row="8" 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>
<vspacer id="7d70b">
<constraints>
<grid row="10" 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>
</children>
</grid>
</children>
</grid>
</form>

View File

@ -0,0 +1,272 @@
import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.awt.image.BufferedImage;
public class FormMapWithSetPlanesGeneric {
public JPanel MainPanel;
private JPanel PictureBoxPlane;
private JPanel ButtonGroupPanel;
private JComboBox ComboBoxSelectorMap;
private JButton ButtonLeft;
private JButton ButtonDown;
private JButton ButtonRight;
private JButton ButtonUp;
private JButton ButtonShowOnMap;
private JButton ButtonShowStorage;
private JButton ButtonAddPlane;
private JTextField MaskedTextBoxPosition;
private JButton ButtonRemovePlane;
//объект от класса карты с набором объектов
private MapWithSetPlanesGeneric<DrawningObjectPlane, AbstractMap> _mapPlanesCollectionGeneric;
//обновление отрисовки
public void UpdateWindow(BufferedImage bmp)
{
PictureBoxPlane.removeAll();
JLabel imageWithMapAndObject = new JLabel();
imageWithMapAndObject.setPreferredSize(PictureBoxPlane.getSize());
imageWithMapAndObject.setMinimumSize(new Dimension(1, 1));
imageWithMapAndObject.setIcon(new ImageIcon(bmp));
PictureBoxPlane.add(imageWithMapAndObject, BorderLayout.CENTER);
PictureBoxPlane.revalidate();
}
public FormMapWithSetPlanesGeneric()
{
//загрузка изображений для кнопок
try
{
Image img = ImageIO.read(getClass().getResource("resourses/Up.png"));
ButtonUp.setIcon(new ImageIcon(img));
img = ImageIO.read(getClass().getResource("resourses/Left.png"));
ButtonLeft.setIcon(new ImageIcon(img));
img = ImageIO.read(getClass().getResource("resourses/Down.png"));
ButtonDown.setIcon(new ImageIcon(img));
img = ImageIO.read(getClass().getResource("resourses/Right.png"));
ButtonRight.setIcon(new ImageIcon(img));
}
catch (Exception ex)
{
System.out.println(ex.getMessage());
}
//добавление самолёта
ButtonAddPlane.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if(_mapPlanesCollectionGeneric == null)
{
return;
}
FormPlane form = new FormPlane();
form.setSize(700,400);
form.setVisible(true);
form.setModal(true);
DrawningObjectPlane plane = new DrawningObjectPlane(form.GetSelectedShip());
if(_mapPlanesCollectionGeneric.Add(plane) != -1)
{
JOptionPane.showMessageDialog(null,"Объект добавлен");
UpdateWindow(_mapPlanesCollectionGeneric.ShowSet());
}
else
{
JOptionPane.showMessageDialog(null,"Не удалось добавить объект");
}
}
});
//удаление самолёта
ButtonRemovePlane.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (MaskedTextBoxPosition.getText().isEmpty())
{
return;
}
int result = JOptionPane.showConfirmDialog(null,"Удалить объект?","Удаление",
JOptionPane.YES_NO_OPTION,JOptionPane.WARNING_MESSAGE);
if(result==JOptionPane.NO_OPTION)
{
return;
}
int pos = Integer.parseInt(MaskedTextBoxPosition.getText());
if(_mapPlanesCollectionGeneric.Delete(pos) != null)
{
JOptionPane.showMessageDialog(null,"Объект удалён");
UpdateWindow(_mapPlanesCollectionGeneric.ShowSet());
}
else
{
JOptionPane.showMessageDialog(null,"Не удалось удалить объект");
}
}
});
//показ хранилища
ButtonShowStorage.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if(_mapPlanesCollectionGeneric == null)
{
return;
}
UpdateWindow(_mapPlanesCollectionGeneric.ShowSet());
}
});
//показ карты
ButtonShowOnMap.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (_mapPlanesCollectionGeneric == null)
{
return;
}
UpdateWindow(_mapPlanesCollectionGeneric.ShowOnMap());
}
});
ButtonUp.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if(_mapPlanesCollectionGeneric == null)
{
return;
}
PictureBoxPlane.removeAll();
JLabel imageWithMapAndObject = new JLabel();
imageWithMapAndObject.setPreferredSize(PictureBoxPlane.getSize());
imageWithMapAndObject.setMinimumSize(new Dimension(1, 1));
imageWithMapAndObject.setIcon(new ImageIcon(_mapPlanesCollectionGeneric.MoveObject((Direction.Up))));
PictureBoxPlane.add(imageWithMapAndObject, BorderLayout.CENTER);
PictureBoxPlane.revalidate();
PictureBoxPlane.repaint();
}
});
ButtonLeft.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if(_mapPlanesCollectionGeneric == null)
{
return;
}
PictureBoxPlane.removeAll();
JLabel imageWithMapAndObject = new JLabel();
imageWithMapAndObject.setPreferredSize(PictureBoxPlane.getSize());
imageWithMapAndObject.setMinimumSize(new Dimension(1, 1));
imageWithMapAndObject.setIcon(new ImageIcon(_mapPlanesCollectionGeneric.MoveObject((Direction.Left))));
PictureBoxPlane.add(imageWithMapAndObject, BorderLayout.CENTER);
PictureBoxPlane.revalidate();
PictureBoxPlane.repaint();
}
});
ButtonDown.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if(_mapPlanesCollectionGeneric == null)
{
return;
}
PictureBoxPlane.removeAll();
JLabel imageWithMapAndObject = new JLabel();
imageWithMapAndObject.setPreferredSize(PictureBoxPlane.getSize());
imageWithMapAndObject.setMinimumSize(new Dimension(1, 1));
imageWithMapAndObject.setIcon(new ImageIcon(_mapPlanesCollectionGeneric.MoveObject((Direction.Down))));
PictureBoxPlane.add(imageWithMapAndObject, BorderLayout.CENTER);
PictureBoxPlane.revalidate();
PictureBoxPlane.repaint();
}
});
ButtonRight.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if(_mapPlanesCollectionGeneric == null)
{
return;
}
PictureBoxPlane.removeAll();
JLabel imageWithMapAndObject = new JLabel();
imageWithMapAndObject.setPreferredSize(PictureBoxPlane.getSize());
imageWithMapAndObject.setMinimumSize(new Dimension(1, 1));
imageWithMapAndObject.setIcon(new ImageIcon(_mapPlanesCollectionGeneric.MoveObject((Direction.Right))));
PictureBoxPlane.add(imageWithMapAndObject, BorderLayout.CENTER);
PictureBoxPlane.revalidate();
PictureBoxPlane.repaint();
}
});
//выпадающий список с вариантами карт
ComboBoxSelectorMap.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
AbstractMap map = null;
ComboBoxSelectorMap = (JComboBox)e.getSource();
String item = (String)ComboBoxSelectorMap.getSelectedItem();
switch(item)
{
case "Простая карта":
map = new SimpleMap();
break;
case "Буря в пустыне":
map = new DesertStormMap();
break;
case "Звёздные войны":
map = new StarWarsMap();
break;
}
if(map != null)
{
_mapPlanesCollectionGeneric = new MapWithSetPlanesGeneric<DrawningObjectPlane, AbstractMap>(
PictureBoxPlane.getWidth(), PictureBoxPlane.getHeight(), map);
}
else
{
_mapPlanesCollectionGeneric = null;
}
}
});
MaskedTextBoxPosition.addKeyListener(new KeyAdapter() {
@Override
public void keyTyped(KeyEvent e) {
char c = e.getKeyChar();
if ( ((c < '0') || (c > '9')) || MaskedTextBoxPosition.getText().length() >= 2) {
e.consume();
}
}
});
}
}

View File

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8"?>
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="FormParam">
<grid id="27dc6" binding="MainPanel" layout-manager="GridLayoutManager" row-count="6" 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="701" height="430"/>
</constraints>
<properties/>
<border type="none"/>
<children>
<toolbar id="d67f5" binding="StatusStrip">
<constraints>
<grid row="5" column="0" row-span="1" col-span="3" vsize-policy="0" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false">
<preferred-size width="-1" height="20"/>
</grid>
</constraints>
<properties/>
<border type="none"/>
<children/>
</toolbar>
<hspacer id="92788">
<constraints>
<grid row="4" column="3" row-span="1" col-span="1" vsize-policy="1" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
</constraints>
</hspacer>
<component id="72d61" class="javax.swing.JButton" binding="ButtonAddPlane">
<constraints>
<grid row="4" column="1" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="0" indent="0" use-parent-layout="false"/>
</constraints>
<properties>
<text value="Создать"/>
</properties>
</component>
<hspacer id="f7ecd">
<constraints>
<grid row="4" column="0" row-span="1" col-span="1" vsize-policy="1" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
</constraints>
</hspacer>
<hspacer id="94a6a">
<constraints>
<grid row="4" column="5" row-span="1" col-span="1" vsize-policy="1" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
</constraints>
</hspacer>
<component id="d66bb" class="javax.swing.JButton" binding="ButtonCreateModif">
<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"/>
</constraints>
<properties>
<text value="Модификация"/>
</properties>
</component>
<hspacer id="a433d">
<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>
<grid id="ecc65" binding="PictureBoxPlane" layout-manager="BorderLayout" hgap="0" vgap="0">
<constraints>
<grid row="0" column="0" row-span="4" col-span="5" vsize-policy="3" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
</constraints>
<properties/>
<border type="none"/>
<children/>
</grid>
<component id="56eb2" class="javax.swing.JLabel" binding="LabelInfo">
<constraints>
<grid row="0" column="5" row-span="4" col-span="1" vsize-policy="0" hsize-policy="0" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
</constraints>
<properties>
<horizontalAlignment value="0"/>
<horizontalTextPosition value="0"/>
<text value=""/>
</properties>
</component>
</children>
</grid>
</form>

128
Project/src/FormParam.java Normal file
View File

@ -0,0 +1,128 @@
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.util.Random;
public class FormParam extends JFrame
{
public JPanel MainPanel;
private JButton ButtonAddPlane;
private JPanel PictureBoxPlane;
private JButton ButtonCreateModif;
private JLabel LabelInfo;
private JLabel LabelSpeed = new JLabel();
private JLabel LabelWeight = new JLabel();
private JLabel LabelColor = new JLabel();
private JToolBar StatusStrip;
private DrawingEntities<EntityPlane, IAdditionalDrawingObject> _drawingEntities;
private IAdditionalDrawingObject SetData()
{
Random rnd = new Random();
int r = rnd.nextInt(3);
if(r == 0)
{
return new DrawingAirplaneWindow();
}
if(r == 1)
{
return new DrawingTriangleAirplaneWindow();
}
return new DrawingRectAirplaneWindow();
}
private void Draw(DrawingPlane _plane)
{
PictureBoxPlane.removeAll();
Random rnd = new Random();
BufferedImage bmp = new BufferedImage(PictureBoxPlane.getWidth(), PictureBoxPlane.getHeight(), BufferedImage.TYPE_INT_RGB);
Graphics gr = bmp.getGraphics();
gr.setColor(new Color(238, 238, 238));
gr.fillRect(0, 0, PictureBoxPlane.getWidth(), PictureBoxPlane.getHeight());
if(_plane != null)
{
_plane.SetPosition(rnd.nextInt(10, 100), rnd.nextInt(10, 100),
PictureBoxPlane.getWidth(), PictureBoxPlane.getHeight());
_plane.DrawTransport(gr);
LabelSpeed.setText("Скорость: " + _plane.GetPlane().GetSpeed() + " ");
LabelWeight.setText("Вес: " + _plane.GetPlane().GetWeight() + " ");
LabelColor.setText("Цвет: r = " + _plane.GetPlane().GetColor().getRed() + " g = " + _plane.GetPlane().GetColor().getGreen() +
" b = " + _plane.GetPlane().GetColor().getBlue());
JLabel imageOfLogo = new JLabel();
imageOfLogo.setPreferredSize(PictureBoxPlane.getSize());
imageOfLogo.setMinimumSize(new Dimension(1, 1));
imageOfLogo.setIcon(new ImageIcon(bmp));
PictureBoxPlane.add(imageOfLogo, BorderLayout.CENTER);
}
validate();
}
public FormParam()
{
//создание строки отображения скорости, веса и цвета объекта
Box LableBox = Box.createHorizontalBox();
LableBox.setMinimumSize(new Dimension(1, 20));
LableBox.add(LabelSpeed);
LableBox.add(LabelWeight);
LableBox.add(LabelColor);
StatusStrip.add(LableBox);
_drawingEntities = new DrawingEntities<>(10, EntityPlane.class, IAdditionalDrawingObject.class);
ButtonAddPlane.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
Random rnd = new Random();
Color colorCorpus = JColorChooser.showDialog(null, "Выбор цвета", null);
EntityPlane plane = new EntityPlane(rnd.nextInt(100, 300), rnd.nextInt(1000, 2000), colorCorpus);
IAdditionalDrawingObject addWindows = SetData();
int countWindows = rnd.nextInt(1, 4);
addWindows.SetAddEnum(countWindows);
if((_drawingEntities.Insert(plane) != -1) && (_drawingEntities.Insert(addWindows) != -1))
{
JOptionPane.showMessageDialog(null, "Объект добавлен");
Draw(_drawingEntities.CreatePlane());
LabelInfo.setText(_drawingEntities._x_index + " " + _drawingEntities._y_index);
}
else
{
JOptionPane.showMessageDialog(null, "Не удалось добавить объект");
}
}
});
ButtonCreateModif.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
Random rnd = new Random();
Color colorFirst = JColorChooser.showDialog(null, "Выбор цвета", null);
Color colorSecond = JColorChooser.showDialog(null, "Выбор цвета", null);
EntityAirbus airbus = new EntityAirbus(rnd.nextInt(100, 300), rnd.nextInt(1000, 2000),
colorFirst, colorSecond, rnd.nextBoolean(), rnd.nextBoolean());
IAdditionalDrawingObject addWindows = SetData();
int countWindows = rnd.nextInt(1, 4);
addWindows.SetAddEnum(countWindows);
if((_drawingEntities.Insert(airbus) != -1) && (_drawingEntities.Insert(addWindows) != -1))
{
JOptionPane.showMessageDialog(null, "Объект добавлен");
Draw(_drawingEntities.CreatePlane());
LabelInfo.setText(_drawingEntities._x_index + " " + _drawingEntities._y_index);
}
else
{
JOptionPane.showMessageDialog(null, "Не удалось добавить объект");
}
}
});
}
}

View File

@ -1,16 +1,16 @@
<?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="FormAirbus"> <form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="FormPlane">
<grid id="27dc6" binding="MainPanel" layout-manager="GridLayoutManager" row-count="3" column-count="7" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1"> <grid id="27dc6" binding="MainPanel" layout-manager="GridLayoutManager" row-count="4" column-count="10" 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="20" y="42" width="864" height="483"/> <xy x="20" y="42" width="1040" height="483"/>
</constraints> </constraints>
<properties/> <properties/>
<border type="none"/> <border type="none"/>
<children> <children>
<component id="67a15" class="javax.swing.JButton" binding="ButtonLeft"> <component id="67a15" class="javax.swing.JButton" binding="ButtonLeft">
<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="2" column="7" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="4" fill="0" indent="0" use-parent-layout="false">
<minimum-size width="45" height="45"/> <minimum-size width="45" height="45"/>
<preferred-size width="45" height="45"/> <preferred-size width="45" height="45"/>
<maximum-size width="45" height="45"/> <maximum-size width="45" height="45"/>
@ -23,7 +23,7 @@
</component> </component>
<component id="b10a1" class="javax.swing.JButton" binding="ButtonRight"> <component id="b10a1" class="javax.swing.JButton" binding="ButtonRight">
<constraints> <constraints>
<grid row="2" column="6" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false"> <grid row="2" column="9" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="8" fill="0" indent="0" use-parent-layout="false">
<minimum-size width="45" height="45"/> <minimum-size width="45" height="45"/>
<preferred-size width="45" height="45"/> <preferred-size width="45" height="45"/>
<maximum-size width="45" height="45"/> <maximum-size width="45" height="45"/>
@ -34,38 +34,21 @@
<text value=""/> <text value=""/>
</properties> </properties>
</component> </component>
<hspacer id="5b756">
<constraints>
<grid row="2" column="3" row-span="1" col-span="1" vsize-policy="1" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
</constraints>
</hspacer>
<component id="a48b0" class="javax.swing.JButton" binding="ButtonCreate"> <component id="a48b0" class="javax.swing.JButton" binding="ButtonCreate">
<constraints> <constraints>
<grid row="2" column="1" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false"> <grid row="2" column="0" row-span="1" col-span="2" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false">
<minimum-size width="100" height="25"/> <minimum-size width="100" height="30"/>
<preferred-size width="100" height="25"/> <preferred-size width="100" height="30"/>
<maximum-size width="100" height="25"/> <maximum-size width="100" height="30"/>
</grid> </grid>
</constraints> </constraints>
<properties> <properties>
<text value="Создать"/> <text value="Создать"/>
</properties> </properties>
</component> </component>
<toolbar id="ede45" binding="StatusStrip"> <grid id="b0c9a" binding="PictureBoxPlane" layout-manager="BorderLayout" hgap="0" vgap="0">
<constraints> <constraints>
<grid row="2" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false"> <grid row="0" column="0" row-span="1" col-span="10" vsize-policy="3" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
<minimum-size width="345" height="25"/>
<preferred-size width="345" height="25"/>
<maximum-size width="345" height="25"/>
</grid>
</constraints>
<properties/>
<border type="none"/>
<children/>
</toolbar>
<grid id="b0c9a" binding="PictureBox" layout-manager="BorderLayout" hgap="0" vgap="0">
<constraints>
<grid row="0" column="0" row-span="1" col-span="7" vsize-policy="3" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
</constraints> </constraints>
<properties/> <properties/>
<border type="none"/> <border type="none"/>
@ -73,7 +56,7 @@
</grid> </grid>
<component id="51778" class="javax.swing.JButton" binding="ButtonDown"> <component id="51778" class="javax.swing.JButton" binding="ButtonDown">
<constraints> <constraints>
<grid row="2" column="5" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false"> <grid row="2" column="8" 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="45" height="45"/> <minimum-size width="45" height="45"/>
<preferred-size width="45" height="45"/> <preferred-size width="45" height="45"/>
<maximum-size width="45" height="45"/> <maximum-size width="45" height="45"/>
@ -86,7 +69,7 @@
</component> </component>
<component id="44002" class="javax.swing.JButton" binding="ButtonUp"> <component id="44002" class="javax.swing.JButton" binding="ButtonUp">
<constraints> <constraints>
<grid row="1" column="5" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false"> <grid row="1" column="8" 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="45" height="45"/> <minimum-size width="45" height="45"/>
<preferred-size width="45" height="45"/> <preferred-size width="45" height="45"/>
<maximum-size width="45" height="45"/> <maximum-size width="45" height="45"/>
@ -97,14 +80,46 @@
<text value=""/> <text value=""/>
</properties> </properties>
</component> </component>
<hspacer id="993b6"> <component id="96587" class="javax.swing.JButton" binding="ButtonCreateModif">
<constraints> <constraints>
<grid row="2" column="2" row-span="1" col-span="1" vsize-policy="1" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false"> <grid row="2" column="2" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="8" fill="0" indent="0" use-parent-layout="false">
<minimum-size width="220" height="25"/> <minimum-size width="120" height="30"/>
<preferred-size width="220" height="25"/> <preferred-size width="120" height="30"/>
<maximum-size width="220" height="25"/> <maximum-size width="120" height="30"/>
</grid> </grid>
</constraints> </constraints>
<properties>
<text value="Модификация"/>
</properties>
</component>
<component id="c1262" class="javax.swing.JButton" binding="ButtonSelectPlane">
<constraints>
<grid row="2" 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="100" height="30"/>
<preferred-size width="100" height="30"/>
<maximum-size width="100" height="30"/>
</grid>
</constraints>
<properties>
<text value="Выбрать"/>
</properties>
</component>
<toolbar id="ede45" binding="StatusStrip">
<constraints>
<grid row="3" column="0" row-span="1" col-span="3" vsize-policy="0" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false">
<minimum-size width="345" height="25"/>
<preferred-size width="345" height="25"/>
<maximum-size width="345" height="25"/>
</grid>
</constraints>
<properties/>
<border type="none"/>
<children/>
</toolbar>
<hspacer id="5bc63">
<constraints>
<grid row="2" column="3" row-span="1" col-span="2" vsize-policy="1" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
</constraints>
</hspacer> </hspacer>
</children> </children>
</grid> </grid>

192
Project/src/FormPlane.java Normal file
View File

@ -0,0 +1,192 @@
import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.image.BufferedImage;
import java.util.Random;
public class FormPlane extends JDialog
{
public JPanel MainPanel;
private JButton ButtonCreate;
private JButton ButtonLeft;
private JButton ButtonDown;
private JButton ButtonRight;
private JButton ButtonUp;
private JToolBar StatusStrip;
private JPanel PictureBoxPlane;
private JButton ButtonCreateModif;
private JButton ButtonSelectPlane;
private JLabel LabelSpeed = new JLabel();
private JLabel LabelWeight = new JLabel();
private JLabel LabelColor = new JLabel();
protected DrawingPlane plane;
protected DrawingPlane _selectedPlane;
public DrawingPlane GetSelectedShip()
{
return _selectedPlane;
}
//метод отрисовки
public void Draw(DrawingPlane _plane) {
PictureBoxPlane.removeAll();
BufferedImage bmp = new BufferedImage(PictureBoxPlane.getWidth(), PictureBoxPlane.getHeight(), BufferedImage.TYPE_INT_RGB);
Graphics gr = bmp.getGraphics();
gr.setColor(new Color(238, 238, 238));
gr.fillRect(0, 0, PictureBoxPlane.getWidth(), PictureBoxPlane.getHeight());
if (plane.GetPlane() != null) {
_plane.DrawTransport(gr);
JLabel imageOfLogo = new JLabel();
imageOfLogo.setPreferredSize(PictureBoxPlane.getSize());
imageOfLogo.setMinimumSize(new Dimension(1, 1));
imageOfLogo.setIcon(new ImageIcon(bmp));
PictureBoxPlane.add(imageOfLogo, BorderLayout.CENTER);
}
validate();
}
//создание всплывающего окна
public FormPlane()
{
super(new Frame("Airbus"));
CreateWindow();
setModal(true);
getContentPane().add(MainPanel);
}
public void CreateWindow()
{
setModal(true);
//создание строки отображения скорости, веса и цвета объекта
Box LableBox = Box.createHorizontalBox();
LableBox.setMinimumSize(new Dimension(1, 20));
LableBox.add(LabelSpeed);
LableBox.add(LabelWeight);
LableBox.add(LabelColor);
StatusStrip.add(LableBox);
try
{
Image img = ImageIO.read(getClass().getResource("resourses/Up.png"));
ButtonUp.setIcon(new ImageIcon(img));
img = ImageIO.read(getClass().getResource("resourses/Left.png"));
ButtonLeft.setIcon(new ImageIcon(img));
img = ImageIO.read(getClass().getResource("resourses/Down.png"));
ButtonDown.setIcon(new ImageIcon(img));
img = ImageIO.read(getClass().getResource("resourses/Right.png"));
ButtonRight.setIcon(new ImageIcon(img));
}
catch (Exception ex)
{
System.out.println(ex.getMessage());
}
_selectedPlane = plane;
ButtonCreate.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
Random rnd = new Random();
Color colorSimple = JColorChooser.showDialog(null, "Выберите цвет", null);
plane = new DrawingPlane(rnd.nextInt(100, 300), rnd.nextInt(1000, 2000),
colorSimple);
plane.SetPosition(rnd.nextInt(10, 100), rnd.nextInt(10, 100),
PictureBoxPlane.getWidth(), PictureBoxPlane.getHeight());
LabelSpeed.setText("Скорость: " + plane.GetPlane().GetSpeed() + " ");
LabelWeight.setText("Вес: " + plane.GetPlane().GetWeight() + " ");
LabelColor.setText("Цвет: r = " + plane.GetPlane().GetColor().getRed() + " g = " + plane.GetPlane().GetColor().getGreen() +
" b = " + plane.GetPlane().GetColor().getBlue());
Draw(plane);
}
});
ButtonCreateModif.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
Random rnd = new Random();
Color colorSimple = JColorChooser.showDialog(null, "Выберите цвет", null);
Color colorModif = JColorChooser.showDialog(null, "Выберите цвет", null);
plane = new DrawingAirbus(rnd.nextInt(100, 300), rnd.nextInt(1000, 2000),
colorSimple, colorModif, rnd.nextBoolean(), rnd.nextBoolean());
plane.SetPosition(rnd.nextInt(10, 100), rnd.nextInt(10, 100),
PictureBoxPlane.getWidth(), PictureBoxPlane.getHeight());
LabelSpeed.setText("Скорость: " + plane.GetPlane().GetSpeed() + " ");
LabelWeight.setText("Вес: " + plane.GetPlane().GetWeight() + " ");
LabelColor.setText("Цвет: r = " + plane.GetPlane().GetColor().getRed() + " g = " + plane.GetPlane().GetColor().getGreen() +
" b = " + plane.GetPlane().GetColor().getBlue());
Draw(plane);
}
});
PictureBoxPlane.addComponentListener(new ComponentAdapter() {
@Override
public void componentResized(ComponentEvent e) {
super.componentResized(e);
if(plane != null)
{
plane.ChangeBorders(PictureBoxPlane.getWidth(), PictureBoxPlane.getHeight());
PictureBoxPlane.revalidate();
Draw(plane);
}
}
});
ButtonUp.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
plane.MoveTransport(Direction.Up);
PictureBoxPlane.revalidate();
Draw(plane);
}
});
ButtonLeft.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
plane.MoveTransport(Direction.Left);
PictureBoxPlane.revalidate();
Draw(plane);
}
});
ButtonDown.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
plane.MoveTransport(Direction.Down);
PictureBoxPlane.revalidate();
Draw(plane);
}
});
ButtonRight.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
plane.MoveTransport(Direction.Right);
PictureBoxPlane.revalidate();
Draw(plane);
}
});
//кнопка подтверждение выбора
ButtonSelectPlane.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
_selectedPlane = plane;
dispose();
}
});
}
}

View File

@ -0,0 +1,7 @@
import java.awt.*;
public interface IAdditionalDrawingObject
{
void SetAddEnum(int airplaneWindow);
void DrawAirplaneWindow(Color colorAirplaneWindow, Graphics g, float _startPosX, float _startPosY);
}

View File

@ -0,0 +1,19 @@
import java.awt.*;
public interface IDrawningObject
{
//шаг перемещения объекта
public float Step();
//установка позиции объекта
void SetObject(int x, int y, int width, int height);
//изменение направления перемещения объекта
void MoveObject(Direction direction);
//отрисовка объекта
void DrawningObject(Graphics g);
//получение текущей позиции объекта
float[] GetCurrentPosition();
}

View File

@ -1,13 +1,15 @@
import javax.swing.*; import javax.swing.*;
public class Main { public class Main
public static void main(String[] args) { {
JFrame frame = new JFrame("Airbus"); public static void main(String[] args)
frame.setContentPane(new FormAirbus().MainPanel); {
JFrame frame = new JFrame("Аэробус");
frame.setContentPane(new FormParam().MainPanel);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocation(500, 200); frame.setLocation(500, 200);
frame.pack(); frame.pack();
frame.setSize(1000, 500); frame.setSize(800, 500);
frame.setVisible(true); frame.setVisible(true);
} }
} }

View File

@ -0,0 +1,205 @@
import java.awt.*;
import java.awt.image.BufferedImage;
public class MapWithSetPlanesGeneric <T extends IDrawningObject, U extends AbstractMap>
{
//ширина окна отрисовки
private final int _pictureWidth;
//высота окна отрисовки
private final int _pictureHeight;
//размер занимаемого объектом места (ширина)
private final int _placeSizeWidth = 210;
//размер занимаемого объектом места (высота)
private final int _placeSizeHeight = 90;
//набор объектов
private final SetPlanesGeneric<T> _setPlanes;
//карта
private final U _map;
//конструктор
public MapWithSetPlanesGeneric(int picWidth, int picHeight, U map)
{
int width = picWidth / _placeSizeWidth;
int height = picHeight / _placeSizeHeight;
_setPlanes = new SetPlanesGeneric<T>(width * height);
_pictureWidth = picWidth;
_pictureHeight = picHeight;
_map = map;
}
public int Add(T plane)
{
return _setPlanes.Insert(plane);
}
public T Delete(int position)
{
return _setPlanes.Remove(position);
}
//вывод всего набора объектов
public BufferedImage ShowSet()
{
BufferedImage bmp = new BufferedImage(_pictureWidth, _pictureHeight, BufferedImage.TYPE_INT_RGB);
Graphics gr = bmp.getGraphics();
DrawBackground(gr);
DrawPlanes(gr);
return bmp;
}
//просмотр объекта на карте
public BufferedImage ShowOnMap()
{
Shaking();
for(int i = 0; i < _setPlanes.Count(); i++)
{
var plane = _setPlanes.Get(i);
if(plane != null)
{
return _map.CreateMap(_pictureWidth, _pictureHeight, plane);
}
}
return new BufferedImage(_pictureWidth, _pictureHeight, BufferedImage.TYPE_INT_RGB);
}
//пеермещение объекта по карте
public BufferedImage MoveObject(Direction direction)
{
if(_map != null)
{
return _map.MoveObject(direction);
}
return new BufferedImage(_pictureWidth, _pictureHeight, BufferedImage.TYPE_INT_RGB);
}
//"взламываем" набор, чтобы все элементы оказались в начале
private void Shaking()
{
int j = _setPlanes.Count() - 1;
for (int i = 0; i < _setPlanes.Count(); i++)
{
if (_setPlanes.Get(i) == null)
{
for (; j > i; j--)
{
var plane = _setPlanes.Get(j);
if (plane != null)
{
_setPlanes.Insert(plane, i);
_setPlanes.Remove(j);
break;
}
}
if (j <= i)
{
return;
}
}
}
}
//метод отрисовки фона
public void DrawBackground(Graphics g)
{
Graphics2D g2d = (Graphics2D) g;
//заливаем область в цвет бетона
g2d.setPaint(Color.LIGHT_GRAY);
g2d.fillRect(0, 0, _pictureWidth, _pictureHeight);
g2d.setStroke(new BasicStroke(3));
g2d.setColor(Color.BLACK);
for(int i = 0; i < _pictureWidth / _placeSizeWidth - 1; i++)
{
//линия разметки места
for(int j = 2; j < _pictureHeight / _placeSizeHeight + 1; ++j)
{
g2d.drawLine(i * _placeSizeWidth + 5, j * _placeSizeHeight, i * _placeSizeWidth + _placeSizeWidth / 2 + 5, j * _placeSizeHeight);
}
g2d.drawLine(i * _placeSizeWidth + 5, _placeSizeHeight * 2, i * _placeSizeWidth + 5, (_pictureHeight / _placeSizeHeight) * _placeSizeHeight);
}
//отрисовка разметки взлётной полосы
g2d.setColor(Color.DARK_GRAY);
g2d.fillRect(_placeSizeWidth * 2 + 35, 0, 175, _pictureHeight);
g2d.setStroke(new BasicStroke(5));
g2d.setColor(Color.WHITE);
g2d.drawLine(_placeSizeWidth * 2 + 210, 0, _placeSizeWidth * 2 + 210, _pictureHeight);
g2d.drawLine(_placeSizeWidth * 2 + 35, 0, _placeSizeWidth * 2 + 35, _pictureHeight);
g2d.drawLine(_placeSizeWidth * 2 + 215, 0, _placeSizeWidth * 2 + 215, _pictureHeight);
g2d.drawLine(_placeSizeWidth * 2 + 30, 0, _placeSizeWidth * 2 + 30, _pictureHeight);
g2d.setStroke(new BasicStroke(5));
g2d.setColor(Color.WHITE);
for (int i = 0; i < _pictureHeight / _placeSizeHeight; ++i)
{
g2d.drawLine(_placeSizeWidth * 2 + 125, 20 + i * _placeSizeHeight, _placeSizeWidth * 2 + 125, (i + 1) * _placeSizeHeight - 20);
}
g2d.setColor(new Color(0xFF, 0x45, 0x00));
for(int i = 0; i < _pictureHeight / 20; i++)
{
g2d.drawLine(_placeSizeWidth * 2 + 15, 20 + i * _placeSizeHeight / 2, _placeSizeWidth * 2 + 15, (i + 1) * _placeSizeHeight / 2 - 20);
g2d.drawLine(_placeSizeWidth * 3 + 20, 20 + i * _placeSizeHeight / 2, _placeSizeWidth * 3 + 20, (i + 1) * _placeSizeHeight / 2 - 20);
}
//отрисовка сочков
for(int i = 1; i < 6; i++)
{
g2d.setColor(new Color(0xFF, 0xB6, 0xC1));
int[] xPoint = {(i * 70 - 10) + 45, i * 70 - 10, i * 70 - 10};
int[] yPoint = {30, 50, 10};
g.fillPolygon(xPoint, yPoint, xPoint.length);
g2d.setStroke(new BasicStroke(3));
g2d.setColor(Color.BLACK);
g2d.drawLine(i * 70 - 10, 10, i * 70 - 10, 80);
g2d.drawLine(i * 70 - 10, 10, (i * 70 - 10) + 45, 30);
g2d.drawLine(i * 70 - 10, 50, (i * 70 - 10) + 45, 30);
}
}
//метод прорисовки объеков
public void DrawPlanes(Graphics g)
{
int position = 0;
int currentWidth = 1;
int currentHeight = 5;
for (int i = 0; i < _setPlanes.Count(); i++)
{
if(_setPlanes.Get(i) != null)
{
_setPlanes.Get(i).SetObject(currentWidth * _placeSizeWidth + 20, currentHeight * _placeSizeHeight + 20, _pictureWidth, _pictureHeight);
_setPlanes.Get(i).DrawningObject(g);
}
if(position % 2 == 0)
{
position++;
currentWidth--;
}
else
{
position = 0;
currentWidth = 1;
currentHeight--;
}
}
}
}

11
Project/src/Project.iml Normal file
View File

@ -0,0 +1,11 @@
<?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$" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -0,0 +1,99 @@
public class SetPlanesGeneric<T extends Object>
{
//массив объектов, которые храним
private final Object[] _places;
//количество объектов в массиве
public int Count()
{
return _places.length;
}
//конструктор
public SetPlanesGeneric(int count)
{
_places = new Object[count];
}
//добавление объекта в набор
public int Insert(T plane)
{
return Insert(plane, 0);
}
//добавление объекта в набор на конкретную позицию
public int Insert(T plane, int position)
{
//проверка на корректность значения индекса
if (position >= _places.length || position < 0)
{
return -1;
}
//проверка ячейки на пустоту
if (_places[position] == null)
{
_places[position] = plane;
return position;
}
//поиск первой свободной ячейки
int _emptyPositionIndex = -1;
for (int i = position + 1; i < Count(); i++)
{
if (_places[i] == null)
{
_emptyPositionIndex = i;
break;
}
}
//есла пустых ячеек нет
if (_emptyPositionIndex < 0)
{
return -1;
}
//сдвиг объектов
for (int i = _emptyPositionIndex; i > position; i--)
{
_places[i] = _places[i - 1];
}
_places[position] = plane;
return position;
}
//удаление объекта из набора с конкретной позиции
public T Remove(int position)
{
// проверка позиции
if (position >= _places.length || position < 0)
{
return null;
}
// удаление объекта из массива, присовив элементу массива значение null
T temp = (T)_places[position];
_places[position] = null;
return temp;
}
//получение объекта из набора по позиции
public T Get(int position)
{
if (position >= _places.length || position < 0)
{
return null;
}
else if (_places[position] == null)
{
return null;
}
return (T)_places[position];
}
}

View File

@ -0,0 +1,55 @@
import java.awt.*;
public class SimpleMap extends AbstractMap
{
//цвет закрытого участка
private final Color barriedColor = Color.black;
//цвет открытого участка
private final Color roadColor = Color.gray;
@Override
protected void GenerateMap()
{
_map = new int[100][100];
_size_x = (float)_width / _map.length;
_size_y = (float)_height / _map[0].length;
int counter = 0;
for(int i = 0; i < _map.length; ++i)
{
for(int j = 0; j < _map[0].length; ++j)
{
_map[i][j] = _freeRoad;
}
}
while(counter < 50)
{
int x = _random.nextInt(0, 100);
int y = _random.nextInt(0, 100);
if (_map[x][y] == _freeRoad)
{
_map[x][y] = _barrier;
counter++;
}
}
}
@Override
protected void DrawRoadPart(Graphics g, int i, int j)
{
Graphics2D g2d = (Graphics2D)g;
g2d.setPaint(roadColor);
g2d.fillRect((int)(i * _size_x), (int)(j * _size_y), (int)(i * (_size_x + 1)), (int)(j *(_size_y + 1)));
}
@Override
protected void DrawBarrierPart(Graphics g, int i, int j)
{
Graphics2D g2d = (Graphics2D)g;
g2d.setPaint(barriedColor);
g2d.fillRect((int)(i * _size_x), (int)(j * _size_y), (int)(i * (_size_x + 1)), (int)(j *(_size_y + 1)));
}
}

View File

@ -0,0 +1,59 @@
import java.awt.*;
import java.util.Random;
public class StarWarsMap extends AbstractMap
{
Random rnd = new Random();
//цвет закрытого участка
Color barriedColor;
//цвет открытого участка
private final Color roadColor = new Color(0, 0, 139);
@Override
protected void GenerateMap()
{
_map = new int[100][100];
_size_x = (float)_width / _map.length;
_size_y = (float)_height / _map[0].length;
int counter = 0;
for(int i = 0; i < _map.length; ++i)
{
for(int j = 0; j < _map[0].length; ++j)
{
_map[i][j] = _freeRoad;
}
}
while(counter < 50)
{
int x = _random.nextInt(0, 100);
int y = _random.nextInt(0, 100);
if (_map[x][y] == _freeRoad)
{
_map[x][y] = _barrier;
counter++;
}
}
}
@Override
protected void DrawRoadPart(Graphics g, int i, int j)
{
Graphics2D g2d = (Graphics2D)g;
g2d.setPaint(roadColor);
g2d.fillRect((int)(i * _size_x), (int)(j * _size_y), (int)(i * (_size_x + 1)), (int)(j *(_size_y + 1)));
}
@Override
protected void DrawBarrierPart(Graphics g, int i, int j)
{
Graphics2D g2d = (Graphics2D)g;
barriedColor = new Color(rnd.nextInt(256), rnd.nextInt(256), rnd.nextInt(256));
g2d.setPaint(barriedColor);
g2d.fillRect((int)(i * _size_x), (int)(j * _size_y), (int)(i * (_size_x + 1)), (int)(j *(_size_y + 1)));
}
}