X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=tabakrolletjie%2Fscenes%2Fnight.py;h=330530b029f947edc26729e0cf99c3dae4913d78;hb=26b52ca902b0a22f30009fb61bc222601e7775fb;hp=daea44d8b927b0bf78d0ebd4b44377e63de8814a;hpb=30a1b3797e53d8ed989ca9dc530290a87bce0da0;p=tabakrolletjie.git diff --git a/tabakrolletjie/scenes/night.py b/tabakrolletjie/scenes/night.py index daea44d..330530b 100644 --- a/tabakrolletjie/scenes/night.py +++ b/tabakrolletjie/scenes/night.py @@ -1,15 +1,33 @@ """ In the night, the mould attacks. """ -import pygame.event import pygame.locals as pgl +import pymunk + from .base import BaseScene +from ..lights import BaseLight +from ..obstacles import BaseObstacle from ..events import SceneChangeEvent class NightScene(BaseScene): + def enter(self, gamestate): + self._space = pymunk.Space() + self._obstacles = [ + BaseObstacle.load(cfg) for cfg in gamestate.station["obstacles"]] + self._lights = [ + BaseLight.load(cfg) for cfg in gamestate.station["lights"]] + for obs in self._obstacles: + obs.add(self._space) + for light in self._lights: + light.add(self._space) + def render(self, surface, gamestate): surface.fill((0, 0, 255)) + for obs in self._obstacles: + obs.render(surface) + for light in self._lights: + light.render(surface) def event(self, ev, gamestate): if ev.type == pgl.KEYDOWN: