TDME2 1.9.121
|
Model tools functions class. More...
#include <tdme/utilities/ModelTools.h>
Public Types | |
enum | VertexOrder { VERTEXORDER_CLOCKWISE , VERTEXORDER_COUNTERCLOCKWISE } |
Static Public Member Functions | |
static VertexOrder | determineVertexOrder (const vector< Vector3 > &vertices) |
Determines vertex order of face. More... | |
static Vector3 | computeNormal (const array< Vector3, 3 > &vertices) |
Computes face normal for given face vertices. More... | |
static array< Vector3, 3 > | computeNormals (const array< Vector3, 3 > &vertices) |
Computes face normals for given face vertices these normals will not be smooth. More... | |
static void | prepareForIndexedRendering (Model *model) |
Prepare for indexed rendering. More... | |
static void | setupJoints (Model *model) |
Set up joints for skinning nodes. More... | |
static void | fixAnimationLength (Model *model) |
Fix animation length. More... | |
static bool | hasDefaultAnimation (Model *model) |
Check default animation. More... | |
static void | createDefaultAnimation (Model *model, int32_t frames) |
Create default animation. More... | |
static Material * | cloneMaterial (const Material *material, const string &id=string()) |
Clone material. More... | |
static void | cloneNode (Node *sourceNode, Model *targetModel, Node *targetParentNode=nullptr, bool cloneMesh=true) |
Create model from source sub nodes into target sub nodes. More... | |
static void | partition (Model *model, const Transformations &transformations, map< string, Model * > &modelsByPartition, map< string, Vector3 > &modelsPosition) |
Partition model. More... | |
static void | shrinkToFit (Model *model) |
Shrink to fit. More... | |
static void | computeNormals (Model *model, ProgressCallback *progressCallback=nullptr) |
Compute normals. More... | |
static void | prepareForShader (Model *model, const string &shader) |
Prepare model for foliage shader. More... | |
static bool | isOptimizedModel (Model *model) |
static Model * | optimizeModel (Model *model, const string &texturePathName=string(), const vector< string > &excludeDiffuseTextureFileNamePatterns=vector< string >()) |
Optimizes model in terms of material / node reduction. More... | |
static void | createTangentsAndBitangents (Node *node) |
Create tangents and bitangents for given group. More... | |
Static Private Member Functions | |
static void | prepareForIndexedRendering (const map< string, Node * > &nodes) |
Prepares this node for indexed rendering. More... | |
static void | prepareForIndexedRendering (Skinning *skinning, const vector< int32_t > &vertexMapping, int32_t vertices) |
Maps original vertices to new vertice mapping. More... | |
static void | setJoint (Node *root) |
Sets up a node as joint taking all subnodes into account. More... | |
static void | fixAnimationLength (Node *root, int32_t frames) |
Fixes animation length as sometimes they are only given partially, which is not supported by engine. More... | |
static void | partitionNode (Node *sourceNode, map< string, Model * > &modelsByPartition, map< string, Vector3 > &modelsPosition, const Matrix4x4 &parentTransformationsMatrix) |
Partition sub nodes. More... | |
static void | shrinkToFit (Node *node) |
Shrink to fit node. More... | |
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. More... | |
static float | computeNormals (Node *node, ProgressCallback *progressCallback=nullptr, float incrementPerFace=0.0f, float progress=0.0f) |
Compute normals. More... | |
static int | determineFaceCount (Node *node) |
Compute face count. More... | |
static void | prepareForDefaultShader (Node *node) |
Prepare node for default shader. More... | |
static void | prepareForFoliageTreeShader (Node *node, const Matrix4x4 &parentTransformationsMatrix, const string &shader) |
Prepare node for foliage shader. More... | |
static void | prepareForWaterShader (Node *node, const Matrix4x4 &parentTransformationsMatrix) |
Prepare node for water shader. More... | |
static void | checkForOptimization (Node *node, map< string, int > &materialUseCount, const vector< string > &excludeDiffuseTextureFileNamePatterns) |
Check for optimization. More... | |
static void | prepareForOptimization (Node *node, const Matrix4x4 &parentTransformationsMatrix) |
Prepare for optimization. More... | |
static Texture * | createAtlasTexture (const string &id, map< int, Texture * > &textureAtlasTextures) |
Create atlas texture. More... | |
static void | optimizeNode (Node *sourceNode, Model *targetModel, int diffuseTextureAtlasSize, const map< string, int > &diffuseTextureAtlasIndices, const vector< string > &excludeDiffuseTextureFileNamePatterns) |
Prepare for optimization. More... | |
Model tools functions class.
Definition at line 37 of file ModelTools.h.
enum VertexOrder |
Enumerator | |
---|---|
VERTEXORDER_CLOCKWISE | |
VERTEXORDER_COUNTERCLOCKWISE |
Definition at line 41 of file ModelTools.h.
|
staticprivate |
Check for optimization.
node | node |
materialUseCount | material use count |
excludeDiffuseTextureFileNamePatterns | exclude diffuse texture file name patterns |
Definition at line 825 of file ModelTools.cpp.
Clone material.
material | material |
id | new id to use |
Definition at line 280 of file ModelTools.cpp.
|
static |
Create model from source sub nodes into target sub nodes.
sourceNode | source node |
targetModel | target model |
targetParentNode | target parent node |
cloneMesh | clone mesh |
Definition at line 321 of file ModelTools.cpp.
Computes face normal for given face vertices.
vertices | face vertices |
Definition at line 55 of file ModelTools.h.
Computes face normals for given face vertices these normals will not be smooth.
vertices | face vertices |
Definition at line 78 of file ModelTools.h.
|
static |
|
staticprivate |
|
staticprivate |
Create atlas texture.
id | id |
textureAtlasTextures | texture atlas textures |
Definition at line 1094 of file ModelTools.cpp.
|
static |
Create default animation.
model | model |
frames | frames |
Definition at line 262 of file ModelTools.cpp.
|
static |
Create tangents and bitangents for given group.
node | node |
Definition at line 1345 of file ModelTools.cpp.
|
staticprivate |
|
static |
Determines vertex order of face.
vertices | vertices |
Definition at line 68 of file ModelTools.cpp.
|
static |
|
staticprivate |
Fixes animation length as sometimes they are only given partially, which is not supported by engine.
root | node |
frames | frames |
Definition at line 234 of file ModelTools.cpp.
|
static |
Check default animation.
model | model |
Definition at line 258 of file ModelTools.cpp.
|
inlinestaticprivate |
Find all faces that include vertex and compute the avarage normal.
node | node |
vertex | vertex |
normals | normals |
normal | normal |
Definition at line 204 of file ModelTools.h.
|
static |
Definition at line 1156 of file ModelTools.cpp.
|
static |
Optimizes model in terms of material / node reduction.
model | model |
texturePathName | texturePathName |
excludeDiffuseTextureFileNamePatterns | exclude diffuse texture file name patterns |
Definition at line 1160 of file ModelTools.cpp.
|
staticprivate |
Prepare for optimization.
sourceNode | source node |
targetModel | target model |
diffuseTextureAtlasSize | diffuse texture atlas size |
diffuseTextureAtlasIndices | diffuse texture atlas indices |
excludeDiffuseTextureFileNamePatterns | exclude diffuse texture file name patterns |
Definition at line 904 of file ModelTools.cpp.
|
static |
Partition model.
model | model |
transformations | transformations |
modelsByPartition | models by partition |
modelsPosition | models position |
Definition at line 599 of file ModelTools.cpp.
|
staticprivate |
Partition sub nodes.
sourceNode | source node to partition |
modelsByPartition | models by partition |
modelsPosition | models position |
parentTransformationsMatrix | parent transformations matrix |
Definition at line 367 of file ModelTools.cpp.
|
staticprivate |
|
staticprivate |
Prepare node for foliage shader.
node | node |
parentTransformationsMatrix | parent transformations matrix |
shader | shader |
Definition at line 740 of file ModelTools.cpp.
|
staticprivate |
Prepares this node for indexed rendering.
nodes | nodes |
Definition at line 89 of file ModelTools.cpp.
|
static |
|
staticprivate |
Maps original vertices to new vertice mapping.
skinning | skinning |
vertexMapping | vertice mapping / new vertex index to old vertex index |
vertices | vertice count |
Definition at line 178 of file ModelTools.cpp.
|
staticprivate |
Prepare for optimization.
node | node |
parentTransformationsMatrix | parent transformations matrix |
materialUseCount | material use count |
Definition at line 854 of file ModelTools.cpp.
|
static |
Prepare model for foliage shader.
model | model |
shader | shader |
Definition at line 717 of file ModelTools.cpp.
|
staticprivate |
Prepare node for water shader.
node | node |
parentTransformationsMatrix | parent transformations matrix |
Definition at line 785 of file ModelTools.cpp.
|
staticprivate |
Sets up a node as joint taking all subnodes into account.
root | node |
Definition at line 213 of file ModelTools.cpp.
|
static |
Set up joints for skinning nodes.
model | model |
Definition at line 193 of file ModelTools.cpp.
|
static |
|
staticprivate |