2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-04-07 03:40:25 +00:00
|
|
|
|
2019-08-23 23:24:04 +00:00
|
|
|
#include <string>
|
2019-04-07 05:14:48 +00:00
|
|
|
#include <unordered_map>
|
2019-08-23 23:24:04 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <hecl/hecl.hpp>
|
|
|
|
#include <zeus/CQuaternion.hpp>
|
|
|
|
#include <zeus/CVector3f.hpp>
|
2016-04-07 03:40:25 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace DataSpec::DNAANIM {
|
2016-04-07 03:40:25 +00:00
|
|
|
|
|
|
|
/** One-shot process to invert CINF armature into connected rig,
|
|
|
|
* inverting rotations/translations of ANIM data to match */
|
|
|
|
template <class CINFType>
|
2018-12-08 05:30:43 +00:00
|
|
|
class RigInverter {
|
2016-04-07 03:40:25 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
struct Bone {
|
|
|
|
const typename CINFType::Bone& m_origBone;
|
2019-06-12 02:05:17 +00:00
|
|
|
zeus::CQuaternion m_inverter;
|
|
|
|
zeus::CQuaternion m_restorer;
|
2018-12-08 05:30:43 +00:00
|
|
|
zeus::CVector3f m_tail;
|
|
|
|
zeus::CVector3f m_parentDelta;
|
|
|
|
Bone(const CINFType& cinf, const typename CINFType::Bone& origBone);
|
|
|
|
};
|
|
|
|
|
2016-04-07 03:40:25 +00:00
|
|
|
private:
|
2018-12-08 05:30:43 +00:00
|
|
|
const CINFType& m_cinf;
|
|
|
|
std::vector<Bone> m_bones;
|
|
|
|
|
2016-04-07 03:40:25 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
RigInverter(const CINFType& cinf);
|
|
|
|
RigInverter(const CINFType& cinf, const std::unordered_map<std::string, hecl::blender::Matrix3f>& matrices);
|
|
|
|
const CINFType& getCINF() const { return m_cinf; }
|
|
|
|
const std::vector<Bone>& getBones() const { return m_bones; }
|
2016-04-08 23:11:26 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
zeus::CQuaternion invertRotation(atUint32 boneId, const zeus::CQuaternion& origRot) const;
|
|
|
|
zeus::CVector3f invertPosition(atUint32 boneId, const zeus::CVector3f& origPos, bool subDelta) const;
|
2016-04-08 23:11:26 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
zeus::CQuaternion restoreRotation(atUint32 boneId, const zeus::CQuaternion& origRot) const;
|
|
|
|
zeus::CVector3f restorePosition(atUint32 boneId, const zeus::CVector3f& origPos, bool subDelta) const;
|
2016-04-07 03:40:25 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace DataSpec::DNAANIM
|