-
Notifications
You must be signed in to change notification settings - Fork 4
/
build_order_runner.py
722 lines (658 loc) · 28.8 KB
/
build_order_runner.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
from typing import TYPE_CHECKING, Optional, Union
from cython_extensions import cy_distance_to_squared, cy_towards
from cython_extensions.combat_utils import cy_attack_ready
from cython_extensions.units_utils import cy_in_attack_range
from sc2.data import Race
from sc2.ids.unit_typeid import UnitTypeId as UnitID
from sc2.ids.upgrade_id import UpgradeId
from sc2.position import Point2
from sc2.unit import Unit
from sc2.units import Units
from ares.behaviors.macro import AutoSupply, SpawnController
from ares.build_runner.build_order_step import BuildOrderStep
from ares.managers.manager_mediator import ManagerMediator
if TYPE_CHECKING:
from ares import AresBot
from loguru import logger
from sc2.ids.ability_id import AbilityId
from ares.build_runner.build_order_parser import BuildOrderParser
from ares.consts import (
ADD_ONS,
ALL_STRUCTURES,
BUILDS,
GAS_BUILDINGS,
GATEWAY_UNITS,
OPENING_BUILD_ORDER,
TARGET,
WORKER_TYPES,
BuildOrderOptions,
BuildOrderTargetOptions,
UnitRole,
)
from ares.dicts.structure_to_building_size import STRUCTURE_TO_BUILDING_SIZE
class BuildOrderRunner:
"""
A class to run a build order for an AI.
Attributes
----------
ai : AresBot
The AI that the build order is for.
_chosen_opening : str
The name of the opening being used for the build order.
config : dict
The configuration dictionary for the AI.
mediator : ManagerMediator
The ManagerMediator object used for communicating with managers.
build_order : list[BuildOrderStep]
The build order list.
build_step : int
The current build order step index.
current_step_started : bool
True if the current build order step has started, False otherwise.
_opening_build_completed : bool
True if the opening build is completed, False otherwise.
Methods
-------
run_build()
Runs the build order.
do_step(step: BuildOrderStep)
Runs a specific build order step.
"""
AUTO_SUPPLY_AT_SUPPLY: str = "AutoSupplyAtSupply"
CONSTANT_WORKER_PRODUCTION_TILL: str = "ConstantWorkerProductionTill"
PERSISTENT_WORKER: str = "PersistentWorker"
REQUIRES_TOWNHALL_COMMANDS: set = {
AbilityId.UPGRADETOORBITAL_ORBITALCOMMAND,
AbilityId.UPGRADETOPLANETARYFORTRESS_PLANETARYFORTRESS,
}
SCOUTING_COMMANDS: set[BuildOrderOptions] = {
BuildOrderOptions.OVERLORD_SCOUT,
BuildOrderOptions.WORKER_SCOUT,
}
SHOULD_HANDLE_GAS_STEAL: str = "ShouldHandleGasSteal"
def __init__(
self,
ai: "AresBot",
chosen_opening: str,
config: dict,
mediator: ManagerMediator,
) -> None:
self.ai = ai
self.config: dict = config
self.mediator: ManagerMediator = mediator
self.auto_supply_at_supply: int = 200
self.constant_worker_production_till: int = 0
self.persistent_worker: bool = True
self.build_order: list[BuildOrderStep] = []
self._build_order_parser: BuildOrderParser = BuildOrderParser(self.ai)
self._chosen_opening: str = chosen_opening
self.configure_opening_from_yml_file(config, chosen_opening)
self.build_step: int = 0
self.current_step_started: bool = False
self.current_step_complete: bool = False
self._opening_build_completed: bool = False
self.current_build_position: Point2 = self.ai.start_location
self.assigned_persistent_worker: bool = False
self._temporary_build_step: int = -1
self.should_handle_gas_steal: bool = True
self._geyser_tag_to_probe_tag: dict[int, int] = dict()
def set_build_completed(self) -> None:
logger.info("Build order completed")
self.mediator.switch_roles(
from_role=UnitRole.PERSISTENT_BUILDER, to_role=UnitRole.GATHERING
)
self._opening_build_completed = True
def configure_opening_from_yml_file(
self, config: dict, opening_name: str, remove_completed: bool = False
) -> None:
if BUILDS in self.config:
assert isinstance(
config[BUILDS], dict
), "Opening builds are not configured correctly in the yml file"
assert opening_name in config[BUILDS].keys(), (
f"Trying to parse an opening called {opening_name} but "
f"I can't find it. Spelling perhaps?"
)
build: list[str] = config[BUILDS][opening_name][OPENING_BUILD_ORDER]
logger.info(
f"{self.ai.time_formatted}: Running build from yml file: {opening_name}"
)
if self.AUTO_SUPPLY_AT_SUPPLY in config[BUILDS][opening_name]:
try:
self.auto_supply_at_supply = int(
config[BUILDS][opening_name][self.AUTO_SUPPLY_AT_SUPPLY]
)
except ValueError as e:
logger.warning(f"Error: {e}")
if self.CONSTANT_WORKER_PRODUCTION_TILL in config[BUILDS][opening_name]:
try:
self.constant_worker_production_till = int(
config[BUILDS][opening_name][
self.CONSTANT_WORKER_PRODUCTION_TILL
]
)
except ValueError as e:
logger.warning(f"Error: {e}")
if self.PERSISTENT_WORKER in config[BUILDS][opening_name]:
self.persistent_worker = config[BUILDS][opening_name][
self.PERSISTENT_WORKER
]
if self.SHOULD_HANDLE_GAS_STEAL in config[BUILDS][opening_name]:
self.should_handle_gas_steal = config[BUILDS][opening_name][
self.SHOULD_HANDLE_GAS_STEAL
]
self.build_step: int = 0
self.current_step_started: bool = False
self.current_step_complete: bool = False
self.current_build_position: Point2 = self.ai.start_location
self.assigned_persistent_worker: bool = False
self._temporary_build_step: int = -1
self.build_order = self._build_order_parser.parse(build, remove_completed)
def set_step_complete(self, value: UnitID) -> None:
if (
self.build_step < len(self.build_order)
and value == self.build_order[self.build_step].command
and self.current_step_started
):
self.current_step_complete = True
def set_step_started(self, value: bool, command) -> None:
if command == self.build_order[self.build_step].command:
self.current_step_started = value
def switch_opening(self, opening_name: str, remove_completed: bool = True) -> None:
if self._chosen_opening != opening_name:
self._chosen_opening = opening_name
self.configure_opening_from_yml_file(
self.config, opening_name, remove_completed=remove_completed
)
@property
def build_completed(self) -> bool:
"""
Returns
-------
bool
True if the opening build is completed, False otherwise.
"""
return self._opening_build_completed
@property
def chosen_opening(self) -> str:
"""
Returns
-------
str
Get the name of the opening (same name as declared in builds.yml file).
"""
return self._chosen_opening
@property
def look_ahead(self) -> bool:
"""
Can look ahead in the build order?
"""
return self.ai.minerals > 470 and self._temporary_build_step == -1
async def run_build(self) -> None:
"""
Runs the build order.
"""
if self.persistent_worker:
self._assign_persistent_worker()
# prevent enemy stealing our main gas buildings
if self.should_handle_gas_steal:
self._handle_gas_steal()
if len(self.build_order) > 0:
if self._temporary_build_step != -1:
await self.do_step(self.build_order[self._temporary_build_step])
else:
await self.do_step(self.build_order[self.build_step])
# if we are a bit stuck on current step, we can look ahead
# and attempt to complete a future step
if self.look_ahead:
index: int = 0
for i, step in enumerate(self.build_order[self.build_step :]):
if index == 0:
continue
index += 1
if step.start_condition():
self.current_step_started = False
self._temporary_build_step = i
break
if not self.build_completed and self.build_step >= len(self.build_order):
self.set_build_completed()
logger.info("Build order completed")
return
if self.ai.supply_workers < self.constant_worker_production_till:
self._produce_workers()
if self.ai.supply_used >= self.auto_supply_at_supply:
AutoSupply(self.ai.start_location).execute(
self.ai, self.config, self.mediator
)
async def do_step(self, step: BuildOrderStep) -> None:
"""
Runs a specific build order step.
Parameters
----------
step : BuildOrderStep
The build order step to run.
"""
if (
step.command in GATEWAY_UNITS
and UpgradeId.WARPGATERESEARCH in self.ai.state.upgrades
and [
g
for g in self.mediator.get_own_structures_dict[UnitID.GATEWAY]
if g.is_ready and g.is_idle
]
):
return
start_at_supply: int = step.start_at_supply
start_condition_triggered: bool = step.start_condition()
# start condition is active for a structure? reduce the supply threshold
# this allows a worker to be sent earlier
if (
self.ai.race == Race.Protoss
and start_condition_triggered
and step.command in ALL_STRUCTURES
and step.command != UnitID.PYLON
):
start_at_supply -= 1
if (
start_condition_triggered
and not self.current_step_started
and self.ai.supply_used >= start_at_supply
):
command: UnitID = step.command
if command in ADD_ONS:
self.current_step_started = True
elif command in ALL_STRUCTURES:
# let the gas steal preventer handle this step
if command in GAS_BUILDINGS and len(self._geyser_tag_to_probe_tag) > 0:
self.current_step_started = True
return
persistent_workers: Units = self.mediator.get_units_from_role(
role=UnitRole.PERSISTENT_BUILDER
)
building_tracker: dict = self.mediator.get_building_tracker_dict
persistent_worker_available: bool = False
if self.persistent_worker:
for worker in persistent_workers:
if self.ai.race == Race.Protoss:
persistent_worker_available = True
break
if worker.tag in building_tracker:
target: Point2 = building_tracker[worker.tag][TARGET]
if [
s
for s in self.ai.structures
if cy_distance_to_squared(s.position, target) < 6
and s.build_progress > 0.95
]:
persistent_worker_available = True
if worker := self.mediator.select_worker(
target_position=self.current_build_position,
force_close=True,
select_persistent_builder=command != UnitID.REFINERY,
only_select_persistent_builder=persistent_worker_available,
):
if next_building_position := await self.get_position(
step.command, step.target
):
self.current_build_position = next_building_position
if self.mediator.build_with_specific_worker(
worker=worker,
structure_type=command,
pos=self.current_build_position,
assign_role=worker.tag
in self.mediator.get_unit_role_dict[UnitRole.GATHERING],
):
self.current_step_started = True
elif isinstance(command, UnitID) and command not in ALL_STRUCTURES:
army_comp: dict = {command: {"proportion": 1.0, "priority": 0}}
spawn_target: Point2 = self._get_target(step.target)
SpawnController(
army_comp, freeflow_mode=True, maximum=1, spawn_target=spawn_target
).execute(self.ai, self.config, self.mediator)
if (
UpgradeId.WARPGATERESEARCH in self.ai.state.upgrades
and command in GATEWAY_UNITS
):
# main.on_unit_created will set self.current_step_started = True
pass
else:
self.current_step_started = True
elif isinstance(command, UpgradeId):
self.current_step_started = True
self.ai.research(command)
elif command == AbilityId.EFFECT_CHRONOBOOST:
if chrono_target := self.get_structure(step.target):
if available_nexuses := [
th
for th in self.ai.townhalls
if th.energy >= 50 and th.is_ready
]:
available_nexuses[0](
AbilityId.EFFECT_CHRONOBOOSTENERGYCOST, chrono_target
)
self.current_step_started = True
elif command == AbilityId.UPGRADETOORBITAL_ORBITALCOMMAND:
if available_ccs := [
th
for th in self.ai.townhalls
if th.is_idle and th.is_ready and th.type_id == UnitID.COMMANDCENTER
]:
available_ccs[0](AbilityId.UPGRADETOORBITAL_ORBITALCOMMAND)
self.current_step_started = True
elif command == BuildOrderOptions.WORKER_SCOUT:
if worker := self.mediator.select_worker(
target_position=self.ai.start_location
):
worker.return_resource()
for target in step.target:
worker.move(target, queue=True)
self.mediator.assign_role(
tag=worker.tag, role=UnitRole.BUILD_RUNNER_SCOUT
)
self.current_step_started = True
elif command == BuildOrderOptions.OVERLORD_SCOUT:
unit_role_dict: dict[
UnitRole, set[int]
] = self.mediator.get_unit_role_dict
if overlords := [
ol
for ol in self.mediator.get_own_army_dict[UnitID.OVERLORD]
if ol.tag not in unit_role_dict[UnitRole.BUILD_RUNNER_SCOUT]
]:
overlord: Unit = overlords[0]
for i, target in enumerate(step.target):
overlord.move(target, queue=i != 0)
self.mediator.assign_role(
tag=overlord.tag, role=UnitRole.BUILD_RUNNER_SCOUT
)
self.current_step_started = True
if self.current_step_started:
if not self.current_step_complete:
self.current_step_complete = step.end_condition()
# end condition hasn't yet activated
if not self.current_step_complete:
command: Union[UnitID, UpgradeId] = step.command
if command in ADD_ONS and self.ai.can_afford(command):
if base_structures := [
s
for s in self.ai.structures
if s.is_ready and s.is_idle and s.type_id == ADD_ONS[command]
]:
base_structures[0].build(command)
# should have already started upgraded when step started,
# backup here just in case
elif isinstance(command, UpgradeId):
self.ai.research(command)
elif command == UnitID.ARCHON:
army_comp: dict = {command: {"proportion": 1.0, "priority": 0}}
SpawnController(army_comp, freeflow_mode=True, maximum=1).execute(
self.ai, self.config, self.mediator
)
# end condition active, complete step
else:
time: str = self.ai.time_formatted
logger.info(f"{self.ai.supply_used} {time} {step.command.name}")
if self._temporary_build_step != -1:
self.build_order.remove(
self.build_order[self._temporary_build_step]
)
self._temporary_build_step = -1
else:
self.build_step += 1
self.current_step_started = False
self.current_step_complete = False
if step.command == UnitID.PYLON:
self.mediator.switch_roles(
from_role=UnitRole.PERSISTENT_BUILDER,
to_role=UnitRole.GATHERING,
)
async def get_position(
self, structure_type: UnitID, target: Optional[str]
) -> Union[Point2, Unit, None]:
"""Convert a position command from the build order to an actual location.
Examples
--------
"expand @ nat" :
``if structure_type == self.ai.base_townhall_type and target == "NAT":``
``return self.manager_mediator.get_own_nat``
Parameters
----------
structure_type :
The type of structure to build
target :
Where the structure should be built
Returns
-------
Point2, Unit :
The actual game location where the structure should be built
Or vespene geyser Unit for gas buildings
"""
if structure_type in GAS_BUILDINGS:
existing_gas_buildings: Units = self.ai.all_units(GAS_BUILDINGS)
if available_geysers := self.ai.vespene_geyser.filter(
lambda g: not existing_gas_buildings.closer_than(5.0, g)
):
return available_geysers.closest_to(self.ai.start_location)
elif structure_type == self.ai.base_townhall_type:
return await self.ai.get_next_expansion()
elif self.ai.race != Race.Zerg:
within_psionic_matrix: bool = (
self.ai.race == Race.Protoss
and structure_type in STRUCTURE_TO_BUILDING_SIZE
and structure_type != UnitID.PYLON
)
at_wall: bool = target == BuildOrderTargetOptions.RAMP
close_enemy_to_ramp: list[Unit] = [
e
for e in self.ai.enemy_units
if cy_distance_to_squared(e.position, self.ai.main_base_ramp.top_center)
< 100.0
]
if len(close_enemy_to_ramp) > 0:
at_wall = False
if target == BuildOrderTargetOptions.RAMP:
base_location = self.ai.start_location
else:
base_location = self._get_target(target)
if pos := self.mediator.request_building_placement(
base_location=base_location,
structure_type=structure_type,
wall=at_wall,
within_psionic_matrix=within_psionic_matrix,
pylon_build_progress=0.5,
):
return pos
else:
if target == BuildOrderTargetOptions.RAMP:
if structure_type == self.ai.supply_type:
return list(self.ai.main_base_ramp.corner_depots)[0]
return await self.ai.find_placement(
structure_type,
self.ai.start_location.towards(self.ai.game_info.map_center, 8.0),
30,
)
def get_structure(self, target: str) -> Optional[Unit]:
"""Get the first structure matching the specified type.
Parameters
----------
target :
Type of building to be returned.
Returns
-------
Optional[Unit] :
Unit of the structure type if found.
"""
# this block is currently for chrono
if isinstance(target, UnitID):
if valid_structures := self.ai.structures.filter(
lambda s: s.build_progress == 1.0 and s.type_id == target
):
return valid_structures.first
def _assign_persistent_worker(self) -> None:
"""Assign a worker that does not get assigned back to gathering."""
if self.ai.race != Race.Zerg and not self.assigned_persistent_worker:
pos, time = self._get_position_and_supply_of_first_supply()
if self.ai.time >= time:
if worker := self.mediator.select_worker(
target_position=self.ai.start_location
):
self.mediator.assign_role(
tag=worker.tag, role=UnitRole.PERSISTENT_BUILDER
)
self.assigned_persistent_worker = True
worker.move(pos)
def _produce_workers(self):
if (
self.ai.supply_left > 0
and not self.build_completed
and self.ai.townhalls.idle
and self.ai.can_afford(self.ai.worker_type)
# check if current command requires an idle townhall
and (
self.build_order[self.build_step].command
not in self.REQUIRES_TOWNHALL_COMMANDS
or self.ai.supply_used
< self.build_order[self.build_step].start_at_supply
)
):
self.ai.train(self.ai.worker_type)
def _get_target(self, target: Optional[str]) -> Point2:
match target:
case BuildOrderTargetOptions.ENEMY_FOURTH:
return self.mediator.get_enemy_expansions[2][0]
case BuildOrderTargetOptions.ENEMY_NAT:
return self.mediator.get_enemy_nat
case BuildOrderTargetOptions.ENEMY_NAT_HG_SPOT:
return self.mediator.get_closest_overlord_spot(
from_pos=Point2(
cy_towards(
self.mediator.get_enemy_nat,
self.ai.game_info.map_center,
10.0,
)
)
)
case BuildOrderTargetOptions.ENEMY_NAT_VISION:
return Point2(
cy_towards(
self.mediator.get_enemy_nat,
self.ai.game_info.map_center,
10.0,
)
)
case BuildOrderTargetOptions.ENEMY_RAMP:
return self.mediator.get_enemy_ramp.top_center
case BuildOrderTargetOptions.ENEMY_SPAWN:
return self.ai.enemy_start_locations[0]
case BuildOrderTargetOptions.ENEMY_THIRD:
return self.mediator.get_enemy_expansions[1][0]
case BuildOrderTargetOptions.FIFTH:
return self.mediator.get_own_expansions[3][0]
case BuildOrderTargetOptions.FOURTH:
return self.mediator.get_own_expansions[2][0]
case BuildOrderTargetOptions.MAP_CENTER:
return self.ai.game_info.map_center
case BuildOrderTargetOptions.NAT:
return self.mediator.get_own_nat
case BuildOrderTargetOptions.RAMP:
return self.ai.main_base_ramp.top_center
case BuildOrderTargetOptions.SIXTH:
return self.mediator.get_own_expansions[4][0]
case BuildOrderTargetOptions.SPAWN:
return self.ai.start_location
case BuildOrderTargetOptions.THIRD:
return self.mediator.get_own_expansions[1][0]
return self.ai.start_location
def _get_position_and_supply_of_first_supply(self) -> tuple[Point2, float]:
"""
Iterate through the build order, and work out
where first supply structure will go.
Used to send worker early
Returns
-------
"""
for step in self.build_order:
if step.command in {UnitID.SUPPLYDEPOT, UnitID.PYLON}:
target: Point2 = self._get_target(step.target)
time = (
3.0
if step.start_at_supply <= 13 or target == self.mediator.get_own_nat
else 9.0
)
if self.ai.time < time:
return self.ai.start_location, 999.9
return (
self.mediator.request_building_placement(
base_location=target,
structure_type=self.ai.supply_type,
reserve_placement=False,
),
time,
)
return self.ai.start_location, 999.9
def _handle_gas_steal(self) -> None:
enemy_workers: list[Unit] = [
w
for w in self.ai.enemy_units
if w.type_id in WORKER_TYPES
and cy_distance_to_squared(w.position, self.ai.start_location) < 144.0
]
# there are enemy workers around
geysers: list[Unit] = [
u
for u in self.ai.vespene_geyser
if cy_distance_to_squared(u.position, self.ai.start_location) < 144.0
and not [
g
for g in self.ai.all_gas_buildings
if cy_distance_to_squared(u.position, g.position) < 25.0
]
]
if enemy_workers:
for geyser in geysers:
if geyser.tag not in self._geyser_tag_to_probe_tag:
if worker := self.mediator.select_worker(
target_position=geyser.position, force_close=True
):
self.mediator.assign_role(
tag=worker.tag, role=UnitRole.GAS_STEAL_PREVENTER
)
self._geyser_tag_to_probe_tag[geyser.tag] = worker.tag
worker.move(geyser.position)
to_remove: (list[tuple]) = []
for geyser_tag, worker_tag in self._geyser_tag_to_probe_tag.items():
assigned_worker_tag: int = self._geyser_tag_to_probe_tag[geyser_tag]
if geyser_tag in self.ai.unit_tag_dict:
geyser: Unit = self.ai.unit_tag_dict[geyser_tag]
# gas building exists here now, clean up
if [
g
for g in self.ai.all_gas_buildings
if cy_distance_to_squared(geyser.position, g.position) < 25.0
]:
to_remove.append((geyser_tag, worker_tag))
elif assigned_worker_tag in self.ai.unit_tag_dict:
worker = self.ai.unit_tag_dict[assigned_worker_tag]
# target other enemy worker if it comes in range
if in_range := cy_in_attack_range(worker, enemy_workers):
if cy_attack_ready(self.ai, worker, in_range[0]):
worker.attack(in_range[0])
continue
if self.build_order[
self.build_step
].command in GAS_BUILDINGS and self.ai.can_afford(
self.build_order[self.build_step].command
):
worker.build_gas(geyser)
else:
worker.move(geyser.position)
# worker doesn't exist for some reason
else:
to_remove.append((geyser_tag, worker_tag))
# geyser doesn't exist for some reason
else:
to_remove.append((geyser_tag, worker_tag))
for remove in to_remove:
if remove[0] in self._geyser_tag_to_probe_tag:
del self._geyser_tag_to_probe_tag[remove[0]]
self.mediator.assign_role(tag=remove[1], role=UnitRole.GATHERING)