2015-07-13 06:29:12 +00:00
|
|
|
#ifndef __DNAMP1_MLVL_HPP__
|
|
|
|
#define __DNAMP1_MLVL_HPP__
|
|
|
|
|
2015-06-25 19:53:27 +00:00
|
|
|
#include "../DNACommon/DNACommon.hpp"
|
2015-06-24 20:56:23 +00:00
|
|
|
|
2015-07-01 23:50:39 +00:00
|
|
|
namespace Retro
|
|
|
|
{
|
2015-06-25 19:53:27 +00:00
|
|
|
namespace DNAMP1
|
2015-06-24 20:56:23 +00:00
|
|
|
{
|
|
|
|
|
2015-07-07 03:22:44 +00:00
|
|
|
struct MLVL : BigDNA
|
2015-06-24 20:56:23 +00:00
|
|
|
{
|
|
|
|
DECL_DNA
|
2015-07-13 06:29:12 +00:00
|
|
|
Value<atUint32> magic;
|
2015-06-24 20:56:23 +00:00
|
|
|
Value<atUint32> version;
|
2015-07-09 06:40:55 +00:00
|
|
|
UniqueID32 worldNameId;
|
|
|
|
UniqueID32 saveWorldId;
|
|
|
|
UniqueID32 worldSkyboxId;
|
2015-06-24 20:56:23 +00:00
|
|
|
|
|
|
|
Value<atUint32> memRelayLinkCount;
|
2015-07-07 03:22:44 +00:00
|
|
|
struct MemRelayLink : BigDNA
|
2015-06-24 20:56:23 +00:00
|
|
|
{
|
|
|
|
DECL_DNA
|
|
|
|
Value<atUint32> memRelayId;
|
|
|
|
Value<atUint32> targetId;
|
|
|
|
Value<atUint16> msg;
|
|
|
|
Value<atUint8> unk;
|
|
|
|
};
|
|
|
|
Vector<MemRelayLink, DNA_COUNT(memRelayLinkCount)> memRelayLinks;
|
|
|
|
|
|
|
|
Value<atUint32> areaCount;
|
|
|
|
Value<atUint32> unknown1;
|
2015-07-07 03:22:44 +00:00
|
|
|
struct Area : BigDNA
|
2015-06-24 20:56:23 +00:00
|
|
|
{
|
|
|
|
DECL_DNA
|
2015-07-09 06:40:55 +00:00
|
|
|
UniqueID32 areaNameId;
|
2015-06-24 20:56:23 +00:00
|
|
|
Value<atVec4f> transformMtx[3];
|
|
|
|
Value<atVec3f> aabb[2];
|
2015-07-09 06:40:55 +00:00
|
|
|
UniqueID32 areaMREAId;
|
2015-07-14 00:38:48 +00:00
|
|
|
UniqueID32 areaId;
|
2015-06-24 20:56:23 +00:00
|
|
|
|
|
|
|
Value<atUint32> attachedAreaCount;
|
|
|
|
Vector<atUint16, DNA_COUNT(attachedAreaCount)> attachedAreas;
|
|
|
|
Value<atUint32> padding;
|
|
|
|
|
|
|
|
Value<atUint32> depCount;
|
2015-07-07 03:22:44 +00:00
|
|
|
struct Dependency : BigDNA
|
2015-06-24 20:56:23 +00:00
|
|
|
{
|
|
|
|
DECL_DNA
|
2015-07-09 06:40:55 +00:00
|
|
|
UniqueID32 id;
|
2015-07-12 04:26:26 +00:00
|
|
|
FourCC type;
|
2015-06-24 20:56:23 +00:00
|
|
|
};
|
|
|
|
Vector<Dependency, DNA_COUNT(depCount)> deps;
|
|
|
|
|
|
|
|
Value<atUint32> depLayerCount;
|
|
|
|
Vector<atUint32, DNA_COUNT(depLayerCount)> depLayers;
|
|
|
|
|
|
|
|
Value<atUint32> dockCount;
|
2015-07-07 03:22:44 +00:00
|
|
|
struct Dock : BigDNA
|
2015-06-24 20:56:23 +00:00
|
|
|
{
|
|
|
|
DECL_DNA
|
|
|
|
Value<atUint32> endpointCount;
|
2015-07-07 03:22:44 +00:00
|
|
|
struct Endpoint : BigDNA
|
2015-06-24 20:56:23 +00:00
|
|
|
{
|
|
|
|
DECL_DNA
|
|
|
|
Value<atUint32> areaIdx;
|
|
|
|
Value<atUint32> dockIdx;
|
|
|
|
};
|
|
|
|
Vector<Endpoint, DNA_COUNT(endpointCount)> endpoints;
|
|
|
|
|
|
|
|
Value<atUint32> planeVertCount;
|
|
|
|
Vector<atVec3f, DNA_COUNT(planeVertCount)> planeVerts;
|
|
|
|
};
|
|
|
|
Vector<Dock, DNA_COUNT(dockCount)> docks;
|
|
|
|
};
|
2015-07-12 04:26:26 +00:00
|
|
|
Vector<Area, DNA_COUNT(areaCount)> areas;
|
2015-06-24 20:56:23 +00:00
|
|
|
|
2015-07-09 06:40:55 +00:00
|
|
|
UniqueID32 worldMap;
|
2015-06-24 20:56:23 +00:00
|
|
|
Value<atUint8> unknown2;
|
|
|
|
Value<atUint32> unknown3;
|
|
|
|
|
|
|
|
Value<atUint32> audioGroupCount;
|
2015-07-07 03:22:44 +00:00
|
|
|
struct AudioGroup : BigDNA
|
2015-06-24 20:56:23 +00:00
|
|
|
{
|
|
|
|
DECL_DNA
|
|
|
|
Value<atUint32> unknown;
|
2015-07-09 06:40:55 +00:00
|
|
|
UniqueID32 agscId;
|
2015-06-24 20:56:23 +00:00
|
|
|
};
|
|
|
|
Vector<AudioGroup, DNA_COUNT(audioGroupCount)> audioGroups;
|
|
|
|
String<-1> unkString;
|
|
|
|
|
|
|
|
Value<atUint32> layerFlagCount;
|
2015-07-07 03:22:44 +00:00
|
|
|
struct LayerFlags : BigDNA
|
2015-06-24 20:56:23 +00:00
|
|
|
{
|
|
|
|
DECL_DNA
|
|
|
|
Value<atUint32> layerCount;
|
|
|
|
Value<atUint64> flags;
|
|
|
|
};
|
|
|
|
Vector<LayerFlags, DNA_COUNT(layerFlagCount)> layerFlags;
|
|
|
|
|
|
|
|
Value<atUint32> layerNameCount;
|
2015-06-25 19:53:27 +00:00
|
|
|
Vector<String<-1>, DNA_COUNT(layerNameCount)> layerNames;
|
2015-06-24 20:56:23 +00:00
|
|
|
|
|
|
|
Value<atUint32> layerNameOffsetCount;
|
|
|
|
Vector<atUint32, DNA_COUNT(layerNameOffsetCount)> layerNameOffsets;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2015-07-01 23:50:39 +00:00
|
|
|
}
|
2015-07-13 06:29:12 +00:00
|
|
|
|
|
|
|
#endif // __DNAMP1_MLVL_HPP__
|