Note: This is the June 17, 2006 capture of http://bentong.topcities.com/comp/progs/misc/games.htm from the Wayback Machine. This was uploaded to the reloaded ISLESV.NET on June 22, 2023.
GAME — a closed, formal system that subjectively represents a subset of reality.
-
a game has explicit rules
-
a game is a collection of parts that interact with each other, often in complex ways
-
a game represents something from subjective reality, not objective reality
Categories of Games
-
Board Games
-
Card Games
-
Athletic Games
-
Computer Games
Fundamental Elements Common to Games (RICS)
-
Representation
-
Interaction
-
Conflict
-
Safety
Motivation for Playing a Game
-
Fantasy
-
Nose-thumbing (anti-social behavior — no one punishes you from killing somebody in a game world)
-
Proving oneself — self-esteem
-
Social lubrication
-
Exercise (mental/physical)
-
Need for acknowledgement — related to ( 3 ), but here the acknowledgement is external, i.e., coming from an outside source.
Q: What is the fundamental motivation for game playing?
A: Learning.
A Taxonomy of Computer Games
I. Skill-and-action (S&A)
-
emphasizes perceptual and motor skills
-
real-time play
-
heavy emphasis on graphics and sound
-
hand-eye coordination and fast reaction time needed
-
Combat Game
-
direct, violent confrontation
-
first-person vs. third-person geometry: first-person is more exciting but more technically challenging
-
Example: Counter Strike
-
-
Maze Game
-
Sports Game
-
Paddle Game
-
Race Game
-
Miscellaneous
II. Strategy Games
-
Adventures
-
D&D (Dungeons and Dragons)
-
War Games
-
Games of Chance
-
Educational and Children’s Games
-
Interpersonal Games
Strengths of Computers as Game Machines
-
Responsiveness and Dynamism
-
Ability to act as referee
-
Real-time play
-
Ability to provide an intelligent opponent
-
Ability to limit information given to players
-
Telecommunications — freedom from space and location constraints
Weaknesses of Computers as Game Machines
-
Limited I/O capability
-
Single-user orientation (one machine/one person)
-
Programming
Design Precepts for Computer Games
-
Go with the grain.
-
Don’t transplant — if a game is very successful in one media, it has its own reasons; this does not necessarily mean that it will also be successful if transplanted to computers. Emphasize new ideas instead of tried-and-true-but-another-media ideas.
-
Design around I/O — your first consideration in coming up with a game is the capability and limitations of the input/output of computers. Obviously, you can’t design a game which involves diving and swimming and going underwater if you are going to use computer technology. Use less and less of the keyboard as possible; the mouse is the best thing to work with, although it is harder to program.
-
Keep it clean — avoid details that are useless and just clutter your game.
-
Store less and process more — utilize the computers speed to process information. If you have to select between storing information statically or creating the same dynamically on loading your program, select the latter. You are doing service to your clients that way.
-
Branch softly — avoid hard branches, i.e., where the user has no choice but what you have allowed him (for example, going into somewhere where the only exit is the same door the player enters). StarCraft has this weakness in its maps that sometimes you go to a corner with no way out except your way in.
-
Maintain unity of the design effort — if you’re working with a team, don’t show off and make everyone realize that you are talented — they will just hate you for it. Instead go with the team.
The Game Design Sequence
-
Choose a goal and a topic
-
What effects on the player do you want to achieve?
-
What fantasies will the game create?
-
-
Research and preparation
-
Design phase
-
create the outline of three interdependent structures (I/O, game, program)
-
avoid the use of the keyboard as much as possible
-
-
Preprogramming phase
-
Programming phase — the easiest
-
Playtesting phase — includes beta
-
Post-mortem — evaluate your games and analyze why they fail/succeed, for future use.