This is the stagingdrafts environment running on https://bkleinen.github.io/stagingdrafts/
This site contains unpublished changes and draft documents.
- please visit the production website at https://home.htw-berlin.de/~kleinen/ instead!
 

B1 Informatics 1 SoSe 2022

Website of Prof. Dr. Barne Kleinen, Professor for Media Informatics (Bachelor/Master) at HTW Berlin

Exercise 10: The World of You

     <prev next>

This week’s lab work will begin a larger project that will occupy us until the end of the semester. The groups you form today will stay groups for the remaining part of the semester!

Pre-lab

Prepare your prelab before coming to class! Doing the pre-lab will save you time during the lab.

P0. Invent your own game scenario away from the computer. Don’t worry about implementation or classes or programming. Just try and come up with something interesting. It needs to be the basic structure of a player moving through different locations. Possible examples:

  • White blood cells traveling through the body in search of viruses to attack
  • Finding the exit in a big shopping mall
  • A mole must find the food hidden in one of his burrows before winter comes
  • An adventurer is looking for a monster in a series of dungeons
  • The bomb squad must find the room with the bomb before it goes off.
  • The NSA is looking for Ed Snowdon and going from country to country.

Be creative! Give your game a name.

P1. What is the goal of your game, that is, when does the player win?

P2. What could you add to the game to make it interesting? Trap doors, treasure, monsters, …

P3. Draw a map of your game layout.

What To Hand In

Please hand in:

Lab assignments are due the day before your next lab at 10pm. That will be after the winter holidays in about three weeks!

Assignment

World of You

  1. Start with the bad Zuul game with tests - your-zuul - and refactor it as discussed in the lectures. If you are doing mole burrows instead of rooms, you can change the variable names as needed. Don’t forget to update the test cases whenever needed.

  2. Draw an object diagram showing the state of your system just after it has been started. Does it change if you issue a “go” command? (An object diagram shows the active instances of classes - objects - at a given time in the execution of a program, as opposed to a class diagram that shows the classes defined in the program source code).

  3. Add a “look” command to your game.

  4. Add an additional command (such as “eat”, which for now just prints out “You have eaten now and are not hungry any more”. In the next exercise, when we have added items, you can make it so that you can only eat if you have found food.

  5. Implement an improved version of printing out the command words.

  6. Add another command – did you have to change the Game class? Why or Why not?

  7. (For the bored) Prepare a multi-lingual version and use enums. You find the CommandWord.java enum and the adapted CommandWords.java classes in the subfolder enums in the repository.

  8. (Special Challenge / For the bored) What is an model-view-controller architecture? Adapt your code to follow this architecture pattern.