1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 09:49:55 +00:00
openmw-tes3mp/apps/openmw/mwrender/creatureanimation.cpp

83 lines
2.3 KiB
C++
Raw Normal View History

#include "creatureanimation.hpp"
#include <OgreEntity.h>
#include <OgreSceneManager.h>
#include <OgreSubEntity.h>
2012-04-03 13:13:47 +00:00
#include "renderconst.hpp"
#include "../mwbase/world.hpp"
using namespace Ogre;
using namespace NifOgre;
namespace MWRender{
2011-12-12 04:42:39 +00:00
CreatureAnimation::~CreatureAnimation()
{
2011-12-12 04:42:39 +00:00
}
CreatureAnimation::CreatureAnimation(const MWWorld::Ptr& ptr, OEngine::Render::OgreRenderer& _rend): Animation(_rend)
{
2012-01-06 02:45:17 +00:00
insert = ptr.getRefData().getBaseNode();
MWWorld::LiveCellRef<ESM::Creature> *ref = ptr.get<ESM::Creature>();
2012-01-17 14:10:53 +00:00
assert (ref->base != NULL);
if(!ref->base->model.empty())
{
std::string mesh = "meshes\\" + ref->base->model;
// FIXME: There can be more than one!
NifOgre::MeshPairList meshes = NifOgre::NIFLoader::load(mesh);
base = mRend.getScene()->createEntity(meshes[0].first->getName());
2012-04-03 13:13:47 +00:00
base->setVisibilityFlags(RV_Actors);
2012-04-04 16:53:40 +00:00
bool transparent = false;
for (unsigned int i=0; i<base->getNumSubEntities(); ++i)
{
Ogre::MaterialPtr mat = base->getSubEntity(i)->getMaterial();
Ogre::Material::TechniqueIterator techIt = mat->getTechniqueIterator();
while (techIt.hasMoreElements())
{
Ogre::Technique* tech = techIt.getNext();
Ogre::Technique::PassIterator passIt = tech->getPassIterator();
while (passIt.hasMoreElements())
{
Ogre::Pass* pass = passIt.getNext();
if (pass->getDepthWriteEnabled() == false)
transparent = true;
}
}
}
base->setRenderQueueGroup(transparent ? RQG_Alpha : RQG_Main);
insert->attachObject(base);
}
}
void CreatureAnimation::runAnimation(float timepassed)
{
if(animate > 0)
{
//Add the amount of time passed to time
//Handle the animation transforms dependent on time
//Handle the shapes dependent on animation transforms
2011-12-27 00:23:46 +00:00
time += timepassed;
if(time >= stopTime)
{
animate--;
//std::cout << "Stopping the animation\n";
if(animate == 0)
time = stopTime;
else
time = startTime + (time - stopTime);
2011-12-28 22:34:47 +00:00
}
2012-01-17 14:10:53 +00:00
2011-12-28 03:35:22 +00:00
handleAnimationTransforms();
}
}
2012-01-17 14:10:53 +00:00
}