Haunted House Challenge 3
The following will guide you through the development of a simple game. Other activities will add room, objects, inventories and enemies.
CODING TIME
Enter the following code for the third stage and test it.
In this third version of the game, the player’s moves and interactions are contained in dictionaries and lists. This make for a far ‘cleaner-looking’ code structure and makes it easy to add new features without re-writing whole chunks of code.
Your task is now to redesign your game using a dictionary to model the house’s rooms.
To see if direction is legal, all you have to do is ask if the key is in the MAP dictionary using:
if key in MAP:
room = MAP[key]
– Using the sample provided below, modify the code for your simple game.
Using the sample provided above as a guide, create the code for your simple game.
Your task is now to redesign your game using a dictionary to model the house’s rooms. Replace the IFs with DATA STRUCTURES.
Next time, we will add another room, some items and introduce a random room start.
Save it as adv3.py
Done? Show your teacher and get your 8XP!