home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / rpc / mazelord / readme.txt < prev    next >
Text File  |  1996-01-17  |  5KB  |  99 lines

  1. 3-D Maze Game
  2.  
  3.  
  4. SUMMARY
  5. =======
  6.  
  7. The Mazelord sample is a 3-D maze game. The objective is to get as high a
  8. score as possible by zapping other players, and by destroying automated
  9. drones which wander around the maze. When there are no other players,
  10. zapping drones still makes an interesting game in itself.
  11.  
  12. Mazelord is a networked or non-networked game, depending upon how it is
  13. invoked. In both versions, the player is placed in a room of sanctuary in a
  14. palace. In this room, players may not shoot, and drones cannot hurt players.
  15. Once outside of its 3x3 confines, however, anything goes. Your task is to 
  16. hunt down drones and other players and 'zap' them. Zapped players are 
  17. teleported back to the sanctuary, and zapped drones are teleported to a 
  18. random location in the maze.
  19.  
  20. MORE INFORMATION
  21. ================
  22.  
  23. Drones appear as gray robots. The number and speed of drones is configurable 
  24. under the Options. A suggestion is 20 drones, speed 2.
  25.  
  26. The controls to Mazelord are simple:
  27.  
  28.   - UpArrow:    Move one square forward.
  29.   - LeftArrow:  Turn left, stay in same square.
  30.   - RightArrow: Turn right, stay in same square.
  31.   - DownArrow:  Move one square backwards.
  32.   - Space:      Zap whatever is in line of sight.
  33.   - X:          Exit the game.
  34.   - W:          Whisper something. Anyone within the specified # of squares
  35.                 of you can hear your message.
  36.   - S:          Shout something. Same as whisper, except people who are
  37.                 farther away can hear your message.
  38.  
  39. To play, ideally you should be running on a 486 or MIPS with lots of memory
  40. and sound enabled, although the game should work on other systems. Note that 
  41. if you don't have sound, you can still play. The important sounds are 
  42. changed to speaker beeps.
  43.  
  44. Upon invoking Maze, you have several options:
  45.  
  46. File Menu
  47.  
  48.     NewGame:   Starts a new game. Make sure you have configured the game
  49.                under the OPTIONS menu unless you want the defaults and want
  50.                to play Locally rather than over the network.
  51.     PauseGame: Pauses the movement of all drones, but you will be a sitting
  52.                duck if someone shoots at you.
  53.     StopGame:  Resets the game.
  54.     Exit:      Exits the game.
  55.  
  56. Options Menu
  57.  
  58.     Networked/Local: Determines whether you will be playing against other
  59.                people on your network domain or not. It's fine to run 
  60.                NETWORK'd when there is no one else playing. Default is 
  61.                LOCAL.
  62.     PlayerSettings: Brings up a dialog with two list boxes. The first shows 
  63.                a list of bitmaps you can choose from to be your character.
  64.                Currently, there is a fish and a smiley face, but the number 
  65.                of choices will be increasing. You can also choose a home 
  66.                maze. This isn't used right now, but soon your home maze will 
  67.                be added to a random part of the existing maze, and you will 
  68.                be able to teleport there at will.
  69.     Drones:    Brings up the drones configuration dialog box. Select the 
  70.                number of drones you want and the speed you want them to go, 
  71.                (# of moves per second). Move algorithm is currently ignored, 
  72.                as all drones use the same semi-random algorithm.
  73.  
  74. The display consists of the following:
  75.  
  76.   - A 3-D view of the maze. There are drawing bugs in terms of correctness,
  77.     but unless you're watching for them, they generally don't make a 
  78.     difference. If you have doubts about a wall, you can verify its 
  79.     existence on the overhead view.
  80.  
  81.   - Overhead view: This view is two squares in each direction from where 
  82.     you are located. You can't see other players on the overhead map, but 
  83.     you can see a small triangle in the center, which indicates which way 
  84.     you are facing. This window is an ABSOLUTE view; up is ALWAYS north 
  85.     on the window, regardless of which direction you're facing in the maze.
  86.  
  87.   - Text window: This gives information about what is happening in the game,
  88.     such as who you zap or who zaps you, and notification when players enter 
  89.     or leave the game. You will also see messages whispered or shouted by 
  90.     other players if they are close enough.
  91.  
  92.   - Score window. This shows all players active in your domain if you're
  93.     networked. The display includes the bitmap being used by the player, their
  94.     score, and a directional indicator to show the ABSOLUTE direction you 
  95.     need to go to reach the square that player is in. These are updated 
  96.     every time they change.
  97.  
  98. Have fun with the game!
  99.