TDME2 1.9.121
Public Types | Static Public Member Functions | Static Private Member Functions | List of all members
ModelTools Class Referencefinal

Model tools functions class. More...

#include <tdme/utilities/ModelTools.h>

Collaboration diagram for ModelTools:
Collaboration graph

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 MaterialcloneMaterial (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 ModeloptimizeModel (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 TexturecreateAtlasTexture (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...
 

Detailed Description

Model tools functions class.

Author
Andreas Drewke

Definition at line 37 of file ModelTools.h.

Member Enumeration Documentation

◆ VertexOrder

Enumerator
VERTEXORDER_CLOCKWISE 
VERTEXORDER_COUNTERCLOCKWISE 

Definition at line 41 of file ModelTools.h.

Member Function Documentation

◆ checkForOptimization()

void checkForOptimization ( Node node,
map< string, int > &  materialUseCount,
const vector< string > &  excludeDiffuseTextureFileNamePatterns 
)
staticprivate

Check for optimization.

Parameters
nodenode
materialUseCountmaterial use count
excludeDiffuseTextureFileNamePatternsexclude diffuse texture file name patterns

Definition at line 825 of file ModelTools.cpp.

◆ cloneMaterial()

Material * cloneMaterial ( const Material material,
const string &  id = string() 
)
static

Clone material.

Parameters
materialmaterial
idnew id to use
Returns
material

Definition at line 280 of file ModelTools.cpp.

◆ cloneNode()

void cloneNode ( Node sourceNode,
Model targetModel,
Node targetParentNode = nullptr,
bool  cloneMesh = true 
)
static

Create model from source sub nodes into target sub nodes.

Parameters
sourceNodesource node
targetModeltarget model
targetParentNodetarget parent node
cloneMeshclone mesh

Definition at line 321 of file ModelTools.cpp.

◆ computeNormal()

static Vector3 computeNormal ( const array< Vector3, 3 > &  vertices)
inlinestatic

Computes face normal for given face vertices.

Parameters
verticesface vertices
Returns
computed face normal

Definition at line 55 of file ModelTools.h.

◆ computeNormals() [1/3]

static array< Vector3, 3 > computeNormals ( const array< Vector3, 3 > &  vertices)
inlinestatic

Computes face normals for given face vertices these normals will not be smooth.

Parameters
verticesface vertices
Returns
normals computed face normals

Definition at line 78 of file ModelTools.h.

◆ computeNormals() [2/3]

void computeNormals ( Model model,
ProgressCallback progressCallback = nullptr 
)
static

Compute normals.

Parameters
nodenode

Definition at line 693 of file ModelTools.cpp.

◆ computeNormals() [3/3]

float computeNormals ( Node node,
ProgressCallback progressCallback = nullptr,
float  incrementPerFace = 0.0f,
float  progress = 0.0f 
)
staticprivate

Compute normals.

Parameters
nodenode

Definition at line 644 of file ModelTools.cpp.

◆ createAtlasTexture()

Texture * createAtlasTexture ( const string &  id,
map< int, Texture * > &  textureAtlasTextures 
)
staticprivate

Create atlas texture.

Parameters
idid
textureAtlasTexturestexture atlas textures

Definition at line 1094 of file ModelTools.cpp.

◆ createDefaultAnimation()

void createDefaultAnimation ( Model model,
int32_t  frames 
)
static

Create default animation.

Parameters
modelmodel
framesframes

Definition at line 262 of file ModelTools.cpp.

◆ createTangentsAndBitangents()

void createTangentsAndBitangents ( Node node)
static

Create tangents and bitangents for given group.

Parameters
nodenode

Definition at line 1345 of file ModelTools.cpp.

◆ determineFaceCount()

int determineFaceCount ( Node node)
staticprivate

Compute face count.

Parameters
nodenode

Definition at line 708 of file ModelTools.cpp.

◆ determineVertexOrder()

ModelTools::VertexOrder determineVertexOrder ( const vector< Vector3 > &  vertices)
static

Determines vertex order of face.

Parameters
verticesvertices
Returns
vertex order

Definition at line 68 of file ModelTools.cpp.

◆ fixAnimationLength() [1/2]

void fixAnimationLength ( Model model)
static

Fix animation length.

Parameters
modelmodel

Definition at line 222 of file ModelTools.cpp.

◆ fixAnimationLength() [2/2]

void fixAnimationLength ( Node root,
int32_t  frames 
)
staticprivate

Fixes animation length as sometimes they are only given partially, which is not supported by engine.

Parameters
rootnode
framesframes

Definition at line 234 of file ModelTools.cpp.

◆ hasDefaultAnimation()

bool hasDefaultAnimation ( Model model)
static

Check default animation.

Parameters
modelmodel
Returns
if animation exists

Definition at line 258 of file ModelTools.cpp.

◆ interpolateNormal()

static bool interpolateNormal ( Node node,
const Vector3 vertex,
const vector< Vector3 > &  normals,
Vector3 normal 
)
inlinestaticprivate

Find all faces that include vertex and compute the avarage normal.

Parameters
nodenode
vertexvertex
normalsnormals
normalnormal

Definition at line 204 of file ModelTools.h.

◆ isOptimizedModel()

bool isOptimizedModel ( Model model)
static
Returns
if model has been optimized

Definition at line 1156 of file ModelTools.cpp.

◆ optimizeModel()

Model * optimizeModel ( Model model,
const string &  texturePathName = string(),
const vector< string > &  excludeDiffuseTextureFileNamePatterns = vector<string>() 
)
static

Optimizes model in terms of material / node reduction.

Parameters
modelmodel
texturePathNametexturePathName
excludeDiffuseTextureFileNamePatternsexclude diffuse texture file name patterns

Definition at line 1160 of file ModelTools.cpp.

◆ optimizeNode()

void optimizeNode ( Node sourceNode,
Model targetModel,
int  diffuseTextureAtlasSize,
const map< string, int > &  diffuseTextureAtlasIndices,
const vector< string > &  excludeDiffuseTextureFileNamePatterns 
)
staticprivate

Prepare for optimization.

Parameters
sourceNodesource node
targetModeltarget model
diffuseTextureAtlasSizediffuse texture atlas size
diffuseTextureAtlasIndicesdiffuse texture atlas indices
excludeDiffuseTextureFileNamePatternsexclude diffuse texture file name patterns

Definition at line 904 of file ModelTools.cpp.

◆ partition()

void partition ( Model model,
const Transformations transformations,
map< string, Model * > &  modelsByPartition,
map< string, Vector3 > &  modelsPosition 
)
static

Partition model.

Parameters
modelmodel
transformationstransformations
modelsByPartitionmodels by partition
modelsPositionmodels position

Definition at line 599 of file ModelTools.cpp.

◆ partitionNode()

void partitionNode ( Node sourceNode,
map< string, Model * > &  modelsByPartition,
map< string, Vector3 > &  modelsPosition,
const Matrix4x4 parentTransformationsMatrix 
)
staticprivate

Partition sub nodes.

Parameters
sourceNodesource node to partition
modelsByPartitionmodels by partition
modelsPositionmodels position
parentTransformationsMatrixparent transformations matrix

Definition at line 367 of file ModelTools.cpp.

◆ prepareForDefaultShader()

void prepareForDefaultShader ( Node node)
staticprivate

Prepare node for default shader.

Parameters
nodenode

Definition at line 732 of file ModelTools.cpp.

◆ prepareForFoliageTreeShader()

void prepareForFoliageTreeShader ( Node node,
const Matrix4x4 parentTransformationsMatrix,
const string &  shader 
)
staticprivate

Prepare node for foliage shader.

Parameters
nodenode
parentTransformationsMatrixparent transformations matrix
shadershader

Definition at line 740 of file ModelTools.cpp.

◆ prepareForIndexedRendering() [1/3]

void prepareForIndexedRendering ( const map< string, Node * > &  nodes)
staticprivate

Prepares this node for indexed rendering.

Parameters
nodesnodes

Definition at line 89 of file ModelTools.cpp.

◆ prepareForIndexedRendering() [2/3]

void prepareForIndexedRendering ( Model model)
static

Prepare for indexed rendering.

Parameters
modelmodel

Definition at line 84 of file ModelTools.cpp.

◆ prepareForIndexedRendering() [3/3]

void prepareForIndexedRendering ( Skinning skinning,
const vector< int32_t > &  vertexMapping,
int32_t  vertices 
)
staticprivate

Maps original vertices to new vertice mapping.

Parameters
skinningskinning
vertexMappingvertice mapping / new vertex index to old vertex index
verticesvertice count

Definition at line 178 of file ModelTools.cpp.

◆ prepareForOptimization()

void prepareForOptimization ( Node node,
const Matrix4x4 parentTransformationsMatrix 
)
staticprivate

Prepare for optimization.

Parameters
nodenode
parentTransformationsMatrixparent transformations matrix
materialUseCountmaterial use count

Definition at line 854 of file ModelTools.cpp.

◆ prepareForShader()

void prepareForShader ( Model model,
const string &  shader 
)
static

Prepare model for foliage shader.

Parameters
modelmodel
shadershader

Definition at line 717 of file ModelTools.cpp.

◆ prepareForWaterShader()

void prepareForWaterShader ( Node node,
const Matrix4x4 parentTransformationsMatrix 
)
staticprivate

Prepare node for water shader.

Parameters
nodenode
parentTransformationsMatrixparent transformations matrix

Definition at line 785 of file ModelTools.cpp.

◆ setJoint()

void setJoint ( Node root)
staticprivate

Sets up a node as joint taking all subnodes into account.

Parameters
rootnode

Definition at line 213 of file ModelTools.cpp.

◆ setupJoints()

void setupJoints ( Model model)
static

Set up joints for skinning nodes.

Parameters
modelmodel

Definition at line 193 of file ModelTools.cpp.

◆ shrinkToFit() [1/2]

void shrinkToFit ( Model model)
static

Shrink to fit.

Parameters
modelmodel

Definition at line 638 of file ModelTools.cpp.

◆ shrinkToFit() [2/2]

void shrinkToFit ( Node node)
staticprivate

Shrink to fit node.

Parameters
nodenode

Definition at line 617 of file ModelTools.cpp.


The documentation for this class was generated from the following files: