metaforce/DataSpec/DNAMP3/HINT.hpp

48 lines
1.1 KiB
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-09-08 02:01:29 +00:00
2018-06-29 20:21:36 +00:00
#include "DataSpec/DNACommon/DNACommon.hpp"
2016-09-08 02:01:29 +00:00
#include "PAK.hpp"
2017-12-29 08:08:12 +00:00
namespace DataSpec::DNAMP3
2016-09-08 02:01:29 +00:00
{
2018-02-22 07:24:51 +00:00
struct HINT : BigDNA
2016-09-08 02:01:29 +00:00
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA_YAML
2016-09-08 02:01:29 +00:00
Value<atUint32> magic;
Value<atUint32> version;
2018-02-22 07:24:51 +00:00
struct Hint : BigDNA
2016-09-08 02:01:29 +00:00
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA_YAML
2016-09-08 02:01:29 +00:00
String<-1> name;
Value<float> unknown1;
Value<float> fadeInTime;
UniqueID64 stringID;
Value<atUint32> unknown2;
2018-02-22 07:24:51 +00:00
struct Location : BigDNA
2016-09-08 02:01:29 +00:00
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA_YAML
2016-09-08 02:01:29 +00:00
UniqueID64 worldAssetID;
UniqueID64 areaAssetID;
Value<atUint32> areaID;
UniqueID64 stringID;
Value<atUint32> unknown[3];
};
Value<atUint32> locationCount;
2018-02-25 08:23:27 +00:00
Vector<Location, AT_DNA_COUNT(locationCount)> locations;
2016-09-08 02:01:29 +00:00
};
Value<atUint32> hintCount;
2018-02-25 08:23:27 +00:00
Vector<Hint, AT_DNA_COUNT(hintCount)> hints;
2016-09-08 02:01:29 +00:00
static bool Extract(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath)
{
HINT hint;
hint.read(rs);
athena::io::FileWriter writer(outPath.getAbsolutePath());
2018-02-22 07:24:51 +00:00
athena::io::ToYAMLStream(hint, writer);
2016-09-08 02:01:29 +00:00
return true;
}
};
}