111 lines
3.2 KiB
Java
111 lines
3.2 KiB
Java
package evironment.antGame;
|
|
|
|
import core.RNG;
|
|
|
|
import java.awt.*;
|
|
|
|
public class Grid {
|
|
private int width;
|
|
private int height;
|
|
private Point start;
|
|
private Cell[][] grid;
|
|
private Cell[][] initialGrid;
|
|
|
|
public Grid(int width, int height) {
|
|
this.width = width;
|
|
this.height = height;
|
|
grid = new Cell[width][height];
|
|
initialGrid = new Cell[width][height];
|
|
initRandomWorld();
|
|
}
|
|
|
|
public void resetWorld(){
|
|
grid = Util.deepCopyCellGrid(initialGrid);
|
|
}
|
|
|
|
public void initRandomWorld(){
|
|
for(int x = 0; x < width; ++x){
|
|
for(int y = 0; y < height; ++y){
|
|
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();
|
|
}
|
|
|
|
//TODO
|
|
private void spawnObstacles() {
|
|
initialGrid[3][1].setType(CellType.OBSTACLE);
|
|
initialGrid[4][1].setType(CellType.OBSTACLE);
|
|
initialGrid[5][1].setType(CellType.OBSTACLE);
|
|
initialGrid[6][1].setType(CellType.OBSTACLE);
|
|
initialGrid[7][1].setType(CellType.OBSTACLE);
|
|
initialGrid[3][2].setType(CellType.OBSTACLE);
|
|
initialGrid[3][3].setType(CellType.OBSTACLE);
|
|
initialGrid[3][4].setType(CellType.OBSTACLE);
|
|
initialGrid[4][4].setType(CellType.OBSTACLE);
|
|
initialGrid[5][4].setType(CellType.OBSTACLE);
|
|
initialGrid[6][4].setType(CellType.OBSTACLE);
|
|
}
|
|
|
|
/**
|
|
* Spawns one additional food on a random field EXCEPT for the starting position
|
|
*/
|
|
public void spawnNewFood(Cell[][] grid) {
|
|
boolean foodSpawned = false;
|
|
Point potFood = new Point(0, 0);
|
|
CellType potFieldType;
|
|
while(!foodSpawned) {
|
|
potFood.x = RNG.getRandomEnv().nextInt(width);
|
|
potFood.y = RNG.getRandomEnv().nextInt(height);
|
|
potFieldType = grid[potFood.x][potFood.y].getType();
|
|
if(potFieldType != CellType.START && grid[potFood.x][potFood.y].getFood() == 0 && potFieldType != CellType.OBSTACLE) {
|
|
grid[potFood.x][potFood.y].setFood(1);
|
|
foodSpawned = true;
|
|
// System.out.println("spawned new food at " + potFood);
|
|
// System.out.println(initialGrid[potFood.x][potFood.y]);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void spawnNewFood() {
|
|
spawnNewFood(grid);
|
|
}
|
|
|
|
public Point getStartPoint(){
|
|
return start;
|
|
}
|
|
|
|
public boolean isAllFoodCollected(){
|
|
for(int x = 0; x < width; ++x){
|
|
for(int y = 0; y < height; ++y){
|
|
if(grid[x][y].getFood() > 0){
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public Cell[][] getGrid(){
|
|
return grid;
|
|
}
|
|
|
|
public Cell getCell(Point pos){
|
|
return grid[pos.x][pos.y];
|
|
}
|
|
public Cell getCell(int x, int y){
|
|
return grid[x][y];
|
|
}
|
|
public int getWidth(){
|
|
return width;
|
|
}
|
|
public int getHeight(){
|
|
return height;
|
|
}
|
|
|
|
}
|