Собранная простая часть
This commit is contained in:
parent
56c85de909
commit
0c7b7b773c
115
AbstractMap.java
Normal file
115
AbstractMap.java
Normal file
@ -0,0 +1,115 @@
|
|||||||
|
import java.awt.*;
|
||||||
|
import java.awt.image.BufferedImage;
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
|
public abstract class AbstractMap {
|
||||||
|
private IDrawningObject _drawningObject = null;
|
||||||
|
protected int[][] _map = null;
|
||||||
|
protected int _width;
|
||||||
|
protected int _height;
|
||||||
|
protected float _size_x;
|
||||||
|
protected float _size_y;
|
||||||
|
protected final Random _random = new Random();
|
||||||
|
protected final int _freeRoad = 0;
|
||||||
|
protected final int _barrier = 1;
|
||||||
|
|
||||||
|
public BufferedImage CreateMap(int width, int height, IDrawningObject drawningObject)
|
||||||
|
{
|
||||||
|
_width = width;
|
||||||
|
_height = height;
|
||||||
|
_drawningObject = drawningObject;
|
||||||
|
GenerateMap();
|
||||||
|
while (!SetObjectOnMap())
|
||||||
|
{
|
||||||
|
GenerateMap();
|
||||||
|
}
|
||||||
|
return DrawMapWithObject();
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean CheckBarriers(float topOffset, float rightOffset, float leftOffset, float bottomOffset)
|
||||||
|
{
|
||||||
|
float[] arrayPossition = _drawningObject.GetCurrentPosition();
|
||||||
|
int top = (int)((arrayPossition[1] + topOffset) / _size_y);
|
||||||
|
int right = (int)((arrayPossition[2] + rightOffset) / _size_x);
|
||||||
|
int left = (int)((arrayPossition[0] + leftOffset) / _size_x);
|
||||||
|
int bottom = (int)((arrayPossition[3] + bottomOffset) / _size_y);
|
||||||
|
if (top < 0 || left < 0 || right >= _map[0].length || bottom >= _map.length) return false;
|
||||||
|
for (int i = top; i <= bottom; i++)
|
||||||
|
{
|
||||||
|
for (int j = left; j <= right; j++)
|
||||||
|
{
|
||||||
|
if (_map[j][i] == _barrier) return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public BufferedImage MoveObject(Direction direction)
|
||||||
|
{
|
||||||
|
if (_drawningObject == null) return DrawMapWithObject();
|
||||||
|
boolean isTrue = true;
|
||||||
|
switch (direction)
|
||||||
|
{
|
||||||
|
case Left:
|
||||||
|
if (!CheckBarriers(0, -1 * _drawningObject.Step(), -1 * _drawningObject.Step(), 0)) isTrue = false;
|
||||||
|
break;
|
||||||
|
case Right:
|
||||||
|
if (!CheckBarriers(0, _drawningObject.Step(), _drawningObject.Step(), 0)) isTrue = false;
|
||||||
|
break;
|
||||||
|
case Up:
|
||||||
|
if (!CheckBarriers(-1 * _drawningObject.Step(), 0, 0, -1 * _drawningObject.Step())) isTrue = false;
|
||||||
|
break;
|
||||||
|
case Down:
|
||||||
|
if (!CheckBarriers(_drawningObject.Step(), 0, 0, _drawningObject.Step())) isTrue = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (isTrue)
|
||||||
|
{
|
||||||
|
_drawningObject.MoveObject(direction);
|
||||||
|
}
|
||||||
|
return DrawMapWithObject();
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean SetObjectOnMap()
|
||||||
|
{
|
||||||
|
if (_drawningObject == null || _map == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
int x = _random.nextInt(0, 10);
|
||||||
|
int y = _random.nextInt(0, 10);
|
||||||
|
_drawningObject.SetObject(x, y, _width, _height);
|
||||||
|
if (!CheckBarriers(0, 0, 0, 0)) return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private BufferedImage DrawMapWithObject()
|
||||||
|
{
|
||||||
|
BufferedImage bmp = new BufferedImage(_width, _height, BufferedImage.TYPE_INT_RGB);
|
||||||
|
if (_drawningObject == null || _map == null)
|
||||||
|
{
|
||||||
|
return bmp;
|
||||||
|
}
|
||||||
|
Graphics gr = bmp.getGraphics();
|
||||||
|
for (int i = 0; i < _map.length; ++i)
|
||||||
|
{
|
||||||
|
for (int j = 0; j < _map[0].length; ++j)
|
||||||
|
{
|
||||||
|
if (_map[i][j] == _freeRoad)
|
||||||
|
{
|
||||||
|
DrawRoadPart((Graphics2D) gr, i, j);
|
||||||
|
}
|
||||||
|
else if (_map[i][j] == _barrier)
|
||||||
|
{
|
||||||
|
DrawBarrierPart((Graphics2D) gr, i, j);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_drawningObject.DrawningObject(gr);
|
||||||
|
return bmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected abstract void GenerateMap();
|
||||||
|
protected abstract void DrawRoadPart(Graphics2D g, int i, int j);
|
||||||
|
protected abstract void DrawBarrierPart(Graphics2D g, int i, int j);
|
||||||
|
}
|
@ -2,6 +2,7 @@ public enum Direction {
|
|||||||
Up(1),
|
Up(1),
|
||||||
Down(2),
|
Down(2),
|
||||||
Left(3),
|
Left(3),
|
||||||
Right(4);
|
Right(4),
|
||||||
|
None(0);
|
||||||
Direction(int value){}
|
Direction(int value){}
|
||||||
}
|
}
|
@ -1,4 +1,5 @@
|
|||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
|
||||||
public class DrawningObjectPlane implements IDrawningObject {
|
public class DrawningObjectPlane implements IDrawningObject {
|
||||||
private DrawningPlane _plane = null;
|
private DrawningPlane _plane = null;
|
||||||
@ -7,10 +8,10 @@ public class DrawningObjectPlane implements IDrawningObject {
|
|||||||
{
|
{
|
||||||
_plane = plane;
|
_plane = plane;
|
||||||
}
|
}
|
||||||
|
@Override
|
||||||
public float Step() {
|
public float Step() {
|
||||||
if(_plane != null && _plane.Plane != null)
|
if(_plane != null && _plane.Plane != null)
|
||||||
return _plane.Plane.Step;
|
return _plane.Plane.GetStep();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -25,7 +26,7 @@ public class DrawningObjectPlane implements IDrawningObject {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void DrawingObject(Graphics g) {
|
public void DrawningObject(Graphics g) {
|
||||||
_plane.DrawTransport(g);
|
_plane.DrawTransport(g);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,19 +3,12 @@ import java.awt.*;
|
|||||||
public class EntityAirbus extends EntityPlane{
|
public class EntityAirbus extends EntityPlane{
|
||||||
|
|
||||||
public Color DopColor;
|
public Color DopColor;
|
||||||
public Color GetDopColor() {
|
|
||||||
return DopColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean BodyKit;
|
public boolean BodyKit;
|
||||||
public boolean GetBodyKit(){ return BodyKit; }
|
|
||||||
|
|
||||||
public boolean Wing;
|
public boolean Wing;
|
||||||
public boolean GetWing(){ return Wing; }
|
|
||||||
|
|
||||||
public boolean SportLine;
|
public boolean SportLine;
|
||||||
public boolean GetSportLine(){ return SportLine; }
|
|
||||||
|
|
||||||
|
|
||||||
public EntityAirbus(int speed, float weight, Color bodyColor, Color dopColor, boolean bodyKit, boolean wing, boolean sportLine) {
|
public EntityAirbus(int speed, float weight, Color bodyColor, Color dopColor, boolean bodyKit, boolean wing, boolean sportLine) {
|
||||||
super(speed, weight, bodyColor);
|
super(speed, weight, bodyColor);
|
||||||
|
@ -16,7 +16,9 @@ public class EntityPlane {
|
|||||||
public Color GetBodyColor() {
|
public Color GetBodyColor() {
|
||||||
return BodyColor;
|
return BodyColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
public float Step;
|
public float Step;
|
||||||
|
public float GetStep(){return Step;}
|
||||||
|
|
||||||
public EntityPlane(int speed, float weight, Color bodyColor)
|
public EntityPlane(int speed, float weight, Color bodyColor)
|
||||||
{
|
{
|
||||||
|
121
FormMap.form
Normal file
121
FormMap.form
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="FormMap">
|
||||||
|
<grid id="27dc6" layout-manager="GridLayoutManager" row-count="1" column-count="1" 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="500" height="400"/>
|
||||||
|
</constraints>
|
||||||
|
<properties/>
|
||||||
|
<border type="none"/>
|
||||||
|
<children>
|
||||||
|
<grid id="b59ef" binding="Mainpanel" layout-manager="GridLayoutManager" row-count="4" column-count="7" 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="0" row-span="1" col-span="1" vsize-policy="3" hsize-policy="3" anchor="0" fill="0" indent="0" use-parent-layout="false"/>
|
||||||
|
</constraints>
|
||||||
|
<properties>
|
||||||
|
<opaque value="true"/>
|
||||||
|
<preferredSize width="800" height="600"/>
|
||||||
|
</properties>
|
||||||
|
<border type="none"/>
|
||||||
|
<children>
|
||||||
|
<component id="64b3e" class="javax.swing.JButton" binding="ButtonDown">
|
||||||
|
<constraints>
|
||||||
|
<grid row="2" column="5" row-span="1" col-span="1" vsize-policy="0" hsize-policy="0" anchor="0" fill="3" 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>
|
||||||
|
<text value=""/>
|
||||||
|
</properties>
|
||||||
|
</component>
|
||||||
|
<component id="d18ed" class="javax.swing.JButton" binding="ButtonLeft">
|
||||||
|
<constraints>
|
||||||
|
<grid row="2" column="4" row-span="1" col-span="1" vsize-policy="0" hsize-policy="0" anchor="0" fill="3" 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>
|
||||||
|
<text value=""/>
|
||||||
|
</properties>
|
||||||
|
</component>
|
||||||
|
<component id="f1131" class="javax.swing.JButton" binding="ButtonRight">
|
||||||
|
<constraints>
|
||||||
|
<grid row="2" column="6" row-span="1" col-span="1" vsize-policy="0" hsize-policy="0" anchor="0" fill="3" 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>
|
||||||
|
<horizontalAlignment value="0"/>
|
||||||
|
<text value=""/>
|
||||||
|
</properties>
|
||||||
|
</component>
|
||||||
|
<toolbar id="ca5d0" binding="StatusStrip">
|
||||||
|
<constraints>
|
||||||
|
<grid row="3" column="0" row-span="1" col-span="7" vsize-policy="0" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false">
|
||||||
|
<minimum-size width="-1" height="20"/>
|
||||||
|
<preferred-size width="-1" height="20"/>
|
||||||
|
<maximum-size width="-1" height="20"/>
|
||||||
|
</grid>
|
||||||
|
</constraints>
|
||||||
|
<properties>
|
||||||
|
<enabled value="false"/>
|
||||||
|
</properties>
|
||||||
|
<border type="none"/>
|
||||||
|
<children/>
|
||||||
|
</toolbar>
|
||||||
|
<component id="ac7fe" class="javax.swing.JButton" binding="ButtonCreate">
|
||||||
|
<constraints>
|
||||||
|
<grid row="2" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="0" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
|
||||||
|
</constraints>
|
||||||
|
<properties>
|
||||||
|
<text value="Создать"/>
|
||||||
|
</properties>
|
||||||
|
</component>
|
||||||
|
<grid id="bf993" binding="PictureBox" layout-manager="FlowLayout" hgap="5" vgap="5" flow-align="1">
|
||||||
|
<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>
|
||||||
|
<properties/>
|
||||||
|
<border type="none"/>
|
||||||
|
<children/>
|
||||||
|
</grid>
|
||||||
|
<component id="2202b" class="javax.swing.JButton" binding="ButtonUp">
|
||||||
|
<constraints>
|
||||||
|
<grid row="1" column="5" row-span="1" col-span="1" vsize-policy="0" hsize-policy="0" anchor="0" fill="3" 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>
|
||||||
|
<text value=""/>
|
||||||
|
</properties>
|
||||||
|
</component>
|
||||||
|
<component id="4b50c" class="javax.swing.JButton" binding="ButtonModif">
|
||||||
|
<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"/>
|
||||||
|
</constraints>
|
||||||
|
<properties>
|
||||||
|
<text value="Модификация"/>
|
||||||
|
</properties>
|
||||||
|
</component>
|
||||||
|
<component id="db7c6" class="javax.swing.JComboBox" binding="comboBoxSelector">
|
||||||
|
<constraints>
|
||||||
|
<grid row="2" column="3" row-span="1" col-span="1" vsize-policy="0" hsize-policy="2" anchor="8" fill="1" indent="0" use-parent-layout="false"/>
|
||||||
|
</constraints>
|
||||||
|
<properties>
|
||||||
|
<toolTipText value="Простая карта"/>
|
||||||
|
</properties>
|
||||||
|
</component>
|
||||||
|
</children>
|
||||||
|
</grid>
|
||||||
|
</children>
|
||||||
|
</grid>
|
||||||
|
</form>
|
128
FormMap.java
Normal file
128
FormMap.java
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
import javax.imageio.ImageIO;
|
||||||
|
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 FormMap extends JFrame{
|
||||||
|
public JPanel Mainpanel;
|
||||||
|
private JButton ButtonCreate;
|
||||||
|
private JButton ButtonLeft;
|
||||||
|
private JButton ButtonUp;
|
||||||
|
private JButton ButtonDown;
|
||||||
|
private JButton ButtonRight;
|
||||||
|
private JPanel PictureBox;
|
||||||
|
private JToolBar StatusStrip;
|
||||||
|
private JButton ButtonModif;
|
||||||
|
private JComboBox comboBoxSelector;
|
||||||
|
private final JLabel JLabelSpeed = new JLabel();
|
||||||
|
private final JLabel JLabelWeight = new JLabel();
|
||||||
|
private final JLabel JLabelColor = new JLabel();
|
||||||
|
private AbstractMap _abstractMap;
|
||||||
|
|
||||||
|
private void ButtonMove_Click(String name)
|
||||||
|
{
|
||||||
|
Direction dir = Direction.None;
|
||||||
|
switch (name)
|
||||||
|
{
|
||||||
|
case "buttonLeft":
|
||||||
|
dir = Direction.Left;
|
||||||
|
break;
|
||||||
|
case "buttonUp":
|
||||||
|
dir = Direction.Up;
|
||||||
|
break;
|
||||||
|
case "buttonRight":
|
||||||
|
dir = Direction.Right;
|
||||||
|
break;
|
||||||
|
case "buttonDown":
|
||||||
|
dir = Direction.Down;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
PictureBox.removeAll();
|
||||||
|
JLabel imageWithMapAndObject = new JLabel();
|
||||||
|
imageWithMapAndObject.setPreferredSize(PictureBox.getSize());
|
||||||
|
imageWithMapAndObject.setMinimumSize(new Dimension(1, 1));
|
||||||
|
imageWithMapAndObject.setIcon(new ImageIcon(_abstractMap.MoveObject(dir)));
|
||||||
|
PictureBox.add(imageWithMapAndObject, BorderLayout.CENTER);
|
||||||
|
PictureBox.revalidate();
|
||||||
|
PictureBox.repaint();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void SetData(DrawningPlane _plane){
|
||||||
|
PictureBox.removeAll();
|
||||||
|
JLabelSpeed.setText("Cкорость: " + _plane.GetPlane().GetSpeed() + " ");
|
||||||
|
JLabelWeight.setText("Вес: " + _plane.GetPlane().GetWeight() + " ");
|
||||||
|
JLabelColor.setText(("Цвет: " + _plane.GetPlane().GetBodyColor() + " "));
|
||||||
|
JLabel imageWithMapAndObject = new JLabel();
|
||||||
|
imageWithMapAndObject.setPreferredSize(PictureBox.getSize());
|
||||||
|
imageWithMapAndObject.setMinimumSize(new Dimension(1, 1));
|
||||||
|
imageWithMapAndObject.setIcon(new ImageIcon(_abstractMap.CreateMap(PictureBox.getWidth(),PictureBox.getHeight(), new DrawningObjectPlane(_plane))));
|
||||||
|
PictureBox.add(imageWithMapAndObject, BorderLayout.CENTER);
|
||||||
|
PictureBox.revalidate();
|
||||||
|
}
|
||||||
|
public FormMap() {
|
||||||
|
comboBoxSelector.addItem("Простая карта");
|
||||||
|
comboBoxSelector.addItem("Вторая карта");
|
||||||
|
_abstractMap = new SimpleMap();
|
||||||
|
Box LabelBox = Box.createHorizontalBox();
|
||||||
|
LabelBox.setMinimumSize(new Dimension(1, 20));
|
||||||
|
LabelBox.add(JLabelSpeed);
|
||||||
|
LabelBox.add(JLabelWeight);
|
||||||
|
LabelBox.add(JLabelColor);
|
||||||
|
StatusStrip.add(LabelBox);
|
||||||
|
try {
|
||||||
|
Image img = ImageIO.read(FormMap.class.getResource("/Resource/arrowUp.jpg"));
|
||||||
|
ButtonUp.setIcon(new ImageIcon(img));
|
||||||
|
img = ImageIO.read(FormMap.class.getResource("/Resource/arrowDown.jpg"));
|
||||||
|
ButtonDown.setIcon(new ImageIcon(img));
|
||||||
|
img = ImageIO.read(FormMap.class.getResource("/Resource/arrowLeft.jpg"));
|
||||||
|
ButtonLeft.setIcon(new ImageIcon(img));
|
||||||
|
img = ImageIO.read(FormMap.class.getResource("/Resource/arrowRight.jpg"));
|
||||||
|
ButtonRight.setIcon(new ImageIcon(img));
|
||||||
|
} catch (Exception ex) {
|
||||||
|
System.out.println(ex);
|
||||||
|
}
|
||||||
|
ButtonCreate.addActionListener(e -> {
|
||||||
|
Random random = new Random();
|
||||||
|
var _plane = new DrawningPlane(random.nextInt(100, 300),random.nextInt(1000, 2000),new Color(random.nextInt(256), random.nextInt(256), random.nextInt(256)));
|
||||||
|
SetData(_plane);
|
||||||
|
});
|
||||||
|
ButtonModif.addActionListener(e -> {
|
||||||
|
Random random = new Random();
|
||||||
|
var _plane = new DrawningAirbus(random.nextInt(100, 300), random.nextInt(1000, 2000), new Color(random.nextInt(0, 256), random.nextInt(0, 256), random.nextInt(0, 256)), new Color(random.nextInt(0, 256), random.nextInt(0, 256), random.nextInt(0, 256)), random.nextBoolean(), random.nextBoolean(), random.nextBoolean());
|
||||||
|
SetData(_plane);
|
||||||
|
});
|
||||||
|
ButtonUp.addActionListener(e -> {
|
||||||
|
ButtonMove_Click("buttonUp");
|
||||||
|
});
|
||||||
|
ButtonDown.addActionListener(e -> {
|
||||||
|
ButtonMove_Click("buttonDown");
|
||||||
|
});
|
||||||
|
ButtonLeft.addActionListener(e -> {
|
||||||
|
ButtonMove_Click("buttonLeft");
|
||||||
|
});
|
||||||
|
ButtonRight.addActionListener(e -> {
|
||||||
|
ButtonMove_Click("buttonRight");
|
||||||
|
});
|
||||||
|
comboBoxSelector.addActionListener(new ActionListener() {
|
||||||
|
@Override
|
||||||
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
comboBoxSelector = (JComboBox)e.getSource();
|
||||||
|
String item = (String)comboBoxSelector.getSelectedItem();
|
||||||
|
switch (item) {
|
||||||
|
case "Простая карта" -> {
|
||||||
|
_abstractMap = new SimpleMap();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case "Вторая карта" -> {
|
||||||
|
_abstractMap = new MyMap();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -1,13 +1,14 @@
|
|||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
|
||||||
public interface IDrawningObject {
|
public interface IDrawningObject {
|
||||||
public float Step = 0;
|
float Step();
|
||||||
|
|
||||||
void SetObject(int x, int y, int width, int height);
|
void SetObject(int x, int y, int width, int height);
|
||||||
|
|
||||||
void MoveObject(Direction direction);
|
void MoveObject(Direction direction);
|
||||||
|
|
||||||
void DrawingObject(Graphics g);
|
void DrawningObject(Graphics g);
|
||||||
|
|
||||||
float[] GetCurrentPosition();
|
float[] GetCurrentPosition();
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@ public class Main {
|
|||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
JFrame frame = new JFrame("Самолёт");
|
JFrame frame = new JFrame("Самолёт");
|
||||||
frame.setContentPane(new FormPlane().Mainpanel);
|
frame.setContentPane(new FormMap().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();
|
||||||
|
44
MyMap.java
Normal file
44
MyMap.java
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
public class MyMap extends AbstractMap{
|
||||||
|
private Color barrierColor = Color.WHITE;
|
||||||
|
private Color roadColor = Color.CYAN;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void DrawBarrierPart(Graphics2D g, int i, int j)
|
||||||
|
{
|
||||||
|
g.setPaint(barrierColor);
|
||||||
|
g.fillRect((int)Math.floor(i * _size_x), (int)Math.floor(j * _size_y), (int)Math.ceil(_size_x), (int)Math.ceil(_size_y));
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
protected void DrawRoadPart(Graphics2D g, int i, int j)
|
||||||
|
{
|
||||||
|
g.setPaint(roadColor);
|
||||||
|
g.fillRect((int)Math.floor(i * _size_x), (int)Math.floor(j * _size_y), (int)Math.ceil(_size_x), (int)Math.ceil(_size_y));
|
||||||
|
}
|
||||||
|
@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 < 25)
|
||||||
|
{
|
||||||
|
int x = _random.nextInt(0, 100);
|
||||||
|
int y = _random.nextInt(0, 100);
|
||||||
|
if (_map[x][y] == _freeRoad)
|
||||||
|
{
|
||||||
|
_map[x][y] = _barrier;
|
||||||
|
counter++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
45
SimpleMap.java
Normal file
45
SimpleMap.java
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
public class SimpleMap extends AbstractMap{
|
||||||
|
|
||||||
|
private Color barrierColor = Color.BLACK;
|
||||||
|
private 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(Graphics2D g, int i, int j)
|
||||||
|
{
|
||||||
|
g.setPaint(roadColor);
|
||||||
|
g.fillRect((int)Math.floor(i * _size_x), (int)Math.floor(j * _size_y), (int)Math.ceil(_size_x), (int)Math.ceil(_size_y));
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
protected void DrawBarrierPart(Graphics2D g, int i, int j)
|
||||||
|
{
|
||||||
|
g.setPaint(barrierColor);
|
||||||
|
g.fillRect((int)Math.floor(i * _size_x), (int)Math.floor(j * _size_y), (int)Math.ceil(_size_x), (int)Math.ceil(_size_y));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user