TDME2 1.9.121
ModelReader.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
17
18using std::string;
19using std::vector;
20
32
33vector<string> ModelReader::extensions = {"dae", "glb", "tm"};
34
35const vector<string>& ModelReader::getModelExtensions() {
36 return extensions;
37}
38
39Model* ModelReader::read(const string& pathName, const string& fileName)
40{
41 try {
42 if (StringTools::endsWith(StringTools::toLowerCase(fileName), ".dae") == true) {
43 return DAEReader::read(pathName, fileName);
44 } else
45 if (StringTools::endsWith(StringTools::toLowerCase(fileName), ".glb") == true) {
46 return GLTFReader::read(pathName, fileName);
47 } else
48 if (StringTools::endsWith(StringTools::toLowerCase(fileName), ".tm") == true) {
49 return TMReader::read(pathName, fileName);
50 } else {
51 throw ModelFileIOException(string("Unsupported mode file: ") + pathName + "/" + fileName);
52 }
53 } catch (Exception& exception) {
54 Console::println("ModelLoader::read(): Could not read model: " + pathName + "/" + fileName + ": " + (exception.what()));
55 throw;
56 }
57 return nullptr;
58}
59
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 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