Drama Princess needs to be a reusable system and a system that can be instanced so that multiple characters in a game can use it without having to make multiple copies of the system. For these reasons, amongst others, the system will consist of components that are used by each actor.
For reasons of performance, actors will not call all of their components every frame. But for reasons of simplicity, in what follows we will assume that they do. The order in which the components are called can be important because one component may require information from another. Components will never request information directly from other components but rather read the information from a common location that all components write to. This location is a table with rows for each actor and columns for each parameter.
Broadcast system
Called by each object (including actors) to add all the opportunities for interactions that are available with this object to the global list of opportunities that actors can consult. When objects are busy, they will not call this component, thus preventing actors from trying to interact with them when they cannot be interacted with.
Since the opportunities are behaviours, each of which will be stored in a seperate file (only to be loaded in memory when required by an actor), the list of opportunities could consist of a list of file names (or numerical IDs that represent them -for faster data transfer) accompanied by the originating object’s ID and the opportunity’s intimacy value (can be different for same behaviour with different objects).
Since an object’s list of opportunities never changes, a lot of performance optimisation can be done by reducing the requirement to actively broadcast all the opportunities to the global list of opportunities (and replacing it perhaps by an “include” flag).
Decision system
Each actor will read the global list of opportunities and apply a number of filters to it that gradually reduce the number of opportunities down to one. Each of these filters could be a component on its own.
Behaviour system
When an actor has chosen an opportunity as a goal, it calls the behaviour related to this goal. Each behaviour consists of a sequence of actions. The system evaluates the conditions for each of these actions from top to bottom (the final action of the sequence being at the top) and will execute the first one that evaluates as true.
Behaviours are independent little components that can be shared by multiple objects.
Common behaviours (like “walk to target”) can be reused by other behaviours.
Motion system
Plays skeletal animations of an actor with the aid of an animation blending system that allows for playing multiple animations simultaneously with different priorities and different subsets of bones. The animation blending system of each actor uses animations both form a standard set that comes with the actor and from a special set offered by the behaviour.
A sub-component will take care of facial expressions through morphing. Actors that are far away from the camera do not need to call this component (you wouldn’t see their expressions anyway). The blending of the morph targets will be defined by the behaviour.
Movement system
Changes the position and rotation of the actor according to parameters set by the behaviour and environmental conditions such as collisions and gravity, each of which will be components on their own.
The avatar of the player will also call an “user input” component that will influence movement.
Emotion system
Keeps track of an actor’s relationship and attitude towards an object, and of the fascination with opportunities.
Relationships improve or worsen after interactions and they worsen with seperation. Attitude becomes weaker when interacting with the same object and is reset when a new object is chosen. Attitude can become positive or negative when the relationship is neutral. Fascination drops after an interaction and then slowly increases again.
Relationship, attitude and fascination are key elements in the decision-making process.
(the fact that relationship and attitude direction are shared by both members of the relationship, may complicate matters a bit)