2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-02-02 04:29:58 +00:00
|
|
|
|
2016-03-28 08:54:02 +00:00
|
|
|
#include "ParticleCommon.hpp"
|
|
|
|
#include "PAK.hpp"
|
|
|
|
#include "athena/FileWriter.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace DataSpec::DNAParticle {
|
2016-03-28 08:54:02 +00:00
|
|
|
|
|
|
|
template <class IDType>
|
2018-12-08 05:30:43 +00:00
|
|
|
struct SWSH : public BigDNA {
|
|
|
|
AT_DECL_EXPLICIT_DNA_YAML
|
|
|
|
AT_SUBDECL_DNA
|
|
|
|
|
|
|
|
IntElementFactory x0_PSLT;
|
|
|
|
RealElementFactory x4_TIME;
|
|
|
|
RealElementFactory x8_LRAD;
|
|
|
|
RealElementFactory xc_RRAD;
|
|
|
|
IntElementFactory x10_LENG;
|
|
|
|
ColorElementFactory x14_COLR;
|
|
|
|
IntElementFactory x18_SIDE;
|
|
|
|
RealElementFactory x1c_IROT;
|
|
|
|
RealElementFactory x20_ROTM;
|
|
|
|
VectorElementFactory x24_POFS;
|
|
|
|
VectorElementFactory x28_IVEL;
|
|
|
|
VectorElementFactory x2c_NPOS;
|
|
|
|
ModVectorElementFactory x30_VELM;
|
|
|
|
ModVectorElementFactory x34_VLM2;
|
|
|
|
IntElementFactory x38_SPLN;
|
|
|
|
UVElementFactory<IDType> x3c_TEXR;
|
|
|
|
IntElementFactory x40_TSPN;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
bool x44_24_LLRD : 1;
|
|
|
|
bool x44_25_CROS : 1;
|
|
|
|
bool x44_26_VLS1 : 1;
|
|
|
|
bool x44_27_VLS2 : 1;
|
|
|
|
bool x44_28_SROT : 1;
|
|
|
|
bool x44_29_WIRE : 1;
|
|
|
|
bool x44_30_TEXW : 1;
|
|
|
|
bool x44_31_AALP : 1;
|
|
|
|
bool x45_24_ZBUF : 1;
|
|
|
|
bool x45_25_ORNT : 1;
|
|
|
|
bool x45_26_CRND : 1;
|
2016-03-28 08:54:02 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
uint16_t dummy = 0;
|
|
|
|
};
|
2016-03-28 08:54:02 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
SWSH() { x44_25_CROS = true; }
|
2016-10-02 22:41:36 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void gatherDependencies(std::vector<hecl::ProjectPath>&) const;
|
2016-03-28 08:54:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <class IDType>
|
|
|
|
bool ExtractSWSH(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath);
|
|
|
|
|
|
|
|
template <class IDType>
|
|
|
|
bool WriteSWSH(const SWSH<IDType>& gpsm, const hecl::ProjectPath& outPath);
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace DataSpec::DNAParticle
|