TDME2 1.9.121
Node.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>
10#include <tdme/math/Matrix4x4.h>
12
13using std::map;
14using std::string;
15using std::vector;
16
24
25/**
26 * Model node
27 * @author andreas.drewke
28 * @version $Id$
29 */
31{
32private:
35 string id;
36 string name;
37 bool joint;
39 vector<Vector3> vertices;
40 vector<Vector3> normals;
41 vector<TextureCoordinate> textureCoordinates;
42 vector<Vector3> tangents;
43 vector<Vector3> bitangents;
46 vector<FacesEntity> facesEntities;
47 vector<Vector3> origins;
48 map<string, Node*> subNodes;
49
52public:
53 /**
54 * Public constructor
55 * @param model model
56 * @param parentNode parent node
57 * @param id id
58 * @param name name
59 */
60 Node(Model* model, Node* parentNode, const string& id, const string& name);
61
62 /**
63 * Destructor
64 */
65 ~Node();
66
67 /**
68 * @return model
69 */
70 inline Model* getModel() {
71 return model;
72 }
73
74 /**
75 * @return parent node
76 */
77 inline Node* getParentNode() {
78 return parentNode;
79 }
80
81 /**
82 * Returns id
83 * @return id
84 */
85 inline const string& getId() {
86 return id;
87 }
88
89 /**
90 * @return node's name
91 */
92 inline const string& getName() {
93 return name;
94 }
95
96 /**
97 * @return if this node is empty
98 */
99 inline bool isEmpty() const {
100 return vertices.empty() == true;
101 }
102
103 /**
104 * @return if this node is a joint/bone
105 */
106 inline bool isJoint() const {
107 return joint;
108 }
109
110 /**
111 * Sets up if this node is a joint or not
112 * @param isJoint isbone
113 */
114 inline void setJoint(bool isJoint) {
115 joint = isJoint;
116 }
117
118 /**
119 * @return transformations matrix related to parent node
120 */
121 inline const Matrix4x4& getTransformationsMatrix() const {
123 }
124
125 /**
126 * @return transformations matrix related to parent node
127 */
129 this->transformationsMatrix = transformationsMatrix;
130 }
131
132 /**
133 * @return if vertices or normals have been changed
134 */
135 inline bool hasUpdate() {
136 return verticesUpdated == true || normalsUpdated == true;
137 }
138
139 /**
140 * @return if vertices have been updated
141 */
142 inline bool hasVerticesUpdate() {
143 auto updated = verticesUpdated;
144 verticesUpdated = false;
145 return updated;
146 }
147
148 /**
149 * @return vertices
150 */
151 inline const vector<Vector3>& getVertices() const {
152 return vertices;
153 }
154
155 /**
156 * Set vertices
157 * @param vertices vertices
158 */
159 void setVertices(const vector<Vector3>& vertices);
160
161 /**
162 * @return if normals have been updated
163 */
164 inline bool hasNormalsUpdate() {
165 auto updated = normalsUpdated;
166 normalsUpdated = false;
167 return updated;
168 }
169
170 /**
171 * @return normals
172 */
173 inline const vector<Vector3>& getNormals() const {
174 return normals;
175 }
176
177 /**
178 * Set normals
179 * @param normals normals
180 */
181 void setNormals(const vector<Vector3>& normals);
182
183 /**
184 * @return texture coordinates or null (optional)
185 */
186 inline const vector<TextureCoordinate>& getTextureCoordinates() const {
187 return textureCoordinates;
188 }
189
190 /**
191 * Set texture coordinates
192 * @param textureCoordinates texture coordinates
193 */
194 void setTextureCoordinates(const vector<TextureCoordinate>& textureCoordinates);
195
196 /**
197 * @return tangents
198 */
199 inline const vector<Vector3>& getTangents() const {
200 return tangents;
201 }
202
203 /**
204 * Set tangents
205 * @param tangents tangents
206 */
207 void setTangents(const vector<Vector3>& tangents);
208
209 /**
210 * @return bitangents
211 */
212 inline const vector<Vector3>& getBitangents() const {
213 return bitangents;
214 }
215
216 /**
217 * Set bitangents
218 * @param bitangents bitangents
219 */
220 void setBitangents(const vector<Vector3>& bitangents);
221
222 /**
223 * @return animation
224 */
226 return animation;
227 }
228
229 /**
230 * Sets animation object
231 * @param animation animation
232 */
234
235 /**
236 * @return skinning or null
237 */
239 return skinning;
240 }
241
242 /**
243 * Sets skinning object
244 * @param skinning skinning
245 */
247
248 /**
249 * @return number of faces in node
250 */
251 int32_t getFaceCount() const;
252
253 /**
254 * @return faces entities
255 */
256 inline const vector<FacesEntity>& getFacesEntities() const {
257 return facesEntities;
258 }
259
260 /**
261 * Find faces entity by id
262 * @param id id
263 * @return faces entity
264 */
265 FacesEntity* getFacesEntity(const string& id);
266
267 /**
268 * Set up faces entities
269 * @param facesEntities faces entity
270 */
271 void setFacesEntities(const vector<FacesEntity>& facesEntities);
272
273 /**
274 * @return origins
275 */
276 inline const vector<Vector3>& getOrigins() const {
277 return origins;
278 }
279
280 /**
281 * Set origins
282 * @param origins render node object origins
283 */
284 void setOrigins(const vector<Vector3>& origins);
285
286 /**
287 * @return sub sub nodes of this node
288 */
289 inline map<string, Node*>& getSubNodes() {
290 return subNodes;
291 }
292
293 /**
294 * Returns a sub node by id
295 * @param nodeId nodeId
296 * @return sub node or null
297 */
298 Node* getSubNodeById(const string& nodeId);
299};
Node faces entity A node can have multiple entities containing faces and a applied material.
Definition: FacesEntity.h:28
Representation of a 3d model.
Definition: Model.h:32
Model node.
Definition: Node.h:31
int32_t getFaceCount() const
Definition: Node.cpp:109
bool hasVerticesUpdate()
Definition: Node.h:142
Model * getModel()
Definition: Node.h:70
const vector< Vector3 > & getTangents() const
Definition: Node.h:199
const vector< Vector3 > & getOrigins() const
Definition: Node.h:276
Node * getSubNodeById(const string &nodeId)
Returns a sub node by id.
Definition: Node.cpp:142
const Matrix4x4 & getTransformationsMatrix() const
Definition: Node.h:121
Node * getParentNode()
Definition: Node.h:77
Skinning * skinning
Definition: Node.h:45
FacesEntity * getFacesEntity(const string &id)
Find faces entity by id.
Definition: Node.cpp:118
void setAnimation(Animation *animation)
Sets animation object.
Definition: Node.cpp:97
void setTextureCoordinates(const vector< TextureCoordinate > &textureCoordinates)
Set texture coordinates.
Definition: Node.cpp:70
vector< Vector3 > bitangents
Definition: Node.h:43
void setOrigins(const vector< Vector3 > &origins)
Set origins.
Definition: Node.cpp:134
void setVertices(const vector< Vector3 > &vertices)
Set vertices.
Definition: Node.cpp:50
const vector< Vector3 > & getBitangents() const
Definition: Node.h:212
Skinning * getSkinning()
Definition: Node.h:238
void setFacesEntities(const vector< FacesEntity > &facesEntities)
Set up faces entities.
Definition: Node.cpp:125
void setSkinning(Skinning *skinning)
Sets skinning object.
Definition: Node.cpp:102
bool isJoint() const
Definition: Node.h:106
~Node()
Destructor.
Definition: Node.cpp:45
vector< FacesEntity > facesEntities
Definition: Node.h:46
const vector< TextureCoordinate > & getTextureCoordinates() const
Definition: Node.h:186
void setJoint(bool isJoint)
Sets up if this node is a joint or not.
Definition: Node.h:114
const string & getId()
Returns id.
Definition: Node.h:85
const vector< Vector3 > & getNormals() const
Definition: Node.h:173
void setTransformationsMatrix(const Matrix4x4 &transformationsMatrix)
Definition: Node.h:128
map< string, Node * > subNodes
Definition: Node.h:48
vector< Vector3 > tangents
Definition: Node.h:42
const string & getName()
Definition: Node.h:92
vector< Vector3 > normals
Definition: Node.h:40
Matrix4x4 transformationsMatrix
Definition: Node.h:38
Animation * getAnimation()
Definition: Node.h:225
vector< Vector3 > origins
Definition: Node.h:47
vector< Vector3 > vertices
Definition: Node.h:39
vector< TextureCoordinate > textureCoordinates
Definition: Node.h:41
bool isEmpty() const
Definition: Node.h:99
const vector< FacesEntity > & getFacesEntities() const
Definition: Node.h:256
void setNormals(const vector< Vector3 > &normals)
Set normals.
Definition: Node.cpp:60
const vector< Vector3 > & getVertices() const
Definition: Node.h:151
Animation * animation
Definition: Node.h:44
map< string, Node * > & getSubNodes()
Definition: Node.h:289
void setBitangents(const vector< Vector3 > &bitangents)
Set bitangents.
Definition: Node.cpp:88
Node(Model *model, Node *parentNode, const string &id, const string &name)
Public constructor.
Definition: Node.cpp:31
void setTangents(const vector< Vector3 > &tangents)
Set tangents.
Definition: Node.cpp:79
Skinning definition for nodes.
Definition: Skinning.h:27
Class representing texture UV coordinates data.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22