spawn start of antgame constant
This commit is contained in:
parent
ad07c1da8f
commit
ff6807dabd
|
@ -3,4 +3,6 @@ package evironment.antGame;
|
|||
public class Constants {
|
||||
public static final int DEFAULT_GRID_WIDTH = 5;
|
||||
public static final int DEFAULT_GRID_HEIGHT = 5;
|
||||
public static final int START_X = 5;
|
||||
public static final int START_Y = 2;
|
||||
}
|
||||
|
|
|
@ -16,6 +16,7 @@ public class Grid {
|
|||
this.height = height;
|
||||
grid = new Cell[width][height];
|
||||
initialGrid = new Cell[width][height];
|
||||
start = new Point(Constants.START_X, Constants.START_Y);
|
||||
initRandomWorld();
|
||||
}
|
||||
|
||||
|
@ -29,10 +30,11 @@ public class Grid {
|
|||
initialGrid[x][y] = new Cell(new Point(x, y), CellType.FREE);
|
||||
}
|
||||
}
|
||||
start = new Point(RNG.getRandomEnv().nextInt(width), RNG.getRandomEnv().nextInt(height));
|
||||
initialGrid[start.x][start.y] = new Cell(new Point(start.x, start.y), CellType.START);
|
||||
spawnNewFood(initialGrid);
|
||||
spawnObstacles();
|
||||
initialGrid[start.x][start.y] = new Cell(new Point(start.x, start.y), CellType.START);
|
||||
;
|
||||
|
||||
}
|
||||
|
||||
//TODO
|
||||
|
@ -53,7 +55,7 @@ public class Grid {
|
|||
/**
|
||||
* Spawns one additional food on a random field EXCEPT for the starting position
|
||||
*/
|
||||
public void spawnNewFood(Cell[][] grid) {
|
||||
private void spawnNewFood(Cell[][] grid) {
|
||||
boolean foodSpawned = false;
|
||||
Point potFood = new Point(0, 0);
|
||||
CellType potFieldType;
|
||||
|
|
Loading…
Reference in New Issue