view gamelib/endscreen.py @ 530:fe51223e0c8d

PEP8 cleanup data.py and endscreen.py
author Neil Muller <neil@dip.sun.ac.za>
date Sat, 11 Feb 2012 11:58:57 +0200
parents 0ce08d5e2acb
children f95830b58336
line wrap: on
line source

# endscreen.py
# Copyright Boomslang team, 2010 (see COPYING File)
# Victory screen for the game

from albow.screen import Screen
from albow.resource import get_image

from gamelib.widgets import BoomImageButton


class EndImageButton(BoomImageButton):

    FOLDER = 'won'


class EndScreen(Screen):
    def __init__(self, shell):
        Screen.__init__(self, shell)
        self.background = get_image('won', 'won.png')
        self._menu_button = EndImageButton('menu.png', 26, 500,
                action=self.main_menu)
        self._quit_button = EndImageButton('quit.png', 250, 500,
                action=shell.quit)
        self.add(self._menu_button)
        self.add(self._quit_button)

    def draw(self, surface):
        surface.blit(self.background, (0, 0))
        self._menu_button.draw(surface)
        self._quit_button.draw(surface)

    def main_menu(self):
        self.shell.show_screen(self.shell.menu_screen)