41int main(
int argc,
char** argv)
43 Console::println(
string(
"scenefixmodelszup2yup ") + Version::getVersion());
44 Console::println(Version::getCopyright());
48 Console::println(
"Usage: scenefixmodelszup2yup scene->tscene");
51 string sceneFileName = string(argv[1]);
53 Console::println(
"Loading scene: " + sceneFileName);
54 auto scene = SceneReader::read(
55 FileSystem::getInstance()->getPathName(sceneFileName),
56 FileSystem::getInstance()->getFileName(sceneFileName)
58 Console::println(
"Fixing scene models up axis from Z-Up to Y-Up");
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();
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();
82 Console::println(
"Saving scene: " + sceneFileName);
84 FileSystem::getInstance()->getPathName(sceneFileName),
85 FileSystem::getInstance()->getFileName(sceneFileName),
89 Console::println(
"An error occurred: " +
string(exception.what()));
Application base class, please make sure to allocate application on heap to have correct application ...
Represents rotation orders of a model.
Scene prototype library definition.
Matrix4x4 & identity()
Setup identity matrix.
Matrix4x4 & rotate(const Vector3 &axis, float angle)
Creates a rotation matrix.
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
File system singleton class.
std::exception Exception
Exception base class.
int main(int argc, char **argv)