TDME2 1.9.121
converttotm-main.cpp
Go to the documentation of this file.
1#include <cstdlib>
2#include <string>
3
4#include <tdme/tdme.h>
15
26
27namespace tdme {
28namespace tools {
29namespace cli {
30
31/**
32 * Convert to tm application
33 * @author andreas.drewke
34 * @version $Id$
35 */
37 : public virtual Application
38{
39private:
40 vector<string> modelFileNames;
41
42public:
43 /**
44 * Public constructor
45 * @param modelFileNames model file names
46 */
47 ConvertToTMApplication(const vector<string>& modelFileNames):
49 }
50
51 /**
52 * Public denstructor
53 */
55 }
56
57 /**
58 * Main
59 * @param argc argument count
60 * @param argv argument values
61 */
62 inline static void main(int argc, char** argv) {
63 vector<string> modelFileNames;
64 for (auto i = 1; i < argc; i++) modelFileNames.push_back(argv[i]);
65 auto convertToTMApplication = new ConvertToTMApplication(modelFileNames);
66 convertToTMApplication->run(argc, argv, "Convert to tm Application", nullptr, Application::WINDOW_HINT_INVISIBLE);
67 }
68
69 // overriden methods
70 void display() override {
71 try {
72 for (auto inputFileName: modelFileNames) {
73 auto outputFileName = StringTools::substring(inputFileName, 0, inputFileName.rfind('.')) + ".tm";
74 try {
75 Console::println("Loading model: " + inputFileName);
76 auto model = ModelReader::read(
77 FileSystem::getInstance()->getPathName(inputFileName),
78 FileSystem::getInstance()->getFileName(inputFileName)
79 );
80 Console::println("Exporting model: " + outputFileName);
81 TMWriter::write(
82 model,
83 FileSystem::getInstance()->getPathName(outputFileName),
84 FileSystem::getInstance()->getFileName(outputFileName)
85 );
86 } catch (Exception& exception) {
87 Console::println("An error occurred: " + string(exception.what()));
88 }
89 }
90 } catch (Exception& exception) {
91 Console::println("An error occurred: " + string(exception.what()));
92 }
93 Application::exit(0);
94 }
95
96 void dispose() override {
97 Engine::getInstance()->dispose();
98 }
99
100 void initialize() override {
101 Engine::getInstance()->initialize();
102 }
103
104 void reshape(int32_t width, int32_t height) override {
105 Engine::getInstance()->reshape(width, height);
106 }
107};
108
109};
110};
111};
112
113int main(int argc, char** argv)
114{
115 Console::println(string("converttotm ") + Version::getVersion());
116 Console::println(Version::getCopyright());
117 Console::println();
118 if (argc < 2) {
119 Console::println("Usage: converttotm inputfile1 [inputfileN]");
120 Application::exit(1);
121 }
123}
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
Engine main class.
Definition: Engine.h:122
File system singleton class.
Definition: FileSystem.h:14
static void main(int argc, char **argv)
Main.
ConvertToTMApplication(const vector< string > &modelFileNames)
Public constructor.
void reshape(int32_t width, int32_t height) override
Console class.
Definition: Console.h:26
String tools class.
Definition: StringTools.h:20
int main(int argc, char **argv)
std::exception Exception
Exception base class.
Definition: Exception.h:19
Definition: fwd-tdme.h:4