Part 1:

Set up your assignment

To set up your assignment you will need to do the following:

  • Create a folder called username-A2. For example, mine would be nfrancis -A2.
  • Copy the zuul-better project in chapter 8 of the book projects to your username-A2 folder.
  • Create a word document called username-A2-documentation. For example, mine would be nfrancis-A2- documentation. Add your full name and student id to the footer. You will lose marks if you do not do this. Save this word document to your username-A2 folder.

After you have set up your assignment open the zuul-better project In BlueJ, create a new instance of the Game class, run the play method and familiarize yourself with the game.

Design your game

Using the given zuul game as a starting point, you must design your own game. In the tutorial, you can ask your tutor for advice.

If you find it difficult to visualize this sort of game scenario, try modelling your game on some familiar real-world location. If you need additional inspiration, you can try playing the original Colossal Cave Adventure game.

You must have the following in your game:

  • Your game scenario must have at least ten (10) different rooms.
  • Your game scenario must have at least six (6) types of exits - e.g., north, south, east, west, up, down and any others you require. This requirement does NOT mean that each room must have 6 exits.
  • Your game scenario must include at least six (6) items that the player could find, pick up and potentially use.
  • Your game must have some way for the player to win. Most likely, this will be by achieving some goal such as finding a particular item, surviving for some specified number of moves, or exiting a particular room anything sensible for your game.

Documentation

Write a brief description of your game in your word document. You must:

  • Describe your game including the back story and the setting
  • List the items in the game
  • Draw a map for your game scenario. You must:
    • Label the rooms
    • Label the exits (connections between rooms)
    • Specify the locations of the items
  • Explain how the player wins

The document must include the map (e.g., screenshot, picture).

Part 2:

Programming exercise 1

  • Update the comments at the beginning of the Game class, the Room class and the message displayed by the printWelcome and printHelp method so that they describe your game.
  • Update the Game and Room class so that it creates the rooms and exits that you invented for your game. You do not need to add any items to your game yet. You will add items later.

Programming exercise 2

Your game scenario requires that there be items positioned throughout the world that the player can pick up and possibly use. An item sounds like something that should be represented by an object! So create an Item class to represent the items in your game. You will need to decide what fields your Item class needs to have, what parameters the constructor will require and what methods the class will have. At a minimum, items will have a name and a description. However, items may have many other attributes that make sense for your game (e.g. weight, colour, value, destructive power ..)

Programming exercise 3

Now that there is a class for representing Items we need a way to allow the rooms to contain an item. Modify the Room class so that one item can be added to or removed from the room. You will need to think about what fields and methods to add to the Room class. Also, think about what the methods that you add should do when an attempt is made to add an item to a room that already contains an item, or an attempt is made to remove an item from a room that does not contain an item.

Programming exercise 4

Now that a room can contain an item, when the player enters a room he/she should be told about the item in that room (if there is one). Modify the appropriate code so that if the player enters a room containing an item, the name and description of the item are displayed along with the description of the room and the list of exits.

Programming exercise 5

Edit the code in the Game class so that the items for your game are created and added to the appropriate rooms at the start of the game. Recall that your game must include at least six items. Be sure to test any methods that you add or modify.

Play the game to ensure that your items are appearing in the rooms.

Part 3:

Now that rooms can contain items and a player will know when they enter a room with an item, it would be nice if the player could pick up and carry items. Add functionality to the Player class that will allow the player to pick up and drop items. The player should be able to carry any number (i.e. a collection) of items.

Programming exercise 6

Modify the Game class so that it will recognize the command take. When the user enters the "take" command, the item in the current room, if there is one, should be added to the items that the player is carrying, and a message should be printed indicating that the player has taken the item. If there is no item in the current room the take command should print an error message. Be sure to test any methods that you add or modify. (Hint: Remember that one task of the Game constructor is to "teach" the CommandReader what words are valid commands. Thus, you will need to make a change in Game's constructor if you want to introduce a new command.)

Programming exercise 7

Modify the Game class so that it will recognize the command inventory. When the user types "inventory" the game prints the names of the items that the player is currently carrying. You should think carefully about where the list of item names should be generated. (Consider the fact that the player is carrying the items and think about how the list of exits for a room is generated and displayed.)

Play the game to be sure the inventory command works!

Programming exercise 8

Add support to the game for a drop command so that the player can drop an item by name (e.g. "drop book"). The dropped item should appear in the current room. If the current room already contains an item, the drop command should print an error message indicating that the room is full and the player should continue to carry the item.

Play the game to be sure the drop command works!

Programming exercise 9

Implement at least two locked doors to your game. The player needs to find (or otherwise obtain) a key/item to open a door. You may incorporate the drop command or create a new "use" command to open the door. Adjust your winning condition if necessary.

Programming exercise 10

Notice that when you use the help command take, inventory and drop do not appear as command words. Modify the printHelp method of the Game class so that it automatically displays any new command words that are added to the game. Do not hard code the words in the printHelp method. Hint: you should modify the CommandWords class to do this.

Programming exercise 11

Add some form of time limit to your game. If a certain task is not completed in a specified time, the player loses. A time limit can easily be implemented by counting the number of moves or the number of entered commands. It does not have to be real-time.

Play the game to be sure the modified help command works - celebrate!

Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.