#include #include #include #include "FSM2.hpp" namespace DataSpec::DNAFSM2 { logvisor::Module LogDNAFSM2("urde::DNAFSM2"); template template void FSM2::Enumerate(typename Op::StreamT& s) { Do({"header"}, header, s); if (header.magic != SBIG('FSM2')) { LogDNAFSM2.report(logvisor::Fatal, "Invalid FSM2 magic '%.4s' expected 'FSM2'", header.magic.toString().c_str()); return; } if (header.version == 1) { if (!detail) detail.reset(new FSMV1); Do({"detail"}, static_cast(*detail), s); } else if (header.version == 2) { if (!detail) detail.reset(new FSMV2); Do({"detail"}, static_cast(*detail), s); } else { LogDNAFSM2.report(logvisor::Fatal, "Invalid FSM2 version '%i'", header.version); return; } } AT_SPECIALIZE_DNA(FSM2) AT_SPECIALIZE_DNA(FSM2) template <> const char* FSM2::DNAType() { return "urde::FSM2"; } template <> const char* FSM2::DNAType() { return "urde::FSM2"; } template struct FSM2; template struct FSM2; template bool ExtractFSM2(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath) { athena::io::FileWriter writer(outPath.getAbsolutePath()); if (writer.isOpen()) { FSM2 fsm2; fsm2.read(rs); athena::io::ToYAMLStream(fsm2, writer); return true; } return false; } template bool ExtractFSM2(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath); template bool ExtractFSM2(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath); template bool WriteFSM2(const FSM2& fsm2, const hecl::ProjectPath& outPath) { athena::io::FileWriter w(outPath.getAbsolutePath(), true, false); if (w.hasError()) return false; fsm2.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 WriteFSM2(const FSM2& fsm2, const hecl::ProjectPath& outPath); template bool WriteFSM2(const FSM2& fsm2, const hecl::ProjectPath& outPath); }