2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-03-28 08:54:02 +00:00
|
|
|
|
2019-08-23 23:24:04 +00:00
|
|
|
#include <cstdint>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "DataSpec/DNACommon/DNACommon.hpp"
|
|
|
|
#include "DataSpec/DNACommon/ParticleCommon.hpp"
|
|
|
|
|
|
|
|
#include <athena/DNA.hpp>
|
|
|
|
|
|
|
|
namespace DataSpec {
|
|
|
|
class PAKEntryReadStream;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace hecl {
|
|
|
|
class ProjectPath;
|
|
|
|
}
|
2016-03-28 08:54:02 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace DataSpec::DNAParticle {
|
2020-03-29 06:56:54 +00:00
|
|
|
|
2016-03-28 08:54:02 +00:00
|
|
|
template <class IDType>
|
2020-03-29 06:56:54 +00:00
|
|
|
struct _CRSM {
|
|
|
|
static constexpr ParticleType Type = ParticleType::CRSM;
|
|
|
|
#define RES_ENTRY(name, identifier) ChildResourceFactory<IDType> identifier;
|
|
|
|
#define U32_ENTRY(name, identifier) uint32_t identifier = ~0;
|
|
|
|
#define FLOAT_ENTRY(name, identifier) float identifier = 0.f;
|
|
|
|
#include "CRSC.def"
|
|
|
|
|
2021-06-07 19:29:18 +00:00
|
|
|
template <typename _Func>
|
2020-03-29 06:56:54 +00:00
|
|
|
void constexpr Enumerate(_Func f) {
|
|
|
|
#define ENTRY(name, identifier) f(FOURCC(name), identifier);
|
|
|
|
#include "CRSC.def"
|
|
|
|
}
|
|
|
|
|
2021-06-07 19:29:18 +00:00
|
|
|
template <typename _Func>
|
2020-03-29 06:56:54 +00:00
|
|
|
bool constexpr Lookup(FourCC fcc, _Func f) {
|
|
|
|
switch (fcc.toUint32()) {
|
2021-06-07 19:29:18 +00:00
|
|
|
#define ENTRY(name, identifier) \
|
|
|
|
case SBIG(name): \
|
|
|
|
f(identifier); \
|
|
|
|
return true;
|
2020-03-29 06:56:54 +00:00
|
|
|
#include "CRSC.def"
|
2021-06-07 19:29:18 +00:00
|
|
|
default:
|
|
|
|
return false;
|
2020-03-29 06:56:54 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-28 08:54:02 +00:00
|
|
|
};
|
2020-03-29 06:56:54 +00:00
|
|
|
template <class IDType>
|
|
|
|
using CRSM = PPImpl<_CRSM<IDType>>;
|
|
|
|
|
2016-03-28 08:54:02 +00:00
|
|
|
template <class IDType>
|
|
|
|
bool ExtractCRSM(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath);
|
|
|
|
|
|
|
|
template <class IDType>
|
|
|
|
bool WriteCRSM(const CRSM<IDType>& crsm, const hecl::ProjectPath& outPath);
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace DataSpec::DNAParticle
|