TDME2 1.9.121
importtmodel-main.cpp
Go to the documentation of this file.
1#include <cstdlib>
2#include <string>
3
4#include <tdme/tdme.h>
14#include <tdme/engine/Engine.h>
15#include <tdme/engine/Version.h>
23
42
43namespace tdme {
44namespace tools {
45namespace cli {
46
47/**
48 * Import tmodel application
49 * @author andreas.drewke
50 * @version $Id$
51 */
53 : public virtual Application
54{
55private:
59
60public:
61 /**
62 * Public constructor
63 */
64 ImportTModelApplication(const string& tModelFileName, const string& modelFileName, const string& bvsModelFileName):
68 }
69
70 /**
71 * Public denstructor
72 */
74 }
75
76 /**
77 * Main
78 * @param argc argument count
79 * @param argv argument values
80 */
81 inline static void main(int argc, char** argv) {
82 string tModelFileName = argv[1];
83 string modelFileName = argv[2];
84 string bvsModelFileName = argc >= 4?argv[3]:"";
85 auto importTModelApplication = new ImportTModelApplication(tModelFileName, modelFileName, bvsModelFileName);
86 importTModelApplication->run(argc, argv, "Import TModel Application", nullptr, Application::WINDOW_HINT_INVISIBLE);
87 }
88
89 // overriden methods
90 void display() override {
91 try {
92 Prototype* prototype = nullptr;
93 // load model
94 Console::println("Loading model: " + modelFileName);
95 auto model = ModelReader::read(
96 FileSystem::getInstance()->getPathName(modelFileName),
97 FileSystem::getInstance()->getFileName(modelFileName)
98 );
99 // load tmm
100 if (FileSystem::getInstance()->fileExists(tModelFileName) == false) {
101 Console::println("Creating tmodel: " + tModelFileName);
102 auto pathName = FileSystem::getInstance()->getPathName(tModelFileName);
103 auto fileName = FileSystem::getInstance()->getFileName(tModelFileName);
104 auto fileNameWithoutExtension = StringTools::substring(fileName, 0, fileName.rfind('.'));
105 prototype = new Prototype(
106 -1,
107 Prototype_Type::MODEL,
108 fileNameWithoutExtension,
109 fileNameWithoutExtension,
110 pathName + "/" + fileName,
111 FileSystem::getInstance()->getPathName(modelFileName) + "/" + FileSystem::getInstance()->getFileName(modelFileName),
112 string(),
113 model,
114 Vector3(0.0f, 0.0f, 0.0f)
115 );
116 } else {
117 Console::println("Loading tmodel: " + tModelFileName);
118 prototype = PrototypeReader::read(
119 FileSystem::getInstance()->getPathName(tModelFileName),
120 FileSystem::getInstance()->getFileName(tModelFileName)
121 );
122 prototype->setModel(model);
123 }
124 // remove old bv mesh model files
125 GenerateConvexMeshes::removeConvexMeshes(prototype);
126 // load new convex meshes bv model
127 if (bvsModelFileName.empty() == false) {
128 Console::println("Loading convex mesh bounding volumes model: " + bvsModelFileName);
129 vector<vector<uint8_t>> convexMeshTMsData;
130 if (GenerateConvexMeshes::generateConvexMeshes(
131 prototype,
132 GenerateConvexMeshes::MODE_IMPORT,
133 nullptr,
134 FileSystem::getInstance()->getPathName(bvsModelFileName),
135 FileSystem::getInstance()->getFileName(bvsModelFileName),
136 convexMeshTMsData) == true) {
137 for (auto& convexMeshTMData: convexMeshTMsData) {
138 //
139 try {
140 auto prototypeBoundingVolume = new PrototypeBoundingVolume(prototype->getBoundingVolumeCount(), prototype);
141 prototypeBoundingVolume->setupConvexMesh(convexMeshTMData);
142 prototype->addBoundingVolume(prototypeBoundingVolume->getId(), prototypeBoundingVolume);
143 } catch (Exception& exception) {
144 Console::println(string("An error occurred: ") + exception.what());
145 }
146 }
147 //
148 }
149 }
150 Console::println("Saving tmodel: " + tModelFileName);
151 PrototypeWriter::write(
152 FileSystem::getInstance()->getPathName(tModelFileName),
153 FileSystem::getInstance()->getFileName(tModelFileName),
154 prototype
155 );
156 } catch (Exception& exception) {
157 Console::println("An error occurred: " + string(exception.what()));
158 }
159 Application::exit(0);
160 }
161
162 void dispose() override {
163 Engine::getInstance()->dispose();
164 }
165
166 void initialize() override {
167 Engine::getInstance()->initialize();
168 }
169
170 void reshape(int32_t width, int32_t height) override {
171 Engine::getInstance()->reshape(width, height);
172 }
173};
174
175};
176};
177};
178
179int main(int argc, char** argv)
180{
181 Console::println(string("importtmodel ") + Version::getVersion());
182 Console::println(Version::getCopyright());
183 Console::println();
184 if (argc < 3) {
185 Console::println("Usage: importtmodel model.tmodel modelfile.ext [bvs-model.ext]");
186 Application::exit(1);
187 }
189}
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
Representation of a 3d model.
Definition: Model.h:32
Prototype definition.
Definition: Prototype.h:49
bool addBoundingVolume(int idx, PrototypeBoundingVolume *prototypeBoundingVolume)
Add bounding volume at given index.
Definition: Prototype.cpp:71
void setModel(Model *model)
Set model.
Definition: Prototype.cpp:65
3D vector 3 class
Definition: Vector3.h:22
File system singleton class.
Definition: FileSystem.h:14
static void main(int argc, char **argv)
Main.
ImportTModelApplication(const string &tModelFileName, const string &modelFileName, const string &bvsModelFileName)
Public constructor.
void reshape(int32_t width, int32_t height) override
Console class.
Definition: Console.h:26
Model tools functions class.
Definition: ModelTools.h:38
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