Dangerous Hunting-Requirements

From Computing and Software Wiki

Revision as of 04:31, 26 October 2009 by Sandhj2 (Talk)
Jump to: navigation, search

Contents

Requirements for Dangerous Hunting

1. Project Overview

The goal of the project is to develop a multi-player game where some enemies attempt to catch and kill the player while the player tries to kill the enemies. In the game players are running though a 3D environment and trying to kill several types of enemies which move differently. There are to be enemies which move intelligently and chase the player at varying speeds, enemies which are also intelligent but avoid the player, enemies which are “dumb” and just move randomly in the environment, and enemies which follow a predictable path. All these enemies and players will be physical so they will have full collision detection within the game. Being caught by the animals will result in a point penalty or death. A key part of the project is that it is not only the game that is being developed but rather a framework so that a non-programmer will be able to develop new worlds and scenarios within the theme of the game. This will be done by adding in scripts for the creator to use and also allowing models to be replaceable.

2. Given Requirements

The following requirements were given as required for this project.

    1. Software Environment

These are the requirements provided in terms of the software to be used.

 [GR01]The C4 engine by Terathon must be used as the base of the game.
 [GR02]SVN shall be used for source control of all code and documentation.
 [GR03]All software must run on the following Operating Systems:

*Windows Vista [Vista 08]/XP [XP 08]. *Mac OS X [OS X 10.5].

2.2. Hardware Environment The hardware environment requirements describe the hardware platforms that must be supported. 2.2.1. This software shall be developed for personal computers with standard hardware consisting of a monitor, keyboard, and standard 2-button mouse. 2.2.2. The minimum base machine that this software must run on will be provided by the minimum requirements for the C4 Engine: 2.2.2.1. The minimum graphics card expected (which will cause some features to not work) by the C4 Engine: For Nvidia hardware Geforce 5200 or higher, for ATI hardware Radeon 9600 or higher, and for some Intel hardware GMA X3000 and later. 2.2.2.2. The typical graphics card expected by the C4 Engine: For Nvidia hardware Geforce 6600 or higher, and for ATI hardware Radeon X1300 or higher. 2.3. User Interface The user interface requirements simply describe the intended attributes of the game’s user interface and in section 4.3 more details are outlined. 2.3.1. The interface to design the worlds will be the C4 Engine world editor. 2.3.1.1. All scripts and models can be added to the custom world through this world editor. 2.3.1.2. Non-programmers shall be able to create custom worlds using this interface. 2.3.2. The interface shall be simple and intuitive with minimal clutter. 2.3.2.1. The interface must facilitate ease of to use by not including too much information such that game play would be hindered. 2.3.2.2. Only the most necessary information will be displayed with more important information being more attention drawing.

3. Game Play

The game is done in the style of a FPS. The camera is placed inside the avatar so the viewing perspective is of the avatar. The player sees what the avatar would see. Movement and orientation is controlled by some combination of the keyboard and mouse. The player is also able to interact with its environment. The player will be able to hit enemies and other players with their weapons. They will be able to cause certain enemies to behave differently based on proximity. The player will be able to activate triggers that cause different events in game, such as picking up a new weapon. The players and enemies will respect collision with the environment and each other. Specifically the game while have a hunting theme with the objective being to hunt enemies. The enemies will move in different ways according to the individual type they are and should be differentiable from the environment, though this is not necessarily immediately obvious. Animals are the desired type of enemy, however this is pending being able to create appropriate animations for them. Enemies will follow one of the four different movement types. A player should be able to differentiate which enemy is following which movement type. Enemies following the intelligent evasion movement type will try to run from the player and not allow itself to be shot. Enemies following the intelligent chasing movement type will try to catch the player and deal damage to it. If enough damage is accrued the player will die and points will be deducted. Intelligent chasing enemies can also be killed and should be worth the most points. Both of these movement types will only start to evade or chase the player is the player is within a certain range of them, or a certain location (a den for example), or otherwise detects the player. The following is a diagram showing the movement types:

Each type of enemy will have a certain amount of health which is drained when it is successfully shot by a player. When the health of an enemy reaches 0 it is killed and the player is awarded a certain amount of points based on the enemy. Dead enemies are removed from the game. When a player dies and only one player is playing the game ends, if multiple players are playing that player will be allowed to reenter the game with a significant point reduction. The multiplayer for the game will be very similar to the single players. Multiple players will be placed into the same world and will all hunt the same enemies and will compete for points. Enemies moving intelligently will try to avoid all players if possible, but can be herded if players work together. A penalty is given if a player kills or wounds another player. The player should have access to different weapons that have different functionality and advantages/disadvantages. For example: a shotgun will have high damage at close range, but low damage at long range. A rifle will have medium damage at close range and long range. The player will be given access do different tools to assist him/her. For example: Players should be able to obtain an air horn which will startle nearby enemies causing them to immediately begin moving despite possibly being out of their normal detection range (The bonus requirement for a “force gun”). Players should also be able to obtain special items that allow them move further within the creature's normal detection range without being detected. 3.1. Game 3.1.1. The game shall be created in the style of a first person shooter. 3.1.2. The game shall be able to accommodate multiple players in the same instance of the game.

3.2. Player 3.2.1. The game shall be created in the style of a first person shooter. 3.2.2. The player shall control the avatar using some combination of a keyboard and a mouse. 3.2.3. The player shall be able to interact with the environment by respecting collision with world objects. 3.2.4. The player shall be able to interact with other players and enemies through collision as well as having the ability to damage them with their weapons. 3.2.5. The player shall be able to activate triggers which cause different events to occur in the game. 3.2.6. The players shall have a certain amount of health. When a player is shot by another player, or successfully attacked by an intelligent chasing enemy it will lose health. 3.2.7. The player shall be awarded points for successfully killing an enemy. 3.2.8. When the health of a player reaches 0, they shall die. 3.2.9. When a player dies the game will end if only one player is playing. 3.2.10. If multiple players are playing the player shall be able to reenter the game with a significant point reduction. 3.2.11. A player should be able to differentiate between enemies according to their movement type. 3.2.12. If a player attacks another player points will be deducted from the attacker. 3.3. Enemy 3.3.1. A player should be able to differentiate between enemies according to their movement type. 3.3.2. The enemies shall be able to move according to one of four different movement types. 3.3.3. The enemies shall be differentiable from their environment. Though this does not necessarily have to be immediately obvious. 3.3.4. The enemies shall have a certain amount of health. When it is shot by a player it will lose health. 3.3.5. When the health of an enemy reaches 0, they shall die. 3.3.6. Dead enemies shall be removed from the game. 3.3.7. Enemies following intelligent evasion shall attempt to run from the player, and not allow themselves to be shot. 3.3.8. Enemies following intelligent chasing shall attempt to catch the player in order to damage it. 3.3.9. Enemies following intelligent evasion or intelligent chasing should activate based on a player’s proximity. 3.3.10. Enemies following intelligent evasion or intelligent chasing shall move while attempting to account for all players currently in the game.

Personal tools