#include "ModelMountTestCase.h" #include "components/ogre/model/ModelMount.h" #include "components/ogre/model/Model.h" #include "components/ogre/model/ModelDefinition.h" #include "components/ogre/model/SubModel.h" #include "components/ogre/SceneNodeProvider.h" #include #include #include #include using namespace Ember::OgreView; using namespace WFMath; namespace Ember { /** * Checks equality with an epsilon of 0.00001f. * This is suited for sizes between 0 and 100. * @param v1 * @param v2 * @return True if the vectors was considered to be equal. */ bool equals(const Ogre::Vector3& v1, const Ogre::Vector3& v2) { return (std::abs(v1.x - v2.x) < 0.00001f) && (std::abs(v1.y - v2.y) < 0.00001f) && (std::abs(v1.z - v2.z) < 0.00001f); } struct TestModel : public Model::Model { Ogre::MeshPtr mesh = Ogre::MeshManager::getSingleton().create("mesh", Ogre::ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME, true); explicit TestModel(Ogre::SceneManager& manager) : Model::Model(manager, std::make_shared<::Ember::OgreView::Model::ModelDefinition>(), "testmodel") { mUseInstancing = false; auto entity = manager.createEntity(mesh); mDefinition->setTranslate(Ogre::Vector3::ZERO); mLoaded = true; addSubmodel(std::make_unique(*entity, *this)); } }; void scaleAndTestMount(TestModel& model, Model::ModelMount& mount, const Ogre::Node* node) { WFMath::AxisBox<3> axisBox(WFMath::Point<3>(0, 0, 0), WFMath::Point<3>(10.0f, 10.0f, 10.0f)); model.mesh->_setBounds(Ogre::AxisAlignedBox(Ogre::Vector3(0, 0, 0), Ogre::Vector3(5.0f, 5.0f, 5.0f)), false); mount.rescale(&axisBox); CPPUNIT_ASSERT(equals(node->getScale(), Ogre::Vector3(2.0f, 2.0f, 2.0f))); model.mesh->_setBounds(Ogre::AxisAlignedBox(Ogre::Vector3(0, 0, 0), Ogre::Vector3(20.0f, 20.0f, 20.0f)), false); mount.rescale(&axisBox); CPPUNIT_ASSERT(equals(node->getScale(), Ogre::Vector3(0.5f, 0.5f, 0.5f))); model.mesh->_setBounds(Ogre::AxisAlignedBox(Ogre::Vector3(10.0f, 10.0f, 10.0f), Ogre::Vector3(20.0f, 20.0f, 20.0f)), false); mount.rescale(&axisBox); CPPUNIT_ASSERT(equals(node->getScale(), Ogre::Vector3(1.0f, 1.0f, 1.0f))); model.mesh->_setBounds(Ogre::AxisAlignedBox(Ogre::Vector3(0, 10.0f, 15.0f), Ogre::Vector3(20.0f, 20.0f, 20.0f)), false); mount.rescale(&axisBox); CPPUNIT_ASSERT(equals(node->getScale(), Ogre::Vector3(0.5f, 1.0f, 2.0f))); } void ModelMountTestCase::testModelMountScaling() { Ogre::Root root; Ogre::SceneManager* sceneManager = root.createSceneManager(Ogre::DefaultSceneManagerFactory::FACTORY_TYPE_NAME); TestModel model(*sceneManager); //First test with a straight forward case. Ogre::SceneNode* node = sceneManager->getRootSceneNode()->createChildSceneNode(); //We get an error when it's destroyed. So we don't destroy it. SceneNodeProvider* nodeProvider = new SceneNodeProvider(node, nullptr); Model::ModelMount mount(model, std::unique_ptr(nodeProvider)); scaleAndTestMount(model, mount, nodeProvider->getNode()); //Test with the parent node being scaled node->setScale(Ogre::Vector3(3.0f, 0.2f, 200.0f)); Ogre::SceneNode* subNode = node->createChildSceneNode(); nodeProvider = new SceneNodeProvider(subNode, nullptr); Model::ModelMount mount2(model, std::unique_ptr(nodeProvider)); scaleAndTestMount(model, mount2, nodeProvider->getNode()); //Test with the parent node being scaled and rotated node->setScale(Ogre::Vector3(3.0f, 0.2f, 200.0f)); node->yaw(Ogre::Degree(42)); node->pitch(Ogre::Degree(76)); node->roll(Ogre::Degree(98)); subNode = node->createChildSceneNode(); nodeProvider = new SceneNodeProvider(subNode, nullptr); Model::ModelMount mount3(model, std::unique_ptr(nodeProvider)); scaleAndTestMount(model, mount3, nodeProvider->getNode()); } }