X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=tabakrolletjie%2Fscenes%2Fday.py;h=20b297e1ae7b070a1c99981f01f813fdb2480a69;hb=9f403d319ac457967248b17a8f3c0de945bdc613;hp=3c5a6b842612e452acd380509894a25c01bb38d2;hpb=9a21993be81120b5dbe1f3d6caf4fb8f2cc27404;p=tabakrolletjie.git diff --git a/tabakrolletjie/scenes/day.py b/tabakrolletjie/scenes/day.py index 3c5a6b8..20b297e 100644 --- a/tabakrolletjie/scenes/day.py +++ b/tabakrolletjie/scenes/day.py @@ -1,61 +1,39 @@ """ Be prepared. """ -import pygame.display import pygame.locals as pgl import pymunk import pymunk.pygame_util from .base import BaseScene -from ..constants import FITTINGS_CATEGORY from ..lights import LightManager -from ..obstacles import BaseObstacle +from ..obstacles import ObstacleManager from ..events import SceneChangeEvent from ..utils import debug_timer -CLICK_FILTER = pymunk.ShapeFilter(mask=FITTINGS_CATEGORY) - class DayScene(BaseScene): def enter(self, gamestate): self._space = pymunk.Space() - self._obstacles = [ - BaseObstacle.load(cfg) for cfg in gamestate.station["obstacles"]] - for obs in self._obstacles: - obs.add(self._space) + self._obstacles = ObstacleManager(self._space, gamestate) self._lights = LightManager(self._space, gamestate) @debug_timer("day.render") def render(self, surface, gamestate): surface.fill((0, 0, 155)) self._lights.render_light(surface) - for obs in self._obstacles: - obs.render(surface) + self._obstacles.render(surface) self._lights.render_fittings(surface) - def left_click(self, surfpos): - pos = pymunk.pygame_util.from_pygame( - surfpos, pygame.display.get_surface()) - point_info = self._space.point_query_nearest(pos, 1.0, CLICK_FILTER) - if point_info is not None: - point_info.shape.body.light.toggle() - - def right_click(self, pos): - pass - 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.key == pgl.K_t: - for light in self._lights: - light.toggle() elif ev.type == pgl.MOUSEBUTTONDOWN: if ev.button == 1: - self.left_click(ev.pos) - elif ev.button == 3: - self.right_click(ev.pos) + self._lights.toggle_nearest(ev.pos, surfpos=True) + print self._lights.lit_by(ev.pos, surfpos=True) @debug_timer("day.tick") def tick(self, gamestate):