mirror of https://github.com/AxioDL/metaforce.git
106 lines
3.0 KiB
C++
106 lines
3.0 KiB
C++
#include "Runtime/Character/CCharacterInfo.hpp"
|
|
#include "Runtime/Streams/IOStreams.hpp"
|
|
|
|
namespace metaforce {
|
|
|
|
CCharacterInfo::CParticleResData::CParticleResData(CInputStream& in, u16 tableCount) {
|
|
const u32 partCount = in.ReadLong();
|
|
x0_part.reserve(partCount);
|
|
for (u32 i = 0; i < partCount; ++i) {
|
|
x0_part.emplace_back(in.Get<CAssetId>());
|
|
}
|
|
|
|
const u32 swhcCount = in.ReadLong();
|
|
x10_swhc.reserve(swhcCount);
|
|
for (u32 i = 0; i < swhcCount; ++i) {
|
|
x10_swhc.emplace_back(in.Get<CAssetId>());
|
|
}
|
|
|
|
const u32 unkCount = in.ReadLong();
|
|
x20_elsc.reserve(unkCount);
|
|
for (u32 i = 0; i < unkCount; ++i) {
|
|
x20_elsc.emplace_back(in.Get<CAssetId>());
|
|
}
|
|
|
|
if (tableCount > 5) {
|
|
const u32 elscCount = in.ReadLong();
|
|
x30_elsc.reserve(elscCount);
|
|
for (u32 i = 0; i < elscCount; ++i) {
|
|
x30_elsc.emplace_back(in.Get<CAssetId>());
|
|
}
|
|
}
|
|
}
|
|
|
|
static std::vector<std::pair<s32, std::pair<std::string, std::string>>> MakeAnimInfoVector(CInputStream& in) {
|
|
std::vector<std::pair<s32, std::pair<std::string, std::string>>> ret;
|
|
const u32 animInfoCount = in.ReadLong();
|
|
ret.reserve(animInfoCount);
|
|
for (u32 i = 0; i < animInfoCount; ++i) {
|
|
const s32 idx = in.ReadLong();
|
|
std::string a = in.Get<std::string>();
|
|
std::string b = in.Get<std::string>();
|
|
ret.emplace_back(idx, std::make_pair(std::move(a), std::move(b)));
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
CCharacterInfo::CCharacterInfo(CInputStream& in)
|
|
: x0_tableCount(in.ReadShort())
|
|
, x4_name(in.Get<std::string>())
|
|
, x14_cmdl(in)
|
|
, x18_cskr(in)
|
|
, x1c_cinf(in)
|
|
, x20_animInfo(MakeAnimInfoVector(in))
|
|
, x30_pasDatabase(in)
|
|
, x44_partRes(in, x0_tableCount)
|
|
, x84_unk(in.ReadLong()) {
|
|
if (x0_tableCount > 1) {
|
|
const u32 aabbCount = in.ReadLong();
|
|
x88_aabbs.reserve(aabbCount);
|
|
for (u32 i = 0; i < aabbCount; ++i) {
|
|
std::string name = in.Get<std::string>();
|
|
x88_aabbs.emplace_back(std::move(name), zeus::CAABox());
|
|
x88_aabbs.back().second = in.Get<zeus::CAABox>();
|
|
}
|
|
}
|
|
|
|
if (x0_tableCount > 2) {
|
|
const u32 effectCount = in.ReadLong();
|
|
x98_effects.reserve(effectCount);
|
|
for (u32 i = 0; i < effectCount; ++i) {
|
|
std::string name = in.Get<std::string>();
|
|
x98_effects.emplace_back(std::move(name), std::vector<CEffectComponent>());
|
|
std::vector<CEffectComponent>& comps = x98_effects.back().second;
|
|
const u32 compCount = in.ReadLong();
|
|
comps.reserve(compCount);
|
|
for (u32 j = 0; j < compCount; ++j) {
|
|
comps.emplace_back(in);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (x0_tableCount > 3) {
|
|
xa8_cmdlOverlay = in.Get<CAssetId>();
|
|
xac_cskrOverlay = in.Get<CAssetId>();
|
|
}
|
|
|
|
if (x0_tableCount > 4) {
|
|
const u32 aidxCount = in.ReadLong();
|
|
xb0_animIdxs.reserve(aidxCount);
|
|
for (u32 i = 0; i < aidxCount; ++i) {
|
|
xb0_animIdxs.push_back(in.ReadLong());
|
|
}
|
|
}
|
|
}
|
|
|
|
s32 CCharacterInfo::GetAnimationIndex(std::string_view name) const {
|
|
for (const auto& pair : x20_animInfo) {
|
|
if (pair.second.second == name)
|
|
return pair.first;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
} // namespace metaforce
|