#include "DataSpec/DNACommon/WPSC.hpp" #include "DataSpec/DNACommon/PAK.hpp" namespace DataSpec::DNAParticle { template struct PPImpl<_WPSM>; template struct PPImpl<_WPSM>; AT_SUBSPECIALIZE_DNA_YAML(PPImpl<_WPSM>) AT_SUBSPECIALIZE_DNA_YAML(PPImpl<_WPSM>) template <> std::string_view WPSM::DNAType() { return "WPSM"sv; } template <> std::string_view WPSM::DNAType() { return "WPSM"sv; } template bool ExtractWPSM(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath) { athena::io::FileWriter writer(outPath.getAbsolutePath()); if (writer.isOpen()) { WPSM wpsm; wpsm.read(rs); athena::io::ToYAMLStream(wpsm, writer); return true; } return false; } template bool ExtractWPSM(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath); template bool ExtractWPSM(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath); template bool WriteWPSM(const WPSM& wpsm, const hecl::ProjectPath& outPath) { athena::io::FileWriter w(outPath.getAbsolutePath(), true, false); if (w.hasError()) return false; wpsm.write(w); int64_t rem = w.position() % 32; if (rem) for (int64_t i = 0; i < 32 - rem; ++i) w.writeUByte(0xff); return true; } template bool WriteWPSM(const WPSM& wpsm, const hecl::ProjectPath& outPath); template bool WriteWPSM(const WPSM& wpsm, const hecl::ProjectPath& outPath); } // namespace DataSpec::DNAParticle