-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainmenu.py
36 lines (25 loc) · 950 Bytes
/
mainmenu.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# PyRPG
# File: mainmenu.py
# Version: 1.0
# Creator: Joel D. Garrett
# Modified: 3/4/2011
from gamestate import *
from gamemenu import *
_title = "Main Menu"
_options = {"T" : "Go to town", "E" : "Explore the world", "Q" : "Quit Game"}
class MainMenu(GameMenu):
def __init__(self):
self.title = _title
self.options = _options
def captureUserInput(self):
input = raw_input()
state = kGameStateMainMenu
if input.lower() in ('q', 'quit'):
state = kGameStateExit
elif input.lower() in ('t', 'town'):
print "The town gates are closed. You call out to the gate keeper but no one answers.\n\n"
elif input.lower() in ('e', 'explore'):
print "You gaze down the path before you but can't seem to muster the strength to begin walking.\n\n"
else:
print "Invalid entry. Try again."
return state