-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFungus.java
74 lines (50 loc) · 1.32 KB
/
Fungus.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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;
import java.util.Random;
public class RedShirt implements PlayerBot
{
private boolean first = true;
private Coordinates origin;
private static final long BATSIZE = 5;
private int[] getvector(Coordinates origin,Coordinates me,int size)
{
int result[] = new int[2];
result[0] = origin.getX() - me.getX();
result[1] = origin.getY() - me.getY();
if(result[0]<-size/2){
result[0]+=size;
}else if(result[0]>size/2){
result[0]-=size;
}
if(result[1]<-size/2){
result[1]+=size;
}else if(result[1]>size/2){
result[1]-=size;
}
return result;
}
@Override public void getNextCommands(UniverseView universeView, List<MovementCommand> list)
{
long troops;
long batallion;
long tier;
int order;
Random rng = new Random();
int ratio;
for (Coordinates c : universeView.getMyCells()) {
if(first){
first = false;
origin = c;
}
troops = universeView.getPopulation(c);
/* Breeding Base: */
troops-=BATSIZE;
/*
list.add(new MovementCommand(c,MovementCommand.Direction.RIGHT, BATSIZE));*/
}
}
}