X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=koperkapel%2Fvehicles%2Fbase.py;h=47588a59c5450aaaabd5f74ac120302c65037f50;hb=20d1e19f23c04daf107ede8c9fe57b97005a37fd;hp=9aff447f1fdbb0134635059671773734a9a6bd9a;hpb=ac587543218e5179289e18a147e7118f10348dfe;p=koperkapel.git diff --git a/koperkapel/vehicles/base.py b/koperkapel/vehicles/base.py index 9aff447..47588a5 100644 --- a/koperkapel/vehicles/base.py +++ b/koperkapel/vehicles/base.py @@ -1,5 +1,6 @@ """ Base class for vehicles. """ +from itertools import chain, islice, repeat from pygame.constants import BLEND_RGBA_MULT from pgzero.actor import Actor from pgzero.loaders import images @@ -15,6 +16,7 @@ class Vehicle: def __init__(self): self.seats = self.init_seats() + self.game_pos = (0, 0) def roach_management_overlay(self): return Actor("vehicles/%s/background" % (self.vehicle_type,)) @@ -30,6 +32,22 @@ class Vehicle: for seat_pos, (roach, _) in roach_seating_numbers if roach } + def seat_roach(self, world, roach, seat_pos): + vehicle = world.vehicles[self.vehicle_type] + seats = len(self.seats) + seating = list(vehicle.seating) + seating = list(islice( + chain(seating, repeat(None, seats)), 0, seats)) + seating[seat_pos] = roach + # line below records new seating on the world proxy + vehicle.seating = seating + + def roach_at(self, world, seat_pos): + roach_seating = world.vehicles[self.vehicle_type].seating + if seat_pos >= len(roach_seating): + return None + return roach_seating[seat_pos] + _vehicle_types = {} @classmethod @@ -49,6 +67,9 @@ class Vehicle: from .walking import Walking cls.register(Walking) + def get_avatar(self, world): + raise NotImplementedError("Vehicles should know how to create their own avatars.") + class Seat: """ A space in a vehicle for a roach.