TDME2 1.9.121
Model.cpp
Go to the documentation of this file.
2
3#include <map>
4#include <string>
5
6#include <tdme/tdme.h>
18#include <tdme/math/Matrix4x4.h>
20
21using std::map;
22using std::string;
23
38
39string Model::ANIMATIONSETUP_DEFAULT = "tdme.default";
40uint32_t Model::uidCounter = 0;
41
42constexpr float Model::FPS_DEFAULT;
43
44Model::Model(const string& id, const string& name, UpVector* upVector, RotationOrder* rotationOrder, BoundingBox* boundingBox, AuthoringTool authoringTool)
45{
46 this->uniqueId = AtomicOperations::increment(uidCounter);
47 this->id = id + ":uid=" + to_string(this->uniqueId);
48 this->name = name;
49 this->upVector = upVector;
50 this->rotationOrder = rotationOrder;
52 skinning = false;
55 this->boundingBox = boundingBox;
56 this->authoringTool = authoringTool;
57 this->boundingBoxUpdated = false;
58}
59
62 for (auto it = materials.begin(); it != materials.end(); ++it) {
63 delete it->second;
64 }
65 for (auto it = animationSetups.begin(); it != animationSetups.end(); ++it) {
66 delete it->second;
67 }
68 if (boundingBox != nullptr) delete boundingBox;
69}
70
71void Model::deleteSubNodes(const map<string, Node*>& subNodes) {
72 for (auto it = subNodes.begin(); it != subNodes.end(); ++it) {
73 deleteSubNodes(it->second->getSubNodes());
74 delete it->second;
75 }
76}
77
78Node* Model::getNodeById(const string& id)
79{
80 auto nodeIt = nodes.find(id);
81 if (nodeIt != nodes.end()) {
82 return nodeIt->second;
83 }
84 return nullptr;
85
86}
87
88Node* Model::getSubNodeById(const string& id)
89{
90 auto nodeIt = subNodes.find(id);
91 if (nodeIt != subNodes.end()) {
92 return nodeIt->second;
93 }
94 return nullptr;
95}
96
97AnimationSetup* Model::addAnimationSetup(const string& id, int32_t startFrame, int32_t endFrame, bool loop, float speed)
98{
99 auto animationSetupIt = animationSetups.find(id);
100 if (animationSetupIt != animationSetups.end()) {
101 delete animationSetupIt->second;
102 animationSetups.erase(animationSetupIt);
103 }
104 auto animationSetup = new AnimationSetup(this, id, startFrame, endFrame, loop, string(), speed);
105 animationSetups[id] = animationSetup;
106 return animationSetup;
107}
108
109AnimationSetup* Model::addOverlayAnimationSetup(const string& id, const string& overlayFromNodeId, int32_t startFrame, int32_t endFrame, bool loop, float speed)
110{
111 auto animationSetup = new AnimationSetup(this, id, startFrame, endFrame, loop, overlayFromNodeId, speed);
112 animationSetups[id] = animationSetup;
113 return animationSetup;
114}
115
117{
118 auto animationSetupIt = animationSetups.find(id);
119 if (animationSetupIt != animationSetups.end()) {
120 return animationSetupIt->second;
121 }
122 return nullptr;
123}
124
125bool Model::removeAnimationSetup(const string& id) {
126 auto animationSetupIt = animationSetups.find(id);
127 if (animationSetupIt == animationSetups.end()) return false;
128 animationSetups.erase(animationSetupIt);
129 return true;
130}
131
132bool Model::renameAnimationSetup(const string& id, const string& newId) {
133 auto animationSetupIt = animationSetups.find(id);
134 if (animationSetupIt == animationSetups.end()) return false;
135 auto animationSetup = animationSetupIt->second;
136 animationSetups.erase(animationSetupIt);
137 animationSetup->setId(newId);
138 animationSetups[newId] = animationSetup;
139 return true;
140}
141
143{
144 // TODO: return const bb
145 if (boundingBox == nullptr) {
147 }
148 return boundingBox;
149}
150
151bool Model::computeTransformationsMatrix(const map<string, Node*>& nodes, const Matrix4x4& parentTransformationsMatrix, int32_t frame, const string& nodeId, Matrix4x4& transformationsMatrix)
152{
153 // iterate through nodes
154 for (auto it: nodes) {
155 Node* node = it.second;
156 // compute animation matrix if animation setups exist
157 auto animation = node->getAnimation();
158 if (animation != nullptr) {
159 auto& animationMatrices = animation->getTransformationsMatrices();
160 transformationsMatrix.set(animationMatrices[frame % animationMatrices.size()]);
161 } else {
162 // no animation matrix, set up local transformation matrix up as node matrix
163 transformationsMatrix.set(node->getTransformationsMatrix());
164 }
165
166 // apply parent transformation matrix
167 transformationsMatrix.multiply(parentTransformationsMatrix);
168
169 // return matrix if node matches
170 if (node->getId() == nodeId) return true;
171
172 // calculate sub nodes
173 auto& subNodes = node->getSubNodes();
174 if (subNodes.size() > 0) {
175 auto haveTransformationsMatrix = computeTransformationsMatrix(subNodes, transformationsMatrix.clone(), frame, nodeId, transformationsMatrix);
176 if (haveTransformationsMatrix == true) return true;
177 }
178 }
179
180 //
181 return false;
182}
183
185 if (boundingBox != nullptr) {
186 delete boundingBox;
187 boundingBox = nullptr;
188 boundingBoxUpdated = true;
189 }
190}
const vector< Matrix4x4 > & getTransformationsMatrices() const
Returns transformation matrices.
Definition: Animation.h:41
Represents a material.
Definition: Material.h:21
Representation of a 3d model.
Definition: Model.h:32
BoundingBox * boundingBox
Definition: Model.h:57
~Model()
Deconstructor.
Definition: Model.cpp:60
map< string, Material * > materials
Definition: Model.h:50
AuthoringTool authoringTool
Definition: Model.h:43
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.
Definition: Model.cpp:151
void invalidateBoundingBox()
Invalidates bounding box.
Definition: Model.cpp:184
bool removeAnimationSetup(const string &id)
Remove animation setup.
Definition: Model.cpp:125
RotationOrder * rotationOrder
Definition: Model.h:48
map< string, AnimationSetup * > animationSetups
Definition: Model.h:55
static STATIC_DLL_IMPEXT constexpr float FPS_DEFAULT
Definition: Model.h:39
Node * getSubNodeById(const string &id)
Returns a sub node by given name or null.
Definition: Model.cpp:88
void deleteSubNodes(const map< string, Node * > &subNodes)
Delete sub nodes.
Definition: Model.cpp:71
static STATIC_DLL_IMPEXT uint32_t uidCounter
Definition: Model.h:40
AnimationSetup * addAnimationSetup(const string &id, int32_t startFrame, int32_t endFrame, bool loop, float speed=1.0f)
Adds an base animation setup.
Definition: Model.cpp:97
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.
Definition: Model.cpp:109
UpVector * upVector
Definition: Model.h:47
ShaderModel * shaderModel
Definition: Model.h:49
map< string, Node * > subNodes
Definition: Model.h:52
AnimationSetup * getAnimationSetup(const string &id)
Definition: Model.cpp:116
Node * getNodeById(const string &id)
Returns a node by given name or null.
Definition: Model.cpp:78
Matrix4x4 importTransformationsMatrix
Definition: Model.h:56
bool renameAnimationSetup(const string &id, const string &newId)
Rename animation set up.
Definition: Model.cpp:132
BoundingBox * getBoundingBox()
Definition: Model.cpp:142
map< string, Node * > nodes
Definition: Model.h:51
Model node.
Definition: Node.h:31
const Matrix4x4 & getTransformationsMatrix() const
Definition: Node.h:121
const string & getId()
Returns id.
Definition: Node.h:85
Animation * getAnimation()
Definition: Node.h:225
map< string, Node * > & getSubNodes()
Definition: Node.h:289
Represents rotation orders of a model.
Definition: RotationOrder.h:23
static STATIC_DLL_IMPEXT ShaderModel * SPECULAR
Definition: ShaderModel.h:23
Model up vector.
Definition: UpVector.h:20
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
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.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Matrix4x4 & identity()
Setup identity matrix.
Definition: Matrix4x4.h:326
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.
Definition: Matrix4x4.h:95
Matrix4x4 clone()
Clones this matrix.
Definition: Matrix4x4.h:624
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
Definition: Matrix4x4.h:351