X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fscenes%2Fwin.py;h=82437d04860a38e90f150607b052a1b2c7a98053;hb=5635cf88255f76a98c932580f98bf30513275653;hp=95d931a0b761227ccdb8822da5a090269658ef37;hpb=2f21c8c8e7383c4d37a02465a68e730ec04d860f;p=naja.git diff --git a/naja/scenes/win.py b/naja/scenes/win.py index 95d931a..82437d0 100644 --- a/naja/scenes/win.py +++ b/naja/scenes/win.py @@ -5,7 +5,8 @@ Win scene. import pygame.locals as pgl from naja.constants import KEYS, PALETTE -from naja.events import QuitGameEvent +from naja.events import SceneChangeEvent, LoadGameEvent +from naja.sound import sound from naja.scenes.scene import Scene from naja.widgets.image_box import ImageBox from naja.widgets.text import TextWidget, TextBoxWidget @@ -23,21 +24,27 @@ class WinScene(Scene): (0, 0), "screens/you_won.png") self.add(background) - self.add(TextWidget((50, 50), 'You won!', colour=PALETTE.WHITE)) if self.state.gameboard.has_cheated: self.add(TextWidget( - (50 + 64, 50), 'CHEATER!', colour=PALETTE.ORANGE)) + (50, 250), 'But you\'re a CHEATER!', colour=PALETTE.ORANGE)) self.add(TextBoxWidget( - (50, 100), '\n\n'.join([ + (50, 300), '\n\n'.join([ "You're great.", "You did well.", "You should be proud of yourself.", + "", + "Press ESC to return to the menu", ]), colour=PALETTE.WHITE, padding=1, border=1, bg_colour=PALETTE.BLACK, border_colour=PALETTE.BLACK, box_width=300)) + sound.play_music('A_ninja.ogg', 0.25) def handle_scene_event(self, ev): + from naja.scenes.menu import MenuScene if ev.type == pgl.KEYDOWN and ev.key in KEYS.QUIT: - QuitGameEvent.post() + sound.stop() + # drop current state + LoadGameEvent.post(None) + SceneChangeEvent.post(MenuScene) return