metaforce/DataSpec/DNAMP1/EVNT.hpp

90 lines
1.8 KiB
C++
Raw Normal View History

2015-08-15 04:12:15 +00:00
#ifndef __DNAMP1_EVNT_HPP__
#define __DNAMP1_EVNT_HPP__
#include "../DNACommon/DNACommon.hpp"
2016-01-19 05:32:34 +00:00
#include "DNAMP1.hpp"
2015-08-15 04:12:15 +00:00
2016-02-13 09:02:47 +00:00
namespace DataSpec
2015-08-15 04:12:15 +00:00
{
namespace DNAMP1
{
struct EVNT : BigYAML
{
DECL_YAML
Delete expl;
Value<atUint32> version;
struct POINode : BigYAML
2015-08-15 04:12:15 +00:00
{
DECL_YAML
Value<atUint16> unk0;
String<-1> name;
Value<atUint16> type;
struct CharAnimTime : BigYAML
{
DECL_YAML
Value<float> time;
Value<atUint32> unk1;
};
CharAnimTime animTime;
2015-08-15 04:12:15 +00:00
Value<atUint32> idx;
Value<bool> unk2;
2015-08-15 04:12:15 +00:00
Value<float> unk3;
2016-01-19 05:32:34 +00:00
Value<atUint32> unk4;
2015-08-15 04:12:15 +00:00
Value<atUint32> unk5;
};
struct BoolPOINode : POINode
2015-08-15 04:12:15 +00:00
{
DECL_YAML
Value<atUint8> value;
2015-08-15 04:12:15 +00:00
};
std::vector<BoolPOINode> boolPOINodes;
2015-08-15 04:12:15 +00:00
struct Int32POINode : POINode
2015-08-15 04:12:15 +00:00
{
DECL_YAML
Value<atUint32> value;
String<-1> locatorName;
2015-08-15 04:12:15 +00:00
};
std::vector<Int32POINode> int32POINodes;
2015-08-15 04:12:15 +00:00
struct ParticlePOINode : POINode
2015-08-15 04:12:15 +00:00
{
DECL_YAML
Value<atUint32> duration;
2015-08-23 06:42:29 +00:00
DNAFourCC effectType;
2015-08-15 04:12:15 +00:00
UniqueID32 effectId;
String<-1> locatorName;
2015-08-15 04:12:15 +00:00
Value<float> scale;
Value<atUint32> parentMode;
};
std::vector<ParticlePOINode> particlePOINodes;
2015-08-15 04:12:15 +00:00
struct SoundPOINode : POINode
2015-08-15 04:12:15 +00:00
{
DECL_YAML
Value<atUint32> soundId;
Value<float> falloff;
Value<float> maxDist;
2015-08-15 04:12:15 +00:00
};
std::vector<SoundPOINode> soundPOINodes;
2016-01-19 05:32:34 +00:00
2016-03-04 23:04:53 +00:00
static bool Extract(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath)
2016-01-19 05:32:34 +00:00
{
EVNT evnt;
evnt.read(rs);
2016-03-04 23:04:53 +00:00
FILE* fp = hecl::Fopen(outPath.getAbsolutePath().c_str(), _S("wb"));
2016-01-19 05:32:34 +00:00
evnt.toYAMLFile(fp);
fclose(fp);
return true;
}
2015-08-15 04:12:15 +00:00
};
}
}
#endif // __DNAMP1_EVNT_HPP__