#ifndef __COMMON_SAVWCOMMON_HPP__ #define __COMMON_SAVWCOMMON_HPP__ #include "DNACommon.hpp" #include "PAK.hpp" namespace DataSpec { namespace SAVWCommon { enum class EScanCategory { None, Data, Lore, Creature, Research, Artifact }; struct Header : BigYAML { DECL_YAML Value magic; Value version; Value areaCount; }; struct EnvironmentVariable : BigYAML { DECL_YAML String<-1> name; Value unk1; Value unk2; Value unk3; }; struct Layer : BigYAML { DECL_YAML Value areaId; Value layer; }; template static bool ExtractSAVW(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath) { SAVW savw; savw.read(rs); athena::io::FileWriter writer(outPath.getAbsolutePath()); savw.toYAMLStream(writer); return true; } } } #endif // __COMMON_SAVWCOMMON_HPP__