Compare commits

...

1 Commits

Author SHA1 Message Date
Jan Löwenstrom ff6807dabd spawn start of antgame constant 2020-04-05 14:07:24 +02:00
2 changed files with 7 additions and 3 deletions

View File

@ -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;
}

View File

@ -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;