X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fscenes%2Fcredits.py;h=a6ae05d2b6ce1de404332d50fe48cc7a7753b67d;hb=d6b587d8325492b436c4e19f8842f5ae7fccf6a4;hp=0425963591d833c78cde9a118d12f39b05ff07b7;hpb=ef4b550c67373fa1c56cdc5a0727618ba5462e10;p=naja.git diff --git a/naja/scenes/credits.py b/naja/scenes/credits.py index 0425963..a6ae05d 100644 --- a/naja/scenes/credits.py +++ b/naja/scenes/credits.py @@ -7,6 +7,7 @@ import pygame.locals as pgl from naja.constants import KEYS from naja.scenes.scene import Scene from naja.widgets.text import TextWidget, TextBoxWidget +from naja.widgets.image_box import ImageBox from naja.events import SceneChangeEvent @@ -17,25 +18,30 @@ class CreditsScene(Scene): def __init__(self, state): super(CreditsScene, self).__init__(state) + + background = ImageBox( + (0, 0), "screens/splash.png") + self.add(background) self.add(TextWidget( - (280, 30), 'Credits', fontsize=32, colour='white')) - self.add(TextWidget( - (20, 80), 'A game about robots and bits and other things', - fontsize=32, colour='white')) - self.add(TextWidget( - (300, 120), 'by', fontsize=32, colour='white')) - self.add(TextBoxWidget( - (20, 160), 'Adrianna Pinska, David Sharpe, Jeremy Thurgood, ' - 'Neil Muller, Simon Cross & Stefano Rivera', - fontsize=32, colour='white', padding=1, border=1, - bg_colour='black', border_colour='black', - box_width=320)) + (400, 300), 'CREDITS', colour='white', centre=True)) + self.add(TextBoxWidget( - (30, 280), - 'Music by Rolemusic: http://rolemusic.sawsquarenoise.com/', - fontsize=32, colour='white', padding=1, border=1, - bg_colour='black', border_colour='black', - box_width=320)) + (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', + '', + 'Music by Rolemusic:', + 'http://rolemusic.sawsquarenoise.com/', + '', + 'Press ESC to return to the menu.', + ]), + colour='white', padding=1, + bg_colour=(0, 0, 0, 0), centre=True, + box_width=780, view_port=(780, 250))) def handle_scene_event(self, ev): if ev.type == pgl.KEYDOWN and ev.key in KEYS.QUIT: