TDME2 1.9.121
scenefixmodelszup2yup-main.cpp
Go to the documentation of this file.
1#include <cstdlib>
2#include <string>
3
4#include <tdme/tdme.h>
15#include <tdme/engine/Version.h>
16#include <tdme/math/Matrix4x4.h>
17#include <tdme/math/Vector3.h>
22
40
41int main(int argc, char** argv)
42{
43 Console::println(string("scenefixmodelszup2yup ") + Version::getVersion());
44 Console::println(Version::getCopyright());
45 Console::println();
46
47 if (argc != 2) {
48 Console::println("Usage: scenefixmodelszup2yup scene->tscene");
49 Application::exit(1);
50 }
51 string sceneFileName = string(argv[1]);
52 try {
53 Console::println("Loading scene: " + sceneFileName);
54 auto scene = SceneReader::read(
55 FileSystem::getInstance()->getPathName(sceneFileName),
56 FileSystem::getInstance()->getFileName(sceneFileName)
57 );
58 Console::println("Fixing scene models up axis from Z-Up to Y-Up");
59 Matrix4x4 z2yUpMatrix;
60 z2yUpMatrix.identity().rotate(Vector3(1.0f, 0.0f, 0.0f), -90.0f);
61 // scene prototype library
62 auto sceneLibray = scene->getLibrary();
63 for (auto i = 0; i < sceneLibray->getPrototypeCount(); i++) {
64 auto prototype = sceneLibray->getPrototypeAt(i);
65 if (prototype->getType() != Prototype_Type::MODEL) continue;
66 prototype->getModel()->setImportTransformationsMatrix(prototype->getModel()->getImportTransformationsMatrix().clone().multiply(z2yUpMatrix));
67 prototype->getModel()->getBoundingBox()->getMin() = z2yUpMatrix.multiply(prototype->getModel()->getBoundingBox()->getMin());
68 prototype->getModel()->getBoundingBox()->getMax() = z2yUpMatrix.multiply(prototype->getModel()->getBoundingBox()->getMax());
69 prototype->getModel()->getBoundingBox()->update();
70 }
71 // scene entities
72 for (auto i = 0; i < scene->getEntityCount(); i++) {
73 auto sceneEntity = scene->getEntityAt(i);
74 if (sceneEntity->getPrototype()->getType() != Prototype_Type::MODEL) continue;
75 auto scale = sceneEntity->getTransformations().getScale();
76 sceneEntity->getTransformations().setScale(Vector3(scale.getX(), scale.getZ(), scale.getY()));
77 auto rotationX = sceneEntity->getTransformations().getRotationAngle(scene->getRotationOrder()->getAxisXIndex());
78 sceneEntity->getTransformations().setRotationAngle(scene->getRotationOrder()->getAxisXIndex(), rotationX + 90);
79 sceneEntity->getTransformations().update();
80 }
81 // TODO: bvs
82 Console::println("Saving scene: " + sceneFileName);
83 SceneWriter::write(
84 FileSystem::getInstance()->getPathName(sceneFileName),
85 FileSystem::getInstance()->getFileName(sceneFileName),
86 scene
87 );
88 } catch (Exception& exception) {
89 Console::println("An error occurred: " + string(exception.what()));
90 }
91}
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
Transformations which contain scale, rotations and translation.
Represents rotation orders of a model.
Definition: RotationOrder.h:23
Prototype definition.
Definition: Prototype.h:49
Scene entity definition.
Definition: SceneEntity.h:24
Scene prototype library definition.
Definition: SceneLibrary.h:27
Scene definition.
Definition: Scene.h:41
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Matrix4x4 & identity()
Setup identity matrix.
Definition: Matrix4x4.h:326
Matrix4x4 & rotate(const Vector3 &axis, float angle)
Creates a rotation matrix.
Definition: Matrix4x4.h:473
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
Definition: Matrix4x4.h:351
3D vector 3 class
Definition: Vector3.h:22
File system singleton class.
Definition: FileSystem.h:14
Console class.
Definition: Console.h:26
std::exception Exception
Exception base class.
Definition: Exception.h:19
int main(int argc, char **argv)