-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyStrategy.py
196 lines (188 loc) · 8.01 KB
/
MyStrategy.py
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
from model.ActionType import ActionType
from model.Game import Game
from model.Move import Move
from model.Player import Player
from model.World import World
from model.FacilityType import FacilityType
from model.VehicleType import VehicleType
from model.Unit import Unit
from Analyze import WorldState
from collections import deque
from Utils import Area
from Formation import GroundFormation, AerialFormation
from deadcode import shuffle, at_flag, wait, group, select_vehicles, devide, move as moveto
def set_production(fid, id: VehicleType):
def do_set(s, w, g, m):
m.action = ActionType.SETUP_VEHICLE_PRODUCTION
m.vehicle_type = id
m.facility_id = fid
print("set production:", fid)
eprodname = "enqueued_production:" + str(fid)
if eprodname in s.flags:
s.flags.pop(eprodname)
return do_set
def make_formation(ground = -1, aerial = -1, fi = -1):
def do_make(s, w: World, g: Game, m: Move):
#print("Formation was made!")
if aerial > 0:
newaerial = AerialFormation(aerial)
s.formations.append(newaerial)
if ground > 0:
new_formation = GroundFormation(ground)
s.formations.append(new_formation)
if "formation:" + str(fi) in s.flags:
s.flags.pop("formation:" + str(fi))
return do_make
class MyStrategy:
action_queue = deque()
events = list()
flags = dict()
waiter = -1
nomoveturns = 0
def init(self, me: Player, world: World, game: Game):
self.priority = False
self.no_priority_change = 0
self.full_area = Area(0.0,world.width,0.0,world.height)
self.formations = list()
self.free_groups = set(range(1,game.max_unit_group+1))
self.worldstate = WorldState(world, game)
def analyze(self, me: Player, world: World, game: Game):
self.worldstate.update(world)
facilities = self.worldstate.facilities
myccid = facilities.by_type[FacilityType.CONTROL_CENTER] & facilities.by_player[me.id]
self.actionsPerTick = (game.base_action_count +
game.additional_action_count_per_control_center * len(myccid))
if world.tick_index % 60 == 0:
self.actionsRemaining = self.actionsPerTick
def production(self, g:Game):
ingroups = set()
for i in self.worldstate.vehicles.by_group.values():
ingroups |= i
for fa in (self.worldstate.facilities.by_player[self.worldstate.facilities.me] & self.worldstate.facilities.by_type[FacilityType.VEHICLE_FACTORY]):
enprodname = "enqueued_production:" + str(fa)
f = self.worldstate.facilities[fa]
varea = Area(f.left, f.left + g.facility_width, f.top, f.top+g.facility_height)
#print(f.vehicle_type, f.production_progress)
inarea = self.worldstate.vehicles.in_area(varea) & self.worldstate.vehicles.by_player[self.worldstate.vehicles.me]
if f.vehicle_type is None and len(inarea) == 0 and not (enprodname in self.flags):
self.flags[enprodname] = 1
self.action_queue.append(set_production(fa, VehicleType.IFV))
print("Enqueued production:", fa)
#if inarea == 100 and not ("enqueued_production:" + str(f.id) in self.flags):
# self.flags["enqueued_production:" + str(f.id)] = 1
# self.action_queue.append(set_production(VehicleType.HELICOPTER))
inareanogroups = len(inarea - ingroups)
jsetname = "justset:" + str(fa)
if inareanogroups > 0 and inareanogroups % 11 == 0 and not (enprodname in self.flags) and not (jsetname in self.flags):
self.flags[enprodname] = 1
self.flags[jsetname] = True
if f.vehicle_type == VehicleType.IFV:
self.action_queue.append(set_production(fa, VehicleType.ARRV))
elif f.vehicle_type == VehicleType.ARRV:
self.action_queue.append(set_production(fa, VehicleType.IFV))
elif f.vehicle_type == VehicleType.FIGHTER:
self.action_queue.append(set_production(fa, VehicleType.HELICOPTER))
elif f.vehicle_type == VehicleType.HELICOPTER:
self.action_queue.append(set_production(fa, VehicleType.FIGHTER))
elif inareanogroups % 11 != 0 and jsetname in self.flags:
self.flags.pop(jsetname)
if inareanogroups == 121 and not ("formation:" + str(f.id) in self.flags):
if f.vehicle_type in {VehicleType.IFV, VehicleType.ARRV}:
nexttype = VehicleType.FIGHTER
else:
nexttype = VehicleType.IFV
self.flags["formation:" + str(f.id)] = 1
newgroup = self.free_groups.pop()
self.action_queue += deque([
select_vehicles(varea),
group(newgroup),
wait(1),
set_production(fa, nexttype),
make_formation(newgroup, fi = f.id)
])
def move(self, me: Player, world: World, game: Game, move: Move):
if world.tick_index == 0:
self.init(me, world, game)
self.action_queue += shuffle(self)
def each(i, pa, fa):
return deque([
select_vehicles(pa, vtype=VehicleType.FIGHTER),
select_vehicles(pa, vtype=VehicleType.HELICOPTER, action=ActionType.ADD_TO_SELECTION),
moveto(Unit(None, (1-i)*100, (i-1)*10)),
group(2*i+1),
wait(30*(1-i)),
select_vehicles(pa),
select_vehicles(pa, group=2*i+1, action=ActionType.DESELECT),
moveto(Unit(None, (1-i)*100, (i-1)*10)),
group(2*i+2),
wait(30*(1-i)),
make_formation(i)
])
first_aerial = self.free_groups.pop()
first_ground = self.free_groups.pop()
self.action_queue.append(at_flag("formation_done", 1, deque([
# devide(self.worldstate.vehicles.by_player[self.worldstate.vehicles.me], each, 2, "done")
select_vehicles(self.full_area, vtype=VehicleType.FIGHTER),
select_vehicles(self.full_area, vtype=VehicleType.HELICOPTER, action=ActionType.ADD_TO_SELECTION),
group(first_aerial),
wait(1),
select_vehicles(self.full_area),
select_vehicles(self.full_area, group=1, action=ActionType.DESELECT),
group(first_ground),
wait(1),
make_formation(first_ground, first_aerial)
])))
self.analyze(me, world, game)
self.production(game)
# Doing actions and triggering events
if len(self.action_queue) > 0 and self.actionsRemaining > 0 and self.waiter < world.tick_index:
while len(self.action_queue) > 0:
act = self.action_queue.popleft()
act(self, world, game, move)
if move.action != ActionType.NONE:
self.actionsRemaining -= 1
break
elif self.actionsRemaining > 0:
to_remove = set()
if type(self.priority) is int and self.priority < len(self.formations):
#print("Selecting again by priority:", self.priority)
f = self.formations[self.priority]
if len(f.units(self.worldstate.vehicles)) == 0:
to_remove.add(self.priority)
self.priority = None
else:
f.tick(self.worldstate, world, me, game, move)
if move.action and move.action != ActionType.NONE:
self.actionsRemaining -= 1
if move.action != ActionType.CLEAR_AND_SELECT:
self.no_priority_change += 1
else:
for i, f in enumerate(self.formations):
if i == self.priority:
continue
if len(f.units(self.worldstate.vehicles)) == 0:
to_remove.add(i)
self.free_groups.add(f.group)
continue
f.tick(self.worldstate, world, me, game, move)
if move.action and move.action != ActionType.NONE:
self.priority = i
self.no_priority_change = 0
#print("Setting priority to:", i)
self.actionsRemaining -= 1
break
if self.no_priority_change > 10:
self.priority = None
if len(to_remove) > 0:
for i in sorted(to_remove, reverse = True):
if self.priority == i:
self.priority = None
if i>0 and i < len(self.formations):
self.formations.pop(i)
# events no longer needed after the end of formation
to_remove = list()
for i in reversed(self.events):
if i(self, world):
to_remove.append(i)
for i in to_remove:
self.events.remove(i)