Мое приключение с лабиринтом и графическим интерфейсом продолжается, и на данный момент я вижу любой график G=(V,E)
где вершины - комнаты, а края - соединители (двери или стены), но размеры прямоугольников слишком малы, поэтому я попытался увеличить их, но прямоугольники ступают один на другой.
Учитывая следующий код:
private void drawMaze(PaintEvent e) {
Graph maze = new Graph();
maze.generateMaze(25);
int i = 0;
int level = 25;
e.gc.setAntialias(SWT.ON);
e.gc.setBackground(new Color(e.display, 150, 150, 150));
e.gc.setLineWidth(12);
e.gc.setBackground(e.display.getSystemColor(SWT.COLOR_DARK_GREEN));
while (i < level) {
Connector connector = maze.getEdgeConnectorByIndex(i);
if (connector instanceof Door) {
e.gc.setBackground(e.display.getSystemColor(SWT.COLOR_DARK_GREEN));
Room room1 = ((Door)connector).getFirstRoom();
Room room2 = ((Door)connector).getSecondRoom();
int x = room1.getXcoordinate()+10;
int y = room1.getYcoordinate()+10;
int x1 = room2.getXcoordinate()+10;
int y1 = room2.getYcoordinate()+10;
e.gc.fillRectangle(x*30,y*30,20,20);
e.gc.fillRectangle(x1*30,y1*30,20,20);
e.gc.setBackground(e.display.getSystemColor(SWT.COLOR_BLUE));
Room r1 = new Room(30*x,30*y);
Room r2 = new Room(30*x1,30*y1);
Coordinate c = this.checkWhereConnectorLocated(r1,r2);
if (c.getSign() == DIAGONAL)
e.gc.fillRectangle(c.getXCoordinate(),c.getYCoordinate(),10,20);
else
e.gc.fillRectangle(c.getXCoordinate(),c.getYCoordinate(),20,10);
}
if (connector instanceof Wall) {
e.gc.setBackground(e.display.getSystemColor(SWT.COLOR_DARK_GREEN));
Room room1 = ((Wall)connector).getFirstRoom();
Room room2 = ((Wall)connector).getSecondRoom();
int x = room1.getXcoordinate()+10;
int y = room1.getYcoordinate()+10;
int x1 = room2.getXcoordinate()+10;
int y1 = room2.getYcoordinate()+10;
e.gc.fillRectangle(x*30,y*30,20,20);
e.gc.fillRectangle(x1*30,y1*30,20,20);
e.gc.setBackground(e.display.getSystemColor(SWT.COLOR_DARK_RED));
Room r1 = new Room(30*x,30*y);
Room r2 = new Room(30*x1,30*y1);
Coordinate c = this.checkWhereConnectorLocated(r1,r2);
if (c.getSign() == DIAGONAL)
e.gc.fillRectangle(c.getXCoordinate(),c.getYCoordinate(),10,20);
else
e.gc.fillRectangle(c.getXCoordinate(),c.getYCoordinate(),20,10);
}
i++;
}
}
// void org.eclipse.swt.graphics.GC.fillRectangle(int x, int y, int width, int
// height)
private Coordinate checkWhereConnectorLocated(Room room1,Room room2) {
int x = 0; int y = 0;
Coordinate coordinate ;
if (room1.getXcoordinate() == room2.getXcoordinate()) {
// same X coordinate
if (room1.getYcoordinate() > room2.getYcoordinate()) {
// ROOM1 is located above ROOM2 - same X different Y
x = room1.getXcoordinate();
y = room1.getYcoordinate()-10;
coordinate = new Coordinate(x,y);
}
else {
// ROOM2 is located above ROOM1
x = room1.getXcoordinate();
y = room2.getYcoordinate()-10;
coordinate = new Coordinate(x,y);
}
coordinate.setSign(HORIZONTAL);
return coordinate;
}
else if (room1.getYcoordinate() == room2.getYcoordinate()) {
// else maybe same Y coordinate - the X is changing
if (room1.getXcoordinate() > room2.getXcoordinate()) {
// ROOM1 is on the right of ROOM2 l
x = room1.getXcoordinate() - 10;
y = room2.getYcoordinate(); // same Y so there is no difference
// whom Y's we choose
coordinate = new Coordinate(x,y);
}
else {
// ROOM2 is on the right of ROOM1
x = room2.getXcoordinate() - 10;
y = room2.getYcoordinate(); // same Y so there is no difference
// whom Y's we choose
coordinate = new Coordinate(x,y);
}
coordinate.setSign(DIAGONAL);
return coordinate;
}
coordinate = new Coordinate(0,0);
return coordinate;
}
Выход:
Зеленые прямоугольники - rooms
, а red
и blue
- connectors
. Как вы можете видеть, прямоугольники слишком малы, и мне нужно что-то вроде «60». Однако я не могу найти правильную комбинацию значений для fillRectangle
и x,x1,y,y1
, где прямоугольники не будут располагаться один над другим.
Может кто-нибудь объяснить, как я могу это исправить?