Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 3 and Version 4 of dev/Thinktank4


Ignore:
Timestamp:
Feb 15, 2008, 10:31:27 AM (16 years ago)
Author:
nicolasc
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • dev/Thinktank4

    v3 v4  
    55  While this is a good approach for an existing framework, a lot of base coding need to be done. See below
    66 - ''Try to define the most important elements needed for a minimalistic running game. Some of them you already achieved. My opinion: Focus on interactivity. Depends on:''
    7     - ''simple AI (spaceship follows pilot and shoots on it, probability of hitting it is for example ~1/d (d is distance to craft))''
    8 
    9     - ''simple collision detection (bounding box is sufficient for a first approach, _don't_ code your own collision detection alg.)''
    10 
    11     - ''simple mission goals (kill all pirates, kill 5 aliens, etc. just simple counters)''
    12     - ''simple weapon (one is sufficient): sound and vision''
    13     - ''simple interactive menu: (1) describing the mission goals (2) informing the pilot if mission goals reached (3) informing the pilot he was killed, restart/quit. sound and vision.''
    14     - ''very good controls for the spacecraft (this is most important for the quality of the game). Give this task only to very skilled and very motivated programmers that know the game genre. Define one and only one game to be used as a prototype, install it on his/her computer let him play it in front of you and discuss it. This is so important... :D''
    15     - ''simple HUD (showing health and ammo _only_) in a second iteration you may show more..''
    16     - ''explosion effect for killed spacecrafts: sound and vision''
     7    - ''simple AI (spaceship follows pilot and shoots on it, probability of hitting it is for example ~1/d (d is distance to craft))''[[br]]
     8     Martin did quite a good Job in creating an expandable base for the AI in a 3 layer approach. Following and shooting are probably the important parts for the pilot, coordination, target selection for the squad commander.
     9    - ''simple collision detection (bounding box is sufficient for a first approach, _don't_ code your own collision detection alg.)''[[br]]
     10     We try to get ODE working, and incorporate it as physics and collision engine.
     11    - ''simple mission goals (kill all pirates, kill 5 aliens, etc. just simple counters)''[[br]]
     12     Full ACK, start simple, extend as the game grows.
     13    - ''simple weapon (one is sufficient): sound and vision''[[br]]
     14     We still need a good weapons system, thus the approach would be, create a weaponsystem, and implement one weapon. We have to be careful, that all later one needed features are already there in.
     15    - ''simple interactive menu: (1) describing the mission goals (2) informing the pilot if mission goals reached (3) informing the pilot he was killed, restart/quit. sound and vision.''[[br]]
     16    - ''very good controls for the spacecraft (this is most important for the quality of the game). Give this task only to very skilled and very motivated programmers that know the game genre. Define one and only one game to be used as a prototype, install it on his/her computer let him play it in front of you and discuss it. This is so important... :D''[[br]]
     17     It is rather impossible to create a really good steering in just one term. It is going to be some basic implementation which will need much fine tuning in the following terms.
     18    - ''simple HUD (showing health and ammo _only_) in a second iteration you may show more..''[[br]]
     19     We are not entirely sure, if ogre provides what we need, or if we are going to have a look at CEGUI.
     20    - ''explosion effect for killed spacecrafts: sound and vision''[[br]]
     21     It should not entirely be neglected, but there are more important thing to be done first, such as collision, weapons, AI...