2015-08-08 04:49:42 +00:00
|
|
|
#include "ANCS.hpp"
|
2017-12-29 08:08:12 +00:00
|
|
|
#include "hecl/Blender/Connection.hpp"
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace DataSpec {
|
2016-08-22 00:11:18 +00:00
|
|
|
extern hecl::Database::DataSpecEntry SpecEntMP1;
|
2016-04-10 04:49:02 +00:00
|
|
|
extern hecl::Database::DataSpecEntry SpecEntMP1PC;
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace DNAMP1 {
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState::ParmInfo::Enumerate<BigDNA::Read>(
|
|
|
|
athena::io::IStreamReader& reader) {
|
|
|
|
parmType = reader.readUint32Big();
|
|
|
|
weightFunction = reader.readUint32Big();
|
|
|
|
weight = reader.readFloatBig();
|
|
|
|
switch (DataType(parmType)) {
|
|
|
|
case DataType::Int32:
|
|
|
|
range[0].int32 = reader.readInt32Big();
|
|
|
|
range[1].int32 = reader.readInt32Big();
|
|
|
|
break;
|
|
|
|
case DataType::UInt32:
|
|
|
|
case DataType::Enum:
|
|
|
|
range[0].uint32 = reader.readUint32Big();
|
|
|
|
range[1].uint32 = reader.readUint32Big();
|
|
|
|
break;
|
|
|
|
case DataType::Float:
|
|
|
|
range[0].float32 = reader.readFloatBig();
|
|
|
|
range[1].float32 = reader.readFloatBig();
|
|
|
|
break;
|
|
|
|
case DataType::Bool:
|
|
|
|
range[0].bool1 = reader.readBool();
|
|
|
|
range[1].bool1 = reader.readBool();
|
|
|
|
break;
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState::ParmInfo::Enumerate<BigDNA::Write>(
|
|
|
|
athena::io::IStreamWriter& writer) {
|
|
|
|
writer.writeUint32Big(parmType);
|
|
|
|
writer.writeUint32Big(weightFunction);
|
|
|
|
writer.writeFloatBig(weight);
|
|
|
|
switch (DataType(parmType)) {
|
|
|
|
case DataType::Int32:
|
|
|
|
writer.writeInt32Big(range[0].int32);
|
|
|
|
writer.writeInt32Big(range[1].int32);
|
|
|
|
break;
|
|
|
|
case DataType::UInt32:
|
|
|
|
case DataType::Enum:
|
|
|
|
writer.writeUint32Big(range[0].uint32);
|
2018-12-16 06:32:07 +00:00
|
|
|
writer.writeUint32Big(range[1].uint32);
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
case DataType::Float:
|
|
|
|
writer.writeFloatBig(range[0].float32);
|
2018-12-16 06:32:07 +00:00
|
|
|
writer.writeFloatBig(range[1].float32);
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
case DataType::Bool:
|
|
|
|
writer.writeBool(range[0].bool1);
|
2018-12-16 06:32:07 +00:00
|
|
|
writer.writeBool(range[1].bool1);
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
void ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState::ParmInfo::Enumerate<BigDNA::BinarySize>(size_t& __isz) {
|
|
|
|
__isz += 12;
|
|
|
|
switch (DataType(parmType)) {
|
|
|
|
case DataType::Int32:
|
|
|
|
case DataType::UInt32:
|
|
|
|
case DataType::Enum:
|
|
|
|
case DataType::Float:
|
|
|
|
__isz += 8;
|
|
|
|
break;
|
|
|
|
case DataType::Bool:
|
|
|
|
__isz += 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
void ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState::ParmInfo::Enumerate<BigDNA::ReadYaml>(
|
|
|
|
athena::io::YAMLDocReader& reader) {
|
|
|
|
parmType = reader.readUint32("parmType");
|
|
|
|
weightFunction = reader.readUint32("weightFunction");
|
|
|
|
weight = reader.readFloat("weight");
|
|
|
|
size_t parmValCount;
|
|
|
|
if (auto v = reader.enterSubVector("range", parmValCount)) {
|
|
|
|
switch (DataType(parmType)) {
|
2015-11-21 01:16:07 +00:00
|
|
|
case DataType::Int32:
|
2019-10-01 07:38:03 +00:00
|
|
|
range[0].int32 = reader.readInt32();
|
|
|
|
range[1].int32 = reader.readInt32();
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
2015-11-21 01:16:07 +00:00
|
|
|
case DataType::UInt32:
|
|
|
|
case DataType::Enum:
|
2019-10-01 07:38:03 +00:00
|
|
|
range[0].uint32 = reader.readUint32();
|
|
|
|
range[1].uint32 = reader.readUint32();
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
2015-11-21 01:16:07 +00:00
|
|
|
case DataType::Float:
|
2019-10-01 07:38:03 +00:00
|
|
|
range[0].float32 = reader.readFloat();
|
|
|
|
range[1].float32 = reader.readFloat();
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
2015-11-21 01:16:07 +00:00
|
|
|
case DataType::Bool:
|
2019-10-01 07:38:03 +00:00
|
|
|
range[0].bool1 = reader.readBool();
|
|
|
|
range[1].bool1 = reader.readBool();
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState::ParmInfo::Enumerate<BigDNA::WriteYaml>(
|
|
|
|
athena::io::YAMLDocWriter& writer) {
|
|
|
|
writer.writeUint32("parmType", parmType);
|
|
|
|
writer.writeUint32("weightFunction", weightFunction);
|
|
|
|
writer.writeFloat("weight", weight);
|
|
|
|
if (auto v = writer.enterSubVector("range")) {
|
|
|
|
switch (DataType(parmType)) {
|
2015-11-21 01:16:07 +00:00
|
|
|
case DataType::Int32:
|
2019-10-01 07:38:03 +00:00
|
|
|
writer.writeInt32(range[0].int32);
|
|
|
|
writer.writeInt32(range[1].int32);
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
2015-11-21 01:16:07 +00:00
|
|
|
case DataType::UInt32:
|
|
|
|
case DataType::Enum:
|
2019-10-01 07:38:03 +00:00
|
|
|
writer.writeUint32(range[0].uint32);
|
|
|
|
writer.writeUint32(range[1].uint32);
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
2015-11-21 01:16:07 +00:00
|
|
|
case DataType::Float:
|
2019-10-01 07:38:03 +00:00
|
|
|
writer.writeFloat(range[0].float32);
|
|
|
|
writer.writeFloat(range[1].float32);
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
2015-11-21 01:16:07 +00:00
|
|
|
case DataType::Bool:
|
2019-10-01 07:38:03 +00:00
|
|
|
writer.writeBool(range[0].bool1);
|
|
|
|
writer.writeBool(range[1].bool1);
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
2015-10-18 04:08:45 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2015-10-18 04:08:45 +00:00
|
|
|
}
|
|
|
|
|
2019-10-01 07:38:03 +00:00
|
|
|
std::string_view ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState::ParmInfo::DNAType() {
|
|
|
|
return "urde::DNAMP1::ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState::ParmInfo"sv;
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState::Enumerate<BigDNA::Read>(
|
|
|
|
athena::io::IStreamReader& reader) {
|
|
|
|
id = reader.readUint32Big();
|
|
|
|
atUint32 parmInfoCount = reader.readUint32Big();
|
|
|
|
atUint32 animInfoCount = reader.readUint32Big();
|
|
|
|
|
|
|
|
reader.enumerate(parmInfos, parmInfoCount);
|
|
|
|
|
|
|
|
animInfos.clear();
|
|
|
|
animInfos.reserve(animInfoCount);
|
|
|
|
reader.enumerate<AnimInfo>(animInfos, animInfoCount,
|
|
|
|
[this, parmInfoCount](athena::io::IStreamReader& reader, AnimInfo& ai) {
|
|
|
|
ai.id = reader.readUint32Big();
|
|
|
|
ai.parmVals.reserve(parmInfoCount);
|
|
|
|
for (const ParmInfo& pi : parmInfos) {
|
|
|
|
switch (ParmInfo::DataType(pi.parmType)) {
|
|
|
|
case ParmInfo::DataType::Int32:
|
|
|
|
ai.parmVals.emplace_back(reader.readInt32Big());
|
|
|
|
break;
|
|
|
|
case ParmInfo::DataType::UInt32:
|
|
|
|
case ParmInfo::DataType::Enum:
|
|
|
|
ai.parmVals.emplace_back(reader.readUint32Big());
|
|
|
|
break;
|
|
|
|
case ParmInfo::DataType::Float:
|
|
|
|
ai.parmVals.emplace_back(reader.readFloatBig());
|
|
|
|
break;
|
|
|
|
case ParmInfo::DataType::Bool:
|
|
|
|
ai.parmVals.emplace_back(reader.readBool());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
template <>
|
|
|
|
void ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState::Enumerate<BigDNA::Write>(
|
|
|
|
athena::io::IStreamWriter& writer) {
|
|
|
|
writer.writeUint32Big(id);
|
|
|
|
writer.writeUint32Big(parmInfos.size());
|
|
|
|
writer.writeUint32Big(animInfos.size());
|
|
|
|
|
|
|
|
for (const ParmInfo& pi : parmInfos)
|
|
|
|
pi.write(writer);
|
|
|
|
|
|
|
|
for (const AnimInfo& ai : animInfos) {
|
|
|
|
writer.writeUint32Big(ai.id);
|
|
|
|
auto it = ai.parmVals.begin();
|
|
|
|
for (const ParmInfo& pi : parmInfos) {
|
|
|
|
ParmInfo::Parm pVal;
|
|
|
|
if (it != ai.parmVals.end())
|
|
|
|
pVal = *it++;
|
|
|
|
switch (ParmInfo::DataType(pi.parmType)) {
|
|
|
|
case ParmInfo::DataType::Int32:
|
|
|
|
writer.writeInt32Big(pVal.int32);
|
|
|
|
break;
|
|
|
|
case ParmInfo::DataType::UInt32:
|
|
|
|
case ParmInfo::DataType::Enum:
|
|
|
|
writer.writeUint32Big(pVal.uint32);
|
|
|
|
break;
|
|
|
|
case ParmInfo::DataType::Float:
|
|
|
|
writer.writeFloatBig(pVal.float32);
|
|
|
|
break;
|
|
|
|
case ParmInfo::DataType::Bool:
|
|
|
|
writer.writeBool(pVal.bool1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-10-01 00:40:21 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState::Enumerate<BigDNA::BinarySize>(size_t& __isz) {
|
|
|
|
__isz += 12;
|
|
|
|
for (const ParmInfo& pi : parmInfos)
|
|
|
|
pi.binarySize(__isz);
|
|
|
|
|
|
|
|
__isz += animInfos.size() * 4;
|
|
|
|
for (const ParmInfo& pi : parmInfos) {
|
|
|
|
switch (ParmInfo::DataType(pi.parmType)) {
|
|
|
|
case ParmInfo::DataType::Int32:
|
|
|
|
case ParmInfo::DataType::UInt32:
|
|
|
|
case ParmInfo::DataType::Enum:
|
|
|
|
case ParmInfo::DataType::Float:
|
|
|
|
__isz += animInfos.size() * 4;
|
|
|
|
break;
|
|
|
|
case ParmInfo::DataType::Bool:
|
|
|
|
__isz += animInfos.size();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState::Enumerate<BigDNA::ReadYaml>(
|
|
|
|
athena::io::YAMLDocReader& reader) {
|
|
|
|
id = reader.readUint32("id");
|
|
|
|
|
|
|
|
size_t parmInfoCount = reader.enumerate("parmInfos", parmInfos);
|
|
|
|
|
|
|
|
reader.enumerate<AnimInfo>("animInfos", animInfos,
|
|
|
|
[this, parmInfoCount](athena::io::YAMLDocReader& reader, AnimInfo& ai) {
|
|
|
|
ai.id = reader.readUint32("id");
|
|
|
|
ai.parmVals.reserve(parmInfoCount);
|
|
|
|
size_t parmValCount;
|
|
|
|
if (auto v = reader.enterSubVector("parms", parmValCount)) {
|
|
|
|
for (const ParmInfo& pi : parmInfos) {
|
|
|
|
switch (ParmInfo::DataType(pi.parmType)) {
|
|
|
|
case ParmInfo::DataType::Int32:
|
2019-10-01 07:38:03 +00:00
|
|
|
ai.parmVals.emplace_back(reader.readInt32());
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
case ParmInfo::DataType::UInt32:
|
|
|
|
case ParmInfo::DataType::Enum:
|
2019-10-01 07:38:03 +00:00
|
|
|
ai.parmVals.emplace_back(reader.readUint32());
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
case ParmInfo::DataType::Float:
|
2019-10-01 07:38:03 +00:00
|
|
|
ai.parmVals.emplace_back(reader.readFloat());
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
case ParmInfo::DataType::Bool:
|
2019-10-01 07:38:03 +00:00
|
|
|
ai.parmVals.emplace_back(reader.readBool());
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState::Enumerate<BigDNA::WriteYaml>(
|
|
|
|
athena::io::YAMLDocWriter& writer) {
|
|
|
|
writer.writeUint32("id", id);
|
|
|
|
|
|
|
|
writer.enumerate("parmInfos", parmInfos);
|
|
|
|
|
|
|
|
writer.enumerate<AnimInfo>("animInfos", animInfos, [this](athena::io::YAMLDocWriter& writer, const AnimInfo& ai) {
|
|
|
|
writer.writeUint32("id", ai.id);
|
|
|
|
auto it = ai.parmVals.begin();
|
|
|
|
if (auto v = writer.enterSubVector("parms")) {
|
|
|
|
for (const ParmInfo& pi : parmInfos) {
|
|
|
|
ParmInfo::Parm pVal;
|
|
|
|
if (it != ai.parmVals.end())
|
|
|
|
pVal = *it++;
|
|
|
|
switch (ParmInfo::DataType(pi.parmType)) {
|
2015-11-21 01:16:07 +00:00
|
|
|
case ParmInfo::DataType::Int32:
|
2019-10-01 07:38:03 +00:00
|
|
|
writer.writeInt32(pVal.int32);
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
2015-11-21 01:16:07 +00:00
|
|
|
case ParmInfo::DataType::UInt32:
|
|
|
|
case ParmInfo::DataType::Enum:
|
2019-10-01 07:38:03 +00:00
|
|
|
writer.writeUint32(pVal.uint32);
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
2015-11-21 01:16:07 +00:00
|
|
|
case ParmInfo::DataType::Float:
|
2019-10-01 07:38:03 +00:00
|
|
|
writer.writeFloat(pVal.float32);
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
2015-11-21 01:16:07 +00:00
|
|
|
case ParmInfo::DataType::Bool:
|
2019-10-01 07:38:03 +00:00
|
|
|
writer.writeBool(pVal.bool1);
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2015-10-18 04:08:45 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2015-10-18 04:08:45 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
});
|
2015-10-18 04:08:45 +00:00
|
|
|
}
|
|
|
|
|
2019-10-01 07:38:03 +00:00
|
|
|
std::string_view ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState::DNAType() {
|
|
|
|
return "urde::DNAMP1::ANCS::CharacterSet::CharacterInfo::PASDatabase::AnimState"sv;
|
2015-10-01 00:40:21 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::CharacterSet::CharacterInfo::Enumerate<BigDNA::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);
|
|
|
|
|
|
|
|
partResData.elsc.clear();
|
|
|
|
if (sectionCount > 5) {
|
|
|
|
atUint32 elscCount = reader.readUint32Big();
|
|
|
|
reader.enumerate(partResData.elsc, elscCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
cmdlIce.read(reader);
|
|
|
|
cskrIce.read(reader);
|
|
|
|
}
|
|
|
|
|
|
|
|
animIdxs.clear();
|
|
|
|
if (sectionCount > 4) {
|
|
|
|
atUint32 aidxCount = reader.readUint32Big();
|
|
|
|
reader.enumerateBig(animIdxs, aidxCount);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::CharacterSet::CharacterInfo::Enumerate<BigDNA::Write>(athena::io::IStreamWriter& writer) {
|
|
|
|
writer.writeUint32Big(idx);
|
|
|
|
|
|
|
|
atUint16 sectionCount;
|
|
|
|
if (partResData.elsc.size())
|
|
|
|
sectionCount = 6;
|
|
|
|
else if (animIdxs.size())
|
|
|
|
sectionCount = 5;
|
2019-07-20 04:27:21 +00:00
|
|
|
else if (cmdlIce.isValid())
|
2018-12-08 05:30:43 +00:00
|
|
|
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);
|
|
|
|
|
|
|
|
if (sectionCount > 5) {
|
|
|
|
writer.writeUint32Big(partResData.elsc.size());
|
|
|
|
writer.enumerate(partResData.elsc);
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
cmdlIce.write(writer);
|
|
|
|
cskrIce.write(writer);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sectionCount > 4) {
|
|
|
|
writer.writeUint32Big(animIdxs.size());
|
|
|
|
for (atUint32 idx : animIdxs)
|
|
|
|
writer.writeUint32Big(idx);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::CharacterSet::CharacterInfo::Enumerate<BigDNA::BinarySize>(size_t& __isz) {
|
|
|
|
__isz += 6;
|
|
|
|
|
|
|
|
atUint16 sectionCount;
|
|
|
|
if (partResData.elsc.size())
|
|
|
|
sectionCount = 6;
|
|
|
|
else if (animIdxs.size())
|
|
|
|
sectionCount = 5;
|
2019-07-20 04:27:21 +00:00
|
|
|
else if (cmdlIce.isValid())
|
2018-12-08 05:30:43 +00:00
|
|
|
sectionCount = 4;
|
|
|
|
else if (effects.size())
|
|
|
|
sectionCount = 3;
|
|
|
|
else if (animAABBs.size())
|
|
|
|
sectionCount = 2;
|
|
|
|
else
|
|
|
|
sectionCount = 1;
|
|
|
|
|
|
|
|
__isz += name.size() + 1;
|
|
|
|
__isz += 12;
|
|
|
|
|
|
|
|
__isz += 4;
|
|
|
|
for (const Animation& a : animations)
|
|
|
|
a.binarySize(__isz);
|
|
|
|
|
|
|
|
pasDatabase.binarySize(__isz);
|
|
|
|
|
|
|
|
__isz += 4;
|
|
|
|
for (const UniqueID32& id : partResData.part)
|
|
|
|
id.binarySize(__isz);
|
|
|
|
|
|
|
|
__isz += 4;
|
|
|
|
for (const UniqueID32& id : partResData.swhc)
|
|
|
|
id.binarySize(__isz);
|
|
|
|
|
|
|
|
__isz += 4;
|
|
|
|
for (const UniqueID32& id : partResData.unk)
|
|
|
|
id.binarySize(__isz);
|
|
|
|
|
|
|
|
if (sectionCount > 5) {
|
2015-10-18 04:08:45 +00:00
|
|
|
__isz += 4;
|
2018-12-08 05:30:43 +00:00
|
|
|
for (const UniqueID32& id : partResData.elsc)
|
|
|
|
id.binarySize(__isz);
|
|
|
|
}
|
2015-10-18 04:08:45 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
__isz += 4;
|
2015-10-18 04:08:45 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (sectionCount > 1) {
|
2015-10-18 04:08:45 +00:00
|
|
|
__isz += 4;
|
2018-12-08 05:30:43 +00:00
|
|
|
for (const ActionAABB& aabb : animAABBs)
|
|
|
|
aabb.binarySize(__isz);
|
|
|
|
}
|
2015-10-18 04:08:45 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (sectionCount > 2) {
|
2015-10-18 04:08:45 +00:00
|
|
|
__isz += 4;
|
2018-12-08 05:30:43 +00:00
|
|
|
for (const Effect& e : effects)
|
|
|
|
e.binarySize(__isz);
|
|
|
|
}
|
2015-10-18 04:08:45 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (sectionCount > 3)
|
|
|
|
__isz += 8;
|
2015-10-18 04:08:45 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (sectionCount > 4)
|
|
|
|
__isz += 4 + animIdxs.size() * 4;
|
2015-10-18 04:08:45 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::CharacterSet::CharacterInfo::Enumerate<BigDNA::ReadYaml>(athena::io::YAMLDocReader& reader) {
|
|
|
|
idx = reader.readUint32("idx");
|
|
|
|
atUint16 sectionCount = reader.readUint16("sectionCount");
|
|
|
|
name = reader.readString("name");
|
|
|
|
reader.enumerate("cmdl", cmdl);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
reader.enumerate("animations", animations);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
reader.enumerate("pasDatabase", pasDatabase);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
reader.enumerate("part", partResData.part);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
reader.enumerate("swhc", partResData.swhc);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
reader.enumerate("unk", partResData.unk);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
partResData.elsc.clear();
|
|
|
|
if (sectionCount > 5) {
|
|
|
|
reader.enumerate("elsc", partResData.elsc);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
unk1 = reader.readUint32("unk1");
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
animAABBs.clear();
|
|
|
|
if (sectionCount > 1) {
|
|
|
|
reader.enumerate("part", animAABBs);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
effects.clear();
|
|
|
|
if (sectionCount > 2) {
|
|
|
|
reader.enumerate("effects", effects);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (sectionCount > 3) {
|
|
|
|
reader.enumerate("cmdlIce", cmdlIce);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
animIdxs.clear();
|
|
|
|
if (sectionCount > 4) {
|
|
|
|
reader.enumerate("animIdxs", animIdxs);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::CharacterSet::CharacterInfo::Enumerate<BigDNA::WriteYaml>(athena::io::YAMLDocWriter& writer) {
|
|
|
|
writer.writeUint32("idx", idx);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
atUint16 sectionCount;
|
|
|
|
if (partResData.elsc.size())
|
|
|
|
sectionCount = 6;
|
|
|
|
else if (animIdxs.size())
|
|
|
|
sectionCount = 5;
|
2019-07-20 04:27:21 +00:00
|
|
|
else if (cmdlIce.isValid())
|
2018-12-08 05:30:43 +00:00
|
|
|
sectionCount = 4;
|
|
|
|
else if (effects.size())
|
|
|
|
sectionCount = 3;
|
|
|
|
else if (animAABBs.size())
|
|
|
|
sectionCount = 2;
|
|
|
|
else
|
|
|
|
sectionCount = 1;
|
|
|
|
writer.writeUint16("sectionCount", sectionCount);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
writer.writeString("name", name);
|
|
|
|
writer.enumerate("cmdl", cmdl);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
writer.enumerate("animations", animations);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
writer.enumerate("pasDatabase", pasDatabase);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
writer.enumerate("part", partResData.part);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
writer.enumerate("swhc", partResData.swhc);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
writer.enumerate("unk", partResData.unk);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (sectionCount > 5) {
|
|
|
|
writer.enumerate("elsc", partResData.elsc);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
writer.writeUint32("unk1", unk1);
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (sectionCount > 1) {
|
|
|
|
writer.enumerate("animAABBs", animAABBs);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (sectionCount > 2) {
|
|
|
|
writer.enumerate("effects", effects);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (sectionCount > 3) {
|
|
|
|
writer.enumerate("cmdlIce", cmdlIce);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (sectionCount > 4) {
|
|
|
|
writer.enumerate("animIdxs", animIdxs);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2019-10-01 07:38:03 +00:00
|
|
|
std::string_view ANCS::CharacterSet::CharacterInfo::DNAType() {
|
|
|
|
return "urde::DNAMP1::ANCS::CharacterSet::CharacterInfo"sv;
|
|
|
|
}
|
2015-10-01 00:40:21 +00:00
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::MetaAnimFactory::Enumerate<BigDNA::Read>(athena::io::IStreamReader& reader) {
|
2020-03-31 16:50:26 +00:00
|
|
|
const auto type = IMetaAnim::Type(reader.readUint32Big());
|
2018-12-08 05:30:43 +00:00
|
|
|
switch (type) {
|
|
|
|
case IMetaAnim::Type::Primitive:
|
2020-03-31 16:50:26 +00:00
|
|
|
m_anim = std::make_unique<MetaAnimPrimitive>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_anim->read(reader);
|
|
|
|
break;
|
|
|
|
case IMetaAnim::Type::Blend:
|
2020-03-31 16:50:26 +00:00
|
|
|
m_anim = std::make_unique<MetaAnimBlend>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_anim->read(reader);
|
|
|
|
break;
|
|
|
|
case IMetaAnim::Type::PhaseBlend:
|
2020-03-31 16:50:26 +00:00
|
|
|
m_anim = std::make_unique<MetaAnimPhaseBlend>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_anim->read(reader);
|
|
|
|
break;
|
|
|
|
case IMetaAnim::Type::Random:
|
2020-03-31 16:50:26 +00:00
|
|
|
m_anim = std::make_unique<MetaAnimRandom>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_anim->read(reader);
|
|
|
|
break;
|
|
|
|
case IMetaAnim::Type::Sequence:
|
2020-03-31 16:50:26 +00:00
|
|
|
m_anim = std::make_unique<MetaAnimSequence>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_anim->read(reader);
|
|
|
|
break;
|
|
|
|
default:
|
2020-03-31 16:50:26 +00:00
|
|
|
m_anim.reset();
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::MetaAnimFactory::Enumerate<BigDNA::Write>(athena::io::IStreamWriter& writer) {
|
|
|
|
if (!m_anim)
|
|
|
|
return;
|
|
|
|
writer.writeInt32Big(atUint32(m_anim->m_type));
|
|
|
|
m_anim->write(writer);
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::MetaAnimFactory::Enumerate<BigDNA::BinarySize>(size_t& __isz) {
|
|
|
|
if (!m_anim)
|
|
|
|
return;
|
|
|
|
__isz += 4;
|
|
|
|
m_anim->binarySize(__isz);
|
2015-10-18 04:08:45 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::MetaAnimFactory::Enumerate<BigDNA::ReadYaml>(athena::io::YAMLDocReader& reader) {
|
|
|
|
std::string type = reader.readString("type");
|
|
|
|
std::transform(type.begin(), type.end(), type.begin(), tolower);
|
2019-10-01 07:38:03 +00:00
|
|
|
if (type == "primitive") {
|
2020-03-31 16:50:26 +00:00
|
|
|
m_anim = std::make_unique<MetaAnimPrimitive>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_anim->read(reader);
|
2019-10-01 07:38:03 +00:00
|
|
|
} else if (type == "blend") {
|
2020-03-31 16:50:26 +00:00
|
|
|
m_anim = std::make_unique<MetaAnimBlend>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_anim->read(reader);
|
2019-10-01 07:38:03 +00:00
|
|
|
} else if (type == "phaseblend") {
|
2020-03-31 16:50:26 +00:00
|
|
|
m_anim = std::make_unique<MetaAnimPhaseBlend>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_anim->read(reader);
|
2019-10-01 07:38:03 +00:00
|
|
|
} else if (type == "random") {
|
2020-03-31 16:50:26 +00:00
|
|
|
m_anim = std::make_unique<MetaAnimRandom>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_anim->read(reader);
|
2019-10-01 07:38:03 +00:00
|
|
|
} else if (type == "sequence") {
|
2020-03-31 16:50:26 +00:00
|
|
|
m_anim = std::make_unique<MetaAnimSequence>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_anim->read(reader);
|
|
|
|
} else {
|
2020-03-31 16:50:26 +00:00
|
|
|
m_anim.reset();
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::MetaAnimFactory::Enumerate<BigDNA::WriteYaml>(athena::io::YAMLDocWriter& writer) {
|
|
|
|
if (!m_anim)
|
|
|
|
return;
|
|
|
|
writer.writeString("type", m_anim->m_typeStr);
|
|
|
|
m_anim->write(writer);
|
2015-08-08 23:24:17 +00:00
|
|
|
}
|
|
|
|
|
2019-10-01 07:38:03 +00:00
|
|
|
std::string_view ANCS::AnimationSet::MetaAnimFactory::DNAType() {
|
|
|
|
return "urde::DNAMP1::ANCS::AnimationSet::MetaAnimFactory"sv;
|
2015-10-01 00:40:21 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::MetaTransFactory::Enumerate<BigDNA::Read>(athena::io::IStreamReader& reader) {
|
|
|
|
IMetaTrans::Type type(IMetaTrans::Type(reader.readUint32Big()));
|
|
|
|
switch (type) {
|
|
|
|
case IMetaTrans::Type::MetaAnim:
|
2020-03-31 16:50:26 +00:00
|
|
|
m_trans = std::make_unique<MetaTransMetaAnim>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_trans->read(reader);
|
|
|
|
break;
|
|
|
|
case IMetaTrans::Type::Trans:
|
2020-03-31 16:50:26 +00:00
|
|
|
m_trans = std::make_unique<MetaTransTrans>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_trans->read(reader);
|
|
|
|
break;
|
|
|
|
case IMetaTrans::Type::PhaseTrans:
|
2020-03-31 16:50:26 +00:00
|
|
|
m_trans = std::make_unique<MetaTransPhaseTrans>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_trans->read(reader);
|
|
|
|
break;
|
|
|
|
case IMetaTrans::Type::NoTrans:
|
|
|
|
default:
|
2020-03-31 16:50:26 +00:00
|
|
|
m_trans.reset();
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::MetaTransFactory::Enumerate<BigDNA::Write>(athena::io::IStreamWriter& writer) {
|
|
|
|
if (!m_trans) {
|
|
|
|
writer.writeInt32Big(atUint32(IMetaTrans::Type::NoTrans));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
writer.writeInt32Big(atUint32(m_trans->m_type));
|
|
|
|
m_trans->write(writer);
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::MetaTransFactory::Enumerate<BigDNA::BinarySize>(size_t& __isz) {
|
|
|
|
__isz += 4;
|
|
|
|
if (!m_trans)
|
|
|
|
return;
|
|
|
|
m_trans->binarySize(__isz);
|
2015-10-18 04:08:45 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::MetaTransFactory::Enumerate<BigDNA::ReadYaml>(athena::io::YAMLDocReader& reader) {
|
|
|
|
std::string type = reader.readString("type");
|
|
|
|
std::transform(type.begin(), type.end(), type.begin(), tolower);
|
2019-10-01 07:38:03 +00:00
|
|
|
if (type == "metaanim") {
|
2020-03-31 16:50:26 +00:00
|
|
|
m_trans = std::make_unique<MetaTransMetaAnim>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_trans->read(reader);
|
2019-10-01 07:38:03 +00:00
|
|
|
} else if (type == "trans") {
|
2020-03-31 16:50:26 +00:00
|
|
|
m_trans = std::make_unique<MetaTransTrans>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_trans->read(reader);
|
2019-10-01 07:38:03 +00:00
|
|
|
} else if (type == "phasetrans") {
|
2020-03-31 16:50:26 +00:00
|
|
|
m_trans = std::make_unique<MetaTransPhaseTrans>();
|
2018-12-08 05:30:43 +00:00
|
|
|
m_trans->read(reader);
|
|
|
|
} else {
|
2020-03-31 16:50:26 +00:00
|
|
|
m_trans.reset();
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::MetaTransFactory::Enumerate<BigDNA::WriteYaml>(athena::io::YAMLDocWriter& writer) {
|
|
|
|
if (!m_trans) {
|
|
|
|
writer.writeString("type", "NoTrans");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
writer.writeString("type", m_trans->m_typeStr ? m_trans->m_typeStr : "NoTrans");
|
|
|
|
m_trans->write(writer);
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2019-10-01 07:38:03 +00:00
|
|
|
std::string_view ANCS::AnimationSet::MetaTransFactory::DNAType() {
|
|
|
|
return "urde::DNAMP1::ANCS::AnimationSet::MetaTransFactory"sv;
|
2015-10-01 00:40:21 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::Enumerate<BigDNA::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);
|
2019-04-07 05:14:48 +00:00
|
|
|
additiveDefaultFadeInDur = reader.readFloatBig();
|
|
|
|
additiveDefaultFadeOutDur = reader.readFloatBig();
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
halfTransitions.clear();
|
|
|
|
if (sectionCount > 2) {
|
|
|
|
atUint32 halfTransitionCount = reader.readUint32Big();
|
|
|
|
reader.enumerate(halfTransitions, halfTransitionCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
animResources.clear();
|
|
|
|
if (sectionCount > 3) {
|
|
|
|
atUint32 animResourcesCount = reader.readUint32Big();
|
|
|
|
reader.enumerate(animResources, animResourcesCount);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::Enumerate<BigDNA::Write>(athena::io::IStreamWriter& writer) {
|
|
|
|
atUint16 sectionCount;
|
|
|
|
if (animResources.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);
|
2019-04-07 05:14:48 +00:00
|
|
|
writer.writeFloatBig(additiveDefaultFadeInDur);
|
|
|
|
writer.writeFloatBig(additiveDefaultFadeOutDur);
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sectionCount > 2) {
|
|
|
|
writer.writeUint32Big(halfTransitions.size());
|
|
|
|
writer.enumerate(halfTransitions);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sectionCount > 3) {
|
|
|
|
writer.writeUint32Big(animResources.size());
|
|
|
|
writer.enumerate(animResources);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::Enumerate<BigDNA::BinarySize>(size_t& __isz) {
|
|
|
|
atUint16 sectionCount;
|
|
|
|
if (animResources.size())
|
|
|
|
sectionCount = 4;
|
|
|
|
else if (halfTransitions.size())
|
|
|
|
sectionCount = 3;
|
|
|
|
else if (additiveAnims.size())
|
|
|
|
sectionCount = 2;
|
|
|
|
else
|
|
|
|
sectionCount = 1;
|
|
|
|
|
|
|
|
__isz += 6;
|
|
|
|
for (const Animation& a : animations)
|
|
|
|
a.binarySize(__isz);
|
|
|
|
|
|
|
|
__isz += 4;
|
|
|
|
for (const Transition& t : transitions)
|
|
|
|
t.binarySize(__isz);
|
|
|
|
defaultTransition.binarySize(__isz);
|
|
|
|
|
|
|
|
if (sectionCount > 1) {
|
2015-10-18 04:08:45 +00:00
|
|
|
__isz += 4;
|
2018-12-08 05:30:43 +00:00
|
|
|
for (const AdditiveAnimationInfo& aa : additiveAnims)
|
|
|
|
aa.binarySize(__isz);
|
|
|
|
__isz += 8;
|
|
|
|
}
|
2015-10-18 04:08:45 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (sectionCount > 2) {
|
|
|
|
__isz += 4;
|
|
|
|
for (const HalfTransition& ht : halfTransitions)
|
|
|
|
ht.binarySize(__isz);
|
|
|
|
}
|
2015-10-18 04:08:45 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (sectionCount > 3) {
|
|
|
|
__isz += 4;
|
|
|
|
for (const AnimationResources& ar : animResources)
|
|
|
|
ar.binarySize(__isz);
|
|
|
|
}
|
2015-10-18 04:08:45 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::Enumerate<BigDNA::ReadYaml>(athena::io::YAMLDocReader& reader) {
|
|
|
|
atUint16 sectionCount = reader.readUint16("sectionCount");
|
|
|
|
|
|
|
|
reader.enumerate("animations", animations);
|
|
|
|
|
|
|
|
reader.enumerate("transitions", transitions);
|
|
|
|
reader.enumerate("defaultTransition", defaultTransition);
|
|
|
|
|
|
|
|
additiveAnims.clear();
|
|
|
|
if (sectionCount > 1) {
|
|
|
|
reader.enumerate("additiveAnims", additiveAnims);
|
2019-04-07 05:14:48 +00:00
|
|
|
additiveDefaultFadeInDur = reader.readFloat("additiveDefaultFadeInDur");
|
|
|
|
additiveDefaultFadeOutDur = reader.readFloat("additiveDefaultFadeOutDur");
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
halfTransitions.clear();
|
|
|
|
if (sectionCount > 2) {
|
|
|
|
reader.enumerate("halfTransitions", halfTransitions);
|
|
|
|
}
|
|
|
|
|
|
|
|
animResources.clear();
|
|
|
|
if (sectionCount > 3) {
|
|
|
|
reader.enumerate("animResources", animResources);
|
|
|
|
}
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 07:24:51 +00:00
|
|
|
template <>
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::Enumerate<BigDNA::WriteYaml>(athena::io::YAMLDocWriter& writer) {
|
|
|
|
atUint16 sectionCount;
|
|
|
|
if (animResources.size())
|
|
|
|
sectionCount = 4;
|
|
|
|
else if (halfTransitions.size())
|
|
|
|
sectionCount = 3;
|
|
|
|
else if (additiveAnims.size())
|
|
|
|
sectionCount = 2;
|
|
|
|
else
|
|
|
|
sectionCount = 1;
|
|
|
|
|
|
|
|
writer.writeUint16("sectionCount", sectionCount);
|
|
|
|
|
|
|
|
writer.enumerate("animations", animations);
|
|
|
|
|
|
|
|
writer.enumerate("transitions", transitions);
|
|
|
|
writer.enumerate("defaultTransition", defaultTransition);
|
|
|
|
|
|
|
|
if (sectionCount > 1) {
|
|
|
|
writer.enumerate("additiveAnims", additiveAnims);
|
2019-04-07 05:14:48 +00:00
|
|
|
writer.writeFloat("additiveDefaultFadeInDur", additiveDefaultFadeInDur);
|
|
|
|
writer.writeFloat("additiveDefaultFadeOutDur", additiveDefaultFadeOutDur);
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sectionCount > 2) {
|
|
|
|
writer.enumerate("halfTransitions", halfTransitions);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sectionCount > 3) {
|
|
|
|
writer.enumerate("animResources", animResources);
|
|
|
|
}
|
2018-05-28 01:54:55 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void ANCS::AnimationSet::MetaAnimPrimitive::gatherPrimitives(
|
|
|
|
PAKRouter<PAKBridge>* pakRouter, std::map<atUint32, DNAANCS::AnimationResInfo<UniqueID32>>& out) {
|
|
|
|
if (!pakRouter) {
|
|
|
|
out[animIdx] = {animName, animId, UniqueID32(), false};
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const nod::Node* node;
|
|
|
|
const PAK::Entry* entry = pakRouter->lookupEntry(animId, &node, true);
|
|
|
|
if (!entry) {
|
|
|
|
out[animIdx] = {animName, animId, UniqueID32(), false};
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PAKEntryReadStream rs = entry->beginReadStream(*node);
|
|
|
|
out[animIdx] = {animName, animId, ANIM::GetEVNTId(rs), false};
|
2015-10-01 00:40:21 +00:00
|
|
|
}
|
|
|
|
|
2019-10-01 07:38:03 +00:00
|
|
|
std::string_view ANCS::AnimationSet::DNAType() { return "urde::DNAMP1::ANCS::AnimationSet"sv; }
|
2016-04-10 04:49:02 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
bool ANCS::Extract(const SpecBase& dataSpec, PAKEntryReadStream& rs, const hecl::ProjectPath& outPath,
|
|
|
|
PAKRouter<PAKBridge>& pakRouter, const PAK::Entry& entry, bool force, hecl::blender::Token& btok,
|
|
|
|
std::function<void(const hecl::SystemChar*)> fileChanged) {
|
|
|
|
hecl::ProjectPath yamlPath = outPath.getWithExtension(_SYS_STR(".yaml"), true);
|
|
|
|
hecl::ProjectPath::Type yamlType = yamlPath.getPathType();
|
|
|
|
hecl::ProjectPath blendPath = outPath.getWithExtension(_SYS_STR(".blend"), true);
|
|
|
|
hecl::ProjectPath::Type blendType = blendPath.getPathType();
|
2016-08-21 20:39:18 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
ANCS ancs;
|
|
|
|
ancs.read(rs);
|
2018-04-04 08:31:29 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (force || yamlType == hecl::ProjectPath::Type::None || blendType == hecl::ProjectPath::Type::None) {
|
|
|
|
if (force || yamlType == hecl::ProjectPath::Type::None) {
|
|
|
|
athena::io::FileWriter writer(yamlPath.getAbsolutePath());
|
|
|
|
athena::io::ToYAMLStream(ancs, writer);
|
2016-04-10 04:49:02 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (force || blendType == hecl::ProjectPath::Type::None) {
|
|
|
|
DNAANCS::ReadANCSToBlender<PAKRouter<PAKBridge>, ANCS, MaterialSet, DNACMDL::SurfaceHeader_1, 2>(
|
2020-04-14 04:15:17 +00:00
|
|
|
btok, ancs, blendPath, pakRouter, entry, dataSpec, fileChanged, force);
|
2017-02-13 06:51:47 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2017-02-13 06:51:47 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
return true;
|
2017-02-13 06:51:47 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
bool ANCS::Cook(const hecl::ProjectPath& outPath, const hecl::ProjectPath& inPath, const DNAANCS::Actor& actor) {
|
|
|
|
/* Search for yaml */
|
|
|
|
hecl::ProjectPath yamlPath = inPath.getWithExtension(_SYS_STR(".yaml"), true);
|
|
|
|
if (!yamlPath.isFile())
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("'{}' not found as file")), yamlPath.getRelativePath());
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
athena::io::FileReader reader(yamlPath.getAbsolutePath());
|
|
|
|
if (!reader.isOpen())
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("can't open '{}' for reading")), yamlPath.getRelativePath());
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
if (!athena::io::ValidateFromYAMLStream<ANCS>(reader)) {
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("'{}' is not urde::DNAMP1::ANCS type")), yamlPath.getRelativePath());
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
athena::io::YAMLDocReader yamlReader;
|
|
|
|
if (!yamlReader.parse(&reader)) {
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("unable to parse '{}'")), yamlPath.getRelativePath());
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
|
|
|
ANCS ancs;
|
|
|
|
ancs.read(yamlReader);
|
|
|
|
|
|
|
|
/* Set Character Resource IDs */
|
|
|
|
for (ANCS::CharacterSet::CharacterInfo& ch : ancs.characterSet.characters) {
|
|
|
|
ch.cmdl = UniqueID32{};
|
|
|
|
ch.cskr = UniqueID32{};
|
|
|
|
ch.cinf = UniqueID32{};
|
|
|
|
ch.cmdlIce = UniqueID32Zero{};
|
|
|
|
ch.cskrIce = UniqueID32Zero{};
|
|
|
|
|
|
|
|
int subtypeIdx = 0;
|
|
|
|
ch.animAABBs.clear();
|
|
|
|
for (const DNAANCS::Actor::Subtype& sub : actor.subtypes) {
|
2019-10-01 07:38:03 +00:00
|
|
|
if (sub.name == ch.name) {
|
|
|
|
hecl::SystemStringConv chSysName(ch.name);
|
2019-10-14 02:45:43 +00:00
|
|
|
if (!sub.cskrId.empty()) {
|
|
|
|
hecl::SystemStringConv cskrSysName(sub.cskrId);
|
2020-04-11 22:51:39 +00:00
|
|
|
ch.cskr = inPath.ensureAuxInfo(fmt::format(FMT_STRING(_SYS_STR("{}_{}.CSKR")), chSysName, cskrSysName));
|
2019-10-14 02:45:43 +00:00
|
|
|
} else {
|
2020-04-11 22:51:39 +00:00
|
|
|
ch.cskr = inPath.ensureAuxInfo(fmt::format(FMT_STRING(_SYS_STR("{}.CSKR")), chSysName));
|
2019-10-14 02:45:43 +00:00
|
|
|
}
|
2019-10-01 07:38:03 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
/* Add subtype AABBs */
|
|
|
|
ch.animAABBs.reserve(actor.actions.size());
|
|
|
|
for (const DNAANCS::Action& act : actor.actions) {
|
|
|
|
const auto& sourceAABB = act.subtypeAABBs[subtypeIdx];
|
|
|
|
ch.animAABBs.emplace_back();
|
|
|
|
auto& destAABB = ch.animAABBs.back();
|
|
|
|
destAABB.name = act.name;
|
|
|
|
destAABB.aabb[0] = sourceAABB.first.val;
|
|
|
|
destAABB.aabb[1] = sourceAABB.second.val;
|
2016-08-22 00:11:18 +00:00
|
|
|
}
|
2018-03-28 08:09:41 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (sub.armature >= 0) {
|
|
|
|
const DNAANCS::Armature& arm = actor.armatures[sub.armature];
|
2019-10-01 07:38:03 +00:00
|
|
|
ch.cinf = arm.path;
|
2018-12-08 05:30:43 +00:00
|
|
|
ch.cmdl = sub.mesh;
|
|
|
|
auto search = std::find_if(sub.overlayMeshes.cbegin(), sub.overlayMeshes.cend(),
|
2019-10-01 07:38:03 +00:00
|
|
|
[](const auto& p) { return p.name == "ICE"; });
|
2018-12-08 05:30:43 +00:00
|
|
|
if (search != sub.overlayMeshes.cend()) {
|
2019-10-01 07:38:03 +00:00
|
|
|
hecl::SystemStringConv overlaySys(search->name);
|
|
|
|
ch.cmdlIce = search->mesh;
|
2019-10-14 02:45:43 +00:00
|
|
|
if (!search->cskrId.empty()) {
|
|
|
|
hecl::SystemStringConv cskrSys(search->cskrId);
|
|
|
|
ch.cskrIce = inPath.ensureAuxInfo(
|
2020-04-11 22:51:39 +00:00
|
|
|
fmt::format(FMT_STRING(_SYS_STR("{}.{}_{}.CSKR")), chSysName, overlaySys, cskrSys));
|
2019-10-14 02:45:43 +00:00
|
|
|
} else {
|
|
|
|
ch.cskrIce = inPath.ensureAuxInfo(
|
2020-04-11 22:51:39 +00:00
|
|
|
fmt::format(FMT_STRING(_SYS_STR("{}.{}.CSKR")), chSysName, overlaySys));
|
2019-10-14 02:45:43 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2018-03-28 08:09:41 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
++subtypeIdx;
|
2018-03-28 08:09:41 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
std::sort(ch.animAABBs.begin(), ch.animAABBs.end(),
|
|
|
|
[](const ANCS::CharacterSet::CharacterInfo::ActionAABB& a,
|
|
|
|
const ANCS::CharacterSet::CharacterInfo::ActionAABB& b) { return a.name < b.name; });
|
|
|
|
}
|
2018-03-28 08:09:41 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
/* Set Animation Resource IDs */
|
2019-10-01 07:38:03 +00:00
|
|
|
ancs.enumeratePrimitives([&](AnimationSet::MetaAnimPrimitive& prim) {
|
2018-12-08 05:30:43 +00:00
|
|
|
hecl::SystemStringConv sysStr(prim.animName);
|
2019-10-01 07:38:03 +00:00
|
|
|
for (const DNAANCS::Action& act : actor.actions) {
|
|
|
|
if (act.name == prim.animName) {
|
2019-10-14 02:45:43 +00:00
|
|
|
hecl::ProjectPath pathOut;
|
|
|
|
if (!act.animId.empty()) {
|
|
|
|
hecl::SystemStringConv idSys(act.animId);
|
2020-04-11 22:51:39 +00:00
|
|
|
pathOut = inPath.ensureAuxInfo(fmt::format(FMT_STRING(_SYS_STR("{}_{}.ANIM")), sysStr, idSys));
|
2019-10-14 02:45:43 +00:00
|
|
|
} else {
|
2020-04-11 22:51:39 +00:00
|
|
|
inPath.ensureAuxInfo(fmt::format(FMT_STRING(_SYS_STR("{}.ANIM")), sysStr));
|
2019-10-14 02:45:43 +00:00
|
|
|
}
|
2019-10-01 07:38:03 +00:00
|
|
|
prim.animId = pathOut;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-03-28 08:09:41 +00:00
|
|
|
return true;
|
2018-12-08 05:30:43 +00:00
|
|
|
});
|
2018-03-28 08:09:41 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
/* Gather ANIM resources */
|
2019-10-01 07:38:03 +00:00
|
|
|
hecl::DirectoryEnumerator dEnum(inPath.getParentPath().getAbsolutePath());
|
2018-12-08 05:30:43 +00:00
|
|
|
ancs.animationSet.animResources.reserve(actor.actions.size());
|
|
|
|
for (const DNAANCS::Action& act : actor.actions) {
|
|
|
|
hecl::SystemStringConv sysStr(act.name);
|
2019-10-14 02:45:43 +00:00
|
|
|
hecl::ProjectPath pathOut;
|
|
|
|
if (!act.animId.empty()) {
|
|
|
|
hecl::SystemStringConv animIdSys(act.animId);
|
2020-04-11 22:51:39 +00:00
|
|
|
pathOut = inPath.ensureAuxInfo(fmt::format(FMT_STRING(_SYS_STR("{}_{}.ANIM")), sysStr, animIdSys));
|
2019-10-14 02:45:43 +00:00
|
|
|
} else {
|
2020-04-11 22:51:39 +00:00
|
|
|
pathOut = inPath.ensureAuxInfo(fmt::format(FMT_STRING(_SYS_STR("{}.ANIM")), sysStr));
|
2019-10-14 02:45:43 +00:00
|
|
|
}
|
2016-04-10 04:49:02 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
ancs.animationSet.animResources.emplace_back();
|
|
|
|
ancs.animationSet.animResources.back().animId = pathOut;
|
2016-04-10 04:49:02 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
/* Check for associated EVNT YAML */
|
2019-10-01 07:38:03 +00:00
|
|
|
hecl::SystemString testPrefix(inPath.getWithExtension(
|
2020-04-11 22:51:39 +00:00
|
|
|
fmt::format(FMT_STRING(_SYS_STR(".{}_")), sysStr).c_str(), true).getLastComponent());
|
2019-10-01 07:38:03 +00:00
|
|
|
hecl::ProjectPath evntYamlPath;
|
|
|
|
for (const auto& ent : dEnum) {
|
|
|
|
if (hecl::StringUtils::BeginsWith(ent.m_name, testPrefix.c_str()) &&
|
|
|
|
hecl::StringUtils::EndsWith(ent.m_name, _SYS_STR(".evnt.yaml"))) {
|
|
|
|
evntYamlPath = hecl::ProjectPath(inPath.getParentPath(), ent.m_name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (evntYamlPath.isFile()) {
|
|
|
|
evntYamlPath = evntYamlPath.ensureAuxInfo(_SYS_STR(""));
|
2018-12-08 05:30:43 +00:00
|
|
|
ancs.animationSet.animResources.back().evntId = evntYamlPath;
|
2019-10-01 07:38:03 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2016-04-10 04:49:02 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
/* Write out ANCS */
|
|
|
|
athena::io::TransactionalFileWriter w(outPath.getAbsolutePath());
|
|
|
|
ancs.write(w);
|
2017-08-21 05:46:59 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
2017-08-21 05:46:59 +00:00
|
|
|
|
2019-10-01 07:38:03 +00:00
|
|
|
static const hecl::SystemRegex regCskrNameId(_SYS_STR(R"((.*)_[0-9a-fA-F]{8}\.CSKR)"),
|
|
|
|
std::regex::ECMAScript | std::regex::optimize);
|
|
|
|
static const hecl::SystemRegex regCskrName(_SYS_STR(R"((.*)\.CSKR)"),
|
|
|
|
std::regex::ECMAScript | std::regex::optimize);
|
2016-04-10 04:49:02 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
bool ANCS::CookCSKR(const hecl::ProjectPath& outPath, const hecl::ProjectPath& inPath, const DNAANCS::Actor& actor,
|
|
|
|
const std::function<bool(const hecl::ProjectPath& modelPath)>& modelCookFunc) {
|
2019-10-01 07:38:03 +00:00
|
|
|
auto auxInfo = inPath.getAuxInfo();
|
|
|
|
hecl::SystemViewRegexMatch match;
|
|
|
|
if (!std::regex_search(auxInfo.begin(), auxInfo.end(), match, regCskrNameId) &&
|
|
|
|
!std::regex_search(auxInfo.begin(), auxInfo.end(), match, regCskrName))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
hecl::SystemString subName = match[1].str();
|
2018-12-08 05:30:43 +00:00
|
|
|
hecl::SystemString overName;
|
|
|
|
auto dotPos = subName.rfind(_SYS_STR('.'));
|
|
|
|
if (dotPos != hecl::SystemString::npos) {
|
|
|
|
overName = hecl::SystemString(subName.begin() + dotPos + 1, subName.end());
|
|
|
|
subName = hecl::SystemString(subName.begin(), subName.begin() + dotPos);
|
|
|
|
}
|
|
|
|
hecl::SystemUTF8Conv subNameView(subName);
|
|
|
|
hecl::SystemUTF8Conv overNameView(overName);
|
|
|
|
|
|
|
|
/* Build bone ID map */
|
|
|
|
std::unordered_map<std::string, atInt32> boneIdMap;
|
|
|
|
for (const DNAANCS::Armature& arm : actor.armatures) {
|
2019-10-01 07:38:03 +00:00
|
|
|
CINF cinf(*arm.armature, boneIdMap);
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const DNAANCS::Actor::Subtype* subtype = nullptr;
|
|
|
|
if (subName != _SYS_STR("ATTACH")) {
|
|
|
|
for (const DNAANCS::Actor::Subtype& sub : actor.subtypes) {
|
2019-10-01 07:38:03 +00:00
|
|
|
if (sub.name == subNameView.str()) {
|
2018-12-08 05:30:43 +00:00
|
|
|
subtype = ⊂
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!subtype)
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("unable to find subtype '{}'")), subName);
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const hecl::ProjectPath* modelPath = nullptr;
|
|
|
|
if (subName == _SYS_STR("ATTACH")) {
|
|
|
|
const DNAANCS::Actor::Attachment* attachment = nullptr;
|
|
|
|
for (const DNAANCS::Actor::Attachment& att : actor.attachments) {
|
2019-10-01 07:38:03 +00:00
|
|
|
if (att.name == overNameView.str()) {
|
2018-12-08 05:30:43 +00:00
|
|
|
attachment = &att;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!attachment)
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("unable to find attachment '{}'")), overName);
|
2018-12-08 05:30:43 +00:00
|
|
|
modelPath = &attachment->mesh;
|
|
|
|
} else if (overName.empty()) {
|
|
|
|
modelPath = &subtype->mesh;
|
|
|
|
} else {
|
|
|
|
for (const auto& overlay : subtype->overlayMeshes)
|
2019-10-01 07:38:03 +00:00
|
|
|
if (overlay.name == overNameView.str()) {
|
|
|
|
modelPath = &overlay.mesh;
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!modelPath)
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("unable to resolve model path of {}:{}")), subName, overName);
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
if (!modelPath->isFile())
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("unable to resolve '{}'")), modelPath->getRelativePath());
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
hecl::ProjectPath skinIntPath = modelPath->getCookedPath(SpecEntMP1).getWithExtension(_SYS_STR(".skinint"));
|
|
|
|
if (!skinIntPath.isFileOrGlob() || skinIntPath.getModtime() < modelPath->getModtime())
|
|
|
|
if (!modelCookFunc(*modelPath))
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("unable to cook '{}'")), modelPath->getRelativePath());
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
std::vector<std::pair<std::vector<std::pair<uint32_t, float>>, uint32_t>> skins;
|
|
|
|
uint32_t posCount = 0;
|
|
|
|
uint32_t normCount = 0;
|
|
|
|
athena::io::FileReader skinIO(skinIntPath.getAbsolutePath(), 1024 * 32, false);
|
|
|
|
if (!skinIO.hasError()) {
|
|
|
|
std::vector<std::string> boneNames;
|
|
|
|
uint32_t boneNameCount = skinIO.readUint32Big();
|
|
|
|
boneNames.reserve(boneNameCount);
|
|
|
|
for (uint32_t i = 0; i < boneNameCount; ++i)
|
|
|
|
boneNames.push_back(skinIO.readString());
|
|
|
|
|
|
|
|
uint32_t skinCount = skinIO.readUint32Big();
|
|
|
|
skins.resize(skinCount);
|
|
|
|
for (uint32_t i = 0; i < skinCount; ++i) {
|
|
|
|
std::pair<std::vector<std::pair<uint32_t, float>>, uint32_t>& virtualBone = skins[i];
|
|
|
|
uint32_t bindCount = skinIO.readUint32Big();
|
|
|
|
virtualBone.first.reserve(bindCount);
|
|
|
|
for (uint32_t j = 0; j < bindCount; ++j) {
|
|
|
|
uint32_t bIdx = skinIO.readUint32Big();
|
|
|
|
float weight = skinIO.readFloatBig();
|
|
|
|
const std::string& name = boneNames[bIdx];
|
|
|
|
auto search = boneIdMap.find(name);
|
|
|
|
if (search == boneIdMap.cend())
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING("unable to find bone '{}' in {}"), name,
|
2019-07-20 04:27:21 +00:00
|
|
|
inPath.getRelativePathUTF8());
|
2018-12-08 05:30:43 +00:00
|
|
|
virtualBone.first.emplace_back(search->second, weight);
|
|
|
|
}
|
|
|
|
virtualBone.second = skinIO.readUint32Big();
|
|
|
|
}
|
|
|
|
|
|
|
|
posCount = skinIO.readUint32Big();
|
|
|
|
normCount = skinIO.readUint32Big();
|
|
|
|
|
|
|
|
skinIO.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
athena::io::TransactionalFileWriter skinOut(outPath.getAbsolutePath());
|
|
|
|
|
|
|
|
skinOut.writeUint32Big(skins.size());
|
|
|
|
for (auto& virtuaBone : skins) {
|
|
|
|
skinOut.writeUint32Big(virtuaBone.first.size());
|
|
|
|
for (auto& bind : virtuaBone.first) {
|
|
|
|
skinOut.writeUint32Big(bind.first);
|
|
|
|
skinOut.writeFloatBig(bind.second);
|
|
|
|
}
|
|
|
|
skinOut.writeUint32Big(virtuaBone.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
skinOut.writeUint32Big(0xffffffff);
|
|
|
|
skinOut.writeUint32Big(posCount);
|
|
|
|
skinOut.writeUint32Big(0xffffffff);
|
|
|
|
skinOut.writeUint32Big(normCount);
|
|
|
|
|
|
|
|
return true;
|
2016-04-10 04:49:02 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
bool ANCS::CookCSKRPC(const hecl::ProjectPath& outPath, const hecl::ProjectPath& inPath, const DNAANCS::Actor& actor,
|
|
|
|
const std::function<bool(const hecl::ProjectPath& modelPath)>& modelCookFunc) {
|
2019-10-01 07:38:03 +00:00
|
|
|
auto auxInfo = inPath.getAuxInfo();
|
|
|
|
hecl::SystemViewRegexMatch match;
|
|
|
|
if (!std::regex_search(auxInfo.begin(), auxInfo.end(), match, regCskrNameId) &&
|
|
|
|
!std::regex_search(auxInfo.begin(), auxInfo.end(), match, regCskrName))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
hecl::SystemString subName = match[1].str();
|
2018-12-08 05:30:43 +00:00
|
|
|
hecl::SystemString overName;
|
|
|
|
auto dotPos = subName.rfind(_SYS_STR('.'));
|
|
|
|
if (dotPos != hecl::SystemString::npos) {
|
|
|
|
overName = hecl::SystemString(subName.begin() + dotPos + 1, subName.end());
|
|
|
|
subName = hecl::SystemString(subName.begin(), subName.begin() + dotPos);
|
|
|
|
}
|
|
|
|
hecl::SystemUTF8Conv subNameView(subName);
|
|
|
|
hecl::SystemUTF8Conv overNameView(overName);
|
|
|
|
|
|
|
|
/* Build bone ID map */
|
|
|
|
std::unordered_map<std::string, atInt32> boneIdMap;
|
|
|
|
for (const DNAANCS::Armature& arm : actor.armatures) {
|
2019-10-01 07:38:03 +00:00
|
|
|
CINF cinf(*arm.armature, boneIdMap);
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const DNAANCS::Actor::Subtype* subtype = nullptr;
|
|
|
|
if (subName != _SYS_STR("ATTACH")) {
|
|
|
|
for (const DNAANCS::Actor::Subtype& sub : actor.subtypes) {
|
2019-10-01 07:38:03 +00:00
|
|
|
if (sub.name == subNameView.str()) {
|
2018-12-08 05:30:43 +00:00
|
|
|
subtype = ⊂
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!subtype)
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("unable to find subtype '{}'")), subName);
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const hecl::ProjectPath* modelPath = nullptr;
|
|
|
|
if (subName == _SYS_STR("ATTACH")) {
|
|
|
|
const DNAANCS::Actor::Attachment* attachment = nullptr;
|
|
|
|
for (const DNAANCS::Actor::Attachment& att : actor.attachments) {
|
2019-10-01 07:38:03 +00:00
|
|
|
if (att.name == overNameView.str()) {
|
2018-12-08 05:30:43 +00:00
|
|
|
attachment = &att;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!attachment)
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("unable to find attachment '{}'")), overName);
|
2018-12-08 05:30:43 +00:00
|
|
|
modelPath = &attachment->mesh;
|
|
|
|
} else if (overName.empty()) {
|
|
|
|
modelPath = &subtype->mesh;
|
|
|
|
} else {
|
|
|
|
for (const auto& overlay : subtype->overlayMeshes)
|
2019-10-01 07:38:03 +00:00
|
|
|
if (overlay.name == overNameView.str()) {
|
|
|
|
modelPath = &overlay.mesh;
|
2018-12-08 05:30:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!modelPath)
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("unable to resolve model path of {}:{}")), subName, overName);
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
if (!modelPath->isFile())
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("unable to resolve '{}'")), modelPath->getRelativePath());
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
hecl::ProjectPath skinIntPath = modelPath->getCookedPath(SpecEntMP1PC).getWithExtension(_SYS_STR(".skinint"));
|
|
|
|
if (!skinIntPath.isFileOrGlob() || skinIntPath.getModtime() < modelPath->getModtime())
|
|
|
|
if (!modelCookFunc(*modelPath))
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("unable to cook '{}'")), modelPath->getRelativePath());
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
uint32_t bankCount = 0;
|
|
|
|
std::vector<std::vector<uint32_t>> skinBanks;
|
|
|
|
std::vector<std::string> boneNames;
|
|
|
|
std::vector<std::vector<std::pair<uint32_t, float>>> skins;
|
|
|
|
atUint64 uniquePoolIndexLen = 0;
|
|
|
|
std::unique_ptr<atUint8[]> uniquePoolIndexData;
|
|
|
|
athena::io::FileReader skinIO(skinIntPath.getAbsolutePath(), 1024 * 32, false);
|
|
|
|
if (!skinIO.hasError()) {
|
|
|
|
bankCount = skinIO.readUint32Big();
|
|
|
|
skinBanks.reserve(bankCount);
|
|
|
|
for (uint32_t i = 0; i < bankCount; ++i) {
|
|
|
|
skinBanks.emplace_back();
|
|
|
|
std::vector<uint32_t>& bonesOut = skinBanks.back();
|
|
|
|
uint32_t boneCount = skinIO.readUint32Big();
|
|
|
|
bonesOut.reserve(boneCount);
|
|
|
|
for (uint32_t j = 0; j < boneCount; ++j) {
|
|
|
|
uint32_t idx = skinIO.readUint32Big();
|
|
|
|
bonesOut.push_back(idx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t boneNameCount = skinIO.readUint32Big();
|
|
|
|
boneNames.reserve(boneNameCount);
|
|
|
|
for (uint32_t i = 0; i < boneNameCount; ++i)
|
|
|
|
boneNames.push_back(skinIO.readString());
|
|
|
|
|
|
|
|
uint32_t skinCount = skinIO.readUint32Big();
|
|
|
|
skins.resize(skinCount);
|
|
|
|
for (uint32_t i = 0; i < skinCount; ++i) {
|
|
|
|
std::vector<std::pair<uint32_t, float>>& virtualBone = skins[i];
|
|
|
|
uint32_t bindCount = skinIO.readUint32Big();
|
|
|
|
virtualBone.reserve(bindCount);
|
|
|
|
for (uint32_t j = 0; j < bindCount; ++j) {
|
|
|
|
uint32_t bIdx = skinIO.readUint32Big();
|
|
|
|
float weight = skinIO.readFloatBig();
|
|
|
|
const std::string& name = boneNames[bIdx];
|
|
|
|
auto search = boneIdMap.find(name);
|
|
|
|
if (search == boneIdMap.cend())
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING("unable to find bone '{}' in {}"), name,
|
2019-07-20 04:27:21 +00:00
|
|
|
inPath.getRelativePathUTF8());
|
2018-12-08 05:30:43 +00:00
|
|
|
virtualBone.emplace_back(search->second, weight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uniquePoolIndexLen = skinIO.length() - skinIO.position();
|
|
|
|
uniquePoolIndexData = skinIO.readUBytes(uniquePoolIndexLen);
|
|
|
|
|
|
|
|
skinIO.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
athena::io::TransactionalFileWriter skinOut(outPath.getAbsolutePath());
|
|
|
|
|
|
|
|
skinOut.writeUint32Big(bankCount);
|
|
|
|
for (const std::vector<uint32_t>& bank : skinBanks) {
|
|
|
|
skinOut.writeUint32Big(bank.size());
|
|
|
|
for (uint32_t bIdx : bank) {
|
|
|
|
const std::string& name = boneNames[bIdx];
|
|
|
|
auto search = boneIdMap.find(name);
|
|
|
|
if (search == boneIdMap.cend())
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING("unable to find bone '{}' in {}"), name,
|
2019-07-20 04:27:21 +00:00
|
|
|
inPath.getRelativePathUTF8());
|
2018-12-08 05:30:43 +00:00
|
|
|
skinOut.writeUint32Big(search->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
skinOut.writeUint32Big(skins.size());
|
|
|
|
for (auto& virtuaBone : skins) {
|
|
|
|
skinOut.writeUint32Big(virtuaBone.size());
|
|
|
|
for (auto& bind : virtuaBone) {
|
|
|
|
skinOut.writeUint32Big(bind.first);
|
|
|
|
skinOut.writeFloatBig(bind.second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uniquePoolIndexLen)
|
|
|
|
skinOut.writeUBytes(uniquePoolIndexData.get(), uniquePoolIndexLen);
|
|
|
|
|
|
|
|
return true;
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
|
2019-10-01 07:38:03 +00:00
|
|
|
static const hecl::SystemRegex regAnimNameId(_SYS_STR(R"((.*)_[0-9a-fA-F]{8}\.ANIM)"),
|
|
|
|
std::regex::ECMAScript | std::regex::optimize);
|
|
|
|
static const hecl::SystemRegex regAnimName(_SYS_STR(R"((.*)\.ANIM)"),
|
|
|
|
std::regex::ECMAScript | std::regex::optimize);
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
bool ANCS::CookANIM(const hecl::ProjectPath& outPath, const hecl::ProjectPath& inPath, const DNAANCS::Actor& actor,
|
|
|
|
hecl::blender::DataStream& ds, bool pc) {
|
2019-10-01 07:38:03 +00:00
|
|
|
auto auxInfo = inPath.getAuxInfo();
|
|
|
|
hecl::SystemViewRegexMatch match;
|
|
|
|
if (!std::regex_search(auxInfo.begin(), auxInfo.end(), match, regAnimNameId) &&
|
|
|
|
!std::regex_search(auxInfo.begin(), auxInfo.end(), match, regAnimName))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
hecl::SystemString actName = match[1].str();
|
2018-12-08 05:30:43 +00:00
|
|
|
hecl::SystemUTF8Conv actNameView(actName);
|
|
|
|
DNAANCS::Action action = ds.compileActionChannelsOnly(actNameView.str());
|
|
|
|
|
|
|
|
if (!actor.armatures.size())
|
2020-04-11 22:51:39 +00:00
|
|
|
Log.report(logvisor::Fatal, FMT_STRING(_SYS_STR("0 armatures in {}")), inPath.getRelativePath());
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
/* Build bone ID map */
|
|
|
|
std::unordered_map<std::string, atInt32> boneIdMap;
|
2019-06-12 02:05:17 +00:00
|
|
|
std::optional<CINF> rigCinf;
|
|
|
|
std::optional<DNAANIM::RigInverter<CINF>> rigInv;
|
2018-12-08 05:30:43 +00:00
|
|
|
for (const DNAANCS::Armature& arm : actor.armatures) {
|
|
|
|
if (!rigInv) {
|
2019-10-01 07:38:03 +00:00
|
|
|
rigCinf.emplace(*arm.armature, boneIdMap);
|
2018-12-08 05:30:43 +00:00
|
|
|
auto matrices = ds.getBoneMatrices(arm.name);
|
|
|
|
rigInv.emplace(*rigCinf, matrices);
|
|
|
|
} else {
|
2019-10-01 07:38:03 +00:00
|
|
|
CINF cinf(*arm.armature, boneIdMap);
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ANIM anim(action, boneIdMap, *rigInv, pc);
|
|
|
|
|
|
|
|
/* Check for associated EVNT YAML */
|
2019-10-01 07:38:03 +00:00
|
|
|
hecl::SystemString testPrefix(inPath.getWithExtension(
|
2020-04-11 22:51:39 +00:00
|
|
|
fmt::format(FMT_STRING(_SYS_STR(".{}_")), actName).c_str(), true).getLastComponent());
|
2019-10-01 07:38:03 +00:00
|
|
|
hecl::ProjectPath evntYamlPath;
|
|
|
|
for (const auto& ent : hecl::DirectoryEnumerator(inPath.getParentPath().getAbsolutePath())) {
|
|
|
|
if (hecl::StringUtils::BeginsWith(ent.m_name, testPrefix.c_str()) &&
|
|
|
|
hecl::StringUtils::EndsWith(ent.m_name, _SYS_STR(".evnt.yaml"))) {
|
|
|
|
evntYamlPath = hecl::ProjectPath(inPath.getParentPath(), ent.m_name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (evntYamlPath.isFile()) {
|
|
|
|
evntYamlPath = evntYamlPath.ensureAuxInfo(_SYS_STR(""));
|
2018-12-08 05:30:43 +00:00
|
|
|
anim.m_anim->evnt = evntYamlPath;
|
2019-10-01 07:38:03 +00:00
|
|
|
}
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
/* Write out ANIM resource */
|
|
|
|
athena::io::TransactionalFileWriter w(outPath.getAbsolutePath());
|
|
|
|
anim.write(w);
|
|
|
|
return true;
|
2015-08-08 04:49:42 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace DNAMP1
|
|
|
|
} // namespace DataSpec
|