TDME2 1.9.121
GLTFReader.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <ext/tinygltf/tiny_gltf.h>
6
7#include <tdme/tdme.h>
12
15
16using std::map;
17using std::string;
18using std::vector;
19
24
25/**
26 * GLTF model reader
27 * @author Andreas Drewke
28 * @version $Id$
29 */
31{
32public:
33
34 /**
35 * Reads GLTF file
36 * @param pathName path name
37 * @param fileName file name
38 * @throws tdme::engine::fileio::models::ModelFileIOException
39 * @throws tdme::os::filesystem::FileSystemException
40 * @return model instance
41 */
42 static Model* read(const string& pathName, const string& fileName);
43
44private:
45
46 /**
47 * @return component byte size
48 */
49 inline static size_t getComponentTypeByteSize(int type) {
50 switch (type) {
51 case TINYGLTF_COMPONENT_TYPE_UNSIGNED_BYTE:
52 case TINYGLTF_COMPONENT_TYPE_BYTE:
53 return sizeof(char);
54 case TINYGLTF_COMPONENT_TYPE_UNSIGNED_SHORT:
55 case TINYGLTF_COMPONENT_TYPE_SHORT:
56 return sizeof(short);
57 case TINYGLTF_COMPONENT_TYPE_UNSIGNED_INT:
58 case TINYGLTF_COMPONENT_TYPE_INT:
59 return sizeof(int);
60 case TINYGLTF_COMPONENT_TYPE_FLOAT:
61 return sizeof(float);
62 case TINYGLTF_COMPONENT_TYPE_DOUBLE:
63 return sizeof(double);
64 default:
65 return 0;
66 }
67 }
68
69 /**
70 * @return component type string
71 */
72 inline static string getComponentTypeString(int type) {
73 switch (type) {
74 case TINYGLTF_COMPONENT_TYPE_UNSIGNED_BYTE:
75 return "uint8_t";
76 case TINYGLTF_COMPONENT_TYPE_BYTE:
77 return "int8_t";
78 case TINYGLTF_COMPONENT_TYPE_UNSIGNED_SHORT:
79 return "uint16_t";
80 case TINYGLTF_COMPONENT_TYPE_SHORT:
81 return "int16_t";
82 case TINYGLTF_COMPONENT_TYPE_UNSIGNED_INT:
83 return "uint32_t";
84 case TINYGLTF_COMPONENT_TYPE_INT:
85 return "int32_t";
86 case TINYGLTF_COMPONENT_TYPE_FLOAT:
87 return "float";
88 case TINYGLTF_COMPONENT_TYPE_DOUBLE:
89 return "double";
90 default:
91 return "unknown";
92 }
93 }
94
95 /**
96 * @return type string
97 */
98 inline static string getTypeString(int type) {
99 switch (type) {
100 case TINYGLTF_TYPE_VEC2:
101 return "Vector2";
102 case TINYGLTF_TYPE_VEC3:
103 return "Vector3";
104 case TINYGLTF_TYPE_VEC4:
105 return "Vector4";
106 case TINYGLTF_TYPE_MAT2:
107 return "Matrix2x2";
108 case TINYGLTF_TYPE_MAT3:
109 return "Matrix3x3";
110 case TINYGLTF_TYPE_MAT4:
111 return "Matrix4x4";
112 case TINYGLTF_TYPE_SCALAR:
113 return "Scalar";
114 case TINYGLTF_TYPE_VECTOR:
115 return "Vector";
116 case TINYGLTF_TYPE_MATRIX:
117 return "Matrix";
118 default:
119 return 0;
120 }
121 }
122
123 /**
124 * Interpolate key frames to our internal 30fps format
125 * @param frameTimeCount frame time count
126 * @param frameTimes frameTimes
127 * @param keyFrameMatrices key frame matrices
128 * @param interpolatedMatrixCount interpolated matrix count
129 * @param interpolatedMatrices interpolated matrices
130 * @param frameStartIdx frame start idx
131 */
132 static void interpolateKeyFrames(int frameTimeCount, const float* frameTimes, const vector<Matrix4x4>& keyFrameMatrices, int interpolatedMatrixCount, vector<Matrix4x4>& interpolatedMatrices, int frameStartIdx);
133
134 /**
135 * Parse GLTF node
136 * @param pathName path name
137 * @param gltfModel GLTF mode
138 * @param gltfNodeIdx GLTF node index
139 * @param model TDME model
140 * @param parentNode TDME parent node
141 */
142 static Node* parseNode(const string& pathName, const tinygltf::Model& gltfModel, int gltfNodeIdx, Model* model, Node* parentNode);
143
144 /**
145 * Parse GLTF node children into TDME node
146 * @param pathName path name
147 * @param gltfModel GLTF model
148 * @param gltfNodeChildrenIdx GLTF node children indices
149 * @param parentNode TDME parent node
150 */
151 static void parseNodeChildren(const string& pathName, const tinygltf::Model& gltfModel, const vector<int>& gltfNodeChildrenIdx, Node* parentNode);
152
153 /**
154 * Determine texture file name
155 * @param fileName
156 * @return file name
157 */
158 static string determineTextureFileName(const string& imageName);
159};
static string getComponentTypeString(int type)
Definition: GLTFReader.h:72
static string getTypeString(int type)
Definition: GLTFReader.h:98
static size_t getComponentTypeByteSize(int type)
Definition: GLTFReader.h:49
static Model * read(const string &pathName, const string &fileName)
Reads GLTF file.
Definition: GLTFReader.cpp:86
static string determineTextureFileName(const string &imageName)
Determine texture file name.
Definition: GLTFReader.cpp:768
static Node * parseNode(const string &pathName, const tinygltf::Model &gltfModel, int gltfNodeIdx, Model *model, Node *parentNode)
Parse GLTF node.
Definition: GLTFReader.cpp:294
static void parseNodeChildren(const string &pathName, const tinygltf::Model &gltfModel, const vector< int > &gltfNodeChildrenIdx, Node *parentNode)
Parse GLTF node children into TDME node.
Definition: GLTFReader.cpp:754
static void interpolateKeyFrames(int frameTimeCount, const float *frameTimes, const vector< Matrix4x4 > &keyFrameMatrices, int interpolatedMatrixCount, vector< Matrix4x4 > &interpolatedMatrices, int frameStartIdx)
Interpolate key frames to our internal 30fps format.
Definition: GLTFReader.cpp:268
Representation of a 3d model.
Definition: Model.h:32
Model node.
Definition: Node.h:31