A few questions (animating and C++)

Started by
0 comments, last by Krohm 11 years, 7 months ago
Ok to start out I'm new to programming and this site. And I have been planning to start a building a game using Irrlicht. But before I get to that I have a question about rigging, when you are programming for multiple meshes would you need to support the animation of the rig for each model or is there a simpler way? Or when making the meshes for say a human and a dragon, would the mesh need to be the same and just manipulate the rig to support the entire mesh? And the last for now, is it better to script the storyline hardcode it into the cpp?
Thanks again for any responses, as I said I am new to game programming and had some questions that I could not find answers for.
Advertisement
Welcome.

There's no such thing as "support the animation of the rig for each model".
All the rigs are the same "numerically speaking", just as all things having 3 distinct points make up a triangle.
I suggest to separate the concept of mesh and animation. Some systems pack the rigs with the mesh (which makes sense) while others allow to pair them independently (I don't think this buys anything).
In general we have this mesh+animation data pair where the animation data evolves... typically with time.
So enter mesh instances. The evolution of the mesh data changes across all the meshes even when they are the same.

Consider:
1) a mesh M1 (model MDL) with rig R generated at frame F.
2) a mesh M2 (model MDL) with rig R generated at frame F+20.

It is clear that those two meshes have the same base model and the same base rig, yet they are different istances and must be managed correctly.
So in short: you have to bite the bullet and support a different pose for each model instance. This does not mean they also need a different rig: the rig is the same, just in a different state (rig != pose).


I have extreme difficulty in imagining a rig which would animate correctly both a human and a dragon.
There's no requirement for a rig to be unique to each mesh but this implies meshes will have to be similar. A human rig could probably be shared with a alien humanoid or perhaps a chimpanzee. A horse? I don't think so.


You are suggested to split storyline questions in a different topic. In my opinion however hardcoded storyline is hard to write and typically even harder to manage and keep in shape. Most games are scripted, where the most basic form of storyline scripting is the level succession. If level progression is non-linear, this is somewhat more complicated.

Previously "Krohm"

This topic is closed to new replies.

Advertisement