metaforce/DataSpec/DNAMP2/CINF.hpp

50 lines
1.3 KiB
C++
Raw Normal View History

2015-08-13 07:29:00 +00:00
#ifndef _DNAMP2_CINF_HPP_
#define _DNAMP2_CINF_HPP_
#include "../DNACommon/DNACommon.hpp"
2016-04-09 07:10:09 +00:00
#include "../DNACommon/RigInverter.hpp"
2015-08-13 07:29:00 +00:00
2017-12-29 08:08:12 +00:00
namespace DataSpec::DNAMP2
2015-08-13 07:29:00 +00:00
{
struct CINF : BigDNA
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA
2015-08-13 07:29:00 +00:00
Value<atUint32> boneCount;
struct Bone : BigDNA
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA
2015-08-13 07:29:00 +00:00
Value<atUint32> id;
Value<atUint32> parentId;
Value<atVec3f> origin;
Value<atVec4f> q1;
Value<atVec4f> q2;
2015-08-13 07:29:00 +00:00
Value<atUint32> linkedCount;
Vector<atUint32, DNA_COUNT(linkedCount)> linked;
};
Vector<Bone, DNA_COUNT(boneCount)> bones;
Value<atUint32> boneIdCount;
Vector<atUint32, DNA_COUNT(boneIdCount)> boneIds;
Value<atUint32> nameCount;
struct Name : BigDNA
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA
2015-08-13 07:29:00 +00:00
String<-1> name;
Value<atUint32> boneId;
};
Vector<Name, DNA_COUNT(nameCount)> names;
2016-04-07 03:40:25 +00:00
atUint32 getInternalBoneIdxFromId(atUint32 id) const;
atUint32 getBoneIdxFromId(atUint32 id) const;
const std::string* getBoneNameFromId(atUint32 id) const;
2017-12-29 08:08:12 +00:00
void sendVertexGroupsToBlender(hecl::blender::PyOutStream& os) const;
void sendCINFToBlender(hecl::blender::PyOutStream& os, const UniqueID32& cinfId) const;
static std::string GetCINFArmatureName(const UniqueID32& cinfId);
2015-08-13 07:29:00 +00:00
};
}
#endif // _DNAMP2_CINF_HPP_