TDME2 1.9.121
Model.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <string>
5
6#include <tdme/tdme.h>
10#include <tdme/math/fwd-tdme.h>
11#include <tdme/math/Matrix4x4.h>
13
14using std::map;
15using std::string;
16
17using std::string;
25
26/**
27 * Representation of a 3d model
28 * @author andreas.drewke
29 * @version $Id$
30 */
32{
33 friend class Node;
34
35public:
37
39 STATIC_DLL_IMPEXT static constexpr float FPS_DEFAULT { 30.0f };
41
42private:
44 uint32_t uniqueId;
45 string id;
46 string name;
50 map<string, Material*> materials;
51 map<string, Node*> nodes;
52 map<string, Node*> subNodes;
54 float fps;
55 map<string, AnimationSetup*> animationSetups;
59
60 /**
61 * Delete sub nodes
62 * @param subNodes sub nodes
63 */
64 void deleteSubNodes(const map<string, Node*>& subNodes);
65
66 /**
67 * Set up if model has skinning
68 * @param hasSkinning has skinning
69 */
70 inline void setHasSkinning(bool hasSkinning) {
72 }
73
74 /**
75 * Computes a transformations matrix at a given frame for a given node id recursivly
76 * @param nodes nodes
77 * @param parentTransformationsMatrix parent transformations matrix
78 * @param frame frame
79 * @param nodeId node id
80 * @param transformationsMatrix transformations matrix
81 * @return target node transformations
82 */
83 bool computeTransformationsMatrix(const map<string, Node*>& nodes, const Matrix4x4& parentTransformationsMatrix, int32_t frame, const string& nodeId, Matrix4x4& transformationsMatrix);
84
85public:
86 /**
87 * Public constructor
88 * @param id id
89 * @param name name
90 * @param upVector up vector
91 * @param rotationOrder rotation order
92 * @param boundingBox bounding box
93 * @param authoringTool authoring tool
94 */
96
97 /**
98 * Deconstructor
99 */
100 ~Model();
101
102 /**
103 * @return authoring tool
104 */
106 return authoringTool;
107 }
108
109 /**
110 * @return unique model id
111 */
112 inline uint32_t getUniqueId() {
113 return uniqueId;
114 }
115
116 /**
117 * @return model id
118 */
119 inline const string& getId() {
120 return id;
121 }
122
123 /**
124 * @return model name
125 */
126 inline const string& getName() {
127 return name;
128 }
129
130 /**
131 * @return up vector
132 */
134 return upVector;
135 }
136
137 /**
138 * Set up vector
139 * @param upVector up vector
140 */
142 this->upVector = upVector;
143 }
144
145 /**
146 * @return rotation order
147 */
149 return rotationOrder;
150 }
151
152 /**
153 * @return preferred shader model
154 */
156 return shaderModel;
157 }
158
159 /**
160 * Set preferred shader model
161 * @param shaderModel preferred shader model
162 */
164 this->shaderModel = shaderModel;
165 }
166
167 /**
168 * Returns all object materials
169 * @return materials
170 */
171 inline map<string, Material*>& getMaterials() {
172 return materials;
173 }
174
175 /**
176 * Returns all object's nodes
177 * @return all nodes
178 */
179 inline map<string, Node*>& getNodes() {
180 return nodes;
181 }
182
183 /**
184 * Returns a node by given name or null
185 * @param id id
186 * @return
187 */
188 Node* getNodeById(const string& id);
189
190 /**
191 * Returns object's sub nodes
192 * @return sub nodes
193 */
194 inline map<string, Node*>& getSubNodes() {
195 return subNodes;
196 }
197
198 /**
199 * Returns a sub node by given name or null
200 * @param id id
201 * @return
202 */
203 Node* getSubNodeById(const string& id);
204
205 /**
206 * @return has skinning
207 */
208 inline bool hasSkinning() {
209 return skinning;
210 }
211
212 /**
213 * @return frames per seconds
214 */
215 inline float getFPS() {
216 return fps;
217 }
218
219 /**
220 * Set model animation frames per seconds
221 * @param fps fps
222 */
223 inline void setFPS(float fps) {
224 this->fps = fps;
225 }
226
227 /**
228 * Adds an base animation setup
229 * @param id id
230 * @param startFrame start frame
231 * @param endFrame end frame
232 * @param loop loop
233 * @param speed speed whereas 1.0 is default speed
234 * @return animation setup
235 */
236 AnimationSetup* addAnimationSetup(const string& id, int32_t startFrame, int32_t endFrame, bool loop, float speed = 1.0f);
237
238 /**
239 * Adds an overlay animation setup
240 * @param id id
241 * @param overlayFromNodeId overlay from node id
242 * @param startFrame start frame
243 * @param endFrame end frame
244 * @param loop loop
245 * @param speed speed whereas 1.0 is default speed
246 * @return animation setup
247 */
248 AnimationSetup* addOverlayAnimationSetup(const string& id, const string& overlayFromNodeId, int32_t startFrame, int32_t endFrame, bool loop, float speed = 1.0f);
249
250 /**
251 * @return animation setup for given id or null
252 */
253 AnimationSetup* getAnimationSetup(const string& id);
254
255 /**
256 * Remove animation setup
257 * @param id id
258 * @return success
259 */
260 bool removeAnimationSetup(const string& id);
261
262 /**
263 * Rename animation set up
264 * @param id id
265 * @param newId new id
266 * @return success
267 */
268 bool renameAnimationSetup(const string& id, const string& newId);
269
270 /**
271 * TODO: return const map
272 * @return animation setup for given id or null
273 */
274 inline map<string, AnimationSetup*>& getAnimationSetups() {
275 return animationSetups;
276 }
277
278 /**
279 * @return if model has animations
280 */
281 inline bool hasAnimations() {
282 // no registered animation
283 if (animationSetups.size() == 0) return false;
284 // default animation with frames > 0
285 return
288 }
289
290 /**
291 * @return import transformations matrix like converting Z-UP to Y-UP
292 */
295 }
296
297 /**
298 * Set import transformations matrix
299 * @param importTransformationsMatrix import transformations matrix like converting Z-UP to Y-UP
300 */
302 this->importTransformationsMatrix = importTransformationsMatrix;
303 }
304
305 /**
306 * @return bounding box
307 */
309
310 /**
311 * Invalidates bounding box
312 */
314
315 /**
316 * Computes a transformations matrix at a given frame for a given node id recursivly
317 * @param nodeId node id
318 * @param parentTransformationsMatrix parent transformations matrix
319 * @param transformationsMatrix target node transformations matrix
320 * @param frame frame
321 */
322 inline bool computeTransformationsMatrix(const string& nodeId, const Matrix4x4& parentTransformationsMatrix, Matrix4x4& transformationsMatrix, int32_t frame = 0) {
323 return computeTransformationsMatrix(subNodes, parentTransformationsMatrix, frame, nodeId, transformationsMatrix);
324 }
325
326 /**
327 * Computes a transformations matrix at a given frame for a given node id recursivly
328 * @param nodeId node id
329 * @param transformationsMatrix target node transformations matrix
330 * @param frame frame
331 */
332 inline bool computeTransformationsMatrix(const string& nodeId, Matrix4x4& transformationsMatrix, int32_t frame = 0) {
333 return computeTransformationsMatrix(subNodes, importTransformationsMatrix, frame, nodeId, transformationsMatrix);
334 }
335
336 /**
337 * @return if vertices have been updated
338 */
339 inline bool hasBoundingBoxUpdate() {
340 auto updated = boundingBoxUpdated;
341 boundingBoxUpdated = false;
342 return updated;
343 }
344
345};
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
map< string, AnimationSetup * > & getAnimationSetups()
TODO: return const map.
Definition: Model.h:274
UpVector * getUpVector()
Definition: Model.h:133
AuthoringTool authoringTool
Definition: Model.h:43
RotationOrder * getRotationOrder()
Definition: Model.h:148
const Matrix4x4 & getImportTransformationsMatrix()
Definition: Model.h:293
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 setShaderModel(ShaderModel *shaderModel)
Set preferred shader model.
Definition: Model.h:163
void invalidateBoundingBox()
Invalidates bounding box.
Definition: Model.cpp:184
AuthoringTool getAuthoringTool()
Definition: Model.h:105
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 string ANIMATIONSETUP_DEFAULT
Definition: Model.h:38
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.
Definition: Model.h:322
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 setUpVector(UpVector *upVector)
Set up vector.
Definition: Model.h:141
map< string, Node * > & getNodes()
Returns all object's nodes.
Definition: Model.h:179
void setHasSkinning(bool hasSkinning)
Set up if model has skinning.
Definition: Model.h:70
void deleteSubNodes(const map< string, Node * > &subNodes)
Delete sub nodes.
Definition: Model.cpp:71
Model(const string &id, const string &name, UpVector *upVector, RotationOrder *rotationOrder, BoundingBox *boundingBox, AuthoringTool authoringTool=AUTHORINGTOOL_UNKNOWN)
Public constructor.
Definition: Model.cpp:44
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
const string & getId()
Definition: Model.h:119
UpVector * upVector
Definition: Model.h:47
ShaderModel * shaderModel
Definition: Model.h:49
ShaderModel * getShaderModel()
Definition: Model.h:155
map< string, Node * > subNodes
Definition: Model.h:52
AnimationSetup * getAnimationSetup(const string &id)
Definition: Model.cpp:116
void setImportTransformationsMatrix(const Matrix4x4 &importTransformationsMatrix)
Set import transformations matrix.
Definition: Model.h:301
Node * getNodeById(const string &id)
Returns a node by given name or null.
Definition: Model.cpp:78
const string & getName()
Definition: Model.h:126
Matrix4x4 importTransformationsMatrix
Definition: Model.h:56
map< string, Node * > & getSubNodes()
Returns object's sub nodes.
Definition: Model.h:194
bool renameAnimationSetup(const string &id, const string &newId)
Rename animation set up.
Definition: Model.cpp:132
BoundingBox * getBoundingBox()
Definition: Model.cpp:142
uint32_t getUniqueId()
Definition: Model.h:112
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.
Definition: Model.h:332
map< string, Node * > nodes
Definition: Model.h:51
map< string, Material * > & getMaterials()
Returns all object materials.
Definition: Model.h:171
void setFPS(float fps)
Set model animation frames per seconds.
Definition: Model.h:223
Model node.
Definition: Node.h:31
Represents rotation orders of a model.
Definition: RotationOrder.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
4x4 3D Matrix class
Definition: Matrix4x4.h:24
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11