X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=koperkapel%2Froaches.py;h=866e5ca25909d24a8bcaea0c9bcce4ebf73768de;hb=HEAD;hp=c844b5277c404c41c4448239d58daa564fecb570;hpb=9ef65a0121f312e32cc92ac23a2ec586aa94ad05;p=koperkapel.git diff --git a/koperkapel/roaches.py b/koperkapel/roaches.py index c844b52..866e5ca 100644 --- a/koperkapel/roaches.py +++ b/koperkapel/roaches.py @@ -4,6 +4,33 @@ from pgzero.loaders import images from pygame.constants import BLEND_RGBA_MULT from .actors.animsurf import AnimatedSurfActor from .serums import roach_serum_color +from .util import safepath + +NAMES = [ + "roupert", + "roachel", + "roeginald", + "roichard", + "rory", + "roalph", + "roabia", + "roafi", + "roaman", + "roemus", + "roadley", + "roanaell", + "roashwan", + "roashid", + "roaphael", + "roenfield", + "roani", + "roaya", + "roaza", + "robekka", + "rogan", + "roiana", + "roberta", +] def roach_by_name(world, roach_name): @@ -13,6 +40,26 @@ def roach_by_name(world, roach_name): return roaches[0] +def next_roach_name(world): + roach_names = [x['name'] for x in world.roaches] + for cand in NAMES: + if cand not in roach_names: + return cand + + +def build_roach(world, name=None, health=5, **kw): + if name is None: + name = next_roach_name(world) + if name is None: + return + roach = { + "name": name, + "health": health, + } + roach.update(kw) + return roach + + class WorldRoach(object): """A roach proxy with no properties for display on the game level.""" @@ -28,25 +75,63 @@ class RoachFactory: self.suffix = suffix self.frames = 4 - def assemble_frame(self, i, color, roach_data): - roach = images.load("roach%s/roach_%d" % (self.suffix, i + 1)) - eyes = images.load("roach%s/eyes_%d" % (self.suffix, i + 1)) - frame = roach.copy() - frame.fill(color, None, BLEND_RGBA_MULT) + def assemble_frame(self, i, color, roach_data, weapon=None): + roach = images.load(safepath("roach%s/roach_%d") % (self.suffix, i + 1)) + eyes = images.load(safepath("roach%s/eyes_%d") % (self.suffix, i + 1)) + if weapon is None: + frame = roach.copy() + frame.fill(color, None, BLEND_RGBA_MULT) + else: + frame = weapon.surf.copy() + roach = roach.copy() + roach.fill(color, None, BLEND_RGBA_MULT) + frame.blit(roach, (0, 0)) frame.blit(eyes, (0, 0)) return frame - def assemble(self, roach_data): - color = roach_serum_color(roach_data) + def assemble(self, roach_data, color=None, weapon=None): + if not color: + color = roach_serum_color(roach_data) + frames = [] frames = [ - self.assemble_frame(i, color, roach_data) + self.assemble_frame(i, color, roach_data, weapon) for i in range(self.frames)] return AnimatedSurfActor(frames) +class RatFactory: + + def __init__(self, frames=4): + self.frames = 4 + + def assemble_frame(self, i): + roach = images.load(safepath("rat/rat_%d") % (i + 1)) + return roach + + def assemble(self): + frames = [self.assemble_frame(i) for i in range(self.frames)] + return AnimatedSurfActor(frames) + + +class RobotFactory: + + def __init__(self, frames=4): + self.frames = 4 + + def assemble_frame(self, i): + roach = images.load(safepath("vehicle_tiles/robot_%d") % (i + 1)) + return roach + + def assemble(self): + frames = [self.assemble_frame(i) for i in range(self.frames)] + return AnimatedSurfActor(frames) + + default_roaches = RoachFactory("") t32_roaches = RoachFactory("_32") t21_roaches = RoachFactory("_21") big_roaches = RoachFactory("_big") roaches_quartet = RoachFactory("_quartet") roaches_nonet = RoachFactory("_nonet") +default_rats = RatFactory() +default_robots = RobotFactory()