This commit is contained in:
Tamino Mueller 2024-10-08 20:49:19 +02:00
parent 1ac55a9570
commit 1f75f7bf30

View File

@ -140,10 +140,19 @@ public class ServerGameLogic implements ClientInterpreter {
*/
@Override
public void received(MapMessage msg, int from) {
List<Battleship> ships = msg.getShips();
if (state != ServerState.SET_UP)
LOGGER.log(Level.ERROR, "playerReady not allowed in {0}", state); //NON-NLS
else
playerReady(getPlayerById(from), msg.getShips());
if (!shipsValid(ships)){
LOGGER.log(Level.ERROR, "ship placement by player {0} is Invalid", from);
send(getPlayerById(from),null);
return;
}
playerReady(getPlayerById(from), msg.getShips());
}
/**
@ -217,4 +226,35 @@ public class ServerGameLogic implements ClientInterpreter {
}
}
}
private boolean isInBounds(Battleship ship){
return ship.getMinX() >= 0 && ship.getMaxX() < config.getMapWidth() &&
ship.getMinY() >= 0 && ship.getMaxY() < config.getMapHeight();
}
private boolean shipsValid(List<Battleship> ships) {
Set<IntPoint> occupied = new HashSet<>();
for (Battleship ship : ships) {
if (!isInBounds(ship)){
return false;
}
for (int x = ship.getMinX(); x <= ship.getMaxX(); x++) {
for (int y = ship.getMinY(); y <= ship.getMaxY(); y++) {
IntPoint point = new IntPoint(x,y);
if (!occupied.add(point)){
return false;
}
}
}
}
return true;
}
}