You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
3.7 KiB
C++
129 lines
3.7 KiB
C++
#include "actor.hpp"
|
|
|
|
#include <osg/Group>
|
|
#include <osg/Node>
|
|
|
|
#include <components/esm/mappings.hpp>
|
|
#include <components/misc/resourcehelpers.hpp>
|
|
#include <components/resource/resourcemanager.hpp>
|
|
#include <components/resource/scenemanager.hpp>
|
|
#include <components/sceneutil/attach.hpp>
|
|
#include <components/sceneutil/skeleton.hpp>
|
|
|
|
#include "../../model/world/data.hpp"
|
|
|
|
namespace CSVRender
|
|
{
|
|
const std::string Actor::MeshPrefix = "meshes\\";
|
|
|
|
Actor::Actor(const std::string& id, CSMWorld::Data& data)
|
|
: mId(id)
|
|
, mData(data)
|
|
, mBaseNode(new osg::Group())
|
|
, mSkeleton(nullptr)
|
|
{
|
|
mActorData = mData.getActorAdapter()->getActorData(mId);
|
|
connect(mData.getActorAdapter(), SIGNAL(actorChanged(const std::string&)),
|
|
this, SLOT(handleActorChanged(const std::string&)));
|
|
}
|
|
|
|
osg::Group* Actor::getBaseNode()
|
|
{
|
|
return mBaseNode;
|
|
}
|
|
|
|
void Actor::update()
|
|
{
|
|
mBaseNode->removeChildren(0, mBaseNode->getNumChildren());
|
|
|
|
// Load skeleton
|
|
std::string skeletonModel = mActorData->getSkeleton();
|
|
skeletonModel = Misc::ResourceHelpers::correctActorModelPath(skeletonModel, mData.getResourceSystem()->getVFS());
|
|
loadSkeleton(skeletonModel);
|
|
|
|
if (!mActorData->isCreature())
|
|
{
|
|
// Get rid of the extra attachments
|
|
SceneUtil::CleanObjectRootVisitor cleanVisitor;
|
|
mSkeleton->accept(cleanVisitor);
|
|
cleanVisitor.remove();
|
|
|
|
// Attach parts to skeleton
|
|
loadBodyParts();
|
|
}
|
|
else
|
|
{
|
|
SceneUtil::RemoveTriBipVisitor removeTriBipVisitor;
|
|
mSkeleton->accept(removeTriBipVisitor);
|
|
removeTriBipVisitor.remove();
|
|
}
|
|
|
|
// Post setup
|
|
mSkeleton->markDirty();
|
|
mSkeleton->setActive(SceneUtil::Skeleton::Active);
|
|
}
|
|
|
|
void Actor::handleActorChanged(const std::string& refId)
|
|
{
|
|
if (mId == refId)
|
|
{
|
|
update();
|
|
}
|
|
}
|
|
|
|
void Actor::loadSkeleton(const std::string& model)
|
|
{
|
|
auto sceneMgr = mData.getResourceSystem()->getSceneManager();
|
|
|
|
osg::ref_ptr<osg::Node> temp = sceneMgr->getInstance(model);
|
|
mSkeleton = dynamic_cast<SceneUtil::Skeleton*>(temp.get());
|
|
if (!mSkeleton)
|
|
{
|
|
mSkeleton = new SceneUtil::Skeleton();
|
|
mSkeleton->addChild(temp);
|
|
}
|
|
mBaseNode->addChild(mSkeleton);
|
|
|
|
// Map bone names to bones
|
|
mNodeMap.clear();
|
|
SceneUtil::NodeMapVisitor nmVisitor(mNodeMap);
|
|
mSkeleton->accept(nmVisitor);
|
|
|
|
}
|
|
|
|
void Actor::loadBodyParts()
|
|
{
|
|
for (int i = 0; i < ESM::PRT_Count; ++i)
|
|
{
|
|
auto type = (ESM::PartReferenceType) i;
|
|
std::string partId = mActorData->getPart(type);
|
|
attachBodyPart(type, getBodyPartMesh(partId));
|
|
}
|
|
}
|
|
|
|
void Actor::attachBodyPart(ESM::PartReferenceType type, const std::string& mesh)
|
|
{
|
|
auto sceneMgr = mData.getResourceSystem()->getSceneManager();
|
|
|
|
// Attach to skeleton
|
|
std::string boneName = ESM::getBoneName(type);
|
|
auto node = mNodeMap.find(boneName);
|
|
if (!mesh.empty() && node != mNodeMap.end())
|
|
{
|
|
auto instance = sceneMgr->getInstance(mesh);
|
|
SceneUtil::attach(instance, mSkeleton, boneName, node->second);
|
|
}
|
|
}
|
|
|
|
std::string Actor::getBodyPartMesh(const std::string& bodyPartId)
|
|
{
|
|
const auto& bodyParts = mData.getBodyParts();
|
|
|
|
int index = bodyParts.searchId(bodyPartId);
|
|
if (index != -1 && !bodyParts.getRecord(index).isDeleted())
|
|
return MeshPrefix + bodyParts.getRecord(index).get().mModel;
|
|
else
|
|
return "";
|
|
}
|
|
}
|