mirror of https://github.com/AxioDL/metaforce.git
35 lines
893 B
C++
35 lines
893 B
C++
#pragma once
|
|
|
|
#include "DataSpec/DNACommon/SAVWCommon.hpp"
|
|
#include "DNAMP1.hpp"
|
|
|
|
namespace DataSpec::DNAMP1
|
|
{
|
|
struct Scan : BigDNA
|
|
{
|
|
AT_DECL_DNA_YAML
|
|
UniqueID32 scanId;
|
|
Value<SAVWCommon::EScanCategory> category;
|
|
|
|
Scan() = default;
|
|
Scan(const UniqueID32& id) : scanId(id), category(SAVWCommon::EScanCategory::None) {}
|
|
};
|
|
|
|
struct SAVW : BigDNA
|
|
{
|
|
AT_DECL_DNA_YAML
|
|
SAVWCommon::Header header;
|
|
Value<atUint32> skippableCutsceneCount;
|
|
Vector<atUint32, AT_DNA_COUNT(skippableCutsceneCount)> skippableCutscenes;
|
|
Value<atUint32> relayCount;
|
|
Vector<atUint32, AT_DNA_COUNT(relayCount)> relays;
|
|
Value<atUint32> layerCount;
|
|
Vector<SAVWCommon::Layer, AT_DNA_COUNT(layerCount)> layers;
|
|
Value<atUint32> doorCount;
|
|
Vector<atUint32, AT_DNA_COUNT(doorCount)> doors;
|
|
Value<atUint32> scanCount;
|
|
Vector<Scan, AT_DNA_COUNT(scanCount)> scans;
|
|
};
|
|
}
|
|
|