39string Model::ANIMATIONSETUP_DEFAULT =
"tdme.default";
40uint32_t Model::uidCounter = 0;
42constexpr float Model::FPS_DEFAULT;
47 this->
id =
id +
":uid=" + to_string(this->
uniqueId);
80 auto nodeIt =
nodes.find(
id);
81 if (nodeIt !=
nodes.end()) {
82 return nodeIt->second;
92 return nodeIt->second;
101 delete animationSetupIt->second;
104 auto animationSetup =
new AnimationSetup(
this,
id, startFrame, endFrame, loop,
string(), speed);
106 return animationSetup;
111 auto animationSetup =
new AnimationSetup(
this,
id, startFrame, endFrame, loop, overlayFromNodeId, speed);
113 return animationSetup;
120 return animationSetupIt->second;
135 auto animationSetup = animationSetupIt->second;
137 animationSetup->setId(newId);
154 for (
auto it:
nodes) {
155 Node* node = it.second;
158 if (animation !=
nullptr) {
160 transformationsMatrix.
set(animationMatrices[frame % animationMatrices.size()]);
167 transformationsMatrix.
multiply(parentTransformationsMatrix);
170 if (node->
getId() == nodeId)
return true;
176 if (haveTransformationsMatrix ==
true)
return true;
const vector< Matrix4x4 > & getTransformationsMatrices() const
Returns transformation matrices.
Representation of a 3d model.
BoundingBox * boundingBox
map< string, Material * > materials
AuthoringTool authoringTool
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.
void invalidateBoundingBox()
Invalidates bounding box.
bool removeAnimationSetup(const string &id)
Remove animation setup.
RotationOrder * rotationOrder
map< string, AnimationSetup * > animationSetups
static STATIC_DLL_IMPEXT constexpr float FPS_DEFAULT
Node * getSubNodeById(const string &id)
Returns a sub node by given name or null.
void deleteSubNodes(const map< string, Node * > &subNodes)
Delete sub nodes.
static STATIC_DLL_IMPEXT uint32_t uidCounter
AnimationSetup * addAnimationSetup(const string &id, int32_t startFrame, int32_t endFrame, bool loop, float speed=1.0f)
Adds an base animation setup.
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.
ShaderModel * shaderModel
map< string, Node * > subNodes
AnimationSetup * getAnimationSetup(const string &id)
Node * getNodeById(const string &id)
Returns a node by given name or null.
Matrix4x4 importTransformationsMatrix
bool renameAnimationSetup(const string &id, const string &newId)
Rename animation set up.
BoundingBox * getBoundingBox()
map< string, Node * > nodes
const Matrix4x4 & getTransformationsMatrix() const
const string & getId()
Returns id.
Animation * getAnimation()
map< string, Node * > & getSubNodes()
Represents rotation orders of a model.
static STATIC_DLL_IMPEXT ShaderModel * SPECULAR
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
static BoundingBox * createBoundingBox(Model *model, const map< string, Matrix4x4 * > overriddenNodeTransformationsMatrices=map< string, Matrix4x4 * >())
Creates a bounding box from given model.
Object 3D model To be used in non engine context.
Matrix4x4 & identity()
Setup identity matrix.
Matrix4x4 & set(float r0c0, float r1c0, float r2c0, float r3c0, float r0c1, float r1c1, float r2c1, float r3c1, float r0c2, float r1c2, float r2c2, float r3c2, float r0c3, float r1c3, float r2c3, float r3c3)
Set up matrix by values.
Matrix4x4 clone()
Clones this matrix.
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.