TDME2 1.9.121
TMReader.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
4
5#include <array>
6#include <map>
7#include <string>
8#include <vector>
9
10#include <tdme/tdme.h>
14#include <tdme/math/fwd-tdme.h>
17
20
21using std::array;
22using std::map;
23using std::string;
24using std::vector;
25
37
38namespace tdme {
39namespace engine {
40namespace fileio {
41namespace models {
42
43/**
44 * TM reader input stream
45 * @author Andreas Drewke
46 * @version $Id$
47 */
49private:
50 const vector<uint8_t>* data;
52public:
53 /**
54 * Constructor
55 * @param data input data array
56 */
57 inline TMReaderInputStream(const vector<uint8_t>* data): data(data), position(0) {
58 }
59
60 /**
61 * Reads a boolean from input stream
62 * @throws model file IO exception
63 * @return boolean
64 */
65 inline bool readBoolean() {
66 return readByte() == 1;
67 }
68
69 /**
70 * Reads a byte from input stream
71 * @throws model file IO exception
72 * @throws tdme::engine::fileio::models::ModelFileIOException
73 * @return byte
74 */
75 inline int8_t readByte() {
76 if (position == data->size()) {
77 throw ModelFileIOException("Unexpected end of stream");
78 }
79 return (*data)[position++];
80 }
81
82 /**
83 * Reads a integer from input stream
84 * @throws tdme::engine::fileio::models::ModelFileIOException
85 * @return int
86 */
87 inline int32_t readInt() {
88 int32_t value =
89 ((static_cast< int32_t >(readByte()) & 0xFF) << 24) +
90 ((static_cast< int32_t >(readByte()) & 0xFF) << 16) +
91 ((static_cast< int32_t >(readByte()) & 0xFF) << 8) +
92 ((static_cast< int32_t >(readByte()) & 0xFF) << 0);
93 return value;
94 }
95
96 /**
97 * Reads a float from input stream
98 * @throws tdme::engine::fileio::models::ModelFileIOException
99 * @return float
100 */
101 inline float readFloat() {
102 int32_t value =
103 ((static_cast< int32_t >(readByte()) & 0xFF) << 24) +
104 ((static_cast< int32_t >(readByte()) & 0xFF) << 16) +
105 ((static_cast< int32_t >(readByte()) & 0xFF) << 8) +
106 ((static_cast< int32_t >(readByte()) & 0xFF) << 0);
107 float* floatValue = (float*)&value;
108 return *floatValue;
109 }
110
111 /**
112 * Reads a string from input stream
113 * @throws tdme::engine::fileio::models::ModelFileIOException
114 * @return string
115 */
116 inline const string readString() {
117 if (readBoolean() == false) {
118 return "";
119 } else {
120 auto l = readInt();
121 string s;
122 for (auto i = 0; i < l; i++) {
123 s+= static_cast< char >(readByte());
124 }
125 return s;
126 }
127 }
128
129 /**
130 * Reads a float array from input stream
131 * @throws tdme::engine::fileio::models::ModelFileIOException
132 * @return float array
133 */
134 inline void readFloatArray(array<float, 16>& data) {
135 auto length = readInt();
136 if (length != data.size()) {
137 throw ModelFileIOException("Wrong float array size");
138 }
139 for (auto i = 0; i < data.size(); i++) {
140 (data)[i] = readFloat();
141 }
142 }
143
144 /**
145 * Reads a float array from input stream
146 * @throws tdme::engine::fileio::models::ModelFileIOException
147 * @return float array
148 */
149 inline void readFloatArray(array<float, 9>& data) {
150 auto length = readInt();
151 if (length != data.size()) {
152 throw ModelFileIOException("Wrong float array size");
153 }
154 for (auto i = 0; i < data.size(); i++) {
155 (data)[i] = readFloat();
156 }
157 }
158
159 /**
160 * Reads a float array from input stream
161 * @throws tdme::engine::fileio::models::ModelFileIOException
162 * @return float array
163 */
164 inline void readFloatArray(array<float, 4>& data) {
165 auto length = readInt();
166 if (length != data.size()) {
167 throw ModelFileIOException("Wrong float array size");
168 }
169 for (auto i = 0; i < data.size(); i++) {
170 (data)[i] = readFloat();
171 }
172 }
173
174 /**
175 * Reads a float array from input stream
176 * @throws tdme::engine::fileio::models::ModelFileIOException
177 * @return float array
178 */
179 inline void readFloatArray(array<float, 3>& data) {
180 auto length = readInt();
181 if (length != data.size()) {
182 throw ModelFileIOException("Wrong float array size");
183 }
184 for (auto i = 0; i < data.size(); i++) {
185 data[i] = readFloat();
186 }
187 }
188
189 /**
190 * Reads a float array from input stream
191 * @throws tdme::engine::fileio::models::ModelFileIOException
192 * @return float array
193 */
194 inline void readFloatArray(array<float, 2>& data) {
195 auto length = readInt();
196 if (length != data.size()) {
197 throw ModelFileIOException("Wrong float array size");
198 }
199 for (auto i = 0; i < data.size(); i++) {
200 data[i] = readFloat();
201 }
202 }
203
204 /**
205 * Reads a float array from input stream
206 * @throws tdme::engine::fileio::models::ModelFileIOException
207 * @return float array
208 */
209 inline const vector<float> readFloatVector() {
210 vector<float> f;
211 f.resize(readInt());
212 for (auto i = 0; i < f.size(); i++) {
213 f[i] = readFloat();
214 }
215 return f;
216 }
217
218};
219
220};
221};
222};
223};
224
225/**
226 * TDME model reader
227 * @author Andreas Drewke
228 * @version $Id$
229 */
231{
232public:
233
234 /**
235 * TDME model format reader
236 * @param pathName path name
237 * @param fileName file name
238 * @throws tdme::os::filesystem::FileSystemException
239 * @throws tdme::engine::fileio::models::ModelFileIOException
240 * @return model
241 */
242 static Model* read(const string& pathName, const string& fileName);
243
244 /**
245 * TDME model format reader
246 * @param data data vector to read TM from
247 * @param pathName path name file was read from
248 * @param fileName file name was read from
249 * @throws tdme::engine::fileio::models::ModelFileIOException
250 * @return model
251 */
252 static Model* read(const vector<uint8_t>& data, const string& pathName = string(), const string& fileName = string());
253
254private:
255 /**
256 * Get texture path
257 * @param modelPathName model path name
258 * @param texturePathName texture path name
259 * @param textureFileName texture file name
260 */
261 static const string getTexturePath(const string& modelPathName, const string& texturePathName, const string& textureFileName);
262
263 /**
264 * Read material
265 * @param pathName path name
266 * @param is input stream
267 * @param embeddedTextures embedded textures
268 * @param version version
269 * @throws tdme::engine::fileio::models::ModelFileIOException
270 * @return material
271 */
272 static void readEmbeddedTextures(TMReaderInputStream* is, map<string, Texture*>& embeddedTextures);
273
274 /**
275 * Read material
276 * @param pathName path name
277 * @param is input stream
278 * @param embeddedTextures embedded textures
279 * @param version version
280 * @throws tdme::engine::fileio::models::ModelFileIOException
281 * @return material
282 */
283 static Material* readMaterial(const string& pathName, TMReaderInputStream* is, const map<string, Texture*>& embeddedTextures, const array<uint8_t, 3>& version);
284
285 /**
286 * Read animation setup
287 * @param is input stream
288 * @param model model
289 * @param version version
290 * @throws tdme::engine::fileio::models::ModelFileIOException
291 */
292 static void readAnimationSetup(TMReaderInputStream* is, Model* model, const array<uint8_t, 3>& version);
293
294 /**
295 * Read vertices from input stream
296 * @param is input stream
297 * @throws tdme::engine::fileio::models::ModelFileIOException
298 * @return vector3 array
299 */
300 static const vector<Vector3> readVertices(TMReaderInputStream* is);
301
302 /**
303 * Read texture coordinates from input stream
304 * @param is input stream
305 * @throws tdme::engine::fileio::models::ModelFileIOException
306 * @return texture coordinates array
307 */
308 static const vector<TextureCoordinate> readTextureCoordinates(TMReaderInputStream* is);
309
310 /**
311 * Read indices from input stream
312 * @param is input stream
313 * @param indices indices
314 * @throws tdme::engine::fileio::models::ModelFileIOException
315 * @return if having indices
316 */
317 static bool readIndices(TMReaderInputStream* is, array<int32_t, 3>* indices);
318
319 /**
320 * Read animation from input stream into node
321 * @param is input stream
322 * @param g node
323 * @throws tdme::engine::fileio::models::ModelFileIOException
324 * @return Animation
325 */
327
328 /**
329 * Read faces entities from input stream
330 * @param is input stream
331 * @param g node
332 * @throws tdme::engine::fileio::models::ModelFileIOException
333 */
334 static void readFacesEntities(TMReaderInputStream* is, Node* g);
335
336 /**
337 * Read skinning joint
338 * @param is input stream
339 * @throws tdme::engine::fileio::models::ModelFileIOException
340 * @return joint
341 */
343
344 /**
345 * Read skinning joint weight
346 * @param is input stream
347 * @throws tdme::engine::fileio::models::ModelFileIOException
348 * @return joint weight
349 */
351
352 /**
353 * Read skinning from input stream
354 * @param is input stream
355 * @param g node
356 * @throws tdme::engine::fileio::models::ModelFileIOException
357 */
358 static void readSkinning(TMReaderInputStream* is, Node* g);
359
360 /**
361 * Read sub nodes
362 * @param is input stream
363 * @param model model
364 * @param parentNode parent node
365 * @param subNodes sub nodes
366 * @throws IOException
367 * @throws tdme::engine::fileio::models::ModelFileIOException
368 * @return node
369 */
370 static void readSubNodes(TMReaderInputStream* is, Model* model, Node* parentNode, map<string, Node*>& subNodes);
371
372 /**
373 * Write node to output stream
374 * @param is input stream
375 * @param model model
376 * @param parentNode parent node
377 * @throws tdme::engine::fileio::models::ModelFileIOException
378 * @return node
379 */
380 static Node* readNode(TMReaderInputStream* is, Model* model, Node* parentNode);
381};
bool readBoolean()
Reads a boolean from input stream.
Definition: TMReader.h:65
void readFloatArray(array< float, 16 > &data)
Reads a float array from input stream.
Definition: TMReader.h:134
int32_t readInt()
Reads a integer from input stream.
Definition: TMReader.h:87
const vector< float > readFloatVector()
Reads a float array from input stream.
Definition: TMReader.h:209
void readFloatArray(array< float, 4 > &data)
Reads a float array from input stream.
Definition: TMReader.h:164
const string readString()
Reads a string from input stream.
Definition: TMReader.h:116
void readFloatArray(array< float, 9 > &data)
Reads a float array from input stream.
Definition: TMReader.h:149
void readFloatArray(array< float, 3 > &data)
Reads a float array from input stream.
Definition: TMReader.h:179
TMReaderInputStream(const vector< uint8_t > *data)
Constructor.
Definition: TMReader.h:57
float readFloat()
Reads a float from input stream.
Definition: TMReader.h:101
int8_t readByte()
Reads a byte from input stream.
Definition: TMReader.h:75
void readFloatArray(array< float, 2 > &data)
Reads a float array from input stream.
Definition: TMReader.h:194
static void readEmbeddedTextures(TMReaderInputStream *is, map< string, Texture * > &embeddedTextures)
Read material.
Definition: TMReader.cpp:174
static Material * readMaterial(const string &pathName, TMReaderInputStream *is, const map< string, Texture * > &embeddedTextures, const array< uint8_t, 3 > &version)
Read material.
Definition: TMReader.cpp:193
static void readSubNodes(TMReaderInputStream *is, Model *model, Node *parentNode, map< string, Node * > &subNodes)
Read sub nodes.
Definition: TMReader.cpp:540
static Joint readSkinningJoint(TMReaderInputStream *is)
Read skinning joint.
Definition: TMReader.cpp:499
static const string getTexturePath(const string &modelPathName, const string &texturePathName, const string &textureFileName)
Get texture path.
Definition: TMReader.cpp:160
static const vector< Vector3 > readVertices(TMReaderInputStream *is)
Read vertices from input stream.
Definition: TMReader.cpp:386
static Model * read(const string &pathName, const string &fileName)
TDME model format reader.
Definition: TMReader.cpp:70
static Animation * readAnimation(TMReaderInputStream *is, Node *g)
Read animation from input stream into node.
Definition: TMReader.cpp:430
static void readFacesEntities(TMReaderInputStream *is, Node *g)
Read faces entities from input stream.
Definition: TMReader.cpp:450
static void readAnimationSetup(TMReaderInputStream *is, Model *model, const array< uint8_t, 3 > &version)
Read animation setup.
Definition: TMReader.cpp:363
static void readSkinning(TMReaderInputStream *is, Node *g)
Read skinning from input stream.
Definition: TMReader.cpp:516
static bool readIndices(TMReaderInputStream *is, array< int32_t, 3 > *indices)
Read indices from input stream.
Definition: TMReader.cpp:414
static JointWeight readSkinningJointWeight(TMReaderInputStream *is)
Read skinning joint weight.
Definition: TMReader.cpp:508
static const vector< TextureCoordinate > readTextureCoordinates(TMReaderInputStream *is)
Read texture coordinates from input stream.
Definition: TMReader.cpp:400
static Node * readNode(TMReaderInputStream *is, Model *model, Node *parentNode)
Write node to output stream.
Definition: TMReader.cpp:550
Joint / Bone.
Definition: Joint.h:19
Represents a material.
Definition: Material.h:21
Representation of a 3d model.
Definition: Model.h:32
Model node.
Definition: Node.h:31
Class representing texture UV coordinates data.
3D vector 3 class
Definition: Vector3.h:22
Definition: fwd-tdme.h:4