TDME2 1.9.121
DAEReader.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>
14
17
18#include <ext/tinyxml/tinyxml.h>
19
20using std::map;
21using std::string;
22using std::vector;
23
31
33
34/**
35 * Collada DAE model reader
36 * @author Andreas Drewke
37 * @version $Id$
38 */
40{
41
42private:
44 static constexpr float BLENDER_AMBIENT_FROM_DIFFUSE_SCALE { 0.7f };
45 static constexpr float BLENDER_DIFFUSE_SCALE { 0.8f };
46
47public:
48
49 /**
50 * Reads Collada DAE file
51 * @param pathName path name
52 * @param fileName file name
53 * @throws tdme::engine::fileio::models::ModelFileIOException
54 * @throws tdme::os::filesystem::FileSystemException
55 * @return model instance
56 */
57 static Model* read(const string& pathName, const string& fileName);
58
59private:
60
61 /**
62 * Get authoring tool
63 * @param xmlRoot xml root
64 * @return authoring tool
65 */
66 static Model::AuthoringTool getAuthoringTool(TiXmlElement* xmlRoot);
67
68 /**
69 * Get Up vector
70 * @param xmlRoot xml root
71 * @return up vector
72 * @throws tdme::engine::fileio::models::ModelFileIOException
73 */
74 static UpVector* getUpVector(TiXmlElement* xmlRoot);
75
76 /**
77 * Set up model import rotation matrix
78 * @param xmlRoot xml root
79 * @param model model
80 */
81 static void setupModelImportRotationMatrix(TiXmlElement* xmlRoot, Model* model);
82
83 /**
84 * Set up model import scale matrix
85 * @param xmlRoot xml root
86 * @param model model
87 */
88 static void setupModelImportScaleMatrix(TiXmlElement* xmlRoot, Model* model);
89
90 /**
91 * Read a DAE visual scene node
92 * @param pathName path name
93 * @param model model
94 * @param parentNode parent node
95 * @param xmlRoot xml node
96 * @param xmlNode xml root
97 * @param fps frames per second
98 * @return node
99 */
100 static Node* readVisualSceneNode(const string& pathName, Model* model, Node* parentNode, TiXmlElement* xmlRoot, TiXmlElement* xmlNode, float fps);
101
102 /**
103 * Reads a DAE visual scene node node
104 * @param pathName path name
105 * @param model model
106 * @param parentNode parent node
107 * @param xmlRoot xml node
108 * @param xmlNode xml root
109 * @param fps frames per seconds
110 * @throws tdme::engine::fileio::models::ModelFileIOException
111 * @return node
112 */
113 static Node* readNode(const string& pathName, Model* model, Node* parentNode, TiXmlElement* xmlRoot, TiXmlElement* xmlNode, float fps);
114
115 /**
116 * Reads a instance controller
117 * @param pathName path name
118 * @param model model
119 * @param parentNode parent node
120 * @param xmlRoot xml root
121 * @param xmlNode xml node
122 * @throws tdme::engine::fileio::models::ModelFileIOException
123 * @return Node
124 * @throws tdme::utilities::Exception
125 */
126 static Node* readVisualSceneInstanceController(const string& pathName, Model* model, Node* parentNode, TiXmlElement* xmlRoot, TiXmlElement* xmlNode);
127
128 /**
129 * Reads a geometry
130 * @param pathName path name
131 * @param model model
132 * @param node node
133 * @param xmlRoot xml root
134 * @param xmlNodeId xml node id
135 * @param materialSymbols material symbols
136 * @throws tdme::engine::fileio::models::ModelFileIOException
137 */
138 static void readGeometry(const string& pathName, Model* model, Node* node, TiXmlElement* xmlRoot, const string& xmlNodeId, const map<string, string>& materialSymbols);
139
140 /**
141 * Reads a material
142 * @param pathName path name
143 * @param model model
144 * @param xmlRoot xml root
145 * @param xmlNodeId xml node id
146 * @return material
147 */
148 static Material* readMaterial(const string& pathName, Model* model, TiXmlElement* xmlRoot, const string& xmlNodeId);
149
150 /**
151 * Make file name relative
152 * @param fileName file name
153 * @return file name
154 */
155 static const string makeFileNameRelative(const string& fileName);
156
157 /**
158 * Get texture file name by id
159 * @param xmlRoot xml root
160 * @param xmlTextureId xml texture id
161 * @return xml texture file name
162 */
163 static const string getTextureFileNameById(TiXmlElement* xmlRoot, const string& xmlTextureId);
164
165public:
166
167 /**
168 * Returns immediate children tags by tag name
169 * @param parent parent
170 * @param name name
171 * @return matching elements
172 */
173 static const vector<TiXmlElement*> getChildrenByTagName(TiXmlElement* parent, const char* name);
174
175 /**
176 * Returns immediate children tags
177 * @param parent parent
178 * @return elements
179 */
180 static const vector<TiXmlElement*> getChildren(TiXmlElement* parent);
181};
Collada DAE model reader.
Definition: DAEReader.h:40
static void readGeometry(const string &pathName, Model *model, Node *node, TiXmlElement *xmlRoot, const string &xmlNodeId, const map< string, string > &materialSymbols)
Reads a geometry.
Definition: DAEReader.cpp:697
static const vector< TiXmlElement * > getChildren(TiXmlElement *parent)
Returns immediate children tags.
Definition: DAEReader.cpp:1291
static constexpr float BLENDER_AMBIENT_FROM_DIFFUSE_SCALE
Definition: DAEReader.h:44
static Material * readMaterial(const string &pathName, Model *model, TiXmlElement *xmlRoot, const string &xmlNodeId)
Reads a material.
Definition: DAEReader.cpp:958
static Model * read(const string &pathName, const string &fileName)
Reads Collada DAE file.
Definition: DAEReader.cpp:96
static constexpr float BLENDER_DIFFUSE_SCALE
Definition: DAEReader.h:45
static UpVector * getUpVector(TiXmlElement *xmlRoot)
Get Up vector.
Definition: DAEReader.cpp:202
static Node * readVisualSceneInstanceController(const string &pathName, Model *model, Node *parentNode, TiXmlElement *xmlRoot, TiXmlElement *xmlNode)
Reads a instance controller.
Definition: DAEReader.cpp:478
static Node * readNode(const string &pathName, Model *model, Node *parentNode, TiXmlElement *xmlRoot, TiXmlElement *xmlNode, float fps)
Reads a DAE visual scene node node.
Definition: DAEReader.cpp:268
static void setupModelImportRotationMatrix(TiXmlElement *xmlRoot, Model *model)
Set up model import rotation matrix.
Definition: DAEReader.cpp:224
static const string makeFileNameRelative(const string &fileName)
Make file name relative.
Definition: DAEReader.cpp:1248
static const string getTextureFileNameById(TiXmlElement *xmlRoot, const string &xmlTextureId)
Get texture file name by id.
Definition: DAEReader.cpp:1266
static STATIC_DLL_IMPEXT const Color4 BLENDER_AMBIENT_NONE
Definition: DAEReader.h:43
static void setupModelImportScaleMatrix(TiXmlElement *xmlRoot, Model *model)
Set up model import scale matrix.
Definition: DAEReader.cpp:244
static const vector< TiXmlElement * > getChildrenByTagName(TiXmlElement *parent, const char *name)
Returns immediate children tags by tag name.
Definition: DAEReader.cpp:1282
static Model::AuthoringTool getAuthoringTool(TiXmlElement *xmlRoot)
Get authoring tool.
Definition: DAEReader.cpp:188
static Node * readVisualSceneNode(const string &pathName, Model *model, Node *parentNode, TiXmlElement *xmlRoot, TiXmlElement *xmlNode, float fps)
Read a DAE visual scene node.
Definition: DAEReader.cpp:258
Color 4 definition.
Definition: Color4.h:20
Represents a material.
Definition: Material.h:21
Representation of a 3d model.
Definition: Model.h:32
Model node.
Definition: Node.h:31
Model up vector.
Definition: UpVector.h:20
The element is a container class.
Definition: tinyxml.h:886
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11