mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
58 lines
1.5 KiB
C++
58 lines
1.5 KiB
C++
#include "creatureanimation.hpp"
|
|
|
|
#include <OgreEntity.h>
|
|
#include <OgreParticleSystem.h>
|
|
#include <OgreSceneManager.h>
|
|
#include <OgreSubEntity.h>
|
|
|
|
#include "renderconst.hpp"
|
|
|
|
#include "../mwbase/world.hpp"
|
|
|
|
namespace MWRender
|
|
{
|
|
|
|
CreatureAnimation::~CreatureAnimation()
|
|
{
|
|
}
|
|
|
|
CreatureAnimation::CreatureAnimation(const MWWorld::Ptr &ptr)
|
|
: Animation(ptr)
|
|
{
|
|
MWWorld::LiveCellRef<ESM::Creature> *ref = mPtr.get<ESM::Creature>();
|
|
|
|
assert (ref->mBase != NULL);
|
|
if(!ref->mBase->mModel.empty())
|
|
{
|
|
std::string model = "meshes\\"+ref->mBase->mModel;
|
|
|
|
createObjectList(mPtr.getRefData().getBaseNode(), model);
|
|
for(size_t i = 0;i < mObjectList.mEntities.size();i++)
|
|
{
|
|
Ogre::Entity *ent = mObjectList.mEntities[i];
|
|
ent->setVisibilityFlags(RV_Actors);
|
|
|
|
for(unsigned int j=0; j < ent->getNumSubEntities(); ++j)
|
|
{
|
|
Ogre::SubEntity* subEnt = ent->getSubEntity(j);
|
|
subEnt->setRenderQueueGroup(subEnt->getMaterial()->isTransparent() ? RQG_Alpha : RQG_Main);
|
|
}
|
|
}
|
|
for(size_t i = 0;i < mObjectList.mParticles.size();i++)
|
|
{
|
|
Ogre::ParticleSystem *part = mObjectList.mParticles[i];
|
|
part->setVisibilityFlags(RV_Actors);
|
|
|
|
part->setRenderQueueGroup(RQG_Alpha);
|
|
}
|
|
|
|
std::vector<std::string> names;
|
|
if((ref->mBase->mFlags&ESM::Creature::Biped))
|
|
names.push_back("meshes\\base_anim.nif");
|
|
names.push_back(model);
|
|
setAnimationSources(names);
|
|
}
|
|
}
|
|
|
|
}
|