metaforce/DataSpec/DNAMP2/MLVL.hpp

117 lines
3.4 KiB
C++
Raw Normal View History

#ifndef __DNAMP2_MLVL_HPP__
#define __DNAMP2_MLVL_HPP__
2015-09-23 06:35:07 +00:00
#include "../DNACommon/PAK.hpp"
#include "../DNACommon/MLVL.hpp"
#include "DNAMP2.hpp"
2015-07-10 05:28:08 +00:00
2017-12-29 08:08:12 +00:00
namespace DataSpec::DNAMP2
2015-07-10 05:28:08 +00:00
{
2018-02-22 07:24:51 +00:00
struct MLVL : BigDNA
2015-07-10 05:28:08 +00:00
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA_YAML
Value<atUint32> magic;
2015-07-10 05:28:08 +00:00
Value<atUint32> version;
UniqueID32 worldNameId;
UniqueID32 darkWorldNameId;
Value<atUint32> unk;
UniqueID32 saveWorldId;
UniqueID32 worldSkyboxId;
Value<atUint32> areaCount;
2018-02-22 07:24:51 +00:00
struct Area : BigDNA
2015-07-10 05:28:08 +00:00
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA_YAML
2015-07-10 05:28:08 +00:00
UniqueID32 areaNameId;
Value<atVec4f> transformMtx[3];
Value<atVec3f> aabb[2];
UniqueID32 areaMREAId;
Value<atUint32> areaId;
2015-07-10 05:28:08 +00:00
Value<atUint32> attachedAreaCount;
2018-02-25 08:23:27 +00:00
Vector<atUint16, AT_DNA_COUNT(attachedAreaCount)> attachedAreas;
2015-07-10 05:28:08 +00:00
Value<atUint32> padding;
Value<atUint32> depCount;
2018-02-22 07:24:51 +00:00
struct Dependency : BigDNA
2015-07-10 05:28:08 +00:00
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA_YAML
2015-07-10 05:28:08 +00:00
UniqueID32 id;
2015-08-23 06:42:29 +00:00
DNAFourCC type;
2015-07-10 05:28:08 +00:00
};
2018-02-25 08:23:27 +00:00
Vector<Dependency, AT_DNA_COUNT(depCount)> deps;
2015-07-10 05:28:08 +00:00
Value<atUint32> depLayerCount;
2018-02-25 08:23:27 +00:00
Vector<atUint32, AT_DNA_COUNT(depLayerCount)> depLayers;
2015-07-10 05:28:08 +00:00
Value<atUint32> dockCount;
2018-02-22 07:24:51 +00:00
struct Dock : BigDNA
2015-07-10 05:28:08 +00:00
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA_YAML
2015-07-10 05:28:08 +00:00
Value<atUint32> endpointCount;
2018-02-22 07:24:51 +00:00
struct Endpoint : BigDNA
2015-07-10 05:28:08 +00:00
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA_YAML
2015-07-10 05:28:08 +00:00
Value<atUint32> areaIdx;
Value<atUint32> dockIdx;
};
2018-02-25 08:23:27 +00:00
Vector<Endpoint, AT_DNA_COUNT(endpointCount)> endpoints;
2015-07-10 05:28:08 +00:00
Value<atUint32> planeVertCount;
2018-02-25 08:23:27 +00:00
Vector<atVec3f, AT_DNA_COUNT(planeVertCount)> planeVerts;
2015-07-10 05:28:08 +00:00
};
2018-02-25 08:23:27 +00:00
Vector<Dock, AT_DNA_COUNT(dockCount)> docks;
2015-07-10 05:28:08 +00:00
Value<atUint32> relCount;
2018-02-25 08:23:27 +00:00
Vector<String<-1>, AT_DNA_COUNT(relCount)> relFilenames;
2015-07-10 05:28:08 +00:00
Value<atUint32> relOffsetCount;
2018-02-25 08:23:27 +00:00
Vector<atUint32, AT_DNA_COUNT(relOffsetCount)> relOffsets;
2015-07-10 05:28:08 +00:00
String<-1> internalAreaName;
};
2018-02-25 08:23:27 +00:00
Vector<Area, AT_DNA_COUNT(areaCount)> areas;
2015-07-10 05:28:08 +00:00
UniqueID32 worldMap;
Value<atUint8> unknown2;
Value<atUint32> unknown3;
Value<atUint32> layerFlagCount;
2018-02-22 07:24:51 +00:00
struct LayerFlags : BigDNA
2015-07-10 05:28:08 +00:00
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA_YAML
2015-07-10 05:28:08 +00:00
Value<atUint32> layerCount;
Value<atUint64> flags;
};
2018-02-25 08:23:27 +00:00
Vector<LayerFlags, AT_DNA_COUNT(layerFlagCount)> layerFlags;
2015-07-10 05:28:08 +00:00
Value<atUint32> layerNameCount;
2018-02-25 08:23:27 +00:00
Vector<String<-1>, AT_DNA_COUNT(layerNameCount)> layerNames;
2015-07-10 05:28:08 +00:00
Value<atUint32> layerNameOffsetCount;
2018-02-25 08:23:27 +00:00
Vector<atUint32, AT_DNA_COUNT(layerNameOffsetCount)> layerNameOffsets;
2015-09-23 06:35:07 +00:00
static bool Extract(const SpecBase& dataSpec,
PAKEntryReadStream& rs,
2016-03-04 23:04:53 +00:00
const hecl::ProjectPath& outPath,
PAKRouter<PAKBridge>& pakRouter,
const DNAMP1::PAK::Entry& entry,
bool force,
2017-12-29 08:08:12 +00:00
hecl::blender::Token& btok,
2016-03-04 23:04:53 +00:00
std::function<void(const hecl::SystemChar*)> fileChanged)
2015-09-23 06:35:07 +00:00
{
MLVL mlvl;
mlvl.read(rs);
2016-08-22 03:47:48 +00:00
athena::io::FileWriter writer(outPath.getWithExtension(_S(".yaml"), true).getAbsolutePath());
2018-02-22 07:24:51 +00:00
athena::io::ToYAMLStream(mlvl, writer);
2017-12-29 08:08:12 +00:00
hecl::blender::Connection& conn = btok.getBlenderConnection();
return DNAMLVL::ReadMLVLToBlender(conn, mlvl, outPath, pakRouter,
entry, force, fileChanged);
2015-09-23 06:35:07 +00:00
}
2015-07-10 05:28:08 +00:00
};
}
#endif // __DNAMP2_MLVL_HPP__