-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKobayashiMaru.java
48 lines (38 loc) · 1.08 KB
/
KobayashiMaru.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import cern.ais.gridwars.Coordinates;
import cern.ais.gridwars.UniverseView;
import cern.ais.gridwars.bot.PlayerBot;
import cern.ais.gridwars.command.MovementCommand;
import java.lang.Long;
import java.util.List;
public class KobayashiMaru implements PlayerBot
{
public static final long BATSIZE = 5;
@Override public void getNextCommands(UniverseView universeView, List<MovementCommand> list)
{
long troops;
long batallion;
long tier;
for (Coordinates c : universeView.getMyCells()) {
troops = universeView.getPopulation(c);
/* Breeding Base: */
troops-=BATSIZE;
tier = troops/BATSIZE;
while(tier/4>0){
list.add(new MovementCommand(c,MovementCommand.Direction.UP, BATSIZE));
tier--;
if(tier>0){
list.add(new MovementCommand(c,MovementCommand.Direction.DOWN, BATSIZE));
tier--;
}
if(tier>0){
list.add(new MovementCommand(c,MovementCommand.Direction.LEFT, BATSIZE));
tier--;
}
if(tier>0){
list.add(new MovementCommand(c,MovementCommand.Direction.RIGHT, BATSIZE));
tier--;
}
}
}
}
}