mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
64 lines
2.0 KiB
C++
64 lines
2.0 KiB
C++
#include "creatureanimation.hpp"
|
|
|
|
#include "../mwworld/world.hpp"
|
|
|
|
using namespace Ogre;
|
|
using namespace NifOgre;
|
|
namespace MWRender{
|
|
|
|
CreatureAnimation::~CreatureAnimation(){
|
|
|
|
}
|
|
CreatureAnimation::CreatureAnimation(const MWWorld::Ptr& ptr, MWWorld::Environment& _env,OEngine::Render::OgreRenderer& _rend): Animation(_env,_rend){
|
|
insert = ptr.getRefData().getBaseNode();
|
|
ESMS::LiveCellRef<ESM::Creature, MWWorld::RefData> *ref =
|
|
ptr.get<ESM::Creature>();
|
|
|
|
assert (ref->base != NULL);
|
|
if(!ref->base->model.empty()){
|
|
const std::string &mesh = "meshes\\" + ref->base->model;
|
|
std::string meshNumbered = mesh + getUniqueID(mesh) + ">|";
|
|
NifOgre::NIFLoader::load(meshNumbered);
|
|
base = mRend.getScene()->createEntity(meshNumbered);
|
|
std::string meshZero = mesh + "0000>|";
|
|
|
|
if((transformations = (NIFLoader::getSingletonPtr())->getAnim(meshZero))){
|
|
|
|
for(std::size_t init = 0; init < transformations->size(); init++){
|
|
rindexI.push_back(0);
|
|
tindexI.push_back(0);
|
|
}
|
|
stopTime = transformations->begin()->getStopTime();
|
|
startTime = transformations->begin()->getStartTime();
|
|
shapes = (NIFLoader::getSingletonPtr())->getShapes(meshZero);
|
|
}
|
|
textmappings = NIFLoader::getSingletonPtr()->getTextIndices(meshZero);
|
|
insert->attachObject(base);
|
|
}
|
|
}
|
|
|
|
void CreatureAnimation::runAnimation(float timepassed){
|
|
vecRotPos.clear();
|
|
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
|
|
time += timepassed;
|
|
if(time >= stopTime){
|
|
animate--;
|
|
//std::cout << "Stopping the animation\n";
|
|
if(animate == 0)
|
|
time = stopTime;
|
|
else
|
|
time = startTime + (time - stopTime);
|
|
}
|
|
|
|
handleAnimationTransforms();
|
|
handleShapes(shapes, base, base->getSkeleton());
|
|
|
|
}
|
|
}
|
|
}
|