view gamelib/menu.py @ 27:5c7bbbdf9296

Move inventory palette to the bottom left
author Neil Muller <neil@dip.sun.ac.za>
date Sun, 22 Aug 2010 18:44:19 +0200
parents 9d5de13e2ac3
children e5c043aeed65
line wrap: on
line source

# menu.py
# Copyright Boomslang team, 2010 (see COPYING File)
# Main menu for the game

from albow.screen import Screen
from albow.controls import Button, Label
from albow.layout import Column

class MenuScreen(Screen):
    def __init__(self, shell):
        Screen.__init__(self, shell)
        self.shell = shell
        StartButton = Button('Start New Game', action = self.start)
        QuitButton = Button('Quit', action = shell.quit)
        Title = Label('Caught! ... In SPAACE')
        menu = Column([
            Title,
            StartButton,
            QuitButton,
            ], align='l', spacing=20)
        self.add_centered(menu)

    def start(self):
        print 'Starting the game'
        self.shell.show_screen(self.shell.game_screen)