2020-02-22 23:27:59 +01:00
|
|
|
package inf112.fiasko.roborally.objects;
|
|
|
|
|
2020-02-23 00:02:03 +01:00
|
|
|
import inf112.fiasko.roborally.element_properties.Direction;
|
|
|
|
import inf112.fiasko.roborally.element_properties.Position;
|
|
|
|
import inf112.fiasko.roborally.element_properties.RobotID;
|
|
|
|
import inf112.fiasko.roborally.element_properties.TileType;
|
|
|
|
import inf112.fiasko.roborally.element_properties.WallType;
|
2020-02-22 23:27:59 +01:00
|
|
|
import org.junit.Before;
|
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
2020-02-23 20:25:30 +01:00
|
|
|
import static org.junit.Assert.assertEquals;
|
2020-02-22 23:27:59 +01:00
|
|
|
import static org.junit.Assert.assertFalse;
|
|
|
|
import static org.junit.Assert.assertTrue;
|
|
|
|
|
|
|
|
public class BoardTest {
|
|
|
|
private Grid<Tile> tileGrid;
|
|
|
|
private Grid<Wall> wallGrid;
|
|
|
|
private Position someValidPosition;
|
|
|
|
private List<Robot> robotList;
|
|
|
|
private Board board;
|
|
|
|
|
|
|
|
@Before
|
|
|
|
public void setUp() {
|
|
|
|
tileGrid = new Grid<>(5, 5, new Tile(TileType.TILE, Direction.NORTH));
|
|
|
|
wallGrid = new Grid<>(5, 5);
|
|
|
|
someValidPosition = new Position(2, 2);
|
|
|
|
robotList = new ArrayList<>();
|
|
|
|
robotList.add(new Robot(RobotID.ROBOT_1, someValidPosition));
|
2020-02-23 20:25:30 +01:00
|
|
|
robotList.add(new Robot(RobotID.ROBOT_2, someValidPosition));
|
2020-02-24 22:27:19 +01:00
|
|
|
wallGrid.setElement(2, 1, new Wall(WallType.WALL_NORMAL, Direction.SOUTH));
|
2020-02-22 23:27:59 +01:00
|
|
|
wallGrid.setElement(2, 2, new Wall(WallType.WALL_NORMAL, Direction.EAST));
|
|
|
|
wallGrid.setElement(1, 2, new Wall(WallType.WALL_CORNER, Direction.NORTH_EAST));
|
|
|
|
board = new Board(tileGrid, wallGrid, robotList);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void robotCanMove() {
|
|
|
|
assertTrue(board.moveRobot(RobotID.ROBOT_1, Direction.SOUTH));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void robotIsStoppedByWallOnSameTile() {
|
|
|
|
assertFalse(board.moveRobot(RobotID.ROBOT_1, Direction.EAST));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void robotIsStoppedByWallOnAdjacentTile() {
|
|
|
|
assertFalse(board.moveRobot(RobotID.ROBOT_1, Direction.NORTH));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void robotIsStoppedByCornerWall() {
|
|
|
|
assertFalse(board.moveRobot(RobotID.ROBOT_1, Direction.WEST));
|
|
|
|
}
|
|
|
|
|
2020-02-23 20:25:30 +01:00
|
|
|
@Test
|
|
|
|
public void robotCanBeRotatedLeft() {
|
|
|
|
assertEquals(Direction.NORTH, robotList.get(0).getFacingDirection());
|
|
|
|
board.rotateRobotLeft(RobotID.ROBOT_1);
|
|
|
|
assertEquals(Direction.WEST, robotList.get(0).getFacingDirection());
|
|
|
|
board.rotateRobotLeft(RobotID.ROBOT_1);
|
|
|
|
assertEquals(Direction.SOUTH, robotList.get(0).getFacingDirection());
|
|
|
|
board.rotateRobotLeft(RobotID.ROBOT_1);
|
|
|
|
assertEquals(Direction.EAST, robotList.get(0).getFacingDirection());
|
|
|
|
board.rotateRobotLeft(RobotID.ROBOT_1);
|
|
|
|
assertEquals(Direction.NORTH, robotList.get(0).getFacingDirection());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void robotCanBeRotatedRight() {
|
|
|
|
assertEquals(Direction.NORTH, robotList.get(1).getFacingDirection());
|
|
|
|
board.rotateRobotRight(RobotID.ROBOT_2);
|
|
|
|
assertEquals(Direction.EAST, robotList.get(1).getFacingDirection());
|
|
|
|
board.rotateRobotRight(RobotID.ROBOT_2);
|
|
|
|
assertEquals(Direction.SOUTH, robotList.get(1).getFacingDirection());
|
|
|
|
board.rotateRobotRight(RobotID.ROBOT_2);
|
|
|
|
assertEquals(Direction.WEST, robotList.get(1).getFacingDirection());
|
|
|
|
board.rotateRobotRight(RobotID.ROBOT_2);
|
|
|
|
assertEquals(Direction.NORTH, robotList.get(1).getFacingDirection());
|
|
|
|
}
|
|
|
|
|
2020-02-22 23:27:59 +01:00
|
|
|
@Test (expected = IllegalArgumentException.class)
|
|
|
|
public void gridsOfDifferentSizeThrowsError() {
|
|
|
|
IGrid<Wall> wallGrid = new Grid<>(1, 1);
|
|
|
|
new Board(tileGrid, wallGrid, robotList);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test (expected = IllegalArgumentException.class)
|
|
|
|
public void multipleRobotsWithSameIDThrowsError() {
|
|
|
|
Robot robot = new Robot(RobotID.ROBOT_1, someValidPosition);
|
|
|
|
robotList.add(robot);
|
|
|
|
new Board(tileGrid, wallGrid, robotList);
|
|
|
|
}
|
2020-02-25 15:48:34 +01:00
|
|
|
@Test
|
|
|
|
public void killRobotReducesAmountOfLivesByOne () {
|
|
|
|
Robot robot = board.getAliveRobots().get(0);
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
board.moveRobot(robot.getRobotId(), Direction.SOUTH);
|
|
|
|
}
|
|
|
|
assertEquals(2, robot.getAmountOfLives());
|
|
|
|
}
|
2020-02-22 23:27:59 +01:00
|
|
|
}
|