X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;ds=sidebyside;f=naja%2Fscenes%2Flose.py;fp=naja%2Fscenes%2Flose.py;h=40600a7c21dff4d2012ade0e8e73a2b7fa29c762;hb=52ea2942029fb4bb33d17e19ba2919607c234e8f;hp=af41bb226c4eb04488ec9fad11441a116c00c1fd;hpb=71af434ace227205b92cf92330fd22ee1183f439;p=naja.git diff --git a/naja/scenes/lose.py b/naja/scenes/lose.py index af41bb2..40600a7 100644 --- a/naja/scenes/lose.py +++ b/naja/scenes/lose.py @@ -4,8 +4,9 @@ Lose scene. import pygame.locals as pgl -from naja.constants import KEYS +from naja.constants import KEYS, PALETTE from naja.scenes.scene import Scene +from naja.widgets.image_box import ImageBox from naja.widgets.text import TextWidget, TextBoxWidget from naja.events import QuitGameEvent @@ -17,17 +18,22 @@ class LoseScene(Scene): def __init__(self, state): super(LoseScene, self).__init__(state) + + background = ImageBox( + (0, 0), "screens/you_lost.png") + self.add(background) + + self.add(TextWidget( - (480, 160), 'You lost!', fontsize=32, colour='white')) + (50, 50), 'You lost!', colour=PALETTE.WHITE)) self.add(TextBoxWidget( - (120, 30), '\n'.join([ - "You're not so great.", - "You did poorly.", - "You shouldn't be proud of yourself.", + (50, 100), '\n\n'.join([ + "Something went terribly wrong.", + "You should re-evaluate your life choices.", ]), fontsize=32, colour='white', padding=1, border=1, bg_colour='black', border_colour='black', - box_width=400)) + box_width=300)) def handle_scene_event(self, ev): if ev.type == pgl.KEYDOWN and ev.key in KEYS.QUIT: