TDME2 1.9.121
ModelTools.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <map>
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
16#include <tdme/math/fwd-tdme.h>
17#include <tdme/math/Vector3.h>
19
20using std::array;
21using std::map;
22using std::string;
23using std::vector;
24
32
33/**
34 * Model tools functions class
35 * @author Andreas Drewke
36 */
38{
39
40public:
42
43 /**
44 * Determines vertex order of face
45 * @param vertices vertices
46 * @return vertex order
47 */
48 static VertexOrder determineVertexOrder(const vector<Vector3>& vertices);
49
50 /**
51 * Computes face normal for given face vertices
52 * @param vertices face vertices
53 * @return computed face normal
54 */
55 inline static Vector3 computeNormal(const array<Vector3,3>& vertices) {
56 // face normal
57 auto normal = Vector3::computeCrossProduct(
58 (vertices)[1].clone().sub((vertices)[0]),
59 (vertices)[2].clone().sub((vertices)[0])
60 );
61 // check if zero?
62 if (normal.computeLengthSquared() < Math::EPSILON * Math::EPSILON) {
63 // take up vector
64 normal.set(0.0f, 1.0f, 0.0f);
65 } else {
66 // otherwise normalize
67 normal.normalize();
68 }
69 return normal;
70 }
71
72 /**
73 * Computes face normals for given face vertices
74 * these normals will not be smooth
75 * @param vertices face vertices
76 * @return normals computed face normals
77 */
78 static array<Vector3,3> computeNormals(const array<Vector3,3>& vertices) {
79 // face normal
80 auto normal = computeNormal(vertices);
81
82 // compute vertex normal
83 array<Vector3,3> normals;
84 for (auto i = 0; i < vertices.size(); i++) {
85 normals[i].set(normal);
86 }
87
88 //
89 return normals;
90 }
91
92 /**
93 * Prepare for indexed rendering
94 * @param model model
95 */
96 static void prepareForIndexedRendering(Model* model);
97
98private:
99
100 /**
101 * Prepares this node for indexed rendering
102 * @param nodes nodes
103 */
104 static void prepareForIndexedRendering(const map<string, Node*>& nodes);
105
106 /**
107 * Maps original vertices to new vertice mapping
108 * @param skinning skinning
109 * @param vertexMapping vertice mapping / new vertex index to old vertex index
110 * @param vertices vertice count
111 */
112 static void prepareForIndexedRendering(Skinning* skinning, const vector<int32_t>& vertexMapping, int32_t vertices);
113
114public:
115
116 /**
117 * Set up joints for skinning nodes
118 * @param model model
119 */
120 static void setupJoints(Model* model);
121
122private:
123
124 /**
125 * Sets up a node as joint taking all subnodes into account
126 * @param root node
127 */
128 static void setJoint(Node* root);
129
130public:
131
132 /**
133 * Fix animation length
134 * @param model model
135 */
136 static void fixAnimationLength(Model* model);
137
138private:
139
140 /**
141 * Fixes animation length as sometimes they are only given partially, which is not supported by engine
142 * @param root node
143 * @param frames frames
144 */
145 static void fixAnimationLength(Node* root, int32_t frames);
146
147public:
148
149 /**
150 * Check default animation
151 * @param model model
152 * @return if animation exists
153 */
154 static bool hasDefaultAnimation(Model* model);
155
156 /**
157 * Create default animation
158 * @param model model
159 * @param frames frames
160 */
161 static void createDefaultAnimation(Model* model, int32_t frames);
162
163 /**
164 * Clone material
165 * @param material material
166 * @param id new id to use
167 * @return material
168 */
169 static Material* cloneMaterial(const Material* material, const string& id = string());
170
171 /**
172 * Create model from source sub nodes into target sub nodes
173 * @param sourceNode source node
174 * @param targetModel target model
175 * @param targetParentNode target parent node
176 * @param cloneMesh clone mesh
177 */
178 static void cloneNode(Node* sourceNode, Model* targetModel, Node* targetParentNode = nullptr, bool cloneMesh = true);
179
180private:
181
182 /**
183 * Partition sub nodes
184 * @param sourceNode source node to partition
185 * @param modelsByPartition models by partition
186 * @param modelsPosition models position
187 * @param parentTransformationsMatrix parent transformations matrix
188 */
189 static void partitionNode(Node* sourceNode, map<string, Model*>& modelsByPartition, map<string, Vector3>& modelsPosition, const Matrix4x4& parentTransformationsMatrix);
190
191 /**
192 * Shrink to fit node
193 * @param node node
194 */
195 static void shrinkToFit(Node* node);
196
197 /**
198 * Find all faces that include vertex and compute the avarage normal
199 * @param node node
200 * @param vertex vertex
201 * @param normals normals
202 * @param normal normal
203 */
204 inline static bool interpolateNormal(Node* node, const Vector3& vertex, const vector<Vector3>& normals, Vector3& normal) {
205 array<Vector3, 3> vertices;
206 auto normalCount = 0;
207 normal.set(0.0f, 0.0f, 0.0f);
208 for (auto& facesEntity: node->getFacesEntities()) {
209 for (auto& face: facesEntity.getFaces()) {
210 for (auto i = 0; i < vertices.size(); i++) {
211 if (vertex.equals(node->getVertices()[face.getVertexIndices()[i]]) == true) {
212 normal.add(normals[face.getNormalIndices()[0]]);
213 normalCount++;
214 break;
215 }
216 }
217 if (normalCount == 6) break;
218 }
219 if (normalCount == 6) break;
220 }
221 if (normalCount > 1) {
222 normal.normalize();
223 return true;
224 } else {
225 return false;
226 }
227 }
228
229 /**
230 * Compute normals
231 * @param node node
232 */
233 static float computeNormals(Node* node, ProgressCallback* progressCallback = nullptr, float incrementPerFace = 0.0f, float progress = 0.0f);
234
235 /**
236 * Compute face count
237 * @param node node
238 */
239 static int determineFaceCount(Node* node);
240
241public:
242 /**
243 * Partition model
244 * @param model model
245 * @param transformations transformations
246 * @param modelsByPartition models by partition
247 * @param modelsPosition models position
248 */
249 static void partition(Model* model, const Transformations& transformations, map<string, Model*>& modelsByPartition, map<string, Vector3>& modelsPosition);
250
251 /**
252 * Shrink to fit
253 * @param model model
254 */
255 static void shrinkToFit(Model* model);
256
257 /**
258 * Compute normals
259 * @param node node
260 */
261 static void computeNormals(Model* model, ProgressCallback* progressCallback = nullptr);
262
263 /**
264 * Prepare model for foliage shader
265 * @param model model
266 * @param shader shader
267 */
268 static void prepareForShader(Model* model, const string& shader);
269
270 /**
271 * @returns if model has been optimized
272 */
273 static bool isOptimizedModel(Model* model);
274
275 /**
276 * Optimizes model in terms of material / node reduction
277 * @param model model
278 * @param texturePathName texturePathName
279 * @param excludeDiffuseTextureFileNamePatterns exclude diffuse texture file name patterns
280 */
281 static Model* optimizeModel(Model* model, const string& texturePathName = string(), const vector<string>& excludeDiffuseTextureFileNamePatterns = vector<string>());
282
283 /**
284 * Create tangents and bitangents for given group
285 * @param node node
286 */
287 static void createTangentsAndBitangents(Node* node);
288
289private:
290
291 /**
292 * Prepare node for default shader
293 * @param node node
294 */
295 static void prepareForDefaultShader(Node* node);
296
297 /**
298 * Prepare node for foliage shader
299 * @param node node
300 * @param parentTransformationsMatrix parent transformations matrix
301 * @param shader shader
302 */
303 static void prepareForFoliageTreeShader(Node* node, const Matrix4x4& parentTransformationsMatrix, const string& shader);
304
305 /**
306 * Prepare node for water shader
307 * @param node node
308 * @param parentTransformationsMatrix parent transformations matrix
309 */
310 static void prepareForWaterShader(Node* node, const Matrix4x4& parentTransformationsMatrix);
311
312 /**
313 * Check for optimization
314 * @param node node
315 * @param materialUseCount material use count
316 * @param excludeDiffuseTextureFileNamePatterns exclude diffuse texture file name patterns
317 */
318 static void checkForOptimization(Node* node, map<string, int>& materialUseCount, const vector<string>& excludeDiffuseTextureFileNamePatterns);
319
320 /**
321 * Prepare for optimization
322 * @param node node
323 * @param parentTransformationsMatrix parent transformations matrix
324 * @param materialUseCount material use count
325 */
326 static void prepareForOptimization(Node* node, const Matrix4x4& parentTransformationsMatrix);
327
328 /**
329 * Create atlas texture
330 * @param id id
331 * @param textureAtlasTextures texture atlas textures
332 */
333 static Texture* createAtlasTexture(const string& id, map<int, Texture*>& textureAtlasTextures);
334
335 /**
336 * Prepare for optimization
337 * @param sourceNode source node
338 * @param targetModel target model
339 * @param diffuseTextureAtlasSize diffuse texture atlas size
340 * @param diffuseTextureAtlasIndices diffuse texture atlas indices
341 * @param excludeDiffuseTextureFileNamePatterns exclude diffuse texture file name patterns
342 */
343 static void optimizeNode(Node* sourceNode, Model* targetModel, int diffuseTextureAtlasSize, const map<string, int>& diffuseTextureAtlasIndices, const vector<string>& excludeDiffuseTextureFileNamePatterns);
344
345};
Transformations which contain scale, rotations and translation.
Represents a material.
Definition: Material.h:21
Representation of a 3d model.
Definition: Model.h:32
Model node.
Definition: Node.h:31
const vector< FacesEntity > & getFacesEntities() const
Definition: Node.h:256
const vector< Vector3 > & getVertices() const
Definition: Node.h:151
Skinning definition for nodes.
Definition: Skinning.h:27
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22
bool equals(const Vector3 &v) const
Compares this vector with given vector.
Definition: Vector3.h:381
Vector3 & normalize()
Normalize the vector.
Definition: Vector3.h:288
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Vector3 & add(const Vector3 &v)
Adds a vector.
Definition: Vector3.h:301
Model tools functions class.
Definition: ModelTools.h:38
static bool interpolateNormal(Node *node, const Vector3 &vertex, const vector< Vector3 > &normals, Vector3 &normal)
Find all faces that include vertex and compute the avarage normal.
Definition: ModelTools.h:204
static void shrinkToFit(Node *node)
Shrink to fit node.
Definition: ModelTools.cpp:617
static void createTangentsAndBitangents(Node *node)
Create tangents and bitangents for given group.
static void optimizeNode(Node *sourceNode, Model *targetModel, int diffuseTextureAtlasSize, const map< string, int > &diffuseTextureAtlasIndices, const vector< string > &excludeDiffuseTextureFileNamePatterns)
Prepare for optimization.
Definition: ModelTools.cpp:904
static void prepareForOptimization(Node *node, const Matrix4x4 &parentTransformationsMatrix)
Prepare for optimization.
Definition: ModelTools.cpp:854
static void createDefaultAnimation(Model *model, int32_t frames)
Create default animation.
Definition: ModelTools.cpp:262
static void prepareForDefaultShader(Node *node)
Prepare node for default shader.
Definition: ModelTools.cpp:732
static bool hasDefaultAnimation(Model *model)
Check default animation.
Definition: ModelTools.cpp:258
static void prepareForIndexedRendering(Model *model)
Prepare for indexed rendering.
Definition: ModelTools.cpp:84
static void checkForOptimization(Node *node, map< string, int > &materialUseCount, const vector< string > &excludeDiffuseTextureFileNamePatterns)
Check for optimization.
Definition: ModelTools.cpp:825
static void setupJoints(Model *model)
Set up joints for skinning nodes.
Definition: ModelTools.cpp:193
static void prepareForShader(Model *model, const string &shader)
Prepare model for foliage shader.
Definition: ModelTools.cpp:717
static Model * optimizeModel(Model *model, const string &texturePathName=string(), const vector< string > &excludeDiffuseTextureFileNamePatterns=vector< string >())
Optimizes model in terms of material / node reduction.
static int determineFaceCount(Node *node)
Compute face count.
Definition: ModelTools.cpp:708
static void prepareForFoliageTreeShader(Node *node, const Matrix4x4 &parentTransformationsMatrix, const string &shader)
Prepare node for foliage shader.
Definition: ModelTools.cpp:740
static Material * cloneMaterial(const Material *material, const string &id=string())
Clone material.
Definition: ModelTools.cpp:280
static array< Vector3, 3 > computeNormals(const array< Vector3, 3 > &vertices)
Computes face normals for given face vertices these normals will not be smooth.
Definition: ModelTools.h:78
static bool isOptimizedModel(Model *model)
static void fixAnimationLength(Model *model)
Fix animation length.
Definition: ModelTools.cpp:222
static Texture * createAtlasTexture(const string &id, map< int, Texture * > &textureAtlasTextures)
Create atlas texture.
static VertexOrder determineVertexOrder(const vector< Vector3 > &vertices)
Determines vertex order of face.
Definition: ModelTools.cpp:68
static void prepareForWaterShader(Node *node, const Matrix4x4 &parentTransformationsMatrix)
Prepare node for water shader.
Definition: ModelTools.cpp:785
static void setJoint(Node *root)
Sets up a node as joint taking all subnodes into account.
Definition: ModelTools.cpp:213
static void partitionNode(Node *sourceNode, map< string, Model * > &modelsByPartition, map< string, Vector3 > &modelsPosition, const Matrix4x4 &parentTransformationsMatrix)
Partition sub nodes.
Definition: ModelTools.cpp:367
static void cloneNode(Node *sourceNode, Model *targetModel, Node *targetParentNode=nullptr, bool cloneMesh=true)
Create model from source sub nodes into target sub nodes.
Definition: ModelTools.cpp:321
static void partition(Model *model, const Transformations &transformations, map< string, Model * > &modelsByPartition, map< string, Vector3 > &modelsPosition)
Partition model.
Definition: ModelTools.cpp:599
static Vector3 computeNormal(const array< Vector3, 3 > &vertices)
Computes face normal for given face vertices.
Definition: ModelTools.h:55