TDME2 1.9.121
ModelReaderFBX.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
18
19using std::string;
20using std::vector;
21
34
35vector<string> ModelReader::extensions = {{"dae", "dxf", "fbx", "glb", "obj", "tm"}};
36
37const vector<string>& ModelReader::getModelExtensions() {
38 return extensions;
39}
40
41Model* ModelReader::read(const string& pathName, const string& fileName)
42{
43 try {
44 if (StringTools::endsWith(StringTools::toLowerCase(fileName), ".dae") == true) {
45 return DAEReader::read(pathName, fileName);
46 } else
47 if (StringTools::endsWith(StringTools::toLowerCase(fileName), ".dae") == true ||
48 StringTools::endsWith(StringTools::toLowerCase(fileName), ".dxf") == true ||
49 StringTools::endsWith(StringTools::toLowerCase(fileName), ".fbx") == true ||
50 StringTools::endsWith(StringTools::toLowerCase(fileName), ".obj") == true) {
51 return FBXReader::read(pathName, fileName);
52 } else
53 if (StringTools::endsWith(StringTools::toLowerCase(fileName), ".glb") == true) {
54 return GLTFReader::read(pathName, fileName);
55 } else
56 if (StringTools::endsWith(StringTools::toLowerCase(fileName), ".tm") == true) {
57 return TMReader::read(pathName, fileName);
58 } else {
59 throw ModelFileIOException(string("Unsupported mode file: ") + pathName + "/" + fileName);
60 }
61 } catch (Exception& exception) {
62 Console::println("ModelReaderFBX::read(): Could not load model: " + pathName + "/" + fileName + ": " + (exception.what()));
63 throw;
64 }
65 return nullptr;
66}
67
Collada DAE model reader.
Definition: DAEReader.h:40
static Model * read(const string &pathName, const string &fileName)
Reads Collada DAE file.
Definition: DAEReader.cpp:96
static Model * read(const string &pathName, const string &fileName)
Reads FBX file.
Definition: FBXReader.cpp:66
static Model * read(const string &pathName, const string &fileName)
Reads GLTF file.
Definition: GLTFReader.cpp:86
static Model * read(const string &pathName, const string &fileName)
Reads a model.
Definition: ModelReader.cpp:39
static STATIC_DLL_IMPEXT vector< string > extensions
Definition: ModelReader.h:29
static Model * read(const string &pathName, const string &fileName)
TDME model format reader.
Definition: TMReader.cpp:70
Representation of a 3d model.
Definition: Model.h:32
File system singleton class.
Definition: FileSystem.h:14
Console class.
Definition: Console.h:26
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19