5#include <ext/tinygltf/tiny_gltf.h>
42 static Model*
read(
const string& pathName,
const string& fileName);
51 case TINYGLTF_COMPONENT_TYPE_UNSIGNED_BYTE:
52 case TINYGLTF_COMPONENT_TYPE_BYTE:
54 case TINYGLTF_COMPONENT_TYPE_UNSIGNED_SHORT:
55 case TINYGLTF_COMPONENT_TYPE_SHORT:
57 case TINYGLTF_COMPONENT_TYPE_UNSIGNED_INT:
58 case TINYGLTF_COMPONENT_TYPE_INT:
60 case TINYGLTF_COMPONENT_TYPE_FLOAT:
62 case TINYGLTF_COMPONENT_TYPE_DOUBLE:
63 return sizeof(double);
74 case TINYGLTF_COMPONENT_TYPE_UNSIGNED_BYTE:
76 case TINYGLTF_COMPONENT_TYPE_BYTE:
78 case TINYGLTF_COMPONENT_TYPE_UNSIGNED_SHORT:
80 case TINYGLTF_COMPONENT_TYPE_SHORT:
82 case TINYGLTF_COMPONENT_TYPE_UNSIGNED_INT:
84 case TINYGLTF_COMPONENT_TYPE_INT:
86 case TINYGLTF_COMPONENT_TYPE_FLOAT:
88 case TINYGLTF_COMPONENT_TYPE_DOUBLE:
100 case TINYGLTF_TYPE_VEC2:
102 case TINYGLTF_TYPE_VEC3:
104 case TINYGLTF_TYPE_VEC4:
106 case TINYGLTF_TYPE_MAT2:
108 case TINYGLTF_TYPE_MAT3:
110 case TINYGLTF_TYPE_MAT4:
112 case TINYGLTF_TYPE_SCALAR:
114 case TINYGLTF_TYPE_VECTOR:
116 case TINYGLTF_TYPE_MATRIX:
132 static void interpolateKeyFrames(
int frameTimeCount,
const float* frameTimes,
const vector<Matrix4x4>& keyFrameMatrices,
int interpolatedMatrixCount, vector<Matrix4x4>& interpolatedMatrices,
int frameStartIdx);
142 static Node*
parseNode(
const string& pathName,
const tinygltf::Model& gltfModel,
int gltfNodeIdx,
Model* model,
Node* parentNode);
151 static void parseNodeChildren(
const string& pathName,
const tinygltf::Model& gltfModel,
const vector<int>& gltfNodeChildrenIdx,
Node* parentNode);
static string getComponentTypeString(int type)
static string getTypeString(int type)
static size_t getComponentTypeByteSize(int type)
static Model * read(const string &pathName, const string &fileName)
Reads GLTF file.
static string determineTextureFileName(const string &imageName)
Determine texture file name.
static Node * parseNode(const string &pathName, const tinygltf::Model &gltfModel, int gltfNodeIdx, Model *model, Node *parentNode)
Parse GLTF node.
static void parseNodeChildren(const string &pathName, const tinygltf::Model &gltfModel, const vector< int > &gltfNodeChildrenIdx, Node *parentNode)
Parse GLTF node children into TDME node.
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.
Representation of a 3d model.