TDME2 1.9.121
TMReader.cpp
Go to the documentation of this file.
2
3#include <array>
4#include <map>
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
30#include <tdme/math/Matrix4x4.h>
31#include <tdme/math/Vector3.h>
35
36using std::array;
37using std::map;
38using std::string;
39using std::to_string;
40using std::vector;
41
69
70Model* TMReader::read(const string& pathName, const string& fileName)
71{
72 vector<uint8_t> data;
73 FileSystem::getInstance()->getContent(pathName, fileName, data);
74 return read(data, pathName, fileName);
75}
76
77Model* TMReader::read(const vector<uint8_t>& data, const string& pathName, const string& fileName) {
78 TMReaderInputStream is(&data);
79 auto fileId = is.readString();
80 if (fileId.length() == 0 || fileId != "TDME Model") {
82 "File is not a TDME model file, file id = '" +
83 (fileId) +
84 "'"
85 );
86 }
87 array<uint8_t, 3> version;
88 version[0] = is.readByte();
89 version[1] = is.readByte();
90 version[2] = is.readByte();
91 if ((version[0] != 1 || version[1] != 0 || version[2] != 0) &&
92 (version[0] != 1 || version[1] != 9 || version[2] != 9) &&
93 (version[0] != 1 || version[1] != 9 || version[2] != 10) &&
94 (version[0] != 1 || version[1] != 9 || version[2] != 11) &&
95 (version[0] != 1 || version[1] != 9 || version[2] != 12) &&
96 (version[0] != 1 || version[1] != 9 || version[2] != 13) &&
97 (version[0] != 1 || version[1] != 9 || version[2] != 14) &&
98 (version[0] != 1 || version[1] != 9 || version[2] != 15) &&
99 (version[0] != 1 || version[1] != 9 || version[2] != 16) &&
100 (version[0] != 1 || version[1] != 9 || version[2] != 17)) {
102 "Version mismatch, should be 1.0.0, 1.9.9, 1.9.10, 1.9.11, 1.9.12, 1.9.13, 1.9.14, 1.9.15, 1.9.16, 1.9.17 but is " +
103 to_string(version[0]) +
104 "." +
105 to_string(version[1]) +
106 "." +
107 to_string(version[2])
108 );
109 }
110 auto name = is.readString();
111 auto upVector = UpVector::valueOf(is.readString());
112 auto rotationOrder = RotationOrder::valueOf(is.readString());
113 auto shaderModel = ShaderModel::SPECULAR;
114 if ((version[0] == 1 && version[1] == 9 && version[2] == 14) ||
115 (version[0] == 1 && version[1] == 9 && version[2] == 15) ||
116 (version[0] == 1 && version[1] == 9 && version[2] == 16) ||
117 (version[0] == 1 && version[1] == 9 && version[2] == 17)) {
118 shaderModel = ShaderModel::valueOf(is.readString());
119 }
120 array<float, 3> boundingBoxMinXYZ;
121 is.readFloatArray(boundingBoxMinXYZ);
122 array<float, 3> boundingBoxMaxXYZ;
123 is.readFloatArray(boundingBoxMaxXYZ);
124 auto boundingBox = new BoundingBox(Vector3(boundingBoxMinXYZ), Vector3(boundingBoxMaxXYZ));
125 auto model = new Model(
126 fileName,
127 fileName.empty() == true?name:fileName,
128 upVector,
129 rotationOrder,
130 boundingBox
131 );
132 model->setShaderModel(shaderModel);
133 model->setFPS(is.readFloat());
134 array<float, 16> importTransformationsMatrixArray;
135 is.readFloatArray(importTransformationsMatrixArray);
136 model->setImportTransformationsMatrix(importTransformationsMatrixArray);
137 map<string, Texture*> embeddedTextures;
138 if (version[0] == 1 && version[1] == 9 && version[2] == 17) {
139 readEmbeddedTextures(&is, embeddedTextures);
140 }
141 auto materialCount = is.readInt();
142 for (auto i = 0; i < materialCount; i++) {
143 auto material = readMaterial(pathName, &is, embeddedTextures, version);
144 model->getMaterials()[material->getId()] = material;
145 }
146 readSubNodes(&is, model, nullptr, model->getSubNodes());
147 auto animationSetupCount = is.readInt();
148 for (auto i = 0; i < animationSetupCount; i++) {
149 readAnimationSetup(&is, model, version);
150 }
151 if (model->getAnimationSetup(Model::ANIMATIONSETUP_DEFAULT) == nullptr) {
152 model->addAnimationSetup(Model::ANIMATIONSETUP_DEFAULT, 0, 0, true);
153 }
154 for (auto it: embeddedTextures) {
155 it.second->releaseReference();
156 }
157 return model;
158}
159
160const string TMReader::getTexturePath(const string& modelPathName, const string& texturePathName, const string& textureFileName) {
161 if (FileSystem::getInstance()->fileExists(texturePathName + "/" + textureFileName) == true) {
162 return texturePathName;
163 } else
164 if (FileSystem::getInstance()->fileExists(modelPathName + "/" + textureFileName) == true) {
165 return modelPathName;
166 } else
167 if (FileSystem::getInstance()->fileExists(FileSystem::getInstance()->getPathName(modelPathName) + "/" + textureFileName) == true) {
168 return FileSystem::getInstance()->getPathName(modelPathName);
169 } else {
170 return texturePathName;
171 }
172}
173
174void TMReader::readEmbeddedTextures(TMReaderInputStream* is, map<string, Texture*>& embeddedTextures) {
175 auto embeddedTextureCount = is->readInt();
176 for (auto i = 0; i < embeddedTextureCount; i++) {
177 auto embeddedTextureId = is->readString();
178 auto embeddedTextureType = is->readByte();
179 if (embeddedTextureType == 1) {
180 auto textureSize = is->readInt();
181 vector<uint8_t> pngData;
182 pngData.resize(textureSize);
183 for (auto j = 0; j < textureSize; j++) pngData[j] = is->readByte();
184 auto embeddedTexture = TextureReader::readPNG(embeddedTextureId, pngData, true);
185 if (embeddedTexture != nullptr) {
186 embeddedTexture->acquireReference();
187 embeddedTextures[embeddedTextureId] = embeddedTexture;
188 }
189 }
190 }
191}
192
193Material* TMReader::readMaterial(const string& pathName, TMReaderInputStream* is, const map<string, Texture*>& embeddedTextures, const array<uint8_t, 3>& version)
194{
195 auto id = is->readString();
196 auto m = new Material(id);
197 auto smp = new SpecularMaterialProperties();
198 if (version[0] == 1 && version[1] == 9 && version[2] == 17) {
199 smp->setEmbedTextures(is->readBoolean());
200 }
201 array<float, 4> colorRGBAArray;
202 is->readFloatArray(colorRGBAArray);
203 smp->setAmbientColor(Color4(colorRGBAArray));
204 is->readFloatArray(colorRGBAArray);
205 smp->setDiffuseColor(Color4(colorRGBAArray));
206 is->readFloatArray(colorRGBAArray);
207 smp->setSpecularColor(Color4(colorRGBAArray));
208 is->readFloatArray(colorRGBAArray);
209 smp->setEmissionColor(Color4(colorRGBAArray));
210 smp->setShininess(is->readFloat());
211 if ((version[0] == 1 && version[1] == 9 && version[2] == 15) ||
212 (version[0] == 1 && version[1] == 9 && version[2] == 16) ||
213 (version[0] == 1 && version[1] == 9 && version[2] == 17)) {
214 smp->setTextureAtlasSize(is->readInt());
215 }
216 auto diffuseTexturePathName = is->readString();
217 auto diffuseTextureFileName = is->readString();
218 auto diffuseTransparencyTexturePathName = is->readString();
219 auto diffuseTransparencyTextureFileName = is->readString();
220 if (smp->hasEmbeddedTextures() == false && diffuseTextureFileName.empty() == false) {
221 smp->setDiffuseTexture(
222 getTexturePath(pathName, diffuseTexturePathName, diffuseTextureFileName),
223 diffuseTextureFileName,
224 getTexturePath(pathName, diffuseTransparencyTexturePathName, diffuseTransparencyTextureFileName),
225 diffuseTransparencyTextureFileName
226 );
227 }
228 auto specularTexturePathName = is->readString();
229 auto specularTextureFileName = is->readString();
230 if (smp->hasEmbeddedTextures() == false && specularTextureFileName.empty() == false) {
231 smp->setSpecularTexture(
232 getTexturePath(pathName, specularTexturePathName, specularTextureFileName),
233 specularTextureFileName
234 );
235 }
236 auto normalTexturePathName = is->readString();
237 auto normalTextureFileName = is->readString();
238 if (smp->hasEmbeddedTextures() == false && normalTextureFileName.empty() == false) {
239 smp->setNormalTexture(
240 getTexturePath(pathName, normalTexturePathName, normalTextureFileName),
241 normalTextureFileName
242 );
243 }
244 if ((version[0] == 1 && version[1] == 9 && version[2] == 9) ||
245 (version[0] == 1 && version[1] == 9 && version[2] == 10) ||
246 (version[0] == 1 && version[1] == 9 && version[2] == 11)) {
247 auto displacementTexturePathName = is->readString();
248 auto displacementTextureFileName = is->readString();
249 }
250 if ((version[0] == 1 && version[1] == 9 && version[2] == 15) ||
251 (version[0] == 1 && version[1] == 9 && version[2] == 16) ||
252 (version[0] == 1 && version[1] == 9 && version[2] == 17)) {
253 smp->setDiffuseTextureTransparency(is->readBoolean());
254 }
255 smp->setDiffuseTextureMaskedTransparency(is->readBoolean());
256 if ((version[0] == 1 && version[1] == 9 && version[2] == 9) ||
257 (version[0] == 1 && version[1] == 9 && version[2] == 10) ||
258 (version[0] == 1 && version[1] == 9 && version[2] == 11) ||
259 (version[0] == 1 && version[1] == 9 && version[2] == 12) ||
260 (version[0] == 1 && version[1] == 9 && version[2] == 13) ||
261 (version[0] == 1 && version[1] == 9 && version[2] == 14) ||
262 (version[0] == 1 && version[1] == 9 && version[2] == 15) ||
263 (version[0] == 1 && version[1] == 9 && version[2] == 16) ||
264 (version[0] == 1 && version[1] == 9 && version[2] == 17)) {
265 smp->setDiffuseTextureMaskedTransparencyThreshold(is->readFloat());
266 }
267 if ((version[0] == 1 && version[1] == 9 && version[2] == 16) ||
268 (version[0] == 1 && version[1] == 9 && version[2] == 17)) {
269 m->setDoubleSided(is->readBoolean());
270 }
271 if ((version[0] == 1 && version[1] == 9 && version[2] == 10) ||
272 (version[0] == 1 && version[1] == 9 && version[2] == 11) ||
273 (version[0] == 1 && version[1] == 9 && version[2] == 12) ||
274 (version[0] == 1 && version[1] == 9 && version[2] == 13) ||
275 (version[0] == 1 && version[1] == 9 && version[2] == 14) ||
276 (version[0] == 1 && version[1] == 9 && version[2] == 15) ||
277 (version[0] == 1 && version[1] == 9 && version[2] == 16) ||
278 (version[0] == 1 && version[1] == 9 && version[2] == 17)) {
279 array<float, 9> textureMatrix;
280 is->readFloatArray(textureMatrix);
281 smp->setTextureMatrix(Matrix2D3x3(textureMatrix));
282 }
283 if (version[0] == 1 && version[1] == 9 && version[2] == 17) {
284 if (smp->hasEmbeddedTextures() == true) {
285 // diffuse
286 if (diffuseTextureFileName.empty() == false) {
287 auto diffuseTextureTransparency = smp->getDiffuseTextureTransparency();
288 auto diffuseTextureMaskedTransparency = smp->getDiffuseTextureMaskedTransparencyThreshold();
289 smp->setDiffuseTexture(embeddedTextures.find(diffuseTextureFileName)->second);
290 smp->setDiffuseTextureTransparency(diffuseTextureTransparency);
291 smp->setDiffuseTextureMaskedTransparency(diffuseTextureMaskedTransparency);
292 }
293 // specular
294 if (specularTextureFileName.empty() == false) {
295 smp->setSpecularTexture(embeddedTextures.find(specularTextureFileName)->second);
296 }
297 // normal
298 if (normalTextureFileName.empty() == false) {
299 smp->setNormalTexture(embeddedTextures.find(normalTextureFileName)->second);
300 }
301 }
302 }
303 m->setSpecularMaterialProperties(smp);
304 if ((version[0] == 1 && version[1] == 9 && version[2] == 13) ||
305 (version[0] == 1 && version[1] == 9 && version[2] == 14) ||
306 (version[0] == 1 && version[1] == 9 && version[2] == 15) ||
307 (version[0] == 1 && version[1] == 9 && version[2] == 16) ||
308 (version[0] == 1 && version[1] == 9 && version[2] == 17)) {
309 if (is->readBoolean() == true) {
310 auto pmp = new PBRMaterialProperties();
311 if (version[0] == 1 && version[1] == 9 && version[2] == 17) {
312 pmp->setEmbedTextures(is->readBoolean());
313 }
314 is->readFloatArray(colorRGBAArray);
315 pmp->setBaseColorFactor(Color4(colorRGBAArray));
316 auto baseColorTexturePathName = is->readString();
317 auto baseColorTextureFileName = is->readString();
318 if (pmp->hasEmbeddedTextures() == false && baseColorTextureFileName.empty() == false) {
319 pmp->setBaseColorTexture(baseColorTexturePathName, baseColorTextureFileName);
320 }
321 pmp->setBaseColorTextureMaskedTransparency(is->readBoolean());
322 pmp->setBaseColorTextureMaskedTransparency(is->readFloat());
323 pmp->setMetallicFactor(is->readFloat());
324 pmp->setRoughnessFactor(is->readFloat());
325 auto metallicRoughnessTexturePathName = is->readString();
326 auto metallicRoughnessTextureFileName = is->readString();
327 if (pmp->hasEmbeddedTextures() == false && metallicRoughnessTextureFileName.empty() == false) {
328 pmp->setMetallicRoughnessTexture(metallicRoughnessTexturePathName, metallicRoughnessTextureFileName);
329 }
330 pmp->setNormalScale(is->readFloat());
331 auto pbrNormalTexturePathName = is->readString();
332 auto pbrNormalTextureFileName = is->readString();
333 if (pmp->hasEmbeddedTextures() == false && pbrNormalTextureFileName.empty() == false) {
334 pmp->setNormalTexture(pbrNormalTexturePathName, pbrNormalTextureFileName);
335 }
336 pmp->setExposure(is->readFloat());
337 if (version[0] == 1 && version[1] == 9 && version[2] == 17) {
338 if (pmp->hasEmbeddedTextures() == true) {
339 // base color
340 if (baseColorTextureFileName.empty() == false) {
341 auto baseColorTextureTransparency = pmp->hasBaseColorTextureTransparency();
342 auto baseColorTextureMaskedTransparency = pmp->hasBaseColorTextureMaskedTransparency();
343 pmp->setBaseColorTexture(embeddedTextures.find(baseColorTextureFileName)->second);
344 pmp->setBaseColorTextureTransparency(baseColorTextureTransparency);
345 pmp->setBaseColorTextureMaskedTransparency(baseColorTextureMaskedTransparency);
346 }
347 // metallic roughness
348 if (metallicRoughnessTextureFileName.empty() == false) {
349 pmp->setMetallicRoughnessTexture(embeddedTextures.find(metallicRoughnessTextureFileName)->second);
350 }
351 // normal
352 if (pbrNormalTextureFileName.empty() == false) {
353 pmp->setNormalTexture(embeddedTextures.find(pbrNormalTextureFileName)->second);
354 }
355 }
356 }
357 m->setPBRMaterialProperties(pmp);
358 }
359 }
360 return m;
361}
362
363void TMReader::readAnimationSetup(TMReaderInputStream* is, Model* model, const array<uint8_t, 3>& version) {
364 auto id = is->readString();
365 auto overlayFromNodeId = is->readString();
366 auto startFrame = is->readInt();
367 auto endFrame = is->readInt();
368 auto loop = is->readBoolean();
369 auto speed = 1.0f;
370 if ((version[0] == 1 && version[1] == 9 && version[2] == 11) ||
371 (version[0] == 1 && version[1] == 9 && version[2] == 12) ||
372 (version[0] == 1 && version[1] == 9 && version[2] == 13) ||
373 (version[0] == 1 && version[1] == 9 && version[2] == 14) ||
374 (version[0] == 1 && version[1] == 9 && version[2] == 15) ||
375 (version[0] == 1 && version[1] == 9 && version[2] == 16) ||
376 (version[0] == 1 && version[1] == 9 && version[2] == 17)) {
377 speed = is->readFloat();
378 }
379 if (overlayFromNodeId.length() == 0) {
380 model->addAnimationSetup(id, startFrame, endFrame, loop, speed);
381 } else {
382 model->addOverlayAnimationSetup(id, overlayFromNodeId, startFrame, endFrame, loop, speed);
383 }
384}
385
387{
388 vector<Vector3> v;
389 array<float, 3> vXYZ;
390 if (is->readBoolean() == true) {
391 v.resize(is->readInt());
392 for (auto i = 0; i < v.size(); i++) {
393 is->readFloatArray(vXYZ);
394 v[i].set(vXYZ);
395 }
396 }
397 return v;
398}
399
400const vector<TextureCoordinate> TMReader::readTextureCoordinates(TMReaderInputStream* is)
401{
402 array<float, 2> tcUV;
403 vector<TextureCoordinate> tc;
404 if (is->readBoolean() == true) {
405 tc.resize(is->readInt());
406 for (auto i = 0; i < tc.size(); i++) {
407 is->readFloatArray(tcUV);
408 tc[i] = TextureCoordinate(tcUV);
409 }
410 }
411 return tc;
412}
413
414bool TMReader::readIndices(TMReaderInputStream* is, array<int32_t, 3>* indices)
415{
416 if (is->readBoolean() == false) {
417 return false;
418 } else {
419 auto length = is->readInt();
420 if (length != indices->size()) {
421 throw ModelFileIOException("Wrong indices array size");
422 }
423 for (auto i = 0; i < indices->size(); i++) {
424 (*indices)[i] = is->readInt();
425 }
426 return true;
427 }
428}
429
431{
432 if (is->readBoolean() == false) {
433 return nullptr;
434 } else {
435 array<float, 16> matrixArray;
436 auto frames = is->readInt();
437 auto animation = new Animation();
438 vector<Matrix4x4> transformationsMatrices;
439 transformationsMatrices.resize(frames);
440 for (auto i = 0; i < transformationsMatrices.size(); i++) {
441 is->readFloatArray(matrixArray);
442 transformationsMatrices[i].set(matrixArray);
443 }
444 animation->setTransformationsMatrices(transformationsMatrices);
445 g->setAnimation(animation);
446 return g->getAnimation();
447 }
448}
449
451{
452 vector<FacesEntity> facesEntities;
453 facesEntities.resize(is->readInt());
454 for (auto i = 0; i < facesEntities.size(); i++) {
455 facesEntities[i] = FacesEntity(g, is->readString());
456 if (is->readBoolean() == true) {
457 Material* material = nullptr;
458 auto materialIt = g->getModel()->getMaterials().find(is->readString());
459 if (materialIt != g->getModel()->getMaterials().end()) {
460 material = materialIt->second;
461 }
462 facesEntities[i].setMaterial(material);
463 }
464 vector<Face> faces;
465 faces.resize(is->readInt());
466 array<int32_t,3> vertexIndices;
467 array<int32_t,3> normalIndices;
468 array<int32_t,3> textureCoordinateIndices;
469 array<int32_t,3> tangentIndices;
470 array<int32_t,3> bitangentIndices;
471 bool haveTextureCoordinateIndices;
472 bool haveTangentIndices;
473 bool haveBitangentIndices;
474 for (auto j = 0; j < faces.size(); j++) {
475 readIndices(is, &vertexIndices);
476 readIndices(is, &normalIndices);
477 haveTextureCoordinateIndices = readIndices(is, &textureCoordinateIndices);
478 haveTangentIndices = readIndices(is, &tangentIndices);
479 haveBitangentIndices = readIndices(is, &bitangentIndices);
480 faces[j] = Face(g,
481 vertexIndices[0], vertexIndices[1], vertexIndices[2],
482 normalIndices[0], normalIndices[1], normalIndices[2]
483 );
484 if (haveTextureCoordinateIndices == true) {
485 faces[j].setTextureCoordinateIndices(
486 textureCoordinateIndices[0], textureCoordinateIndices[1], textureCoordinateIndices[2]
487 );
488 }
489 if (haveTangentIndices == true && haveBitangentIndices == true) {
490 faces[j].setTangentIndices(tangentIndices[0], tangentIndices[1], tangentIndices[2]);
491 faces[j].setBitangentIndices(bitangentIndices[0], bitangentIndices[1], bitangentIndices[2]);
492 }
493 }
494 facesEntities[i].setFaces(faces);
495 }
496 g->setFacesEntities(facesEntities);
497}
498
500{
501 array<float, 16> matrixArray;
502 Joint joint(is->readString());
503 is->readFloatArray(matrixArray);
504 joint.setBindMatrix(Matrix4x4(matrixArray));
505 return joint;
506}
507
509{
510
511 int32_t jointIndex = is->readInt();
512 int32_t weightIndex = is->readInt();
513 return JointWeight(jointIndex, weightIndex);
514}
515
517{
518 if (is->readBoolean() == true) {
519 auto skinning = new Skinning();
520 skinning->setWeights(is->readFloatVector());
521 vector<Joint> joints;
522 joints.resize(is->readInt());
523 for (auto i = 0; i < joints.size(); i++) {
524 joints[i] = readSkinningJoint(is);
525 }
526 skinning->setJoints(joints);
527 vector<vector<JointWeight>> verticesJointsWeight;
528 verticesJointsWeight.resize(is->readInt());
529 for (auto i = 0; i < verticesJointsWeight.size(); i++) {
530 verticesJointsWeight[i].resize(is->readInt());
531 for (auto j = 0; j < verticesJointsWeight[i].size(); j++) {
532 verticesJointsWeight[i][j] = readSkinningJointWeight(is);
533 }
534 }
535 skinning->setVerticesJointsWeights(verticesJointsWeight);
536 g->setSkinning(skinning);
537 }
538}
539
540void TMReader::readSubNodes(TMReaderInputStream* is, Model* model, Node* parentNode, map<string, Node*>& subNodes)
541{
542 auto subNodeCount = is->readInt();
543 for (auto i = 0; i < subNodeCount; i++) {
544 auto subNode = readNode(is, model, parentNode);
545 subNodes[subNode->getId()] = subNode;
546 model->getNodes()[subNode->getId()] = subNode;
547 }
548}
549
551{
552
553 auto nodeId = is->readString();
554 auto nodeName = is->readString();
555 auto node = new Node(model, parentNode, nodeId, nodeName);
556 node->setJoint(is->readBoolean());
557 array<float, 16> matrixArray;
558 is->readFloatArray(matrixArray);
559 node->setTransformationsMatrix(Matrix4x4(matrixArray));
560 vector<Vector3> vertices = readVertices(is);
561 node->setVertices(vertices);
562 vector<Vector3> normals = readVertices(is);
563 node->setNormals(normals);
564 vector<TextureCoordinate> textureCoordinates = readTextureCoordinates(is);
565 node->setTextureCoordinates(textureCoordinates);
566 vector<Vector3> tangents = readVertices(is);
567 node->setTangents(tangents);
568 vector<Vector3> bitangents = readVertices(is);
569 node->setBitangents(bitangents);
570 readAnimation(is, node);
571 readSkinning(is, node);
572 readFacesEntities(is, node);
573 readSubNodes(is, model, parentNode, node->getSubNodes());
574 return node;
575}
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
const string readString()
Reads a string from input stream.
Definition: TMReader.h:116
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
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
Color 4 definition.
Definition: Color4.h:20
Represents a model face, consisting of vertex, normal, tangent and bitangent vectors,...
Definition: Face.h:19
Node faces entity A node can have multiple entities containing faces and a applied material.
Definition: FacesEntity.h:28
Joint / Bone.
Definition: Joint.h:19
void setBindMatrix(const Matrix4x4 &bindMatrix)
Bind matrix.
Definition: Joint.h:55
Represents a material.
Definition: Material.h:21
Representation of a 3d model.
Definition: Model.h:32
map< string, Node * > & getNodes()
Returns all object's nodes.
Definition: Model.h:179
AnimationSetup * addAnimationSetup(const string &id, int32_t startFrame, int32_t endFrame, bool loop, float speed=1.0f)
Adds an base animation setup.
Definition: Model.cpp:97
AnimationSetup * addOverlayAnimationSetup(const string &id, const string &overlayFromNodeId, int32_t startFrame, int32_t endFrame, bool loop, float speed=1.0f)
Adds an overlay animation setup.
Definition: Model.cpp:109
map< string, Material * > & getMaterials()
Returns all object materials.
Definition: Model.h:171
Model node.
Definition: Node.h:31
Model * getModel()
Definition: Node.h:70
void setAnimation(Animation *animation)
Sets animation object.
Definition: Node.cpp:97
void setFacesEntities(const vector< FacesEntity > &facesEntities)
Set up faces entities.
Definition: Node.cpp:125
void setSkinning(Skinning *skinning)
Sets skinning object.
Definition: Node.cpp:102
Animation * getAnimation()
Definition: Node.h:225
map< string, Node * > & getSubNodes()
Definition: Node.h:289
Represents specular material properties.
Represents rotation orders of a model.
Definition: RotationOrder.h:23
Skinning definition for nodes.
Definition: Skinning.h:27
Represents specular material properties.
Class representing texture UV coordinates data.
Model up vector.
Definition: UpVector.h:20
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22
File system singleton class.
Definition: FileSystem.h:14
Model tools functions class.
Definition: ModelTools.h:38