metaforce/DataSpec/DNACommon/DPSC.cpp

52 lines
1.6 KiB
C++
Raw Permalink Normal View History

#include "DataSpec/DNACommon/DPSC.hpp"
#include "DataSpec/DNACommon/PAK.hpp"
2018-12-08 05:30:43 +00:00
namespace DataSpec::DNAParticle {
2018-02-22 07:24:51 +00:00
template struct PPImpl<_DPSM<UniqueID32>>;
template struct PPImpl<_DPSM<UniqueID64>>;
AT_SUBSPECIALIZE_DNA_YAML(PPImpl<_DPSM<UniqueID32>>)
AT_SUBSPECIALIZE_DNA_YAML(PPImpl<_DPSM<UniqueID64>>)
2018-02-22 07:24:51 +00:00
template <>
std::string_view PPImpl<_DPSM<UniqueID32>>::DNAType() {
2019-10-01 07:38:03 +00:00
return "DPSM<UniqueID32>"sv;
2018-12-08 05:30:43 +00:00
}
2018-02-22 07:24:51 +00:00
template <>
std::string_view PPImpl<_DPSM<UniqueID64>>::DNAType() {
2019-10-01 07:38:03 +00:00
return "DPSM<UniqueID64>"sv;
2018-12-08 05:30:43 +00:00
}
2018-02-22 07:24:51 +00:00
2016-03-29 00:07:38 +00:00
template <class IDType>
2018-12-08 05:30:43 +00:00
bool ExtractDPSM(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath) {
athena::io::FileWriter writer(outPath.getAbsolutePath());
if (writer.isOpen()) {
DPSM<IDType> dpsm;
dpsm.read(rs);
athena::io::ToYAMLStream(dpsm, writer);
return true;
}
return false;
2016-03-29 00:07:38 +00:00
}
template bool ExtractDPSM<UniqueID32>(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath);
template bool ExtractDPSM<UniqueID64>(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath);
template <class IDType>
2018-12-08 05:30:43 +00:00
bool WriteDPSM(const DPSM<IDType>& dpsm, const hecl::ProjectPath& outPath) {
athena::io::FileWriter w(outPath.getAbsolutePath(), true, false);
if (w.hasError())
return false;
dpsm.write(w);
int64_t rem = w.position() % 32;
if (rem)
for (int64_t i = 0; i < 32 - rem; ++i)
w.writeUByte(0xff);
return true;
2016-03-29 00:07:38 +00:00
}
template bool WriteDPSM<UniqueID32>(const DPSM<UniqueID32>& dpsm, const hecl::ProjectPath& outPath);
template bool WriteDPSM<UniqueID64>(const DPSM<UniqueID64>& dpsm, const hecl::ProjectPath& outPath);
2018-12-08 05:30:43 +00:00
} // namespace DataSpec::DNAParticle