2011-12-12 04:42:39 +00:00
|
|
|
#include "animation.hpp"
|
|
|
|
|
2013-01-05 12:01:11 +00:00
|
|
|
#include <OgreSkeletonManager.h>
|
2012-07-03 13:32:38 +00:00
|
|
|
#include <OgreSkeletonInstance.h>
|
|
|
|
#include <OgreEntity.h>
|
2013-04-19 09:01:50 +00:00
|
|
|
#include <OgreSubEntity.h>
|
|
|
|
#include <OgreParticleSystem.h>
|
2012-07-03 13:32:38 +00:00
|
|
|
#include <OgreBone.h>
|
|
|
|
#include <OgreSubMesh.h>
|
2012-07-18 07:17:39 +00:00
|
|
|
#include <OgreSceneManager.h>
|
2011-12-17 06:29:08 +00:00
|
|
|
|
2013-01-07 05:18:48 +00:00
|
|
|
#include "../mwbase/environment.hpp"
|
2013-02-23 22:15:11 +00:00
|
|
|
#include "../mwbase/soundmanager.hpp"
|
2013-01-07 05:18:48 +00:00
|
|
|
#include "../mwbase/world.hpp"
|
|
|
|
|
2013-01-16 21:09:21 +00:00
|
|
|
#include "../mwmechanics/character.hpp"
|
|
|
|
|
2012-07-13 10:51:58 +00:00
|
|
|
namespace MWRender
|
|
|
|
{
|
2012-07-13 03:12:18 +00:00
|
|
|
|
2013-04-23 06:35:50 +00:00
|
|
|
Animation::AnimLayer::AnimLayer()
|
2013-05-07 23:59:32 +00:00
|
|
|
: mSource(NULL)
|
2013-04-23 06:35:50 +00:00
|
|
|
, mTime(0.0f)
|
|
|
|
, mPlaying(false)
|
2013-04-24 11:56:39 +00:00
|
|
|
, mLoopCount(0)
|
2013-04-23 06:35:50 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Ogre::Real Animation::AnimationValue::getValue() const
|
|
|
|
{
|
|
|
|
size_t idx = mIndex;
|
|
|
|
while(idx > 0 && mAnimation->mLayer[idx].mGroupName.empty())
|
|
|
|
idx--;
|
|
|
|
if(!mAnimation->mLayer[idx].mGroupName.empty())
|
|
|
|
return mAnimation->mLayer[idx].mTime;
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Animation::AnimationValue::setValue(Ogre::Real value)
|
|
|
|
{
|
|
|
|
mAnimation->mLayer[mIndex].mTime = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-07 19:41:27 +00:00
|
|
|
void Animation::destroyObjectList(Ogre::SceneManager *sceneMgr, NifOgre::ObjectList &objects)
|
|
|
|
{
|
|
|
|
for(size_t i = 0;i < objects.mParticles.size();i++)
|
|
|
|
sceneMgr->destroyParticleSystem(objects.mParticles[i]);
|
|
|
|
for(size_t i = 0;i < objects.mEntities.size();i++)
|
|
|
|
sceneMgr->destroyEntity(objects.mEntities[i]);
|
|
|
|
objects.mControllers.clear();
|
|
|
|
objects.mParticles.clear();
|
|
|
|
objects.mEntities.clear();
|
|
|
|
objects.mSkelBase = NULL;
|
|
|
|
}
|
|
|
|
|
2013-01-07 01:05:48 +00:00
|
|
|
Animation::Animation(const MWWorld::Ptr &ptr)
|
2013-04-24 11:41:52 +00:00
|
|
|
: mPtr(ptr)
|
2013-01-07 01:05:48 +00:00
|
|
|
, mInsert(NULL)
|
2013-04-14 23:56:35 +00:00
|
|
|
, mSkelBase(NULL)
|
2013-01-07 05:18:48 +00:00
|
|
|
, mAccumRoot(NULL)
|
2013-01-07 01:31:53 +00:00
|
|
|
, mNonAccumRoot(NULL)
|
2013-04-24 14:10:41 +00:00
|
|
|
, mNonAccumCtrl(NULL)
|
2013-04-16 01:55:28 +00:00
|
|
|
, mAccumulate(0.0f)
|
2013-01-07 05:18:48 +00:00
|
|
|
, mLastPosition(0.0f)
|
2013-02-15 10:15:39 +00:00
|
|
|
, mAnimVelocity(0.0f)
|
2013-01-19 05:40:47 +00:00
|
|
|
, mAnimSpeedMult(1.0f)
|
2012-07-13 03:12:18 +00:00
|
|
|
{
|
2013-04-24 11:41:52 +00:00
|
|
|
for(size_t i = 0;i < sMaxLayers;i++)
|
|
|
|
mAnimationValuePtr[i].bind(OGRE_NEW AnimationValue(this, i));
|
2011-12-17 06:29:08 +00:00
|
|
|
}
|
2012-02-20 13:02:24 +00:00
|
|
|
|
2012-07-13 03:12:18 +00:00
|
|
|
Animation::~Animation()
|
|
|
|
{
|
2013-01-05 07:19:48 +00:00
|
|
|
if(mInsert)
|
|
|
|
{
|
2013-05-07 23:59:32 +00:00
|
|
|
mAnimSources.clear();
|
|
|
|
|
2013-01-05 07:19:48 +00:00
|
|
|
Ogre::SceneManager *sceneMgr = mInsert->getCreator();
|
2013-05-07 06:11:26 +00:00
|
|
|
destroyObjectList(sceneMgr, mObjectRoot);
|
2013-01-05 07:19:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-07 06:11:26 +00:00
|
|
|
void Animation::setObjectRoot(Ogre::SceneNode *node, const std::string &model, bool baseonly)
|
2013-02-06 00:29:51 +00:00
|
|
|
{
|
2013-05-07 06:11:26 +00:00
|
|
|
OgreAssert(!mInsert, "Object already has a root!");
|
|
|
|
mInsert = node->createChildSceneNode();
|
2013-04-15 00:58:21 +00:00
|
|
|
|
2013-05-07 23:59:32 +00:00
|
|
|
std::string mdlname = Misc::StringUtils::lowerCase(model);
|
|
|
|
std::string::size_type p = mdlname.rfind('\\');
|
|
|
|
if(p == std::string::npos)
|
|
|
|
p = mdlname.rfind('/');
|
|
|
|
if(p != std::string::npos)
|
|
|
|
mdlname.insert(mdlname.begin()+p+1, 'x');
|
|
|
|
else
|
|
|
|
mdlname.insert(mdlname.begin(), 'x');
|
|
|
|
if(!Ogre::ResourceGroupManager::getSingleton().resourceExistsInAnyGroup(mdlname))
|
|
|
|
{
|
|
|
|
mdlname = model;
|
|
|
|
Misc::StringUtils::toLower(mdlname);
|
|
|
|
}
|
|
|
|
|
|
|
|
mObjectRoot = (!baseonly ? NifOgre::Loader::createObjects(mInsert, mdlname) :
|
|
|
|
NifOgre::Loader::createObjectBase(mInsert, mdlname));
|
2013-05-07 06:11:26 +00:00
|
|
|
if(mObjectRoot.mSkelBase)
|
2013-02-06 00:29:51 +00:00
|
|
|
{
|
2013-05-07 06:11:26 +00:00
|
|
|
mSkelBase = mObjectRoot.mSkelBase;
|
2013-04-07 20:46:29 +00:00
|
|
|
|
2013-05-07 06:11:26 +00:00
|
|
|
Ogre::AnimationStateSet *aset = mObjectRoot.mSkelBase->getAllAnimationStates();
|
2013-04-15 00:58:21 +00:00
|
|
|
Ogre::AnimationStateIterator asiter = aset->getAnimationStateIterator();
|
|
|
|
while(asiter.hasMoreElements())
|
2013-04-07 20:46:29 +00:00
|
|
|
{
|
2013-04-15 00:58:21 +00:00
|
|
|
Ogre::AnimationState *state = asiter.getNext();
|
|
|
|
state->setEnabled(false);
|
|
|
|
state->setLoop(false);
|
2013-04-07 20:46:29 +00:00
|
|
|
}
|
2013-02-06 00:29:51 +00:00
|
|
|
|
2013-04-15 00:58:21 +00:00
|
|
|
// Set the bones as manually controlled since we're applying the
|
2013-05-10 06:07:50 +00:00
|
|
|
// transformations manually
|
2013-05-07 06:11:26 +00:00
|
|
|
Ogre::SkeletonInstance *skelinst = mObjectRoot.mSkelBase->getSkeleton();
|
2013-04-15 00:58:21 +00:00
|
|
|
Ogre::Skeleton::BoneIterator boneiter = skelinst->getBoneIterator();
|
|
|
|
while(boneiter.hasMoreElements())
|
|
|
|
boneiter.getNext()->setManuallyControlled(true);
|
2013-02-06 00:29:51 +00:00
|
|
|
}
|
2013-05-07 06:11:26 +00:00
|
|
|
for(size_t i = 0;i < mObjectRoot.mControllers.size();i++)
|
2013-04-06 16:44:10 +00:00
|
|
|
{
|
2013-05-07 06:11:26 +00:00
|
|
|
if(mObjectRoot.mControllers[i].getSource().isNull())
|
|
|
|
mObjectRoot.mControllers[i].setSource(mAnimationValuePtr[0]);
|
2013-04-06 16:44:10 +00:00
|
|
|
}
|
2012-07-13 03:12:18 +00:00
|
|
|
}
|
2012-01-07 03:52:15 +00:00
|
|
|
|
2013-04-19 09:01:50 +00:00
|
|
|
void Animation::setRenderProperties(const NifOgre::ObjectList &objlist, Ogre::uint32 visflags, Ogre::uint8 solidqueue, Ogre::uint8 transqueue)
|
|
|
|
{
|
|
|
|
for(size_t i = 0;i < objlist.mEntities.size();i++)
|
|
|
|
{
|
|
|
|
Ogre::Entity *ent = objlist.mEntities[i];
|
|
|
|
if(visflags != 0)
|
|
|
|
ent->setVisibilityFlags(visflags);
|
|
|
|
|
|
|
|
for(unsigned int j = 0;j < ent->getNumSubEntities();++j)
|
|
|
|
{
|
|
|
|
Ogre::SubEntity* subEnt = ent->getSubEntity(j);
|
|
|
|
subEnt->setRenderQueueGroup(subEnt->getMaterial()->isTransparent() ? transqueue : solidqueue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(size_t i = 0;i < objlist.mParticles.size();i++)
|
|
|
|
{
|
|
|
|
Ogre::ParticleSystem *part = objlist.mParticles[i];
|
|
|
|
if(visflags != 0)
|
|
|
|
part->setVisibilityFlags(visflags);
|
|
|
|
// TODO: Check particle material for actual transparency
|
|
|
|
part->setRenderQueueGroup(transqueue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 20:51:48 +00:00
|
|
|
|
2013-05-07 23:59:32 +00:00
|
|
|
void Animation::addAnimSource(const std::string &model)
|
|
|
|
{
|
|
|
|
OgreAssert(mInsert, "Object is missing a root!");
|
|
|
|
if(!mSkelBase)
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::string kfname = Misc::StringUtils::lowerCase(model);
|
|
|
|
std::string::size_type p = kfname.rfind('\\');
|
|
|
|
if(p == std::string::npos)
|
|
|
|
p = kfname.rfind('/');
|
|
|
|
if(p != std::string::npos)
|
|
|
|
kfname.insert(kfname.begin()+p+1, 'x');
|
|
|
|
else
|
|
|
|
kfname.insert(kfname.begin(), 'x');
|
|
|
|
|
|
|
|
if(kfname.size() > 4 && kfname.compare(kfname.size()-4, 4, ".nif") == 0)
|
|
|
|
kfname.replace(kfname.size()-4, 4, ".kf");
|
|
|
|
|
|
|
|
if(!Ogre::ResourceGroupManager::getSingleton().resourceExistsInAnyGroup(kfname))
|
|
|
|
return;
|
|
|
|
|
|
|
|
mAnimSources.push_back(AnimSource());
|
|
|
|
NifOgre::Loader::createKfControllers(mSkelBase, kfname,
|
|
|
|
mAnimSources.back().mTextKeys,
|
|
|
|
mAnimSources.back().mControllers);
|
|
|
|
if(mAnimSources.back().mTextKeys.size() == 0 || mAnimSources.back().mControllers.size() == 0)
|
|
|
|
{
|
|
|
|
mAnimSources.pop_back();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<Ogre::Controller<Ogre::Real> > &ctrls = mAnimSources.back().mControllers;
|
|
|
|
NifOgre::NodeTargetValue<Ogre::Real> *dstval;
|
|
|
|
|
|
|
|
for(size_t i = 0;i < ctrls.size();i++)
|
|
|
|
{
|
|
|
|
dstval = static_cast<NifOgre::NodeTargetValue<Ogre::Real>*>(ctrls[i].getDestination().getPointer());
|
|
|
|
|
|
|
|
if(i == 0 && !mAccumRoot)
|
|
|
|
{
|
|
|
|
mAccumRoot = mInsert;
|
|
|
|
mNonAccumRoot = dstval->getNode();
|
|
|
|
}
|
|
|
|
|
|
|
|
ctrls[i].setSource(mAnimationValuePtr[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Animation::clearAnimSources()
|
|
|
|
{
|
|
|
|
for(size_t layer = 0;layer < sMaxLayers;layer++)
|
|
|
|
{
|
|
|
|
mLayer[layer].mGroupName.clear();
|
|
|
|
mLayer[layer].mSource = NULL;
|
|
|
|
mLayer[layer].mTime = 0.0f;
|
|
|
|
mLayer[layer].mLoopCount = 0;
|
|
|
|
mLayer[layer].mPlaying = false;
|
|
|
|
}
|
|
|
|
mNonAccumCtrl = NULL;
|
|
|
|
mAnimVelocity = 0.0f;
|
|
|
|
|
|
|
|
mLastPosition = Ogre::Vector3(0.0f);
|
|
|
|
mAccumRoot = NULL;
|
|
|
|
mNonAccumRoot = NULL;
|
|
|
|
|
|
|
|
mAnimSources.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-08 12:48:52 +00:00
|
|
|
Ogre::Node *Animation::getNode(const std::string &name)
|
|
|
|
{
|
2013-04-14 23:56:35 +00:00
|
|
|
if(mSkelBase)
|
2013-04-08 12:48:52 +00:00
|
|
|
{
|
2013-04-14 23:56:35 +00:00
|
|
|
Ogre::SkeletonInstance *skel = mSkelBase->getSkeleton();
|
2013-04-08 12:48:52 +00:00
|
|
|
if(skel->hasBone(name))
|
|
|
|
return skel->getBone(name);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-23 03:59:55 +00:00
|
|
|
NifOgre::TextKeyMap::const_iterator Animation::findGroupStart(const NifOgre::TextKeyMap &keys, const std::string &groupname)
|
|
|
|
{
|
|
|
|
NifOgre::TextKeyMap::const_iterator iter(keys.begin());
|
|
|
|
for(;iter != keys.end();iter++)
|
|
|
|
{
|
|
|
|
if(iter->second.compare(0, groupname.size(), groupname) == 0 &&
|
|
|
|
iter->second.compare(groupname.size(), 2, ": ") == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-20 05:55:04 +00:00
|
|
|
bool Animation::hasAnimation(const std::string &anim)
|
2013-01-16 23:00:06 +00:00
|
|
|
{
|
2013-05-07 23:59:32 +00:00
|
|
|
AnimSourceList::const_iterator iter(mAnimSources.begin());
|
|
|
|
for(;iter != mAnimSources.end();iter++)
|
2013-02-06 00:29:51 +00:00
|
|
|
{
|
2013-05-07 23:59:32 +00:00
|
|
|
const NifOgre::TextKeyMap &keys = iter->mTextKeys;
|
2013-04-23 03:59:55 +00:00
|
|
|
if(findGroupStart(keys, anim) != keys.end())
|
2013-02-06 00:29:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
2013-05-07 06:11:26 +00:00
|
|
|
|
2013-02-06 00:29:51 +00:00
|
|
|
return false;
|
2013-01-16 23:00:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-18 22:25:32 +00:00
|
|
|
void Animation::setAccumulation(const Ogre::Vector3 &accum)
|
|
|
|
{
|
|
|
|
mAccumulate = accum;
|
|
|
|
}
|
|
|
|
|
2013-02-15 10:15:39 +00:00
|
|
|
void Animation::setSpeed(float speed)
|
|
|
|
{
|
|
|
|
mAnimSpeedMult = 1.0f;
|
|
|
|
if(mAnimVelocity > 1.0f && speed > 0.0f)
|
|
|
|
mAnimSpeedMult = speed / mAnimVelocity;
|
|
|
|
}
|
|
|
|
|
2013-02-19 12:01:33 +00:00
|
|
|
|
2013-02-23 18:12:36 +00:00
|
|
|
void Animation::updatePtr(const MWWorld::Ptr &ptr)
|
|
|
|
{
|
|
|
|
mPtr = ptr;
|
|
|
|
}
|
|
|
|
|
2013-01-18 22:25:32 +00:00
|
|
|
|
2013-04-25 05:45:43 +00:00
|
|
|
float Animation::calcAnimVelocity(const NifOgre::TextKeyMap &keys, NifOgre::NodeTargetValue<Ogre::Real> *nonaccumctrl, const Ogre::Vector3 &accum, const std::string &groupname)
|
2013-02-22 17:22:06 +00:00
|
|
|
{
|
2013-04-23 04:34:39 +00:00
|
|
|
const std::string start = groupname+": start";
|
2013-04-22 11:10:46 +00:00
|
|
|
const std::string loopstart = groupname+": loop start";
|
|
|
|
const std::string loopstop = groupname+": loop stop";
|
2013-04-23 04:34:39 +00:00
|
|
|
const std::string stop = groupname+": stop";
|
|
|
|
float starttime = std::numeric_limits<float>::max();
|
|
|
|
float stoptime = 0.0f;
|
|
|
|
NifOgre::TextKeyMap::const_iterator keyiter(keys.begin());
|
2013-04-23 03:41:54 +00:00
|
|
|
while(keyiter != keys.end())
|
2013-02-22 17:22:06 +00:00
|
|
|
{
|
2013-04-23 04:34:39 +00:00
|
|
|
if(keyiter->second == start || keyiter->second == loopstart)
|
|
|
|
starttime = keyiter->first;
|
|
|
|
else if(keyiter->second == loopstop || keyiter->second == stop)
|
2013-02-22 17:22:06 +00:00
|
|
|
{
|
2013-04-23 04:34:39 +00:00
|
|
|
stoptime = keyiter->first;
|
2013-04-22 11:10:46 +00:00
|
|
|
break;
|
2013-02-22 17:22:06 +00:00
|
|
|
}
|
2013-04-22 11:10:46 +00:00
|
|
|
keyiter++;
|
|
|
|
}
|
2013-02-22 17:22:06 +00:00
|
|
|
|
2013-04-23 04:34:39 +00:00
|
|
|
if(stoptime > starttime)
|
2013-04-22 11:10:46 +00:00
|
|
|
{
|
2013-04-25 05:45:43 +00:00
|
|
|
Ogre::Vector3 startpos = nonaccumctrl->getTranslation(starttime) * accum;
|
|
|
|
Ogre::Vector3 endpos = nonaccumctrl->getTranslation(stoptime) * accum;
|
2013-02-22 17:22:06 +00:00
|
|
|
|
2013-04-23 04:34:39 +00:00
|
|
|
return startpos.distance(endpos) / (stoptime-starttime);
|
2013-02-22 17:22:06 +00:00
|
|
|
}
|
2013-04-22 08:40:41 +00:00
|
|
|
|
|
|
|
return 0.0f;
|
2013-02-22 17:22:06 +00:00
|
|
|
}
|
|
|
|
|
2013-02-20 10:32:48 +00:00
|
|
|
static void updateBoneTree(const Ogre::SkeletonInstance *skelsrc, Ogre::Bone *bone)
|
2013-01-30 17:29:16 +00:00
|
|
|
{
|
2013-02-20 10:32:48 +00:00
|
|
|
if(skelsrc->hasBone(bone->getName()))
|
2013-01-30 17:29:16 +00:00
|
|
|
{
|
|
|
|
Ogre::Bone *srcbone = skelsrc->getBone(bone->getName());
|
2013-02-20 10:32:48 +00:00
|
|
|
if(!srcbone->getParent() || !bone->getParent())
|
|
|
|
{
|
|
|
|
bone->setOrientation(srcbone->getOrientation());
|
|
|
|
bone->setPosition(srcbone->getPosition());
|
|
|
|
bone->setScale(srcbone->getScale());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bone->_setDerivedOrientation(srcbone->_getDerivedOrientation());
|
|
|
|
bone->_setDerivedPosition(srcbone->_getDerivedPosition());
|
|
|
|
bone->setScale(Ogre::Vector3::UNIT_SCALE);
|
|
|
|
}
|
2013-01-30 17:29:16 +00:00
|
|
|
}
|
2013-02-20 10:32:48 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// No matching bone in the source. Make sure it stays properly offset
|
|
|
|
// from its parent.
|
|
|
|
bone->resetToInitialState();
|
|
|
|
}
|
|
|
|
|
|
|
|
Ogre::Node::ChildNodeIterator boneiter = bone->getChildIterator();
|
|
|
|
while(boneiter.hasMoreElements())
|
|
|
|
updateBoneTree(skelsrc, static_cast<Ogre::Bone*>(boneiter.getNext()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Animation::updateSkeletonInstance(const Ogre::SkeletonInstance *skelsrc, Ogre::SkeletonInstance *skel)
|
|
|
|
{
|
|
|
|
Ogre::Skeleton::BoneIterator boneiter = skel->getRootBoneIterator();
|
|
|
|
while(boneiter.hasMoreElements())
|
|
|
|
updateBoneTree(skelsrc, boneiter.getNext());
|
2013-01-30 17:29:16 +00:00
|
|
|
}
|
|
|
|
|
2013-01-30 15:04:18 +00:00
|
|
|
|
2013-04-24 08:57:51 +00:00
|
|
|
void Animation::updatePosition(Ogre::Vector3 &position)
|
2013-01-07 05:18:48 +00:00
|
|
|
{
|
2013-04-07 23:21:45 +00:00
|
|
|
Ogre::Vector3 posdiff;
|
2013-01-17 04:14:49 +00:00
|
|
|
|
2013-04-24 08:57:51 +00:00
|
|
|
/* Get the non-accumulation root's difference from the last update, and move the position
|
|
|
|
* accordingly.
|
|
|
|
*/
|
2013-04-23 06:35:50 +00:00
|
|
|
posdiff = (mNonAccumCtrl->getTranslation(mLayer[0].mTime) - mLastPosition) * mAccumulate;
|
2013-04-24 08:57:51 +00:00
|
|
|
position += posdiff;
|
2013-04-07 23:21:45 +00:00
|
|
|
|
|
|
|
/* Translate the accumulation root back to compensate for the move. */
|
|
|
|
mLastPosition += posdiff;
|
|
|
|
mAccumRoot->setPosition(-mLastPosition);
|
2013-01-07 05:18:48 +00:00
|
|
|
}
|
|
|
|
|
2013-04-25 02:09:36 +00:00
|
|
|
bool Animation::reset(size_t layeridx, const NifOgre::TextKeyMap &keys, NifOgre::NodeTargetValue<Ogre::Real> *nonaccumctrl, const std::string &groupname, const std::string &start, const std::string &stop, float startpoint)
|
2013-01-07 05:18:48 +00:00
|
|
|
{
|
2013-04-23 03:41:54 +00:00
|
|
|
std::string tag = groupname+": "+start;
|
|
|
|
NifOgre::TextKeyMap::const_iterator startkey(keys.begin());
|
|
|
|
while(startkey != keys.end() && startkey->second != tag)
|
|
|
|
startkey++;
|
2013-04-24 07:40:58 +00:00
|
|
|
if(startkey == keys.end() && start == "loop start")
|
2013-01-09 11:30:55 +00:00
|
|
|
{
|
2013-04-23 03:41:54 +00:00
|
|
|
tag = groupname+": start";
|
|
|
|
startkey = keys.begin();
|
|
|
|
while(startkey != keys.end() && startkey->second != tag)
|
|
|
|
startkey++;
|
2013-01-09 11:30:55 +00:00
|
|
|
}
|
2013-04-23 03:41:54 +00:00
|
|
|
if(startkey == keys.end())
|
|
|
|
return false;
|
2013-04-22 12:08:52 +00:00
|
|
|
|
2013-04-23 03:41:54 +00:00
|
|
|
tag = groupname+": "+stop;
|
|
|
|
NifOgre::TextKeyMap::const_iterator stopkey(startkey);
|
|
|
|
while(stopkey != keys.end() && stopkey->second != tag)
|
|
|
|
stopkey++;
|
|
|
|
if(stopkey == keys.end())
|
|
|
|
return false;
|
2013-04-22 12:08:52 +00:00
|
|
|
|
2013-04-23 03:41:54 +00:00
|
|
|
if(startkey == stopkey)
|
|
|
|
return false;
|
|
|
|
|
2013-04-23 06:35:50 +00:00
|
|
|
mLayer[layeridx].mStartKey = startkey;
|
|
|
|
mLayer[layeridx].mLoopStartKey = startkey;
|
|
|
|
mLayer[layeridx].mStopKey = stopkey;
|
|
|
|
mLayer[layeridx].mNextKey = startkey;
|
2013-01-09 11:30:55 +00:00
|
|
|
|
2013-04-25 02:09:36 +00:00
|
|
|
mLayer[layeridx].mTime = mLayer[layeridx].mStartKey->first + ((mLayer[layeridx].mStopKey->first-
|
|
|
|
mLayer[layeridx].mStartKey->first) * startpoint);
|
|
|
|
|
|
|
|
tag = groupname+": loop start";
|
|
|
|
while(mLayer[layeridx].mNextKey->first <= mLayer[layeridx].mTime && mLayer[layeridx].mNextKey != mLayer[layeridx].mStopKey)
|
|
|
|
{
|
|
|
|
if(mLayer[layeridx].mNextKey->second == tag)
|
|
|
|
mLayer[layeridx].mLoopStartKey = mLayer[layeridx].mNextKey;
|
|
|
|
mLayer[layeridx].mNextKey++;
|
|
|
|
}
|
2013-04-23 03:41:54 +00:00
|
|
|
|
2013-04-23 06:35:50 +00:00
|
|
|
if(layeridx == 0 && nonaccumctrl)
|
|
|
|
mLastPosition = nonaccumctrl->getTranslation(mLayer[layeridx].mTime) * mAccumulate;
|
2013-04-23 03:41:54 +00:00
|
|
|
|
|
|
|
return true;
|
2013-04-22 12:08:52 +00:00
|
|
|
}
|
2013-02-23 13:15:10 +00:00
|
|
|
|
2013-04-24 11:56:39 +00:00
|
|
|
bool Animation::doLoop(size_t layeridx)
|
2013-04-22 12:08:52 +00:00
|
|
|
{
|
2013-04-24 11:56:39 +00:00
|
|
|
if(mLayer[layeridx].mLoopCount == 0)
|
|
|
|
return false;
|
|
|
|
mLayer[layeridx].mLoopCount--;
|
|
|
|
|
2013-04-23 06:35:50 +00:00
|
|
|
mLayer[layeridx].mTime = mLayer[layeridx].mLoopStartKey->first;
|
|
|
|
mLayer[layeridx].mNextKey = mLayer[layeridx].mLoopStartKey;
|
|
|
|
mLayer[layeridx].mNextKey++;
|
2013-04-23 12:34:08 +00:00
|
|
|
mLayer[layeridx].mPlaying = true;
|
2013-04-23 06:35:50 +00:00
|
|
|
if(layeridx == 0 && mNonAccumCtrl)
|
|
|
|
mLastPosition = mNonAccumCtrl->getTranslation(mLayer[layeridx].mTime) * mAccumulate;
|
2013-04-24 11:56:39 +00:00
|
|
|
|
|
|
|
return true;
|
2012-07-24 20:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-23 06:35:50 +00:00
|
|
|
bool Animation::handleTextKey(size_t layeridx, const NifOgre::TextKeyMap::const_iterator &key)
|
2013-02-23 22:39:01 +00:00
|
|
|
{
|
2013-04-22 12:08:52 +00:00
|
|
|
float time = key->first;
|
|
|
|
const std::string &evt = key->second;
|
|
|
|
|
2013-02-23 22:39:01 +00:00
|
|
|
if(evt.compare(0, 7, "sound: ") == 0)
|
|
|
|
{
|
|
|
|
MWBase::SoundManager *sndMgr = MWBase::Environment::get().getSoundManager();
|
|
|
|
sndMgr->playSound3D(mPtr, evt.substr(7), 1.0f, 1.0f);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if(evt.compare(0, 10, "soundgen: ") == 0)
|
|
|
|
{
|
|
|
|
// FIXME: Lookup the SoundGen (SNDG) for the specified sound that corresponds
|
|
|
|
// to this actor type
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-04-23 06:35:50 +00:00
|
|
|
if(evt.compare(0, mLayer[layeridx].mGroupName.size(), mLayer[layeridx].mGroupName) != 0 ||
|
|
|
|
evt.compare(mLayer[layeridx].mGroupName.size(), 2, ": ") != 0)
|
2013-04-22 05:13:49 +00:00
|
|
|
{
|
2013-04-23 06:35:50 +00:00
|
|
|
// Not ours, skip it
|
2013-04-22 05:13:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
2013-04-23 06:35:50 +00:00
|
|
|
size_t off = mLayer[layeridx].mGroupName.size()+2;
|
2013-04-22 05:13:49 +00:00
|
|
|
size_t len = evt.size() - off;
|
|
|
|
|
|
|
|
if(evt.compare(off, len, "start") == 0 || evt.compare(off, len, "loop start") == 0)
|
|
|
|
{
|
2013-04-23 06:35:50 +00:00
|
|
|
mLayer[layeridx].mLoopStartKey = key;
|
2013-04-22 05:13:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-04-24 13:48:34 +00:00
|
|
|
if(evt.compare(off, len, "loop stop") == 0 || evt.compare(off, len, "stop") == 0)
|
2013-04-24 13:32:11 +00:00
|
|
|
{
|
|
|
|
if(doLoop(layeridx))
|
|
|
|
{
|
|
|
|
if(mLayer[layeridx].mTime >= time)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2013-04-24 13:48:34 +00:00
|
|
|
|
|
|
|
std::cerr<< "Unhandled animation textkey: "<<evt <<std::endl;
|
2013-02-23 22:39:01 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-25 05:45:43 +00:00
|
|
|
bool Animation::play(const std::string &groupname, const std::string &start, const std::string &stop, float startpoint, size_t loops)
|
2012-07-13 03:12:18 +00:00
|
|
|
{
|
2013-04-23 06:35:50 +00:00
|
|
|
// TODO: parameterize this
|
|
|
|
size_t layeridx = 0;
|
|
|
|
|
2013-04-25 07:52:26 +00:00
|
|
|
if(!mSkelBase)
|
|
|
|
return false;
|
|
|
|
|
2013-04-25 07:18:02 +00:00
|
|
|
mLayer[layeridx].mGroupName.clear();
|
2013-05-07 23:59:32 +00:00
|
|
|
mLayer[layeridx].mSource = NULL;
|
2013-04-25 10:44:15 +00:00
|
|
|
mLayer[layeridx].mTime = 0.0f;
|
2013-04-25 07:18:02 +00:00
|
|
|
mLayer[layeridx].mLoopCount = 0;
|
|
|
|
mLayer[layeridx].mPlaying = false;
|
|
|
|
|
2013-05-01 02:26:41 +00:00
|
|
|
if(groupname.empty())
|
|
|
|
return false;
|
|
|
|
|
2013-04-25 05:45:43 +00:00
|
|
|
bool movinganim = false;
|
2013-04-23 10:42:00 +00:00
|
|
|
bool foundanim = false;
|
2013-04-23 09:48:11 +00:00
|
|
|
|
2013-04-23 10:42:00 +00:00
|
|
|
/* Look in reverse; last-inserted source has priority. */
|
2013-05-07 23:59:32 +00:00
|
|
|
AnimSourceList::reverse_iterator iter(mAnimSources.rbegin());
|
|
|
|
for(;iter != mAnimSources.rend();iter++)
|
|
|
|
{
|
|
|
|
const NifOgre::TextKeyMap &keys = iter->mTextKeys;
|
2013-04-23 10:42:00 +00:00
|
|
|
NifOgre::NodeTargetValue<Ogre::Real> *nonaccumctrl = NULL;
|
2013-04-24 08:18:08 +00:00
|
|
|
if(layeridx == 0 && mNonAccumRoot)
|
2013-04-23 10:42:00 +00:00
|
|
|
{
|
2013-05-07 23:59:32 +00:00
|
|
|
for(size_t i = 0;i < iter->mControllers.size();i++)
|
2013-04-23 09:48:11 +00:00
|
|
|
{
|
2013-04-23 10:42:00 +00:00
|
|
|
NifOgre::NodeTargetValue<Ogre::Real> *dstval;
|
2013-05-07 23:59:32 +00:00
|
|
|
dstval = dynamic_cast<NifOgre::NodeTargetValue<Ogre::Real>*>(iter->mControllers[i].getDestination().getPointer());
|
2013-04-23 10:42:00 +00:00
|
|
|
if(dstval && dstval->getNode() == mNonAccumRoot)
|
|
|
|
{
|
|
|
|
nonaccumctrl = dstval;
|
|
|
|
break;
|
|
|
|
}
|
2013-04-23 09:48:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-23 10:42:00 +00:00
|
|
|
if(!foundanim)
|
2013-02-06 00:29:51 +00:00
|
|
|
{
|
2013-04-25 02:09:36 +00:00
|
|
|
if(!reset(layeridx, keys, nonaccumctrl, groupname, start, stop, startpoint))
|
2013-04-23 03:41:54 +00:00
|
|
|
continue;
|
2013-04-25 10:44:15 +00:00
|
|
|
|
2013-04-23 10:42:00 +00:00
|
|
|
mLayer[layeridx].mGroupName = groupname;
|
2013-05-07 23:59:32 +00:00
|
|
|
mLayer[layeridx].mSource = &*iter;
|
2013-04-24 11:56:39 +00:00
|
|
|
mLayer[layeridx].mLoopCount = loops;
|
2013-04-23 10:42:00 +00:00
|
|
|
mLayer[layeridx].mPlaying = true;
|
2013-04-23 03:41:54 +00:00
|
|
|
|
2013-04-23 06:35:50 +00:00
|
|
|
if(layeridx == 0)
|
2013-02-06 00:29:51 +00:00
|
|
|
{
|
2013-04-23 10:42:00 +00:00
|
|
|
mNonAccumCtrl = nonaccumctrl;
|
|
|
|
mAnimVelocity = 0.0f;
|
2013-04-23 03:41:54 +00:00
|
|
|
}
|
2013-04-22 11:10:46 +00:00
|
|
|
|
2013-04-23 10:42:00 +00:00
|
|
|
foundanim = true;
|
2013-04-25 05:45:43 +00:00
|
|
|
|
|
|
|
if(mAccumulate == Ogre::Vector3(0.0f))
|
|
|
|
break;
|
2013-04-23 10:42:00 +00:00
|
|
|
}
|
2013-04-22 08:40:41 +00:00
|
|
|
|
2013-04-23 10:42:00 +00:00
|
|
|
if(!nonaccumctrl)
|
|
|
|
break;
|
2013-04-22 08:40:41 +00:00
|
|
|
|
2013-04-25 05:45:43 +00:00
|
|
|
mAnimVelocity = calcAnimVelocity(keys, nonaccumctrl, mAccumulate, groupname);
|
|
|
|
if(mAnimVelocity > 1.0f)
|
|
|
|
{
|
|
|
|
movinganim = (nonaccumctrl==mNonAccumCtrl);
|
|
|
|
break;
|
|
|
|
}
|
2013-05-07 23:59:32 +00:00
|
|
|
}
|
2013-04-23 10:42:00 +00:00
|
|
|
if(!foundanim)
|
|
|
|
std::cerr<< "Failed to find animation "<<groupname <<std::endl;
|
|
|
|
|
2013-04-25 05:45:43 +00:00
|
|
|
return movinganim;
|
2012-07-24 20:51:48 +00:00
|
|
|
}
|
2011-12-15 05:33:10 +00:00
|
|
|
|
2013-04-25 07:03:27 +00:00
|
|
|
void Animation::disable(size_t layeridx)
|
|
|
|
{
|
|
|
|
if(mLayer[layeridx].mGroupName.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
mLayer[layeridx].mGroupName.clear();
|
2013-05-07 23:59:32 +00:00
|
|
|
mLayer[layeridx].mSource = NULL;
|
2013-04-25 10:44:15 +00:00
|
|
|
mLayer[layeridx].mTime = 0.0f;
|
2013-04-25 07:03:27 +00:00
|
|
|
mLayer[layeridx].mLoopCount = 0;
|
|
|
|
mLayer[layeridx].mPlaying = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Animation::getInfo(size_t layeridx, float *complete, std::string *groupname, std::string *start, std::string *stop) const
|
|
|
|
{
|
|
|
|
if(mLayer[layeridx].mGroupName.empty())
|
|
|
|
{
|
|
|
|
if(complete) *complete = 0.0f;
|
|
|
|
if(groupname) *groupname = "";
|
|
|
|
if(start) *start = "";
|
|
|
|
if(stop) *stop = "";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(complete) *complete = (mLayer[layeridx].mTime - mLayer[layeridx].mStartKey->first) /
|
|
|
|
(mLayer[layeridx].mStopKey->first - mLayer[layeridx].mStartKey->first);
|
|
|
|
if(groupname) *groupname = mLayer[layeridx].mGroupName;
|
|
|
|
if(start) *start = mLayer[layeridx].mStartKey->second.substr(mLayer[layeridx].mGroupName.size()+2);
|
|
|
|
if(stop) *stop = mLayer[layeridx].mStopKey->second.substr(mLayer[layeridx].mGroupName.size()+2);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-23 06:35:50 +00:00
|
|
|
Ogre::Vector3 Animation::runAnimation(float duration)
|
2012-07-21 21:41:26 +00:00
|
|
|
{
|
2013-04-09 22:10:14 +00:00
|
|
|
Ogre::Vector3 movement(0.0f);
|
2013-01-30 15:04:18 +00:00
|
|
|
|
2013-04-23 06:35:50 +00:00
|
|
|
duration *= mAnimSpeedMult;
|
|
|
|
for(size_t layeridx = 0;layeridx < sMaxLayers;layeridx++)
|
2012-07-21 21:41:26 +00:00
|
|
|
{
|
2013-04-23 06:35:50 +00:00
|
|
|
if(mLayer[layeridx].mGroupName.empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
float timepassed = duration;
|
|
|
|
while(mLayer[layeridx].mPlaying)
|
2012-07-24 20:51:48 +00:00
|
|
|
{
|
2013-04-23 06:35:50 +00:00
|
|
|
float targetTime = mLayer[layeridx].mTime + timepassed;
|
|
|
|
if(mLayer[layeridx].mNextKey->first > targetTime)
|
|
|
|
{
|
|
|
|
mLayer[layeridx].mTime = targetTime;
|
2013-04-24 08:18:08 +00:00
|
|
|
if(layeridx == 0 && mNonAccumCtrl)
|
2013-04-24 08:57:51 +00:00
|
|
|
updatePosition(movement);
|
2013-04-23 06:35:50 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-07-21 21:41:26 +00:00
|
|
|
|
2013-04-23 06:35:50 +00:00
|
|
|
NifOgre::TextKeyMap::const_iterator key(mLayer[layeridx].mNextKey++);
|
|
|
|
mLayer[layeridx].mTime = key->first;
|
2013-04-24 08:18:08 +00:00
|
|
|
if(layeridx == 0 && mNonAccumCtrl)
|
2013-04-24 08:57:51 +00:00
|
|
|
updatePosition(movement);
|
2013-04-16 03:37:10 +00:00
|
|
|
|
2013-04-23 12:34:08 +00:00
|
|
|
mLayer[layeridx].mPlaying = (key != mLayer[layeridx].mStopKey);
|
2013-04-23 06:35:50 +00:00
|
|
|
timepassed = targetTime - mLayer[layeridx].mTime;
|
2013-01-18 22:50:55 +00:00
|
|
|
|
2013-04-23 06:35:50 +00:00
|
|
|
if(!handleTextKey(layeridx, key))
|
|
|
|
break;
|
|
|
|
}
|
2012-07-21 21:41:26 +00:00
|
|
|
}
|
2013-04-16 01:55:28 +00:00
|
|
|
|
2013-05-07 06:11:26 +00:00
|
|
|
for(size_t i = 0;i < mObjectRoot.mControllers.size();i++)
|
|
|
|
mObjectRoot.mControllers[i].update();
|
2013-05-07 23:59:32 +00:00
|
|
|
for(size_t layeridx = 0;layeridx < sMaxLayers;layeridx++)
|
|
|
|
{
|
|
|
|
if(mLayer[layeridx].mGroupName.empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for(size_t i = 0;i < mLayer[layeridx].mSource->mControllers.size();i++)
|
|
|
|
mLayer[layeridx].mSource->mControllers[i].update();
|
|
|
|
}
|
2013-04-23 10:42:00 +00:00
|
|
|
|
2013-04-14 23:56:35 +00:00
|
|
|
if(mSkelBase)
|
2013-04-07 23:21:45 +00:00
|
|
|
{
|
2013-05-07 06:11:26 +00:00
|
|
|
// HACK: Dirty the animation state set so that Ogre will apply the
|
|
|
|
// transformations to entities this skeleton instance is shared with.
|
|
|
|
mSkelBase->getAllAnimationStates()->_notifyDirty();
|
2013-04-07 23:21:45 +00:00
|
|
|
}
|
|
|
|
|
2013-01-19 00:21:29 +00:00
|
|
|
return movement;
|
2012-07-21 21:41:26 +00:00
|
|
|
}
|
|
|
|
|
2013-05-07 06:11:26 +00:00
|
|
|
void Animation::showWeapons(bool showWeapon)
|
|
|
|
{
|
|
|
|
}
|
2013-04-28 10:41:01 +00:00
|
|
|
|
2012-02-20 13:02:24 +00:00
|
|
|
}
|