TDME2 1.9.121
Object3DAnimation.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
13#include <tdme/engine/Engine.h>
14#include <tdme/math/fwd-tdme.h>
15
16using std::map;
17using std::string;
18using std::vector;
19
28
29/**
30 * Object3D animation class
31 * @author Andreas Drewke
32 */
34{
39private:
40 /**
41 * Determine skinned node count
42 * @param nodes nodes
43 */
44 int32_t determineSkinnedNodeCount(const map<string, Node*>& nodes);
45
46 /**
47 * Determine skinned node count
48 * @param nodes nodes
49 * @param count current count
50 */
51 int32_t determineSkinnedNodeCount(const map<string, Node*>& nodes, int32_t count);
52
53 /**
54 * Determine skinned nodes
55 * @param nodes nodes
56 * @param skinningNodes skinning nodes
57 * @param idx idx
58 */
59 int32_t determineSkinnedNodes(const map<string, Node*>& nodes, vector<Node*>& skinningNodes, int32_t idx);
60
61protected:
63 const string nodeId;
70 };
72 const Joint* joint;
75 };
76
79 map<string, Matrix4x4*> overriddenTransformationsMatrices;
80 vector<map<string, Matrix4x4*>> transformationsMatrices;
83 vector<map<string, Matrix4x4*>> skinningNodesMatrices;
84 vector<Node*> skinningNodes;
85 vector<vector<NodeSkinningJoint>> skinningNodesNodeSkinningJoints;
86 vector<AnimationState> baseAnimations;
88 map<string, AnimationState*> overlayAnimationsById;
89 map<string, AnimationState*> overlayAnimationsByJointId;
90 vector<vector<FlattenedNode>> nodeLists;
91
92 /**
93 * Public constructor
94 * @param model model
95 * @param animationProcessingTarget animation processing target
96 */
98
99 /**
100 * Destructor
101 */
102 virtual ~Object3DAnimation();
103
104 /**
105 * Creates all nodes transformation matrices
106 * @param matrices matrices
107 * @param nodeList flattened node list
108 * @param nodes nodes
109 * @param parentTransformationsMatrix parent transformations matrix
110 * @param animationState animation state
111 */
112 void createTransformationsMatrices(map<string, Matrix4x4*>& matrices, vector<FlattenedNode>& nodeList, const map<string, Node*>& nodes, Matrix4x4* parentTransformationsMatrix = nullptr, AnimationState* animationState = nullptr);
113
114 /**
115 * Update node list
116 * @param nodeList flattened node list
117 * @param nodeIdx node index
118 * @param nodes nodes
119 * @param animationState animation state
120 */
121 void updateNodeList(vector<FlattenedNode>& nodeList, int& nodeIdx, const map<string, Node*>& nodes, AnimationState* animationState = nullptr);
122
123 /**
124 * Update node list
125 * @param nodeList flattened node list
126 */
127 inline void updateNodeList(vector<FlattenedNode>& nodeList) {
128 auto nodeIdx = 0;
129 updateNodeList(nodeList, nodeIdx, model->getSubNodes());
130 }
131
132 /**
133 * Update node lists
134 */
135 inline void updateNodeLists() {
136 for (auto& nodeList: nodeLists) updateNodeList(nodeList);
137 }
138
139 /**
140 * Calculates all nodes transformation matrices
141 * @param nodeList flattened node list
142 * @param parentTransformationsMatrix parent transformations matrix
143 * @param animationState animation state
144 */
145 void computeTransformationsMatrices(vector<FlattenedNode>& nodeList, const Matrix4x4 parentTransformationsMatrix, AnimationState* animationState);
146
147 /**
148 * Compute transformations for given animation state into given transformations matrices
149 * @param nodeList flattened node list
150 * @param instanceTransformationsMatrix object transformations matrix
151 * @param baseAnimation base animation
152 * @param contextIdx context index
153 * @param lastFrameAtTime time of last animation computation
154 * @param currentFrameAtTime time of current animation computation
155 */
156 void computeTransformations(vector<FlattenedNode>& nodeList, const Matrix4x4& instanceTransformationsMatrix, AnimationState& baseAnimation, int contextIdx, int64_t lastFrameAtTime, int64_t currentFrameAtTime);
157
158 /**
159 * Update skinning transformations matrices
160 */
162
163 /**
164 * Get skinning nodes matrices
165 * @param node node
166 * @return matrices
167 */
168 map<string, Matrix4x4*>* getSkinningNodesMatrices(Node* node);
169
170public:
171
172 /**
173 * Sets up a base animation to play
174 * @param id id
175 * @param speed speed whereas 1.0 is default speed
176 */
177 void setAnimation(const string& id, float speed = 1.0f);
178
179 /**
180 * Set up animation speed
181 * @param speed speed whereas 1.0 is default speed
182 */
183 void setAnimationSpeed(float speed);
184
185 /**
186 * Overlays a animation above the base animation
187 * @param id id
188 */
189 void addOverlayAnimation(const string& id);
190
191 /**
192 * Removes a overlay animation
193 * @param id id
194 */
195 void removeOverlayAnimation(const string& id);
196
197 /**
198 * Removes all finished overlay animations
199 */
201
202 /**
203 * Removes all overlay animations
204 */
206
207 /**
208 * @return active animation setup id
209 */
210 const string getAnimation();
211
212 /**
213 * Returns current base animation time
214 * @return 0.0 <= time <= 1.0
215 */
216 float getAnimationTime();
217
218 /**
219 * Returns if there is currently running a overlay animation with given id
220 * @param id id
221 * @return animation is running
222 */
223 bool hasOverlayAnimation(const string& id);
224
225 /**
226 * Returns current overlay animation time
227 * @param id id
228 * @return 0.0 <= time <= 1.0
229 */
230 float getOverlayAnimationTime(const string& id);
231
232 /**
233 * Returns transformation matrix for given node
234 * @param id node id
235 * @return transformation matrix or identity matrix if not found
236 */
237 const Matrix4x4 getNodeTransformationsMatrix(const string& id);
238
239 /**
240 * Set transformation matrix for given node
241 * @param id node id
242 * @param matrix transformation matrix
243 */
244 void setNodeTransformationsMatrix(const string& id, const Matrix4x4& matrix);
245
246 /**
247 * Unset transformation matrix for given node
248 * @param id node id
249 */
250 void unsetNodeTransformationsMatrix(const string& id);
251
252 /**
253 * Pre render step, computes transformations
254 * @param contextIdx context index
255 * @param objectTransformationsMatrix object transformations matrix
256 * @param lastFrameAtTime time of last animation computation
257 * @param currentFrameAtTime time of current animation computation
258 */
259 void computeTransformations(int contextIdx, const Matrix4x4& objectTransformationsMatrix, int64_t lastFrameAtTime, int64_t currentFrameAtTime);
260
261};
Engine main class.
Definition: Engine.h:122
Transformations which contain scale, rotations and translation.
Joint / Bone.
Definition: Joint.h:19
Representation of a 3d model.
Definition: Model.h:32
map< string, Node * > & getSubNodes()
Returns object's sub nodes.
Definition: Model.h:194
Model node.
Definition: Node.h:31
void setAnimation(const string &id, float speed=1.0f)
Sets up a base animation to play.
void createTransformationsMatrices(map< string, Matrix4x4 * > &matrices, vector< FlattenedNode > &nodeList, const map< string, Node * > &nodes, Matrix4x4 *parentTransformationsMatrix=nullptr, AnimationState *animationState=nullptr)
Creates all nodes transformation matrices.
void updateNodeList(vector< FlattenedNode > &nodeList, int &nodeIdx, const map< string, Node * > &nodes, AnimationState *animationState=nullptr)
Update node list.
void unsetNodeTransformationsMatrix(const string &id)
Unset transformation matrix for given node.
map< string, Matrix4x4 * > * getSkinningNodesMatrices(Node *node)
Get skinning nodes matrices.
void addOverlayAnimation(const string &id)
Overlays a animation above the base animation.
Engine::AnimationProcessingTarget animationProcessingTarget
float getOverlayAnimationTime(const string &id)
Returns current overlay animation time.
void removeOverlayAnimation(const string &id)
Removes a overlay animation.
bool hasOverlayAnimation(const string &id)
Returns if there is currently running a overlay animation with given id.
vector< vector< NodeSkinningJoint > > skinningNodesNodeSkinningJoints
void updateNodeList(vector< FlattenedNode > &nodeList)
Update node list.
map< string, AnimationState * > overlayAnimationsByJointId
void updateSkinningTransformationsMatrices()
Update skinning transformations matrices.
void setNodeTransformationsMatrix(const string &id, const Matrix4x4 &matrix)
Set transformation matrix for given node.
const Matrix4x4 getNodeTransformationsMatrix(const string &id)
Returns transformation matrix for given node.
void computeTransformationsMatrices(vector< FlattenedNode > &nodeList, const Matrix4x4 parentTransformationsMatrix, AnimationState *animationState)
Calculates all nodes transformation matrices.
void setAnimationSpeed(float speed)
Set up animation speed.
void removeOverlayAnimations()
Removes all overlay animations.
void removeOverlayAnimationsFinished()
Removes all finished overlay animations.
Object3DAnimation(Model *model, Engine::AnimationProcessingTarget animationProcessingTarget)
Public constructor.
int32_t determineSkinnedNodeCount(const map< string, Node * > &nodes)
Determine skinned node count.
float getAnimationTime()
Returns current base animation time.
vector< map< string, Matrix4x4 * > > transformationsMatrices
int32_t determineSkinnedNodes(const map< string, Node * > &nodes, vector< Node * > &skinningNodes, int32_t idx)
Determine skinned nodes.
void computeTransformations(vector< FlattenedNode > &nodeList, const Matrix4x4 &instanceTransformationsMatrix, AnimationState &baseAnimation, int contextIdx, int64_t lastFrameAtTime, int64_t currentFrameAtTime)
Compute transformations for given animation state into given transformations matrices.
vector< map< string, Matrix4x4 * > > skinningNodesMatrices
Object 3d node specifically for rendering.
Definition: Object3DNode.h:39
4x4 3D Matrix class
Definition: Matrix4x4.h:24