metaforce/DataSpec/DNAMP1/CINF.hpp

60 lines
1.7 KiB
C++
Raw Normal View History

2015-08-11 23:32:02 +00:00
#ifndef _DNAMP1_CINF_HPP_
#define _DNAMP1_CINF_HPP_
2016-09-18 23:47:48 +00:00
#include "hecl/Blender/BlenderConnection.hpp"
2015-08-11 23:32:02 +00:00
#include "../DNACommon/DNACommon.hpp"
2016-04-07 03:40:25 +00:00
#include "../DNACommon/RigInverter.hpp"
2015-08-11 23:32:02 +00:00
2016-02-13 09:02:47 +00:00
namespace DataSpec
2015-08-11 23:32:02 +00:00
{
namespace DNAMP1
{
struct CINF : BigDNA
{
DECL_DNA
Value<atUint32> boneCount;
struct Bone : BigDNA
{
DECL_DNA
Value<atUint32> id;
Value<atUint32> parentId;
Value<atVec3f> origin;
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
{
DECL_DNA
String<-1> name;
Value<atUint32> boneId;
};
Vector<Name, DNA_COUNT(nameCount)> names;
2015-08-13 07:29:00 +00:00
2016-04-14 03:32:27 +00:00
atUint32 getInternalBoneIdxFromId(atUint32 id) const;
atUint32 getBoneIdxFromId(atUint32 id) const;
const std::string* getBoneNameFromId(atUint32 id) const;
void sendVertexGroupsToBlender(hecl::BlenderConnection::PyOutStream& os) const;
void sendCINFToBlender(hecl::BlenderConnection::PyOutStream& os, const UniqueID32& cinfId) const;
static std::string GetCINFArmatureName(const UniqueID32& cinfId);
2016-04-08 03:37:14 +00:00
2016-04-07 03:40:25 +00:00
CINF() = default;
using Armature = hecl::BlenderConnection::DataStream::Actor::Armature;
2016-04-09 23:19:17 +00:00
int RecursiveAddArmatureBone(const Armature& armature, const Armature::Bone* bone, int parent, int& curId,
2016-04-14 03:32:27 +00:00
std::unordered_map<std::string, atInt32>& idMap, std::map<std::string, int>& nameMap);
2016-04-07 03:40:25 +00:00
2016-04-14 03:32:27 +00:00
CINF(const Armature& armature, std::unordered_map<std::string, atInt32>& idMap);
2015-08-11 23:32:02 +00:00
};
}
}
#endif // _DNAMP1_CINF_HPP_