Drama Princess Action System test 1: press a key to move the pink cone to another spot: the black actor will walk towards the cone, stop when he arrives and start displaying idle behaviour.
This may look like a simplistic test but it is structured to accomodate for the whole Drama Princess system. This structure consists of two main parts: data and engine.
The data part contains the mesh and texture of the actor, animations and Behaviours described as conditional lists of actions. These Behaviours are mini-applications that can contain any form of logic. They communicate with the engine through Interface systems.
The engine part is more elaborate. It consists of a logic system and a draw system.
The Logic System consists of four Manager systems that are applied to each actor in a loop.
- The Decision Manager will contain the decision making logic and starts new Behaviours.
- The Behaviour Manager calls the currently active Behaviour.
- The Motion Manager prepares the animation system for the next frame.
- And the Movement Manager calculates the position and rotation of the actor based on animation speed and target location.
Interface systems provide for the communication between Managers and Behaviours and each other.
- The Behaviour Interface takes care of loading Behaviours.
- The Motion Interface adds and removes animations and contains “shortcut” logic for starting and stopping the walking of an actor.
- The Actor Interface contains routines for storing Actors’ parameters.
The Draw System consists of the Appearance Manager which draws the actor in 3D space at the correct position with the correct animation.
Download the test executable (3 MB, requires Windows and DirectX 9.0c).
Posted on July 22, 2006 at 12:18 am
Nice work, sounds very cool, the program set up you describe.
While on vacation I came up with a few AI ideas myself. Probably more ‘orthodox’ than what you are creating, but I think it will result in cool things.
I hope to get a lot of gameplay out of my AI characters! 🙂
Posted on July 22, 2006 at 8:15 am
Good to hear you got some work done while on vacation! 😉
Please point us to a document describing your ideas. I’m always curious.
Posted on July 22, 2006 at 12:20 pm
Documentation? Bah! 😉
Posted on July 22, 2006 at 1:08 pm
An executable then? 😛