TDME2 1.9.121
|
Representation of a 3d model. More...
#include <tdme/engine/model/Model.h>
Public Types | |
enum | AuthoringTool { AUTHORINGTOOL_UNKNOWN , AUTHORINGTOOL_BLENDER } |
Public Member Functions | |
Model (const string &id, const string &name, UpVector *upVector, RotationOrder *rotationOrder, BoundingBox *boundingBox, AuthoringTool authoringTool=AUTHORINGTOOL_UNKNOWN) | |
Public constructor. More... | |
~Model () | |
Deconstructor. More... | |
AuthoringTool | getAuthoringTool () |
uint32_t | getUniqueId () |
const string & | getId () |
const string & | getName () |
UpVector * | getUpVector () |
void | setUpVector (UpVector *upVector) |
Set up vector. More... | |
RotationOrder * | getRotationOrder () |
ShaderModel * | getShaderModel () |
void | setShaderModel (ShaderModel *shaderModel) |
Set preferred shader model. More... | |
map< string, Material * > & | getMaterials () |
Returns all object materials. More... | |
map< string, Node * > & | getNodes () |
Returns all object's nodes. More... | |
Node * | getNodeById (const string &id) |
Returns a node by given name or null. More... | |
map< string, Node * > & | getSubNodes () |
Returns object's sub nodes. More... | |
Node * | getSubNodeById (const string &id) |
Returns a sub node by given name or null. More... | |
bool | hasSkinning () |
float | getFPS () |
void | setFPS (float fps) |
Set model animation frames per seconds. More... | |
AnimationSetup * | addAnimationSetup (const string &id, int32_t startFrame, int32_t endFrame, bool loop, float speed=1.0f) |
Adds an base animation setup. More... | |
AnimationSetup * | addOverlayAnimationSetup (const string &id, const string &overlayFromNodeId, int32_t startFrame, int32_t endFrame, bool loop, float speed=1.0f) |
Adds an overlay animation setup. More... | |
AnimationSetup * | getAnimationSetup (const string &id) |
bool | removeAnimationSetup (const string &id) |
Remove animation setup. More... | |
bool | renameAnimationSetup (const string &id, const string &newId) |
Rename animation set up. More... | |
map< string, AnimationSetup * > & | getAnimationSetups () |
TODO: return const map. More... | |
bool | hasAnimations () |
const Matrix4x4 & | getImportTransformationsMatrix () |
void | setImportTransformationsMatrix (const Matrix4x4 &importTransformationsMatrix) |
Set import transformations matrix. More... | |
BoundingBox * | getBoundingBox () |
void | invalidateBoundingBox () |
Invalidates bounding box. More... | |
bool | computeTransformationsMatrix (const string &nodeId, const Matrix4x4 &parentTransformationsMatrix, Matrix4x4 &transformationsMatrix, int32_t frame=0) |
Computes a transformations matrix at a given frame for a given node id recursivly. More... | |
bool | computeTransformationsMatrix (const string &nodeId, Matrix4x4 &transformationsMatrix, int32_t frame=0) |
Computes a transformations matrix at a given frame for a given node id recursivly. More... | |
bool | hasBoundingBoxUpdate () |
Static Public Attributes | |
static STATIC_DLL_IMPEXT string | ANIMATIONSETUP_DEFAULT = "tdme.default" |
static STATIC_DLL_IMPEXT constexpr float | FPS_DEFAULT { 30.0f } |
static STATIC_DLL_IMPEXT uint32_t | uidCounter = 0 |
Private Member Functions | |
void | deleteSubNodes (const map< string, Node * > &subNodes) |
Delete sub nodes. More... | |
void | setHasSkinning (bool hasSkinning) |
Set up if model has skinning. More... | |
bool | computeTransformationsMatrix (const map< string, Node * > &nodes, const Matrix4x4 &parentTransformationsMatrix, int32_t frame, const string &nodeId, Matrix4x4 &transformationsMatrix) |
Computes a transformations matrix at a given frame for a given node id recursivly. More... | |
Private Attributes | |
AuthoringTool | authoringTool |
uint32_t | uniqueId |
string | id |
string | name |
UpVector * | upVector |
RotationOrder * | rotationOrder |
ShaderModel * | shaderModel |
map< string, Material * > | materials |
map< string, Node * > | nodes |
map< string, Node * > | subNodes |
bool | skinning |
float | fps |
map< string, AnimationSetup * > | animationSetups |
Matrix4x4 | importTransformationsMatrix |
BoundingBox * | boundingBox |
bool | boundingBoxUpdated |
Friends | |
class | Node |
enum AuthoringTool |
Model | ( | const string & | id, |
const string & | name, | ||
UpVector * | upVector, | ||
RotationOrder * | rotationOrder, | ||
BoundingBox * | boundingBox, | ||
AuthoringTool | authoringTool = AUTHORINGTOOL_UNKNOWN |
||
) |
AnimationSetup * addAnimationSetup | ( | const string & | id, |
int32_t | startFrame, | ||
int32_t | endFrame, | ||
bool | loop, | ||
float | speed = 1.0f |
||
) |
AnimationSetup * addOverlayAnimationSetup | ( | const string & | id, |
const string & | overlayFromNodeId, | ||
int32_t | startFrame, | ||
int32_t | endFrame, | ||
bool | loop, | ||
float | speed = 1.0f |
||
) |
|
private |
Computes a transformations matrix at a given frame for a given node id recursivly.
nodes | nodes |
parentTransformationsMatrix | parent transformations matrix |
frame | frame |
nodeId | node id |
transformationsMatrix | transformations matrix |
|
inline |
|
private |
AnimationSetup * getAnimationSetup | ( | const string & | id | ) |
|
inline |
|
inline |
BoundingBox * getBoundingBox | ( | ) |
|
inline |
|
inline |
Node * getNodeById | ( | const string & | id | ) |
|
inline |
|
inline |
|
inline |
Node * getSubNodeById | ( | const string & | id | ) |
|
inline |
|
inline |
|
inline |
bool removeAnimationSetup | ( | const string & | id | ) |
bool renameAnimationSetup | ( | const string & | id, |
const string & | newId | ||
) |
|
inline |
|
inlineprivate |
|
inline |
|
inline |
|
inline |
|
private |
|
private |
|
private |
|
private |
|
private |