All objects (including characters) in the game world advertise their opportunities. Mostly based on its relationship with these objects, a Drama Princess character chooses one of these opportunities as its goal.
An opportunity consists of several animations played in sequence. When a character chooses one as its goal, it’s going to play these animations one after the other. Some sequences will simply play from start to finish, after which a new goal can be chosen. Others may pause by putting the character in a certain state, typically expressed by a looping animation. After a while the character will get bored with this opportunity and it will finish the sequence by playing the final animation.
When a sequence has finished and before the character chooses a new goal, the character is in an idle state. To have the character return to the same kind of idle behaviour, like a neutral stance (as happens in The Sims and The Endless Forest) , looks very unnatural. To solve this issue our environment objects will offer several idle behaviours that are available for the current environment. So rather than going to a neutral stance when an animation sequence ends, the character will select an idle behaviour from the ones offered by the environment.
When a character is moving towards a relatively uninteresting goal and meets another character with which it has a good relationship, there’s a very good chance that it will interrupt what it was doing in favour of interacting with the other character. So rather than finishing the sequence and selecting an idle behaviour from the environment object, it will immediately start playing the animation sequence of the opportunity offered by the other character that it chose as its new goal.
For both cases, idle behaviour and interruption, a transition between two animation sequences will be required. Since so many combinations are possible (especially in the case of interruption), we cannot hard-code all transition animations.
Blending between two random poses almost always looks unnatural and can in some cases produce unwanted effects (like character rotating through the floor).
But we could simplify the problem by stylizing of our concept of invitation. When a character chooses to do an interaction with another character, it will send an invitation to this character and wait for it to respond and move to the right location and into the right starting pose. Then the interaction can happen, nice and synchronized. This moment of invitation could be made explicit in a certain pose that is always the same. Then the complexity of transitioning is at least reduced by half: we know the end of the transition.
The problem is that this may end up looking like a neutral stance in between animation sequences, mentioned above as decidedly unnatural. This is hardly acceptable. But it may be an area where we need to compromise. Perhaps extreme stylization (maybe in combination with camera cuts) may help make this more acceptable.
Posted on June 10, 2006 at 10:49 pm
When a person is interrupted, he or she often does not immediately transition to a new behaviour. In fact, it looks perfectly natural for someone who is interrupted to freeze his or motion and to stare at the cause of the interruption.
Perhaps there’s a solution here: perhaps, after freezing for a moment, the character can continue the sequence until the end, but in as fast a succession as possible. While it is doing this, however, it keeps its gaze firmly locked on the cause of the interruption.
This makes sense. You wouldn’t literally drop the box you were carrying just to be able to kiss your friend. You would carefully put the box down and then go towards your friend to kiss him.
Posted on June 11, 2006 at 7:15 pm
To cover up for the unnatural look of moving to a neutral pose before starting a new animation sequence, we could animate the upper body, head and limbs seperately to express transition, confusion or concentration. These would play indepently of the other animations of the character and could be random or expressive of mood and personality (reluctant or enthusiastic, e.g.).
Something similar could be used when characters are moving towards the start position of an interaction with each other (invitation): they can express anticipation with their upper body (open arms for greeting e.g.).
Posted on July 8, 2006 at 11:55 pm
[…] The basis of the animation system will be the design discussed before in From goal to behaviour. So it’s not just about playing animations but about playing a sequence of animations based on rules. Other elements we will want to work on will be transitions between animation sequences and idle poses. […]