X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=koperkapel%2Fscenes%2Flevel.py;h=e5de740eac91189febeffd4503ec29193cc3162c;hb=6dc9622bbfa588b84a77616b53cc75bb95b1ba16;hp=c68ac6dc03731a70269e7d1a5e928ddbafd60531;hpb=a50936015a6c10bdacccee074e432fa0bdfbc831;p=koperkapel.git diff --git a/koperkapel/scenes/level.py b/koperkapel/scenes/level.py index c68ac6d..e5de740 100644 --- a/koperkapel/scenes/level.py +++ b/koperkapel/scenes/level.py @@ -8,17 +8,44 @@ from .base import ( Scene, ChangeSceneEvent, MoveViewportEvent, WorldEvent, defer_to_update) from ..constants import TILE_SIZE, WIDTH, HEIGHT from ..gamelib.items import clone_old_item, create_new_item +from ..hud import HudActor from ..roaches import build_roach from ..vehicles.base import Vehicle from ..weapons import weapon_by_name +class PlayerStats: + def __init__(self, world): + roaches = world.roaches + self.health = sum(r.health for r in roaches) + self.smart = self._count_attr("smart", roaches) + self.fast = self._count_attr("fast", roaches) + self.strong = self._count_attr("strong", roaches) + + def __str__(self): + return "" % ( + self.health, self.smart, self.fast, self.strong) + + def __eq__(self, other): + if not isinstance(other, PlayerStats): + return NotImplemented + return all( + (self.health == other.health, self.smart == other.smart, + self.fast == other.fast, self.strong == other.strong)) + + def _count_attr(self, attr, roaches): + attrs = [r[attr] for r in roaches] + attrs = [a for a in attrs if a] + return len(attrs) + + class BaseLevelScene(Scene): """ Level scene. """ def __init__(self): super().__init__() self._level = None + self._stats = None def enter(self, world): self._level = levels.load(world.level.name) @@ -93,12 +120,16 @@ class GameLevelScene(BaseLevelScene): for generator in self._generators: generator.unpause() return + self._update_player_stats(world) super().enter(world) self._roaches = self.actors.add_layer("roaches", level=10) self._friends = self.actors.add_layer("friendly roaches", level=9) self._items = self.actors.add_layer("items", level=9) self._generators = self.actors.add_layer("enemy generators", level=8) self._enemies = self.actors.add_layer("enemies", level=11) + self._hud = self.actors.add_layer("hud", level=12) + self._hud.add(HudActor( + self._stats, anchor=("right", "bottom"), pos=(WIDTH, HEIGHT))) self._vehicle = Vehicle.current(world) self._mode = 'walk' self._angle = 0 # up @@ -280,11 +311,16 @@ class GameLevelScene(BaseLevelScene): bullet.game_pos[0] * TILE_SIZE + (TILE_SIZE // 2), bullet.game_pos[1] * TILE_SIZE + (TILE_SIZE // 2)) self._check_for_bullet_hits() + self._update_player_stats(world) + self._hud[0].stats = self._stats more = self._check_held_keys(dt) if more: events.extend(more) return events + def _update_player_stats(self, world): + self._stats = PlayerStats(world) + def _check_enemies(self): if len(self._level.enemies) != len(self._enemies): # New nemy has spawned