TDME2 1.9.121
|
TDME model reader. More...
#include <tdme/engine/fileio/models/TMReader.h>
Static Public Member Functions | |
static Model * | read (const string &pathName, const string &fileName) |
TDME model format reader. More... | |
static Model * | read (const vector< uint8_t > &data, const string &pathName=string(), const string &fileName=string()) |
TDME model format reader. More... | |
Static Private Member Functions | |
static const string | getTexturePath (const string &modelPathName, const string &texturePathName, const string &textureFileName) |
Get texture path. More... | |
static void | readEmbeddedTextures (TMReaderInputStream *is, map< string, Texture * > &embeddedTextures) |
Read material. More... | |
static Material * | readMaterial (const string &pathName, TMReaderInputStream *is, const map< string, Texture * > &embeddedTextures, const array< uint8_t, 3 > &version) |
Read material. More... | |
static void | readAnimationSetup (TMReaderInputStream *is, Model *model, const array< uint8_t, 3 > &version) |
Read animation setup. More... | |
static const vector< Vector3 > | readVertices (TMReaderInputStream *is) |
Read vertices from input stream. More... | |
static const vector< TextureCoordinate > | readTextureCoordinates (TMReaderInputStream *is) |
Read texture coordinates from input stream. More... | |
static bool | readIndices (TMReaderInputStream *is, array< int32_t, 3 > *indices) |
Read indices from input stream. More... | |
static Animation * | readAnimation (TMReaderInputStream *is, Node *g) |
Read animation from input stream into node. More... | |
static void | readFacesEntities (TMReaderInputStream *is, Node *g) |
Read faces entities from input stream. More... | |
static Joint | readSkinningJoint (TMReaderInputStream *is) |
Read skinning joint. More... | |
static JointWeight | readSkinningJointWeight (TMReaderInputStream *is) |
Read skinning joint weight. More... | |
static void | readSkinning (TMReaderInputStream *is, Node *g) |
Read skinning from input stream. More... | |
static void | readSubNodes (TMReaderInputStream *is, Model *model, Node *parentNode, map< string, Node * > &subNodes) |
Read sub nodes. More... | |
static Node * | readNode (TMReaderInputStream *is, Model *model, Node *parentNode) |
Write node to output stream. More... | |
|
staticprivate |
Get texture path.
modelPathName | model path name |
texturePathName | texture path name |
textureFileName | texture file name |
Definition at line 160 of file TMReader.cpp.
|
static |
TDME model format reader.
pathName | path name |
fileName | file name |
tdme::os::filesystem::FileSystemException | |
tdme::engine::fileio::models::ModelFileIOException |
Definition at line 70 of file TMReader.cpp.
|
static |
TDME model format reader.
data | data vector to read TM from |
pathName | path name file was read from |
fileName | file name was read from |
Definition at line 77 of file TMReader.cpp.
|
staticprivate |
Read animation from input stream into node.
is | input stream |
g | node |
Definition at line 430 of file TMReader.cpp.
|
staticprivate |
Read animation setup.
is | input stream |
model | model |
version | version |
Definition at line 363 of file TMReader.cpp.
|
staticprivate |
Read material.
pathName | path name |
is | input stream |
embeddedTextures | embedded textures |
version | version |
Definition at line 174 of file TMReader.cpp.
|
staticprivate |
Read faces entities from input stream.
is | input stream |
g | node |
Definition at line 450 of file TMReader.cpp.
|
staticprivate |
Read indices from input stream.
is | input stream |
indices | indices |
Definition at line 414 of file TMReader.cpp.
|
staticprivate |
Read material.
pathName | path name |
is | input stream |
embeddedTextures | embedded textures |
version | version |
Definition at line 193 of file TMReader.cpp.
|
staticprivate |
Write node to output stream.
is | input stream |
model | model |
parentNode | parent node |
Definition at line 550 of file TMReader.cpp.
|
staticprivate |
Read skinning from input stream.
is | input stream |
g | node |
Definition at line 516 of file TMReader.cpp.
|
staticprivate |
Read skinning joint.
is | input stream |
Definition at line 499 of file TMReader.cpp.
|
staticprivate |
Read skinning joint weight.
is | input stream |
Definition at line 508 of file TMReader.cpp.
|
staticprivate |
Read sub nodes.
is | input stream |
model | model |
parentNode | parent node |
subNodes | sub nodes |
IOException | |
tdme::engine::fileio::models::ModelFileIOException |
Definition at line 540 of file TMReader.cpp.
|
staticprivate |
Read texture coordinates from input stream.
is | input stream |
Definition at line 400 of file TMReader.cpp.
|
staticprivate |
Read vertices from input stream.
is | input stream |
Definition at line 386 of file TMReader.cpp.