#pragma once #include "DataSpec/DNACommon/PAK.hpp" #include "DataSpec/DNACommon/MLVL.hpp" #include "DNAMP3.hpp" namespace DataSpec::DNAMP3 { struct MLVL : BigDNA { AT_DECL_DNA_YAML Value magic; Value version; UniqueID64 worldNameId; Value unk; UniqueID64 saveWorldId; UniqueID64 worldSkyboxId; Value areaCount; struct Area : BigDNA { AT_DECL_DNA_YAML UniqueID64 areaNameId; Value transformMtx[3]; Value aabb[2]; UniqueID64 areaMREAId; Value areaId; Value attachedAreaCount; Vector attachedAreas; Value dockCount; struct Dock : BigDNA { AT_DECL_DNA_YAML Value endpointCount; struct Endpoint : BigDNA { AT_DECL_DNA_YAML Value areaIdx; Value dockIdx; }; Vector endpoints; Value planeVertCount; Vector planeVerts; }; Vector docks; String<-1> internalAreaName; }; Vector areas; UniqueID64 worldMap; Value unknown2; Value unknown3; Value layerFlagCount; struct LayerFlags : BigDNA { AT_DECL_DNA_YAML Value layerCount; Value flags; }; Vector layerFlags; Value layerNameCount; Vector, AT_DNA_COUNT(layerNameCount)> layerNames; Value layerIDCount; struct LayerID : BigDNA { AT_DECL_DNA_YAML Value id[2]; }; Vector layerIDs; Value layerNameOffsetCount; Vector layerNameOffsets; static bool Extract(const SpecBase& dataSpec, PAKEntryReadStream& rs, const hecl::ProjectPath& outPath, PAKRouter& pakRouter, const PAK::Entry& entry, bool force, hecl::blender::Token& btok, std::function fileChanged) { MLVL mlvl; mlvl.read(rs); athena::io::FileWriter writer(outPath.getWithExtension(_SYS_STR(".yaml"), true).getAbsolutePath()); athena::io::ToYAMLStream(mlvl, writer); hecl::blender::Connection& conn = btok.getBlenderConnection(); return DNAMLVL::ReadMLVLToBlender(conn, mlvl, outPath, pakRouter, entry, force, fileChanged); } }; } // namespace DataSpec::DNAMP3