metaforce/DataSpec/DNACommon/DPSC.hpp

57 lines
1.5 KiB
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-03-29 00:07:38 +00:00
#include "ParticleCommon.hpp"
#include "PAK.hpp"
#include "athena/FileWriter.hpp"
2017-12-29 08:08:12 +00:00
namespace DataSpec::DNAParticle
2016-03-29 00:07:38 +00:00
{
template <class IDType>
2018-02-22 07:24:51 +00:00
struct DPSM : BigDNA
2016-03-29 00:07:38 +00:00
{
2018-02-22 07:24:51 +00:00
AT_DECL_EXPLICIT_DNA_YAML
AT_SUBDECL_DNA
2016-03-29 00:07:38 +00:00
struct SQuadDescr
{
IntElementFactory x0_LFT;
RealElementFactory x4_SZE;
RealElementFactory x8_ROT;
VectorElementFactory xc_OFF;
ColorElementFactory x10_CLR;
UVElementFactory<IDType> x14_TEX;
BoolHelper x18_ADD;
};
SQuadDescr x0_quad;
SQuadDescr x1c_quad;
ChildResourceFactory<IDType> x38_DMDL;
IntElementFactory x48_DLFT;
VectorElementFactory x4c_DMOP;
VectorElementFactory x50_DMRT;
VectorElementFactory x54_DMSC;
ColorElementFactory x58_DMCL;
union
{
struct { bool x5c_24_DMAB : 1; bool x5c_25_DMOO : 1;};
uint8_t dummy;
};
template <class Reader>
void readQuadDecalInfo(Reader& r, uint32_t clsId, SQuadDescr& quad);
void writeQuadDecalInfo(athena::io::YAMLDocWriter& w, const SQuadDescr& quad, bool first) const;
2018-02-22 07:24:51 +00:00
void getQuadDecalBinarySize(size_t& s, const SQuadDescr& desc) const;
2016-03-29 00:07:38 +00:00
void writeQuadDecalInfo(athena::io::IStreamWriter& w, const SQuadDescr& quad, bool first) const;
2016-10-02 22:41:36 +00:00
void gatherDependencies(std::vector<hecl::ProjectPath>&) const;
2016-03-29 00:07:38 +00:00
};
template <class IDType>
bool ExtractDPSM(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath);
template <class IDType>
bool WriteDPSM(const DPSM<IDType>& dpsm, const hecl::ProjectPath& outPath);
}