X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=tabakrolletjie%2Fscenes%2Fnight.py;h=b4e19e8379704b46655a9338452cbd6f498115df;hb=9f403d319ac457967248b17a8f3c0de945bdc613;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=f3600c28cd6e96abe7c0916860b0cc56b444545f;p=tabakrolletjie.git diff --git a/tabakrolletjie/scenes/night.py b/tabakrolletjie/scenes/night.py index e69de29..b4e19e8 100644 --- a/tabakrolletjie/scenes/night.py +++ b/tabakrolletjie/scenes/night.py @@ -0,0 +1,42 @@ +""" In the night, the mould attacks. """ + +import pygame.locals as pgl + +import pymunk + +from .base import BaseScene +from ..lights import LightManager +from ..obstacles import ObstacleManager +from ..enemies import Boyd +from ..events import SceneChangeEvent +from ..utils import debug_timer + + +class NightScene(BaseScene): + def enter(self, gamestate): + self._space = pymunk.Space() + self._obstacles = ObstacleManager(self._space, gamestate) + self._lights = LightManager(self._space, gamestate) + self._mould = Boyd(gamestate, self._space) + + @debug_timer("night.render") + def render(self, surface, gamestate): + surface.fill((0, 0, 155)) + self._mould.render(surface) + self._lights.render_light(surface) + self._obstacles.render(surface) + self._lights.render_fittings(surface) + + def event(self, ev, gamestate): + if ev.type == pgl.KEYDOWN: + if ev.key in (pgl.K_q, pgl.K_ESCAPE): + from .menu import MenuScene + SceneChangeEvent.post(scene=MenuScene()) + elif ev.type == pgl.MOUSEBUTTONDOWN: + if ev.button == 1: + self._lights.toggle_nearest(ev.pos, surfpos=True) + print self._lights.lit_by(ev.pos, surfpos=True) + + @debug_timer("night.tick") + def tick(self, gamestate): + self._mould.tick(gamestate, self._space, self._lights)