TDME2 1.9.121
Static Public Member Functions | Static Private Member Functions | Static Private Attributes | List of all members
DAEReader Class Referencefinal

Collada DAE model reader. More...

#include <tdme/engine/fileio/models/DAEReader.h>

Collaboration diagram for DAEReader:
Collaboration graph

Static Public Member Functions

static Modelread (const string &pathName, const string &fileName)
 Reads Collada DAE file. More...
 
static const vector< TiXmlElement * > getChildrenByTagName (TiXmlElement *parent, const char *name)
 Returns immediate children tags by tag name. More...
 
static const vector< TiXmlElement * > getChildren (TiXmlElement *parent)
 Returns immediate children tags. More...
 

Static Private Member Functions

static Model::AuthoringTool getAuthoringTool (TiXmlElement *xmlRoot)
 Get authoring tool. More...
 
static UpVectorgetUpVector (TiXmlElement *xmlRoot)
 Get Up vector. More...
 
static void setupModelImportRotationMatrix (TiXmlElement *xmlRoot, Model *model)
 Set up model import rotation matrix. More...
 
static void setupModelImportScaleMatrix (TiXmlElement *xmlRoot, Model *model)
 Set up model import scale matrix. More...
 
static NodereadVisualSceneNode (const string &pathName, Model *model, Node *parentNode, TiXmlElement *xmlRoot, TiXmlElement *xmlNode, float fps)
 Read a DAE visual scene node. More...
 
static NodereadNode (const string &pathName, Model *model, Node *parentNode, TiXmlElement *xmlRoot, TiXmlElement *xmlNode, float fps)
 Reads a DAE visual scene node node. More...
 
static NodereadVisualSceneInstanceController (const string &pathName, Model *model, Node *parentNode, TiXmlElement *xmlRoot, TiXmlElement *xmlNode)
 Reads a instance controller. More...
 
static void readGeometry (const string &pathName, Model *model, Node *node, TiXmlElement *xmlRoot, const string &xmlNodeId, const map< string, string > &materialSymbols)
 Reads a geometry. More...
 
static MaterialreadMaterial (const string &pathName, Model *model, TiXmlElement *xmlRoot, const string &xmlNodeId)
 Reads a material. More...
 
static const string makeFileNameRelative (const string &fileName)
 Make file name relative. More...
 
static const string getTextureFileNameById (TiXmlElement *xmlRoot, const string &xmlTextureId)
 Get texture file name by id. More...
 

Static Private Attributes

static STATIC_DLL_IMPEXT const Color4 BLENDER_AMBIENT_NONE
 
static constexpr float BLENDER_AMBIENT_FROM_DIFFUSE_SCALE { 0.7f }
 
static constexpr float BLENDER_DIFFUSE_SCALE { 0.8f }
 

Detailed Description

Collada DAE model reader.

Author
Andreas Drewke
Version
$Id$

Definition at line 39 of file DAEReader.h.

Member Function Documentation

◆ getAuthoringTool()

Model::AuthoringTool getAuthoringTool ( TiXmlElement xmlRoot)
staticprivate

Get authoring tool.

Parameters
xmlRootxml root
Returns
authoring tool

Definition at line 188 of file DAEReader.cpp.

◆ getChildren()

const vector< TiXmlElement * > getChildren ( TiXmlElement parent)
static

Returns immediate children tags.

Parameters
parentparent
Returns
elements

Definition at line 1291 of file DAEReader.cpp.

◆ getChildrenByTagName()

const vector< TiXmlElement * > getChildrenByTagName ( TiXmlElement parent,
const char *  name 
)
static

Returns immediate children tags by tag name.

Parameters
parentparent
namename
Returns
matching elements

Definition at line 1282 of file DAEReader.cpp.

◆ getTextureFileNameById()

const string getTextureFileNameById ( TiXmlElement xmlRoot,
const string &  xmlTextureId 
)
staticprivate

Get texture file name by id.

Parameters
xmlRootxml root
xmlTextureIdxml texture id
Returns
xml texture file name

Definition at line 1266 of file DAEReader.cpp.

◆ getUpVector()

UpVector * getUpVector ( TiXmlElement xmlRoot)
staticprivate

Get Up vector.

Parameters
xmlRootxml root
Returns
up vector
Exceptions
tdme::engine::fileio::models::ModelFileIOException

Definition at line 202 of file DAEReader.cpp.

◆ makeFileNameRelative()

const string makeFileNameRelative ( const string &  fileName)
staticprivate

Make file name relative.

Parameters
fileNamefile name
Returns
file name

Definition at line 1248 of file DAEReader.cpp.

◆ read()

Model * read ( const string &  pathName,
const string &  fileName 
)
static

Reads Collada DAE file.

Parameters
pathNamepath name
fileNamefile name
Exceptions
tdme::engine::fileio::models::ModelFileIOException
tdme::os::filesystem::FileSystemException
Returns
model instance

Definition at line 96 of file DAEReader.cpp.

◆ readGeometry()

void readGeometry ( const string &  pathName,
Model model,
Node node,
TiXmlElement xmlRoot,
const string &  xmlNodeId,
const map< string, string > &  materialSymbols 
)
staticprivate

Reads a geometry.

Parameters
pathNamepath name
modelmodel
nodenode
xmlRootxml root
xmlNodeIdxml node id
materialSymbolsmaterial symbols
Exceptions
tdme::engine::fileio::models::ModelFileIOException

Definition at line 697 of file DAEReader.cpp.

◆ readMaterial()

Material * readMaterial ( const string &  pathName,
Model model,
TiXmlElement xmlRoot,
const string &  xmlNodeId 
)
staticprivate

Reads a material.

Parameters
pathNamepath name
modelmodel
xmlRootxml root
xmlNodeIdxml node id
Returns
material

Definition at line 958 of file DAEReader.cpp.

◆ readNode()

Node * readNode ( const string &  pathName,
Model model,
Node parentNode,
TiXmlElement xmlRoot,
TiXmlElement xmlNode,
float  fps 
)
staticprivate

Reads a DAE visual scene node node.

Parameters
pathNamepath name
modelmodel
parentNodeparent node
xmlRootxml node
xmlNodexml root
fpsframes per seconds
Exceptions
tdme::engine::fileio::models::ModelFileIOException
Returns
node

Definition at line 268 of file DAEReader.cpp.

◆ readVisualSceneInstanceController()

Node * readVisualSceneInstanceController ( const string &  pathName,
Model model,
Node parentNode,
TiXmlElement xmlRoot,
TiXmlElement xmlNode 
)
staticprivate

Reads a instance controller.

Parameters
pathNamepath name
modelmodel
parentNodeparent node
xmlRootxml root
xmlNodexml node
Exceptions
tdme::engine::fileio::models::ModelFileIOException
Returns
Node
Exceptions
tdme::utilities::Exception

Definition at line 478 of file DAEReader.cpp.

◆ readVisualSceneNode()

Node * readVisualSceneNode ( const string &  pathName,
Model model,
Node parentNode,
TiXmlElement xmlRoot,
TiXmlElement xmlNode,
float  fps 
)
staticprivate

Read a DAE visual scene node.

Parameters
pathNamepath name
modelmodel
parentNodeparent node
xmlRootxml node
xmlNodexml root
fpsframes per second
Returns
node

Definition at line 258 of file DAEReader.cpp.

◆ setupModelImportRotationMatrix()

void setupModelImportRotationMatrix ( TiXmlElement xmlRoot,
Model model 
)
staticprivate

Set up model import rotation matrix.

Parameters
xmlRootxml root
modelmodel

Definition at line 224 of file DAEReader.cpp.

◆ setupModelImportScaleMatrix()

void setupModelImportScaleMatrix ( TiXmlElement xmlRoot,
Model model 
)
staticprivate

Set up model import scale matrix.

Parameters
xmlRootxml root
modelmodel

Definition at line 244 of file DAEReader.cpp.

Member Data Documentation

◆ BLENDER_AMBIENT_FROM_DIFFUSE_SCALE

constexpr float BLENDER_AMBIENT_FROM_DIFFUSE_SCALE { 0.7f }
staticconstexprprivate

Definition at line 44 of file DAEReader.h.

◆ BLENDER_AMBIENT_NONE

const Color4 BLENDER_AMBIENT_NONE
staticprivate

Definition at line 43 of file DAEReader.h.

◆ BLENDER_DIFFUSE_SCALE

constexpr float BLENDER_DIFFUSE_SCALE { 0.8f }
staticconstexprprivate

Definition at line 45 of file DAEReader.h.


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