-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathzombie_manor_starter.py
144 lines (105 loc) · 4.13 KB
/
zombie_manor_starter.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#This is the starter file for zombie_manor.py
#Use it to develop your skills as needed
input_msg ="" #an empty string to hold our user inputs
game_is_on = True #the game loop will depend on this being true
current_room = None #to keep track of where we are
rooms = [] #append any new rooms you create to this list
#******** DEFINE CLASSES *******************
class Room:
def __init__(self, name=None, description=None, objects=None, paths=None):
self.name = name
self.description = description
self.objects = objects
self.paths = paths
class Player:
def __init__(self, name=None, items=[]):
self.name =name
self.items = items
#**********INSTANTIATE OBJECTS ***************
player = Player()
kitchen = Room()
kitchen.name = "Kitchen"
kitchen.description = "The kitchen is a really nice one! It has all the stuff you need to cook a healthy meal...of zombie parts! on the table there is a red pill."
kitchen.objects =["potion", "sandwich", "knife"]
kitchen.paths=["Living Room" , "Bathroom" , "Backyard" ]
bathroom = Room()
bathroom.name= "Bathroom"
bathroom.description ="You are in a Bathroom. Everything is a mess. There is blood on the floor. The shower is still on... "
bathroom.objects = ["towel" , "toothbrush", "toilet Paper", "soap"]
bathroom.paths =["Kitchen"]
#add the rooms to the rooms list
rooms.append(kitchen)
rooms.append(bathroom)
def prompt_user():
reply = input("What do you want to do? >> ")
return reply
def check_answer(input):
global current_room
global input_msg
global rooms
print("checking input : " + input)
input_msg = input
#GO
if "go" in input_msg:
#split the string into two arguments
msg_array = input_msg.split(" ")
new_room = msg_array[1] #get the second element
print(" user typed go to " + new_room)
if new_room in current_room.paths:
print("Yes you can go there")
#find the room that has that "key" new_room as a property
for room in rooms: #Make challenge!!!!
if room.name.lower() == new_room.lower():
#set the current room by grabbing its index
index = rooms.index(room)
current_room = rooms[index]
print("You are now at the : " + current_room.name)
else:
print("No you can't go there")
#LOOK
elif "look" in input_msg:
#loop through all the objects and paths and print them out so user can see options
print("You see the following: ")
for object in current_room.objects:
print(" - " + object)
print("From here you can go to: ")
for path in current_room.paths:
print(" - " + path)
#TAKE
elif "take" in input_msg:
print("Taking item...")
items_list = input_msg.split(" ")
item_to_take = items_list[1] #get the second element
#check to see if it is part of the room's inventory..
if item_to_take in current_room.objects:
print("Yes you can take this item: " + item_to_take)
player.items.append(item_to_take) #add to the players items list
#remove from room
current_room.objects.remove(item_to_take)
print("current room items after taking item " + str(current_room.objects))
print("player has : " + str(player.items))
else:
print("No you can't pick that up")
#Name
elif "name" in input_msg:
print( current_room.name)
#Help
elif "help" in input_msg:
print(" You can type 'look' to look around and 'go' to follow a path.")
elif input_msg == None:
print(" input: " + input_msg)
input_msg = input("What do you want to do? You can type 'help' for commands to use >>> ")
else:
print(" I don't understand that")
def start():
global current_room
print("Welcome to Zombie Manor!!")
name = input("What is your name, player? ")
player.name = name
print("Welcome, " + name)
#begin at the kitchen
current_room = kitchen
print(f"You are in a: {current_room.name}. and everything looks normal. The air smells like death")
while(game_is_on):
check_answer(prompt_user()) #this makes the game continously prompt and check response
start()