5 import pygame.locals as pgl
7 from naja.constants import KEYS, PALETTE
8 from naja.events import QuitGameEvent
9 from naja.options import options
10 from naja.scenes.scene import Scene
11 from naja.widgets.text import TextWidget, TextBoxWidget
14 class WinScene(Scene):
19 def __init__(self, state):
20 super(WinScene, self).__init__(state)
21 self.add(TextWidget((50, 50), 'You won!', colour=PALETTE.WHITE))
22 if options.cheat_enabled:
24 (50 + 64, 50), 'CHEATER!', colour=PALETTE.ORANGE))
25 self.add(TextBoxWidget(
26 (50, 100), '\n'.join([
29 "You should be proud of yourself.",
31 colour=PALETTE.WHITE, padding=1, border=1,
32 bg_colour=PALETTE.BLACK, border_colour=PALETTE.BLACK,
35 def handle_scene_event(self, ev):
36 if ev.type == pgl.KEYDOWN and ev.key in KEYS.QUIT: