mirror of https://github.com/AxioDL/metaforce.git
559 lines
15 KiB
C++
559 lines
15 KiB
C++
|
#include "ANCS.hpp"
|
||
|
|
||
|
namespace Retro
|
||
|
{
|
||
|
namespace DNAMP2
|
||
|
{
|
||
|
|
||
|
void ANCS::CharacterSet::CharacterInfo::read(Athena::io::IStreamReader& reader)
|
||
|
{
|
||
|
idx = reader.readUint32Big();
|
||
|
atUint16 sectionCount = reader.readUint16Big();
|
||
|
name = reader.readString();
|
||
|
cmdl.read(reader);
|
||
|
cskr.read(reader);
|
||
|
cinf.read(reader);
|
||
|
|
||
|
atUint32 animationCount = reader.readUint32Big();
|
||
|
reader.enumerate(animations, animationCount);
|
||
|
|
||
|
pasDatabase.read(reader);
|
||
|
|
||
|
atUint32 partCount = reader.readUint32Big();
|
||
|
reader.enumerate(partResData.part, partCount);
|
||
|
|
||
|
atUint32 swhcCount = reader.readUint32Big();
|
||
|
reader.enumerate(partResData.swhc, swhcCount);
|
||
|
|
||
|
atUint32 unkCount = reader.readUint32Big();
|
||
|
reader.enumerate(partResData.unk, unkCount);
|
||
|
|
||
|
atUint32 elscCount = reader.readUint32Big();
|
||
|
reader.enumerate(partResData.elsc, elscCount);
|
||
|
|
||
|
atUint32 spscCount = reader.readUint32Big();
|
||
|
reader.enumerate(partResData.spsc, spscCount);
|
||
|
|
||
|
atUint32 unkCount2 = reader.readUint32Big();
|
||
|
if (unkCount2)
|
||
|
abort();
|
||
|
reader.enumerate(partResData.unk2, unkCount2);
|
||
|
|
||
|
unk1 = reader.readUint32Big();
|
||
|
|
||
|
animAABBs.clear();
|
||
|
if (sectionCount > 1)
|
||
|
{
|
||
|
atUint32 aabbCount = reader.readUint32Big();
|
||
|
reader.enumerate(animAABBs, aabbCount);
|
||
|
}
|
||
|
|
||
|
effects.clear();
|
||
|
if (sectionCount > 2)
|
||
|
{
|
||
|
atUint32 effectCount = reader.readUint32Big();
|
||
|
reader.enumerate(effects, effectCount);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 3)
|
||
|
{
|
||
|
cmdlOverride.read(reader);
|
||
|
cskrOverride.read(reader);
|
||
|
}
|
||
|
|
||
|
animIdxs.clear();
|
||
|
if (sectionCount > 4)
|
||
|
{
|
||
|
atUint32 aidxCount = reader.readUint32Big();
|
||
|
reader.enumerateBig(animIdxs, aidxCount);
|
||
|
}
|
||
|
|
||
|
extents.clear();
|
||
|
if (sectionCount > 9)
|
||
|
{
|
||
|
unk4 = reader.readUint32Big();
|
||
|
unk5 = reader.readUByte();
|
||
|
atUint32 extentsCount = reader.readUint32Big();
|
||
|
reader.enumerate(extents, extentsCount);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void ANCS::CharacterSet::CharacterInfo::write(Athena::io::IStreamWriter& writer) const
|
||
|
{
|
||
|
writer.writeUint32Big(idx);
|
||
|
|
||
|
atUint16 sectionCount;
|
||
|
if (unk4 || unk5 || extents.size())
|
||
|
sectionCount = 10;
|
||
|
else if (partResData.elsc.size())
|
||
|
sectionCount = 6;
|
||
|
else if (animIdxs.size())
|
||
|
sectionCount = 5;
|
||
|
else if (cmdlOverride)
|
||
|
sectionCount = 4;
|
||
|
else if (effects.size())
|
||
|
sectionCount = 3;
|
||
|
else if (animAABBs.size())
|
||
|
sectionCount = 2;
|
||
|
else
|
||
|
sectionCount = 1;
|
||
|
writer.writeUint16Big(sectionCount);
|
||
|
|
||
|
writer.writeString(name);
|
||
|
cmdl.write(writer);
|
||
|
cskr.write(writer);
|
||
|
cinf.write(writer);
|
||
|
|
||
|
writer.writeUint32Big(animations.size());
|
||
|
writer.enumerate(animations);
|
||
|
|
||
|
pasDatabase.write(writer);
|
||
|
|
||
|
writer.writeUint32Big(partResData.part.size());
|
||
|
writer.enumerate(partResData.part);
|
||
|
|
||
|
writer.writeUint32Big(partResData.swhc.size());
|
||
|
writer.enumerate(partResData.swhc);
|
||
|
|
||
|
writer.writeUint32Big(partResData.unk.size());
|
||
|
writer.enumerate(partResData.unk);
|
||
|
|
||
|
writer.writeUint32Big(partResData.elsc.size());
|
||
|
writer.enumerate(partResData.elsc);
|
||
|
|
||
|
writer.writeUint32Big(partResData.spsc.size());
|
||
|
writer.enumerate(partResData.spsc);
|
||
|
|
||
|
writer.writeUint32Big(partResData.unk2.size());
|
||
|
writer.enumerate(partResData.unk2);
|
||
|
|
||
|
writer.writeUint32Big(unk1);
|
||
|
|
||
|
if (sectionCount > 1)
|
||
|
{
|
||
|
writer.writeUint32Big(animAABBs.size());
|
||
|
writer.enumerate(animAABBs);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 2)
|
||
|
{
|
||
|
writer.writeUint32Big(effects.size());
|
||
|
writer.enumerate(effects);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 3)
|
||
|
{
|
||
|
cmdlOverride.write(writer);
|
||
|
cskrOverride.write(writer);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 4)
|
||
|
{
|
||
|
writer.writeUint32Big(animIdxs.size());
|
||
|
for (atUint32 idx : animIdxs)
|
||
|
writer.writeUint32Big(idx);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 9)
|
||
|
{
|
||
|
writer.writeUint32Big(unk4);
|
||
|
writer.writeUByte(unk5);
|
||
|
writer.writeUint32Big(extents.size());
|
||
|
writer.enumerate(extents);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void ANCS::CharacterSet::CharacterInfo::fromYAML(Athena::io::YAMLDocReader& reader)
|
||
|
{
|
||
|
idx = reader.readUint32("idx");
|
||
|
atUint16 sectionCount = reader.readUint16("sectionCount");
|
||
|
name = reader.readString("name");
|
||
|
reader.enumerate("cmdl", cmdl);
|
||
|
reader.enumerate("cskr", cskr);
|
||
|
reader.enumerate("cinf", cinf);
|
||
|
|
||
|
atUint32 animationCount = reader.readUint32("animationCount");
|
||
|
reader.enumerate("animations", animations, animationCount);
|
||
|
|
||
|
reader.enumerate("pasDatabase", pasDatabase);
|
||
|
|
||
|
atUint32 partCount = reader.readUint32("partCount");
|
||
|
reader.enumerate("part", partResData.part, partCount);
|
||
|
|
||
|
atUint32 swhcCount = reader.readUint32("swhcCount");
|
||
|
reader.enumerate("swhc", partResData.swhc, swhcCount);
|
||
|
|
||
|
atUint32 unkCount = reader.readUint32("unkCount");
|
||
|
reader.enumerate("unk", partResData.unk, unkCount);
|
||
|
|
||
|
atUint32 elscCount = reader.readUint32("elscCount");
|
||
|
reader.enumerate("elsc", partResData.elsc, elscCount);
|
||
|
|
||
|
atUint32 spscCount = reader.readUint32("spscCount");
|
||
|
reader.enumerate("spsc", partResData.spsc, spscCount);
|
||
|
|
||
|
atUint32 unk2Count = reader.readUint32("unk2Count");
|
||
|
reader.enumerate("unk2", partResData.unk2, unk2Count);
|
||
|
|
||
|
unk1 = reader.readUint32("unk1");
|
||
|
|
||
|
animAABBs.clear();
|
||
|
if (sectionCount > 1)
|
||
|
{
|
||
|
atUint32 aabbCount = reader.readUint32("animAABBCount");
|
||
|
reader.enumerate("part", animAABBs, aabbCount);
|
||
|
}
|
||
|
|
||
|
effects.clear();
|
||
|
if (sectionCount > 2)
|
||
|
{
|
||
|
atUint32 effectCount = reader.readUint32("effectCount");
|
||
|
reader.enumerate("effects", effects, effectCount);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 3)
|
||
|
{
|
||
|
reader.enumerate("cmdlOverride", cmdlOverride);
|
||
|
reader.enumerate("cskrOverride", cskrOverride);
|
||
|
}
|
||
|
|
||
|
animIdxs.clear();
|
||
|
if (sectionCount > 4)
|
||
|
{
|
||
|
atUint32 animIdxCount = reader.readUint32("animIdxCount");
|
||
|
reader.enumerate("animIdxs", animIdxs, animIdxCount);
|
||
|
}
|
||
|
|
||
|
extents.clear();
|
||
|
if (sectionCount > 9)
|
||
|
{
|
||
|
unk4 = reader.readUint32("unk4");
|
||
|
unk5 = reader.readUByte("unk5");
|
||
|
atUint32 extentsCount = reader.readUint32("extentsCount");
|
||
|
reader.enumerate("extents", extents, extentsCount);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void ANCS::CharacterSet::CharacterInfo::toYAML(Athena::io::YAMLDocWriter& writer) const
|
||
|
{
|
||
|
writer.writeUint32("idx", idx);
|
||
|
|
||
|
atUint16 sectionCount;
|
||
|
if (unk4 || unk5 || extents.size())
|
||
|
sectionCount = 10;
|
||
|
else if (partResData.elsc.size())
|
||
|
sectionCount = 6;
|
||
|
else if (animIdxs.size())
|
||
|
sectionCount = 5;
|
||
|
else if (cmdlOverride)
|
||
|
sectionCount = 4;
|
||
|
else if (effects.size())
|
||
|
sectionCount = 3;
|
||
|
else if (animAABBs.size())
|
||
|
sectionCount = 2;
|
||
|
else
|
||
|
sectionCount = 1;
|
||
|
writer.writeUint16("sectionCount", sectionCount);
|
||
|
|
||
|
writer.writeString("name", name);
|
||
|
writer.enumerate("cmdl", cmdl);
|
||
|
writer.enumerate("cskr", cskr);
|
||
|
writer.enumerate("cinf", cinf);
|
||
|
|
||
|
writer.writeUint32("animationCount", animations.size());
|
||
|
writer.enumerate("animations", animations);
|
||
|
|
||
|
writer.enumerate("pasDatabase", pasDatabase);
|
||
|
|
||
|
writer.writeUint32("partCount", partResData.part.size());
|
||
|
writer.enumerate("part", partResData.part);
|
||
|
|
||
|
writer.writeUint32("swhcCount", partResData.swhc.size());
|
||
|
writer.enumerate("swhc", partResData.swhc);
|
||
|
|
||
|
writer.writeUint32("unkCount", partResData.unk.size());
|
||
|
writer.enumerate("unk", partResData.unk);
|
||
|
|
||
|
writer.writeUint32("elscCount", partResData.elsc.size());
|
||
|
writer.enumerate("elsc", partResData.elsc);
|
||
|
|
||
|
writer.writeUint32("spscCount", partResData.spsc.size());
|
||
|
writer.enumerate("spsc", partResData.spsc);
|
||
|
|
||
|
writer.writeUint32("unk2Count", partResData.unk2.size());
|
||
|
writer.enumerate("unk2", partResData.unk2);
|
||
|
|
||
|
writer.writeUint32("unk1", unk1);
|
||
|
|
||
|
if (sectionCount > 1)
|
||
|
{
|
||
|
writer.writeUint32("animAABBCount", animAABBs.size());
|
||
|
writer.enumerate("animAABBs", animAABBs);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 2)
|
||
|
{
|
||
|
writer.writeUint32("effectCount", effects.size());
|
||
|
writer.enumerate("effects", effects);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 3)
|
||
|
{
|
||
|
writer.enumerate("cmdlOverride", cmdlOverride);
|
||
|
writer.enumerate("cskrOverride", cskrOverride);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 4)
|
||
|
{
|
||
|
writer.writeUint32("animIdxCount", animIdxs.size());
|
||
|
writer.enumerate("animIdxs", animIdxs);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 9)
|
||
|
{
|
||
|
writer.writeUint32("unk4", unk4);
|
||
|
writer.writeUByte("unk5", unk5);
|
||
|
writer.writeUint32("extentsCount", extents.size());
|
||
|
writer.enumerate("extents", extents);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void ANCS::AnimationSet::read(Athena::io::IStreamReader& reader)
|
||
|
{
|
||
|
atUint16 sectionCount = reader.readUint16Big();
|
||
|
|
||
|
atUint32 animationCount = reader.readUint32Big();
|
||
|
reader.enumerate(animations, animationCount);
|
||
|
|
||
|
atUint32 transitionCount = reader.readUint32Big();
|
||
|
reader.enumerate(transitions, transitionCount);
|
||
|
defaultTransition.read(reader);
|
||
|
|
||
|
additiveAnims.clear();
|
||
|
if (sectionCount > 1)
|
||
|
{
|
||
|
atUint32 additiveAnimCount = reader.readUint32Big();
|
||
|
reader.enumerate(additiveAnims, additiveAnimCount);
|
||
|
floatA = reader.readFloatBig();
|
||
|
floatB = reader.readFloatBig();
|
||
|
}
|
||
|
|
||
|
halfTransitions.clear();
|
||
|
if (sectionCount > 2)
|
||
|
{
|
||
|
atUint32 halfTransitionCount = reader.readUint32Big();
|
||
|
reader.enumerate(halfTransitions, halfTransitionCount);
|
||
|
}
|
||
|
|
||
|
evnts.clear();
|
||
|
if (sectionCount > 3)
|
||
|
{
|
||
|
atUint32 evntsCount = reader.readUint32Big();
|
||
|
reader.enumerate(evnts, evntsCount);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void ANCS::AnimationSet::write(Athena::io::IStreamWriter& writer) const
|
||
|
{
|
||
|
atUint16 sectionCount;
|
||
|
if (evnts.size())
|
||
|
sectionCount = 4;
|
||
|
else if (halfTransitions.size())
|
||
|
sectionCount = 3;
|
||
|
else if (additiveAnims.size())
|
||
|
sectionCount = 2;
|
||
|
else
|
||
|
sectionCount = 1;
|
||
|
|
||
|
writer.writeUint16Big(sectionCount);
|
||
|
|
||
|
writer.writeUint32Big(animations.size());
|
||
|
writer.enumerate(animations);
|
||
|
|
||
|
writer.writeUint32Big(transitions.size());
|
||
|
writer.enumerate(transitions);
|
||
|
defaultTransition.write(writer);
|
||
|
|
||
|
if (sectionCount > 1)
|
||
|
{
|
||
|
writer.writeUint32Big(additiveAnims.size());
|
||
|
writer.enumerate(additiveAnims);
|
||
|
writer.writeFloatBig(floatA);
|
||
|
writer.writeFloatBig(floatB);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 2)
|
||
|
{
|
||
|
writer.writeUint32Big(halfTransitions.size());
|
||
|
writer.enumerate(halfTransitions);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 3)
|
||
|
{
|
||
|
writer.writeUint32Big(evnts.size());
|
||
|
writer.enumerate(evnts);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void ANCS::AnimationSet::fromYAML(Athena::io::YAMLDocReader& reader)
|
||
|
{
|
||
|
atUint16 sectionCount = reader.readUint16("sectionCount");
|
||
|
|
||
|
atUint32 animationCount = reader.readUint32("animationCount");
|
||
|
reader.enumerate("animations", animations, animationCount);
|
||
|
|
||
|
atUint32 transitionCount = reader.readUint32("transitionCount");
|
||
|
reader.enumerate("transitions", transitions, transitionCount);
|
||
|
reader.enumerate("defaultTransition", defaultTransition);
|
||
|
|
||
|
additiveAnims.clear();
|
||
|
if (sectionCount > 1)
|
||
|
{
|
||
|
atUint32 additiveAnimCount = reader.readUint32("additiveAnimCount");
|
||
|
reader.enumerate("additiveAnims", additiveAnims, additiveAnimCount);
|
||
|
floatA = reader.readFloat("floatA");
|
||
|
floatB = reader.readFloat("floatB");
|
||
|
}
|
||
|
|
||
|
halfTransitions.clear();
|
||
|
if (sectionCount > 2)
|
||
|
{
|
||
|
atUint32 halfTransitionCount = reader.readUint32("halfTransitionCount");
|
||
|
reader.enumerate("halfTransitions", halfTransitions, halfTransitionCount);
|
||
|
}
|
||
|
|
||
|
evnts.clear();
|
||
|
if (sectionCount > 3)
|
||
|
{
|
||
|
atUint32 evntsCount = reader.readUint32("evntsCount");
|
||
|
reader.enumerate("evnts", evnts, evntsCount);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void ANCS::AnimationSet::toYAML(Athena::io::YAMLDocWriter& writer) const
|
||
|
{
|
||
|
atUint16 sectionCount;
|
||
|
if (evnts.size())
|
||
|
sectionCount = 4;
|
||
|
else if (halfTransitions.size())
|
||
|
sectionCount = 3;
|
||
|
else if (additiveAnims.size())
|
||
|
sectionCount = 2;
|
||
|
else
|
||
|
sectionCount = 1;
|
||
|
|
||
|
writer.writeUint16("sectionCount", sectionCount);
|
||
|
|
||
|
writer.writeUint32("animationCount", animations.size());
|
||
|
writer.enumerate("animations", animations);
|
||
|
|
||
|
writer.writeUint32("transitionCount", transitions.size());
|
||
|
writer.enumerate("transitions", transitions);
|
||
|
writer.enumerate("defaultTransition", defaultTransition);
|
||
|
|
||
|
if (sectionCount > 1)
|
||
|
{
|
||
|
writer.writeUint32("additiveAnimCount", additiveAnims.size());
|
||
|
writer.enumerate("additiveAnims", additiveAnims);
|
||
|
writer.writeFloat("floatA", floatA);
|
||
|
writer.writeFloat("floatB", floatB);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 2)
|
||
|
{
|
||
|
writer.writeUint32("halfTransitionCount", halfTransitions.size());
|
||
|
writer.enumerate("halfTransitions", halfTransitions);
|
||
|
}
|
||
|
|
||
|
if (sectionCount > 3)
|
||
|
{
|
||
|
writer.writeUint32("evntsCount", evnts.size());
|
||
|
writer.enumerate("evnts", evnts);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void ANCS::AnimationSet::EVNT::read(Athena::io::IStreamReader& reader)
|
||
|
{
|
||
|
version = reader.readUint32Big();
|
||
|
|
||
|
atUint32 loopCount = reader.readUint32Big();
|
||
|
reader.enumerate(loopEvents, loopCount);
|
||
|
|
||
|
uevtEvents.clear();
|
||
|
if (version == 2)
|
||
|
{
|
||
|
atUint32 uevtCount = reader.readUint32Big();
|
||
|
reader.enumerate(uevtEvents, uevtCount);
|
||
|
}
|
||
|
|
||
|
atUint32 effectCount = reader.readUint32Big();
|
||
|
reader.enumerate(effectEvents, effectCount);
|
||
|
|
||
|
atUint32 sfxCount = reader.readUint32Big();
|
||
|
reader.enumerate(sfxEvents, sfxCount);
|
||
|
}
|
||
|
|
||
|
void ANCS::AnimationSet::EVNT::write(Athena::io::IStreamWriter& writer) const
|
||
|
{
|
||
|
writer.writeUint32Big(version);
|
||
|
|
||
|
writer.writeUint32Big(loopEvents.size());
|
||
|
writer.enumerate(loopEvents);
|
||
|
|
||
|
if (version == 2)
|
||
|
{
|
||
|
writer.writeUint32Big(uevtEvents.size());
|
||
|
writer.enumerate(uevtEvents);
|
||
|
}
|
||
|
|
||
|
writer.writeUint32Big(effectEvents.size());
|
||
|
writer.enumerate(effectEvents);
|
||
|
|
||
|
writer.writeUint32Big(sfxEvents.size());
|
||
|
writer.enumerate(sfxEvents);
|
||
|
}
|
||
|
|
||
|
void ANCS::AnimationSet::EVNT::fromYAML(Athena::io::YAMLDocReader& reader)
|
||
|
{
|
||
|
version = reader.readUint32("version");
|
||
|
|
||
|
atUint32 loopCount = reader.readUint32("loopCount");
|
||
|
reader.enumerate("loopEvents", loopEvents, loopCount);
|
||
|
|
||
|
uevtEvents.clear();
|
||
|
if (version == 2)
|
||
|
{
|
||
|
atUint32 uevtCount = reader.readUint32("uevtCount");
|
||
|
reader.enumerate("uevtEvents", uevtEvents, uevtCount);
|
||
|
}
|
||
|
|
||
|
atUint32 effectCount = reader.readUint32("effectCount");
|
||
|
reader.enumerate("effectEvents", effectEvents, effectCount);
|
||
|
|
||
|
atUint32 sfxCount = reader.readUint32("sfxCount");
|
||
|
reader.enumerate("sfxEvents", sfxEvents, sfxCount);
|
||
|
}
|
||
|
|
||
|
void ANCS::AnimationSet::EVNT::toYAML(Athena::io::YAMLDocWriter& writer) const
|
||
|
{
|
||
|
writer.writeUint32("version", version);
|
||
|
|
||
|
writer.writeUint32("loopCount", loopEvents.size());
|
||
|
writer.enumerate("loopEvents", loopEvents);
|
||
|
|
||
|
if (version == 2)
|
||
|
{
|
||
|
writer.writeUint32("uevtCount", uevtEvents.size());
|
||
|
writer.enumerate("uevtEvents", uevtEvents);
|
||
|
}
|
||
|
|
||
|
writer.writeUint32("effectCount", effectEvents.size());
|
||
|
writer.enumerate("effectEvents", effectEvents);
|
||
|
|
||
|
writer.writeUint32("sfxCount", sfxEvents.size());
|
||
|
writer.enumerate("sfxEvents", sfxEvents);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|