-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathants.py
772 lines (591 loc) · 22 KB
/
ants.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
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
"""The ants module implements game logic for Ants Vs. SomeBees."""
# Name: Ludwig von Schoenfeldt
# Email: [email protected]
import random
import sys
from ucb import main, interact, trace
from collections import OrderedDict
################
# Core Classes #
################
class Place:
"""A Place holds insects and has an exit to another Place."""
def __init__(self, name, exit=None):
"""Create a Place with the given exit.
name -- A string; the name of this Place.
exit -- The Place reached by exiting this Place (may be None).
"""
self.name = name
self.exit = exit
self.bees = [] # A list of Bees
self.ant = None # An Ant
self.entrance = None # A Place
# Phase 1: Add an entrance to the exit
"*** YOUR CODE HERE ***"
if exit is not None:
exit.entrance = self
def add_insect(self, insect):
"""Add an Insect to this Place.
There can be at most one Ant in a Place, unless exactly one of them is
a BodyguardAnt (Phase 2), in which case there can be two. If add_insect
tries to add more Ants than is allowed, an assertion error is raised.
There can be any number of Bees in a Place.
"""
if insect.is_ant():
# Phase 2: Special handling for BodyguardAnt
"*** YOUR CODE HERE ***"
if self.ant is not None:
if self.ant.container and self.ant.can_contain(insect):
self.ant.contain_ant(insect)
insect.place = self
return
elif insect.container and insect.can_contain(self.ant):
insect.contain_ant(self.ant)
self.ant = insect
insect.place = self
return
assert self.ant is None, 'Two ants in {0}'.format(self)
self.ant = insect
else:
self.bees.append(insect)
insect.place = self
def remove_insect(self, insect):
"""Remove an Insect from this Place."""
if insect.is_ant():
assert self.ant == insect, '{0} is not in {1}'.format(insect, self)
"*** YOUR CODE HERE ***"
if insect.container:
insect.ant.place = self
self.ant = insect.ant
insect.place = None
return
if type(insect) == QueenAnt and not insect.imposter:
return
self.ant = None
else:
self.bees.remove(insect)
insect.place = None
def __str__(self):
return self.name
class Insect:
"""An Insect, the base class of Ant and Bee, has armor and a Place."""
def __init__(self, armor, place=None):
"""Create an Insect with an armor amount and a starting Place."""
self.armor = armor
self.place = place # set by Place.add_insect and Place.remove_insect
def reduce_armor(self, amount):
"""Reduce armor by amount, and remove the insect from its place if it
has no armor remaining.
>>> test_insect = Insect(5)
>>> test_insect.reduce_armor(2)
>>> test_insect.armor
3
"""
self.armor -= amount
if self.armor <= 0:
print('{0} ran out of armor and expired'.format(self))
self.place.remove_insect(self)
def action(self, colony):
"""Perform the default action that this Insect takes each turn.
colony -- The AntColony, used to access game state information.
"""
def is_ant(self):
"""Return whether this Insect is an Ant."""
return False
def __repr__(self):
cname = type(self).__name__
return '{0}({1}, {2})'.format(cname, self.armor, self.place)
class Bee(Insect):
"""A Bee moves from place to place, following exits and stinging ants."""
name = 'Bee'
watersafe= True
blocks_path = False
def sting(self, ant):
"""Attack an Ant, reducing the Ant's armor by 1."""
ant.reduce_armor(1)
def move_to(self, place):
"""Move from the Bee's current Place to a new Place."""
self.place.remove_insect(self)
place.add_insect(self)
def blocked(self):
"""Return True if this Bee cannot advance to the next Place."""
# Phase 2: Special handling for NinjaAnt
"*** YOUR CODE HERE ***"
if self.place.ant is None or self.place.ant.blocks_path == False:
return False
return True
def action(self, colony):
"""A Bee's action stings the Ant that blocks its exit if it is blocked,
or moves to the exit of its current place otherwise.
colony -- The AntColony, used to access game state information.
"""
if self.blocked():
self.sting(self.place.ant)
else:
if self.place.name != 'Hive' and self.armor > 0:
self.move_to(self.place.exit)
class Ant(Insect):
"""An Ant occupies a place and does work for the colony."""
implemented = False # Only implemented Ant classes should be instantiated
damage = 0
food_cost = 0
watersafe = False
blocks_path = True
container = False
doubled = False
def __init__(self, armor=1):
"""Create an Ant with an armor quantity."""
Insect.__init__(self, armor)
def is_ant(self):
return True
def can_contain(self, other):
if self.container and not self.ant and not other.container:
return True
else:
return False
class HarvesterAnt(Ant):
"""HarvesterAnt produces 1 additional food per turn for the colony."""
name = 'Harvester'
implemented = True
food_cost = 2
def action(self, colony):
"""Produce 1 additional food for the colony.
colony -- The AntColony, used to access game state information.
"""
"*** YOUR CODE HERE ***"
colony.food += 1
def random_or_none(l):
"""Return a random element of list l, or return None if l is empty."""
return random.choice(l) if l else None
class ThrowerAnt(Ant):
"""ThrowerAnt throws a leaf each turn at the nearest Bee in its range."""
name = 'Thrower'
implemented = True
damage = 1
food_cost = 4
min_range = 0
max_range = 10
def nearest_bee(self, hive):
"""Return the nearest Bee in a Place that is not the Hive, connected to
the ThrowerAnt's Place by following entrances.
This method returns None if there is no such Bee.
Problem B5: This method returns None if there is no Bee in range.
"""
"*** YOUR CODE HERE ***"
count = 0
current_place = self.place
while current_place.entrance:
if current_place.bees:
if count >= self.min_range and count <= self.max_range:
return random_or_none(current_place.bees)
current_place = current_place.entrance
count +=1
return None
def throw_at(self, target):
"""Throw a leaf at the target Bee, reducing its armor."""
if target is not None:
target.reduce_armor(self.damage)
def action(self, colony):
"""Throw a leaf at the nearest Bee in range."""
self.throw_at(self.nearest_bee(colony.hive))
class Hive(Place):
"""The Place from which the Bees launch their assault.
assault_plan -- An AssaultPlan; when & where bees enter the colony.
"""
name = 'Hive'
def __init__(self, assault_plan):
self.name = 'Hive'
self.assault_plan = assault_plan
self.bees = []
for bee in assault_plan.all_bees:
self.add_insect(bee)
# The following attributes are always None for a Hive
self.entrance = None
self.ant = None
self.exit = None
def strategy(self, colony):
exits = [p for p in colony.places.values() if p.entrance is self]
for bee in self.assault_plan.get(colony.time, []):
bee.move_to(random.choice(exits))
class AntColony:
"""An ant collective that manages global game state and simulates time.
Attributes:
time -- elapsed time
food -- the colony's available food total
queen -- the place where the queen resides
places -- A list of all places in the colony (including a Hive)
bee_entrances -- A list of places that bees can enter
"""
def __init__(self, strategy, hive, ant_types, create_places, food=2):
"""Create an AntColony for simulating a game.
Arguments:
strategy -- a function to deploy ants to places
hive -- a Hive full of bees
ant_types -- a list of ant constructors
create_places -- a function that creates the set of places
"""
self.time = 0
self.food = food
self.strategy = strategy
self.hive = hive
self.ant_types = OrderedDict((a.name, a) for a in ant_types)
self.configure(hive, create_places)
def configure(self, hive, create_places):
"""Configure the places in the colony."""
self.queen = Place('AntQueen')
self.places = OrderedDict()
self.bee_entrances = []
def register_place(place, is_bee_entrance):
self.places[place.name] = place
if is_bee_entrance:
place.entrance = hive
self.bee_entrances.append(place)
register_place(self.hive, False)
create_places(self.queen, register_place)
def simulate(self):
"""Simulate an attack on the ant colony (i.e., play the game)."""
while len(self.queen.bees) == 0 and len(self.bees) > 0:
self.hive.strategy(self) # Bees invade
self.strategy(self) # Ants deploy
for ant in self.ants: # Ants take actions
if ant.armor > 0:
ant.action(self)
for bee in self.bees: # Bees take actions
if bee.armor > 0:
bee.action(self)
self.time += 1
if len(self.queen.bees) > 0:
print('The ant queen has perished. Please try again.')
else:
print('All bees are vanquished. You win!')
def deploy_ant(self, place_name, ant_type_name):
"""Place an ant if enough food is available.
This method is called by the current strategy to deploy ants.
"""
constructor = self.ant_types[ant_type_name]
if self.food < constructor.food_cost:
print('Not enough food remains to place ' + ant_type_name)
else:
self.places[place_name].add_insect(constructor())
self.food -= constructor.food_cost
def remove_ant(self, place_name):
"""Remove an Ant from the Colony."""
place = self.places[place_name]
if place.ant is not None:
place.remove_insect(place.ant)
@property
def ants(self):
return [p.ant for p in self.places.values() if p.ant is not None]
@property
def bees(self):
return [b for p in self.places.values() for b in p.bees]
@property
def insects(self):
return self.ants + self.bees
def __str__(self):
status = ' (Food: {0}, Time: {1})'.format(self.food, self.time)
return str([str(i) for i in self.ants + self.bees]) + status
def ant_types():
"""Return a list of all implemented Ant classes."""
all_ant_types = []
new_types = [Ant]
while new_types:
new_types = [t for c in new_types for t in c.__subclasses__()]
all_ant_types.extend(new_types)
return [t for t in all_ant_types if t.implemented]
def interactive_strategy(colony):
"""A strategy that starts an interactive session and lets the user make
changes to the colony.
For example, one might deploy a ThrowerAnt to the first tunnel by invoking:
colony.deploy_ant('tunnel_0_0', 'Thrower')
"""
print('colony: ' + str(colony))
msg = '<Control>-D (<Control>-Z <Enter> on Windows) completes a turn.\n'
interact(msg)
def start_with_strategy(args, strategy):
"""Reads command-line arguments and starts Ants vs. SomeBees with those
options."""
import argparse
parser = argparse.ArgumentParser(description="Play Ants vs. SomeBees")
parser.add_argument('-t', '--ten', action='store_true',
help='start with ten food')
parser.add_argument('-f', '--full', action='store_true',
help='loads a full layout and assault plan')
parser.add_argument('-w', '--water', action='store_true',
help='loads a full layout with water')
parser.add_argument('-i', '--insane', action='store_true',
help='loads a difficult assault plan')
args = parser.parse_args()
assault_plan = make_test_assault_plan()
layout = test_layout
food = 2
if args.ten:
food = 10
if args.full:
assault_plan = make_full_assault_plan()
layout = dry_layout
if args.water:
layout = mixed_layout
if args.insane:
assault_plan = make_insane_assault_plan()
hive = Hive(assault_plan)
AntColony(strategy, hive, ant_types(), layout, food).simulate()
###########
# Layouts #
###########
def mixed_layout(queen, register_place, length=8, tunnels=3, moat_frequency=3):
"""Register Places with the colony."""
for tunnel in range(tunnels):
exit = queen
for step in range(length):
if moat_frequency != 0 and (step + 1) % moat_frequency == 0:
exit = Water('water_{0}_{1}'.format(tunnel, step), exit)
else:
exit = Place('tunnel_{0}_{1}'.format(tunnel, step), exit)
register_place(exit, step == length - 1)
def test_layout(queen, register_place, length=8, tunnels=1):
mixed_layout(queen, register_place, length, tunnels, 0)
def test_layout_multi_tunnels(queen, register_place, length=8, tunnels=2):
mixed_layout(queen, register_place, length, tunnels, 0)
def dry_layout(queen, register_place, length=8, tunnels=3):
mixed_layout(queen, register_place, length, tunnels, 0)
#################
# Assault Plans #
#################
class AssaultPlan(dict):
"""The Bees' plan of attack for the Colony. Attacks come in timed waves.
An AssaultPlan is a dictionary from times (int) to waves (list of Bees).
>>> AssaultPlan().add_wave(4, 2)
{4: [Bee(3, None), Bee(3, None)]}
"""
def __init__(self, bee_armor=3):
self.bee_armor = bee_armor
def add_wave(self, time, count):
"""Add a wave at time with count Bees that have the specified armor."""
bees = [Bee(self.bee_armor) for _ in range(count)]
self.setdefault(time, []).extend(bees)
return self
@property
def all_bees(self):
"""Place all Bees in the hive and return the list of Bees."""
return [bee for wave in self.values() for bee in wave]
def make_test_assault_plan():
return AssaultPlan().add_wave(2, 1).add_wave(3, 1)
def make_full_assault_plan():
plan = AssaultPlan().add_wave(2, 1)
for time in range(3, 15, 2):
plan.add_wave(time, 1)
return plan.add_wave(15, 8)
def make_insane_assault_plan():
plan = AssaultPlan(4).add_wave(1, 2)
for time in range(3, 15):
plan.add_wave(time, 1)
return plan.add_wave(15, 20)
##############
# Extensions #
##############
class Water(Place):
"""Water is a place that can only hold 'watersafe' insects."""
def add_insect(self, insect):
"""Add insect if it is watersafe, otherwise reduce its armor to 0."""
print('added', insect, insect.watersafe)
"*** YOUR CODE HERE ***"
Place.add_insect(self,insect)
if insect.watersafe == False:
insect.reduce_armor(insect.armor)
class FireAnt(Ant):
"""FireAnt cooks any Bee in its Place when it expires."""
name = 'Fire'
damage = 3
"*** YOUR CODE HERE ***"
food_cost = 4
implemented = True
def reduce_armor(self, amount):
"*** YOUR CODE HERE ***"
self.armor -= amount
if self.armor <= 0:
copy = list(self.place.bees)
for x in copy:
x.reduce_armor(self.damage)
self.place.remove_insect(self)
class LongThrower(ThrowerAnt):
"""A ThrowerAnt that only throws leaves at Bees at least 4 places away."""
name = 'Long'
food_cost = 3
implemented = True
min_range = 4
class ShortThrower(ThrowerAnt):
"""A ThrowerAnt that only throws leaves at Bees within 3 places."""
name = 'Short'
food_cost = 3
implemented = True
max_range = 2
class WallAnt(Ant):
"""WallAnt is an Ant which has a large amount of armor."""
name = 'Wall'
"*** YOUR CODE HERE ***"
food_cost = 4
implemented = True
#amor = 4
def __init__(self):
"*** YOUR CODE HERE ***"
Ant.__init__(self,4)
class NinjaAnt(Ant):
"""NinjaAnt is an Ant which does not block the path and does 1 damage to
all Bees in the exact same Place."""
name = 'Ninja'
"*** YOUR CODE HERE ***"
food_cost = 6
damage = 1
implemented = True
blocks_path = False
def action(self, colony):
"*** YOUR CODE HERE ***"
bees = list(self.place.bees)
for b in bees:
b.reduce_armor(self.damage)
class ScubaThrower(ThrowerAnt):
"""ScubaThrower is a ThrowerAnt which is watersafe."""
name = 'Scuba'
"*** YOUR CODE HERE ***"
implemented = True
food_cost = 5
watersafe = True
class HungryAnt(Ant):
"""HungryAnt will take three "turns" to eat a Bee in the same space as it.
While eating, the HungryAnt can't eat another Bee.
"""
name = 'Hungry'
"*** YOUR CODE HERE ***"
implemented = True
food_cost = 4
time_to_digest = 3
def __init__(self):
Ant.__init__(self)
"*** YOUR CODE HERE ***"
self.digesting=0
def eat_bee(self, bee):
"*** YOUR CODE HERE ***"
bee.reduce_armor(bee.armor)
self.digesting = self.time_to_digest
def action(self, colony):
"*** YOUR CODE HERE ***"
if self.digesting > 0:
self.digesting -= 1
else:
bee = random_or_none(self.place.bees)
if bee is not None:
self.eat_bee(bee)
class BodyguardAnt(Ant):
"""BodyguardAnt provides protection to other Ants."""
name = 'Bodyguard'
"*** YOUR CODE HERE ***"
implemented = True
food_cost = 4
container = True
def __init__(self):
Ant.__init__(self, 2)
self.ant = None # The Ant hidden in this bodyguard
def contain_ant(self, ant):
"*** YOUR CODE HERE ***"
self.ant = ant
def action(self, colony):
"*** YOUR CODE HERE ***"
self.ant.action(colony)
class QueenPlace:
"""A place that represents both places in which the bees find the queen.
(1) The original colony queen location at the end of all tunnels, and
(2) The place in which the QueenAnt resides.
"""
def __init__(self, colony_queen, ant_queen):
"*** YOUR CODE HERE ***"
self.colony_queen = colony_queen
self.ant_queen = ant_queen
@property
def bees(self):
"*** YOUR CODE HERE ***"
return self.colony_queen.bees + self.ant_queen.bees
class QueenAnt(ScubaThrower):
"""The Queen of the colony. The game is over if a bee enters her place."""
name = 'Queen'
"*** YOUR CODE HERE ***"
food_cost = 6
implemented = True
instances = 0
imposter = False
def __init__(self):
ScubaThrower.__init__(self, 1)
"*** YOUR CODE HERE ***"
Ant.__init__(self)
if QueenAnt.instances == 1:
self.imposter = True
QueenAnt.instances += 1
def action(self, colony):
"""A queen ant throws a leaf, but also doubles the damage of ants
in her tunnel. Impostor queens do only one thing: die."""
"*** YOUR CODE HERE ***"
if self.imposter:
self.reduce_armor(self.armor)
return
colony.queen = QueenPlace(colony.queen, self.place)
def double_damage(place):
if not type(place.ant) == QueenAnt:
if place.ant is not None and not place.ant.doubled:
place.ant.doubled = True
place.ant.damage *= 2
if place.ant.container:
if not type(place.ant.ant) == QueenAnt:
place.ant.ant.doubled = True
place.ant.ant.damage *= 2
if type(self.place.ant) == BodyguardAnt:
double_damage(self.place)
forward = self.place
while forward.entrance is not None:
forward = forward.entrance
double_damage(forward)
backward = self.place
while backward.exit is not None:
backward = backward.exit
double_damage(backward)
ScubaThrower.action(self, colony)
class AntRemover(Ant):
"""Allows the player to remove ants from the board in the GUI."""
name = 'Remover'
implemented = True
def __init__(self):
Ant.__init__(self, 0)
##################
# Status Effects #
##################
def make_slow(action):
"""Return a new action method that calls action every other turn.
action -- An action method of some Bee
"""
"*** YOUR CODE HERE ***"
def make_stun(action):
"""Return a new action method that does nothing.
action -- An action method of some Bee
"""
"*** YOUR CODE HERE ***"
def apply_effect(effect, bee, duration):
"""Apply a status effect to a Bee that lasts for duration turns."""
"*** YOUR CODE HERE ***"
class SlowThrower(ThrowerAnt):
"""ThrowerAnt that causes Slow on Bees."""
name = 'Slow'
"*** YOUR CODE HERE ***"
implemented = False
def throw_at(self, target):
if target:
apply_effect(make_slow, target, 3)
class StunThrower(ThrowerAnt):
"""ThrowerAnt that causes Stun on Bees."""
name = 'Stun'
"*** YOUR CODE HERE ***"
implemented = False
def throw_at(self, target):
if target:
apply_effect(make_stun, target, 1)
@main
def run(*args):
start_with_strategy(args, interactive_strategy)