テキスト アドベンチャー ゲームで少し問題が発生しています。アイデアは、リビングルームから始めて、鍵をつかむために地下に向かい、再びリビングルームに入ると勝つはずです. ただし、コードを実行すると、部屋に入るだけで、ブール値はifステートメントにそれを伝える必要がありますhas_key = true
が、常に機能しません。何かご意見は?
def welcomeMessage():
print "Welcome to my game!!"
def winnerMessage():
print "You're a winner!! Congratulations!!"
userQuit()
def userQuit():
print "Thanks for playing!"
def living_room():
# This part isn't executing (Boolean doesn't work here)
# I want the if statement to execute, not the else statement
if has_key == True:
winnerMessage()
userQuit()
else:
print ("\nYou are in the living room. The paint from the walls is tearing off."
+" There is a door near you, but it seems to be locked. To your west is the"
+" kitchen, where you can eat some tasty snacks and to your south is a bedroom. ")
direction = raw_input("Which direction would you like to go? (W)est or (S)outh? You also have the option to (Q)uit. ")
if direction == "W":
kitchen()
elif direction == "S":
bed_room()
elif direction == "N":
print "Sorry, you can't go north here."
living_room()
elif direction == "E":
print "Sorry, you can't go east here."
living_room()
elif direction == "Q":
userQuit()
else:
print "Sorry, that's not a valid direction."
living_room()
def kitchen():
print ("\nYou are in the kitchen. The water from the sink is slightly running. All of the"
+" cupboards in the kitchen have been left open, like someone has searched through them."
+" To your south is the dining room, and to your east is the living room. ")
direction = raw_input("Which direction would you like to go? (S)outh or (E)ast? You also have the option to (Q)uit. ")
if direction == "S":
dining_room()
elif direction == "E":
living_room()
elif direction == "N":
print "Sorry, you can't go north here."
kitchen()
elif direction == "W":
print "Sorry, you can't go west here."
kitchen()
elif direction == "Q":
userQuit()
else:
print "Sorry, that's not a valid direction."
kitchen()
def bed_room():
print ("\nYou are in the bedroom. One of the windows in the room is slightly ajar. The other window"
+" is shattered with a brick laying on the floor next to it. To your west is the dining room and"
+" to your north is the living room.")
direction = raw_input("Which direction would you like to go? (W)est or (N)orth? You also have the option to (Q)uit. ")
if direction == "W":
dining_room()
elif direction == "N":
living_room()
elif direction == "E":
print "Sorry, you can't go east here."
bed_room()
elif direction == "S":
print "Sorry, you can't go south here."
bed_room()
elif direction == "Q":
userQuit()
else:
print "Sorry, that's not a valid direction."
bed_room()
def dining_room():
print ("\nYou are in the dining room. It is very hard to see in here due to the dim lighting. You notice a staircase is the"
+" in the center of the room. To your north is the kitchen, and to your east is the bedroom.")
direction = raw_input("Which direction would you like to go? (N)orth or (E)ast or go (D)own the staircase? You also have the option to (Q)uit. ")
if direction == "N":
kitchen()
elif direction == "E":
bed_room()
elif direction == "D":
basement()
elif direction == "S":
print "Sorry, you can't go south here."
dining_room()
elif direction == "W":
print "Sorry, you can't go west here."
dining_room()
elif direction == "Q":
userQuit()
else:
print "Sorry, that's not a valid direction."
dining_room()
def basement():
print ("\nYou are now in the basement. A cloud of dust passes by you and makes it hard to breath. You move away from the area"
+" and you notice a key on the floor. You pick up the key and hold onto it. You may use it for later. ")
direction = raw_input("Press U to go upstairs. You also have the option to (Q)uit. ")
if direction == "U":
has_key = True
dining_room()
elif direction == "Q":
userQuit()
else:
print "Sorry, the only place you can go is back upstairs."
basement()
welcomeMessage()
has_key = False
living_room()