Use Flashlight to drive the hack
[naja.git] / naja / scenes / credits.py
index b6f95b3effaf754375bd63159eedf74d6ef3a306..8a6cfc238510eddf4cd8573e1697becc2be3ac44 100644 (file)
@@ -1,12 +1,15 @@
+# coding: UTF-8
 """
 Credits scene.
 """
 
+import pygame
 import pygame.locals as pgl
 
-from naja.constants import KEYS
+from naja.constants import KEYS, FPS
 from naja.scenes.scene import Scene
-from naja.widgets.text import TextBoxWidget
+from naja.utils import Flashlight
+from naja.widgets.text import TextWidget, TextBoxWidget
 from naja.widgets.image_box import ImageBox
 from naja.events import SceneChangeEvent
 
@@ -18,30 +21,53 @@ class CreditsScene(Scene):
 
     def __init__(self, state):
         super(CreditsScene, self).__init__(state)
+        self.flashlight = Flashlight(int(1.5 * FPS))
 
         background = ImageBox(
             (0, 0), "screens/splash.png")
         self.add(background)
+        self.add(TextWidget(
+            (400, 300), 'CREDITS', colour='white', centre=True))
 
-        self.add(TextBoxWidget(
-            (10, 350), '\n'.join([
-                'CREDITS',
-                '',
+        self.credits = TextBoxWidget(
+            (400, 340), '\n'.join([
                 'A game about robots and bits and other things',
                 '',
                 'by',
                 '',
-                'Adrianna Pinska, David Sharpe, Jeremy Thurgood, '
-                'Neil Muller, Simon Cross & Stefano Rivera',
+                u'Adrianna PiƄska, David Sharpe, Jeremy Thurgood, '
+                u'Neil Muller, Simon Cross & Stefano Rivera',
+                '',
+                'Special thanks to:',
+                '',
+                'Desilu Crossman',
+                'for snacks and tutorial inspiration',
+                '',
+                'Bearnard Hibbins, Graham Inggs,',
+                'and William Stewart',
+                'for playtesting and finding bugs',
                 '',
                 'Music by Rolemusic:',
                 'http://rolemusic.sawsquarenoise.com/',
                 '',
-                'Press ESC to return to the menu.',
+                'Out of credits. Insert coin.',
+                '(Press ESC to return to the menu.)',
             ]),
             colour='white', padding=1,
             bg_colour=(0, 0, 0, 0), centre=True,
-            box_width=640, view_port=(780, 230)))
+            box_width=780, view_port=(780, 250))
+        self.add(self.credits)
+
+    def render_scene(self, surface):
+        if self.flashlight is not None:
+            if self.flashlight.tick():
+                fake_event = pygame.event.Event(pgl.KEYDOWN, key=pgl.K_DOWN)
+                self.credits.handle_event(fake_event)
+
+    def handle_event(self, ev):
+        if ev.type == pgl.KEYDOWN:
+            self.flashlight = None
+        return super(CreditsScene, self).handle_event(ev)
 
     def handle_scene_event(self, ev):
         if ev.type == pgl.KEYDOWN and ev.key in KEYS.QUIT: