81 inline static void main(
int argc,
char** argv) {
86 importTModelApplication->run(argc, argv,
"Import TModel Application",
nullptr, Application::WINDOW_HINT_INVISIBLE);
95 auto model = ModelReader::read(
100 if (FileSystem::getInstance()->fileExists(
tModelFileName) ==
false) {
102 auto pathName = FileSystem::getInstance()->getPathName(
tModelFileName);
103 auto fileName = FileSystem::getInstance()->getFileName(
tModelFileName);
104 auto fileNameWithoutExtension = StringTools::substring(fileName, 0, fileName.rfind(
'.'));
107 Prototype_Type::MODEL,
108 fileNameWithoutExtension,
109 fileNameWithoutExtension,
110 pathName +
"/" + fileName,
118 prototype = PrototypeReader::read(
125 GenerateConvexMeshes::removeConvexMeshes(prototype);
128 Console::println(
"Loading convex mesh bounding volumes model: " +
bvsModelFileName);
129 vector<vector<uint8_t>> convexMeshTMsData;
130 if (GenerateConvexMeshes::generateConvexMeshes(
132 GenerateConvexMeshes::MODE_IMPORT,
136 convexMeshTMsData) ==
true) {
137 for (
auto& convexMeshTMData: convexMeshTMsData) {
141 prototypeBoundingVolume->setupConvexMesh(convexMeshTMData);
142 prototype->
addBoundingVolume(prototypeBoundingVolume->getId(), prototypeBoundingVolume);
144 Console::println(
string(
"An error occurred: ") + exception.what());
151 PrototypeWriter::write(
157 Console::println(
"An error occurred: " +
string(exception.what()));
159 Application::exit(0);
163 Engine::getInstance()->dispose();
167 Engine::getInstance()->initialize();
170 void reshape(int32_t width, int32_t height)
override {
171 Engine::getInstance()->reshape(width, height);
181 Console::println(
string(
"importtmodel ") + Version::getVersion());
182 Console::println(Version::getCopyright());
185 Console::println(
"Usage: importtmodel model.tmodel modelfile.ext [bvs-model.ext]");
186 Application::exit(1);
Application base class, please make sure to allocate application on heap to have correct application ...
Representation of a 3d model.
Prototype bounding volume definition.
bool addBoundingVolume(int idx, PrototypeBoundingVolume *prototypeBoundingVolume)
Add bounding volume at given index.
void setModel(Model *model)
Set model.
int getBoundingVolumeCount()
File system singleton class.
int main(int argc, char **argv)
std::exception Exception
Exception base class.