The Pacman Project: Keyboard control with constraints

This project is what you get when you combine:

The assignment

In addition to the user interface from your last assignment, use complex data structures, keyboard control, animation, and object constructors to allow the user to navigate the maze, without allowing the user to go through walls.

Recommendations:

  1. Your motion code and constraint checking should be inside the Ms. Pacman object constructor.
  2. You will need to create your mazeObject and Ms. Pacman objects globally so they can be seen by all your functions.
  3. In order to separate your processing from your output, you will have to make intermediate methods to your Ms. Pacman object. For example, a keystroke may trigger msPacman.tryToMoveUp(). msPacman.tryToMoveUp() would then check to see if it is clear to move up one cell, and then call msPacman.animateUp() afterwards. Keeping msPacman.tryToMoveUp() separate from msPacman.animateUp() will help you program game play in the next assignment.
  4. There is an error in the hallWall code. See if you can fix it. (Automatic points to people who create their own map arrays.)
  5. There are tunnels on the left sides of the map. Make your code allow wrap-around movement so that moving off the edge of the map teleports you to the other side.
  6. Have I mentioned lately that console.log() commands help you debug your code a lot? Just sayin'.

Saving your work

Please save your work as "Pacman-MotionControl-LastName.html".

Evaluation (out of 10)