2020-01-15 12:07:48 +00:00
|
|
|
#include "Runtime/Character/CCharLayoutInfo.hpp"
|
|
|
|
|
|
|
|
#include "Runtime/CToken.hpp"
|
2016-04-09 23:19:17 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2016-04-09 23:19:17 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
zeus::CVector3f CCharLayoutInfo::GetFromParentUnrotated(const CSegId& id) const {
|
|
|
|
const CCharLayoutNode::Bone& bone = x0_node->GetBoneMap()[id];
|
2019-10-27 01:24:08 +00:00
|
|
|
|
|
|
|
if (x0_node->GetBoneMap().HasElement(bone.x0_parentId)) {
|
|
|
|
const CCharLayoutNode::Bone& parent = x0_node->GetBoneMap()[bone.x0_parentId];
|
|
|
|
return bone.x4_origin - parent.x4_origin;
|
|
|
|
} else {
|
2018-12-08 05:30:43 +00:00
|
|
|
return bone.x4_origin;
|
|
|
|
}
|
2016-04-13 23:07:18 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
zeus::CVector3f CCharLayoutInfo::GetFromRootUnrotated(const CSegId& id) const {
|
|
|
|
const CCharLayoutNode::Bone& bone = x0_node->GetBoneMap()[id];
|
|
|
|
return bone.x4_origin;
|
2016-09-06 05:52:51 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
CSegId CCharLayoutInfo::GetSegIdFromString(std::string_view name) const {
|
2019-10-27 01:14:43 +00:00
|
|
|
const auto it = x18_segIdMap.find(name);
|
|
|
|
|
|
|
|
if (it == x18_segIdMap.cend()) {
|
2018-12-08 05:30:43 +00:00
|
|
|
return {};
|
2019-10-27 01:14:43 +00:00
|
|
|
}
|
2016-09-03 03:47:57 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
return it->second;
|
2016-09-03 03:47:57 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CCharLayoutNode::Bone::read(CInputStream& in) {
|
|
|
|
x0_parentId = CSegId(in);
|
|
|
|
x4_origin.readBig(in);
|
2016-04-09 23:19:17 +00:00
|
|
|
|
2019-10-27 01:21:55 +00:00
|
|
|
const u32 chCount = in.readUint32Big();
|
2018-12-08 05:30:43 +00:00
|
|
|
x10_children.reserve(chCount);
|
2019-10-27 01:21:55 +00:00
|
|
|
for (u32 i = 0; i < chCount; ++i) {
|
2018-12-08 05:30:43 +00:00
|
|
|
x10_children.emplace_back(in);
|
2019-10-27 01:21:55 +00:00
|
|
|
}
|
2016-04-09 23:19:17 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
CCharLayoutNode::CCharLayoutNode(CInputStream& in) : x0_boneMap(in.readUint32Big()) {
|
2019-10-27 01:21:55 +00:00
|
|
|
const u32 cap = x0_boneMap.GetCapacity();
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
for (u32 i = 0; i < cap; ++i) {
|
2019-10-27 01:21:55 +00:00
|
|
|
const u32 thisId = in.readUint32Big();
|
2018-12-08 05:30:43 +00:00
|
|
|
Bone& bone = x0_boneMap[thisId];
|
|
|
|
bone.read(in);
|
|
|
|
}
|
2016-04-09 23:19:17 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
CCharLayoutInfo::CCharLayoutInfo(CInputStream& in) : x0_node(std::make_shared<CCharLayoutNode>(in)), x8_segIdList(in) {
|
2019-10-27 01:19:54 +00:00
|
|
|
const atUint32 mapCount = in.readUint32Big();
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
for (atUint32 i = 0; i < mapCount; ++i) {
|
|
|
|
std::string key = in.readString();
|
2019-10-27 01:19:54 +00:00
|
|
|
x18_segIdMap.emplace(std::move(key), in);
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2016-04-09 23:19:17 +00:00
|
|
|
}
|
|
|
|
|
2016-09-02 19:32:57 +00:00
|
|
|
CFactoryFnReturn FCharLayoutInfo(const SObjectTag&, CInputStream& in, const CVParamTransfer&,
|
2018-12-08 05:30:43 +00:00
|
|
|
CObjectReference* selfRef) {
|
|
|
|
return TToken<CCharLayoutInfo>::GetIObjObjectFor(std::make_unique<CCharLayoutInfo>(in));
|
2016-04-09 23:19:17 +00:00
|
|
|
}
|
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
} // namespace metaforce
|