-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathadv.py
109 lines (83 loc) · 4.19 KB
/
adv.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
from room import Room
from player import Player
from item import Item
import sys
# Declare all the rooms
room = {
'outside': Room("Outside Cave Entrance",
"North of you, the cave mount beckons"),
'foyer': Room("Foyer", """Dim light filters in from the south. Dusty
passages run north and east."""),
'overlook': Room("Grand Overlook", """A steep cliff appears before you, falling
into the darkness. Ahead to the north, a light flickers in
the distance, but there is no way across the chasm."""),
'narrow': Room("Narrow Passage", """The narrow passage bends here from west
to north. The smell of gold permeates the air."""),
'treasure': Room("Treasure Chamber", """You've found the long-lost treasure
chamber! Sadly, it has already been completely emptied by
earlier adventurers. The only exit is to the south."""),
}
# Link rooms together
room['outside'].n_to = room['foyer']
room['foyer'].s_to = room['outside']
room['foyer'].n_to = room['overlook']
room['foyer'].e_to = room['narrow']
room['overlook'].s_to = room['foyer']
room['narrow'].w_to = room['foyer']
room['narrow'].n_to = room['treasure']
room['treasure'].s_to = room['narrow']
#Items
item = {
'coins': Item("Item: ~~[Money", "--Just a few lose coins to take to the tavern]~~"),
'tools': Item("Item: ~~[Grappling hook", "--This might come in handy. It is very heavy]~~"),
'jewel': Item("Item: ~~[Gem", "--Next time you ask that stranger for information. He might be willing to help for this type of payment]~~"),
'torch': Item("Item: ~~[Torch", "--Let there be light. Is someone sneaking around? Why is this on the floor?!?]~~"),
'trap': Item("Item: ~~[Tripped Trap", "--An abandoned trap that has been tripped. If cleaned up it could be useful.]~~"),
'medallion': Item("Item: ~~[Medallion", "--It reflects light and glows slightly orange it may be magical. There is an inscription in an unknown language. Inscription:Hul werud ezes ulud egembelu owog. Kyul buol engumet ullyetuk.]~~ "),
}
room['foyer'].items = [str(item['coins']), str(item['trap'])]
room['overlook'].items = [str(item['jewel']),str(item['medallion']),str(item['trap'])]
room['narrow'].items = [str(item['jewel']), str(item['coins']), str(item['torch'])]
room['treasure'].items = [str(item['tools'])]
options = "\nOptions:\nInventory:[View]\nItem:[Take][Drop]\nDirections:[N][S][E][W]\nSystem:[Q] to Quit\n\n"
directions={"n", "s", "e", "w"}
#
# Main
#
# Make a new player object that is currently in the 'outside' room.
def text_game():
name = "Endless Treasure Hunt"
player = Player(name, room['outside'])
print("\nWelcome to Endless Treasure Hunt. Would you like to play?")
user_input = input("\nEnter [P] to Play or [Q] to Quit: ").lower().strip()
if user_input == "p":
name = input("\nWhat shall I call you Adventurer?:").upper().strip()
if name != '':
player.name = name
print(f"\nTime to start your journey Adventurer {player.name}:\n\nAt present you are at the {player.current_room.name}\nInfo: {player.current_room.description}\n\nOptions:\nDirections:[N][S][E][W]\nSystem:[Q] to Quit\n\nTo start your journey choose a direction...")
elif user_input != "p":
print("\nThanks for Playing! GoodBye UnKnown Adventurer!")
# Write a loop that:
# * Prints the current room name
# * Prints the current description (the textwrap module might be useful here).
# * Waits for user input and decides what to do.
#
# If the user enters a cardinal direction, attempt to move to the room there.
# Print an error message if the movement isn't allowed.
while user_input == 'p':
choice = input("Please choose an option:").lower().strip()
if choice in directions:
player.move(choice)
elif choice == 'h':
print(f"{options}")
elif choice == 'q':
print(f"\nThanks for Playing! GoodBye Adventurer {player.name}!")
sys.exit()
""" if choice.lower().strip()=='view':
return player.inventory()
if choice.lower().strip() =='take':
return player.take()
if choice.lower().strip() == 'drop'
return player.item.drop() """
# If the user enters "q", quit the game.
text_game()