Skip to content

Commit 2f3e5a1

Browse files
Fix connectedByPaint floodfill
1 parent ddcfdfe commit 2f3e5a1

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

engine/src/main/battlecode/world/GameWorld.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -695,21 +695,21 @@ public InternalRobot[] getAllRobots(Team team) {
695695
return returnRobots.toArray(new InternalRobot[returnRobots.size()]);
696696
}
697697

698-
public boolean connectedByPaint(MapLocation loc1, MapLocation loc2) {
699-
if(getPaint(loc1) == 0 || getPaint(loc2) == 0 || teamFromPaint(getPaint(loc1)) != teamFromPaint(getPaint(loc2))) return false;
700-
Team t = teamFromPaint(getPaint(loc1));
698+
public boolean connectedByPaint(Team t, MapLocation robotLoc, MapLocation towerLoc) {
699+
if (teamFromPaint(getPaint(robotLoc)) != t)
700+
return false;
701701
Queue<MapLocation> q = new LinkedList<MapLocation>();
702702
Set<MapLocation> vis = new HashSet<MapLocation>();
703-
q.add(loc1);
703+
q.add(robotLoc);
704704
MapLocation cur;
705705
int[] dx = {1, 0, -1, 0}, dy = {0, 1, 0, -1};
706706
while(!q.isEmpty()) {
707707
cur = q.peek();
708708
q.remove();
709-
if(getGameMap().onTheMap(cur) || vis.contains(cur) || teamFromPaint(getPaint(cur)) != t) continue;
710-
vis.add(cur);
711-
if(cur == loc2)
709+
if(cur.equals(towerLoc))
712710
return true;
711+
if(!getGameMap().onTheMap(cur) || vis.contains(cur) || teamFromPaint(getPaint(cur)) != t) continue;
712+
vis.add(cur);
713713
for(int i = 0; i < 4; i ++)
714714
q.add(new MapLocation(cur.x + dx[i], cur.y + dy[i]));
715715
}

engine/src/main/battlecode/world/RobotControllerImpl.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,10 @@ private void assertCanSendMessage(MapLocation loc, Message message) throws GameA
944944
if (this.robot.getLocation().distanceSquaredTo(loc) > GameConstants.MESSAGE_RADIUS_SQUARED){
945945
throw new GameActionException(CANT_DO_THAT, "Location specified is not within the message radius!");
946946
}
947-
if (!this.gameWorld.connectedByPaint(this.robot.getLocation(), loc)){
947+
948+
MapLocation robotLoc = this.robot.getType().isTowerType() ? loc : this.robot.getLocation();
949+
MapLocation towerLoc = this.robot.getType().isTowerType() ? this.robot.getLocation() : loc;
950+
if (!this.gameWorld.connectedByPaint(this.robot.getTeam(), robotLoc, towerLoc)){
948951
throw new GameActionException(CANT_DO_THAT, "Location specified is not connected to current location by paint!");
949952
}
950953
}
@@ -956,6 +959,7 @@ public boolean canSendMessage(MapLocation loc, int messageContent) {
956959
assertCanSendMessage(loc, message);
957960
return true;
958961
} catch (GameActionException e) {
962+
//System.out.println(e);
959963
return false;
960964
}
961965
}

example-bots/src/main/examplefuncsplayer/RobotPlayer.java

+6
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,12 @@ else if (robotType == 2 && rc.canBuildRobot(UnitType.SPLASHER, nextLoc)){
131131
// System.out.println("BUILT A SPLASHER");
132132
rc.setIndicatorString("SPLASHER NOT IMPLEMENTED YET");
133133
}
134+
135+
// Read incoming messages
136+
Message[] messages = rc.readMessages(-1);
137+
for (Message m : messages) {
138+
System.out.println("Tower received message: '#" + m.getSenderID() + " " + m.getBytes());
139+
}
134140
}
135141

136142

0 commit comments

Comments
 (0)