metaforce/DataSpec/DNACommon/DNACommon.hpp

403 lines
13 KiB
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2015-06-24 20:56:23 +00:00
2017-12-29 08:08:12 +00:00
#include <cstdio>
#include "logvisor/logvisor.hpp"
#include "athena/DNAYaml.hpp"
2016-03-04 23:04:53 +00:00
#include "hecl/Database.hpp"
2015-08-05 21:46:07 +00:00
#include "../SpecBase.hpp"
2016-04-10 04:49:02 +00:00
#include "boo/ThreadLocalPtr.hpp"
2016-09-16 20:18:03 +00:00
#include "zeus/CColor.hpp"
2015-06-24 20:56:23 +00:00
2018-12-08 05:30:43 +00:00
namespace DataSpec {
2017-12-29 08:08:12 +00:00
struct SpecBase;
2015-07-01 23:50:39 +00:00
2016-03-04 23:04:53 +00:00
extern logvisor::Module LogDNACommon;
2016-04-10 04:49:02 +00:00
extern ThreadLocalPtr<SpecBase> g_curSpec;
extern ThreadLocalPtr<class PAKRouterBase> g_PakRouter;
2017-12-29 08:08:12 +00:00
extern ThreadLocalPtr<hecl::blender::Token> g_ThreadBlenderToken;
2015-07-16 01:57:34 +00:00
2015-06-24 20:56:23 +00:00
/* This comes up a great deal */
using BigDNA = athena::io::DNA<athena::Endian::Big>;
using BigDNAV = athena::io::DNAV<athena::Endian::Big>;
using BigDNAVYaml = athena::io::DNAVYaml<athena::Endian::Big>;
2015-06-24 20:56:23 +00:00
2015-11-10 02:07:15 +00:00
/** FourCC with DNA read/write */
using DNAFourCC = hecl::DNAFourCC;
2015-07-11 22:41:10 +00:00
2018-12-08 05:30:43 +00:00
class DNAColor final : public BigDNA, public zeus::CColor {
2016-09-16 20:18:03 +00:00
public:
2018-12-08 05:30:43 +00:00
DNAColor() = default;
DNAColor(const zeus::CColor& color) : zeus::CColor(color) {}
AT_DECL_EXPLICIT_DNA_YAML
2018-02-22 07:24:51 +00:00
};
2018-12-08 05:30:43 +00:00
template <>
inline void DNAColor::Enumerate<BigDNA::Read>(typename Read::StreamT& _r) {
zeus::CColor::readRGBABig(_r);
2018-02-22 07:24:51 +00:00
}
2018-12-08 05:30:43 +00:00
template <>
inline void DNAColor::Enumerate<BigDNA::Write>(typename Write::StreamT& _w) {
zeus::CColor::writeRGBABig(_w);
}
template <>
inline void DNAColor::Enumerate<BigDNA::ReadYaml>(typename ReadYaml::StreamT& _r) {
size_t count;
2019-10-01 07:38:03 +00:00
if (auto v = _r.enterSubVector(count)) {
2018-12-08 05:30:43 +00:00
zeus::simd_floats f;
2019-10-01 07:38:03 +00:00
f[0] = (count >= 1) ? _r.readFloat() : 0.f;
f[1] = (count >= 2) ? _r.readFloat() : 0.f;
f[2] = (count >= 3) ? _r.readFloat() : 0.f;
f[3] = (count >= 4) ? _r.readFloat() : 0.f;
2018-12-08 05:30:43 +00:00
mSimd.copy_from(f);
}
}
template <>
inline void DNAColor::Enumerate<BigDNA::WriteYaml>(typename WriteYaml::StreamT& _w) {
2019-10-01 07:38:03 +00:00
if (auto v = _w.enterSubVector()) {
2018-12-08 05:30:43 +00:00
zeus::simd_floats f(mSimd);
2019-10-01 07:38:03 +00:00
_w.writeFloat(f[0]);
_w.writeFloat(f[1]);
_w.writeFloat(f[2]);
_w.writeFloat(f[3]);
2018-12-08 05:30:43 +00:00
}
}
template <>
inline void DNAColor::Enumerate<BigDNA::BinarySize>(typename BinarySize::StreamT& _s) {
_s += 16;
2018-02-22 07:24:51 +00:00
}
2016-09-16 20:18:03 +00:00
2016-03-04 23:04:53 +00:00
using FourCC = hecl::FourCC;
class UniqueID32;
class UniqueID64;
class UniqueID128;
/** Common virtual interface for runtime ambiguity resolution */
2018-12-08 05:30:43 +00:00
class PAKRouterBase {
protected:
2018-12-08 05:30:43 +00:00
const SpecBase& m_dataSpec;
public:
2018-12-08 05:30:43 +00:00
PAKRouterBase(const SpecBase& dataSpec) : m_dataSpec(dataSpec) {}
hecl::Database::Project& getProject() const { return m_dataSpec.getProject(); }
virtual hecl::ProjectPath getWorking(const UniqueID32&, bool silenceWarnings = false) const {
2019-07-20 04:27:21 +00:00
LogDNACommon.report(logvisor::Fatal, fmt("PAKRouter IDType mismatch; expected UniqueID32 specialization"));
2018-12-08 05:30:43 +00:00
return hecl::ProjectPath();
}
virtual hecl::ProjectPath getWorking(const UniqueID64&, bool silenceWarnings = false) const {
2019-07-20 04:27:21 +00:00
LogDNACommon.report(logvisor::Fatal, fmt("PAKRouter IDType mismatch; expected UniqueID64 specialization"));
2018-12-08 05:30:43 +00:00
return hecl::ProjectPath();
}
virtual hecl::ProjectPath getWorking(const UniqueID128&, bool silenceWarnings = false) const {
2019-07-20 04:27:21 +00:00
LogDNACommon.report(logvisor::Fatal, fmt("PAKRouter IDType mismatch; expected UniqueID128 specialization"));
2018-12-08 05:30:43 +00:00
return hecl::ProjectPath();
}
};
/** Globally-accessed manager allowing UniqueID* classes to directly
* lookup destination paths of resources */
2018-12-08 05:30:43 +00:00
class UniqueIDBridge {
friend class UniqueID32;
friend class UniqueID64;
static ThreadLocalPtr<hecl::Database::Project> s_Project;
public:
2018-12-08 05:30:43 +00:00
template <class IDType>
static hecl::ProjectPath TranslatePakIdToPath(const IDType& id, bool silenceWarnings = false);
template <class IDType>
static hecl::ProjectPath MakePathFromString(std::string_view str);
static void SetThreadProject(hecl::Database::Project& project);
};
2015-08-23 06:42:29 +00:00
2015-11-10 02:07:15 +00:00
/** PAK 32-bit Unique ID */
2018-12-08 05:30:43 +00:00
class UniqueID32 : public BigDNA {
protected:
2018-12-08 05:30:43 +00:00
uint32_t m_id = 0xffffffff;
2015-11-10 02:07:15 +00:00
2018-12-08 05:30:43 +00:00
public:
using value_type = uint32_t;
static UniqueID32 kInvalidId;
AT_DECL_EXPLICIT_DNA_YAML
2019-07-20 04:27:21 +00:00
bool isValid() const { return m_id != 0xffffffff && m_id != 0; }
2019-10-01 07:38:03 +00:00
void assign(uint32_t id) { m_id = id ? id : 0xffffffff; }
2018-12-08 05:30:43 +00:00
UniqueID32& operator=(const hecl::ProjectPath& path) {
2019-10-01 07:38:03 +00:00
assign(path.parsedHash32());
2018-12-08 05:30:43 +00:00
return *this;
}
bool operator!=(const UniqueID32& other) const { return m_id != other.m_id; }
bool operator==(const UniqueID32& other) const { return m_id == other.m_id; }
bool operator<(const UniqueID32& other) const { return m_id < other.m_id; }
uint32_t toUint32() const { return m_id; }
uint64_t toUint64() const { return m_id; }
std::string toString() const;
void clear() { m_id = 0xffffffff; }
UniqueID32() = default;
2019-10-01 07:38:03 +00:00
UniqueID32(uint32_t idin) { assign(idin); }
2018-12-08 05:30:43 +00:00
UniqueID32(athena::io::IStreamReader& reader) { read(reader); }
UniqueID32(const hecl::ProjectPath& path) { *this = path; }
UniqueID32(const char* hexStr) {
char copy[9];
strncpy(copy, hexStr, 8);
copy[8] = '\0';
assign(strtoul(copy, nullptr, 16));
}
UniqueID32(const wchar_t* hexStr) {
wchar_t copy[9];
wcsncpy(copy, hexStr, 8);
copy[8] = L'\0';
assign(wcstoul(copy, nullptr, 16));
}
static constexpr size_t BinarySize() { return 4; }
2015-06-24 20:56:23 +00:00
};
2018-04-02 04:27:24 +00:00
/** PAK 32-bit Unique ID - writes zero when invalid */
2018-12-08 05:30:43 +00:00
class UniqueID32Zero : public UniqueID32 {
2018-04-02 04:27:24 +00:00
public:
2018-12-08 05:30:43 +00:00
AT_DECL_DNA_YAML
Delete __d2;
using UniqueID32::UniqueID32;
2018-04-02 04:27:24 +00:00
};
2015-11-10 02:07:15 +00:00
/** PAK 64-bit Unique ID */
2018-12-08 05:30:43 +00:00
class UniqueID64 : public BigDNA {
uint64_t m_id = 0xffffffffffffffff;
2015-06-24 20:56:23 +00:00
public:
2018-12-08 05:30:43 +00:00
using value_type = uint64_t;
AT_DECL_EXPLICIT_DNA_YAML
2019-07-20 04:27:21 +00:00
bool isValid() const { return m_id != 0xffffffffffffffff && m_id != 0; }
2019-10-01 07:38:03 +00:00
void assign(uint64_t id) { m_id = id ? id : 0xffffffffffffffff; }
2018-12-08 05:30:43 +00:00
UniqueID64& operator=(const hecl::ProjectPath& path) {
assign(path.hash().val64());
return *this;
}
bool operator!=(const UniqueID64& other) const { return m_id != other.m_id; }
bool operator==(const UniqueID64& other) const { return m_id == other.m_id; }
bool operator<(const UniqueID64& other) const { return m_id < other.m_id; }
uint64_t toUint64() const { return m_id; }
std::string toString() const;
void clear() { m_id = 0xffffffffffffffff; }
UniqueID64() = default;
2019-10-01 07:38:03 +00:00
UniqueID64(uint64_t idin) { assign(idin); }
2018-12-08 05:30:43 +00:00
UniqueID64(athena::io::IStreamReader& reader) { read(reader); }
UniqueID64(const hecl::ProjectPath& path) { *this = path; }
UniqueID64(const char* hexStr) {
char copy[17];
std::strncpy(copy, hexStr, 16);
2018-12-08 05:30:43 +00:00
copy[16] = '\0';
assign(std::strtoull(copy, nullptr, 16));
2018-12-08 05:30:43 +00:00
}
UniqueID64(const wchar_t* hexStr) {
wchar_t copy[17];
std::wcsncpy(copy, hexStr, 16);
2018-12-08 05:30:43 +00:00
copy[16] = L'\0';
assign(std::wcstoull(copy, nullptr, 16));
2018-12-08 05:30:43 +00:00
}
2015-11-10 02:07:15 +00:00
2018-12-08 05:30:43 +00:00
static constexpr size_t BinarySize() { return 8; }
2015-06-24 20:56:23 +00:00
};
2015-11-10 02:07:15 +00:00
/** PAK 128-bit Unique ID */
2018-12-08 05:30:43 +00:00
class UniqueID128 : public BigDNA {
public:
2018-12-08 05:30:43 +00:00
union Value {
uint64_t id[2];
2015-07-06 01:33:06 +00:00
#if __SSE__
2018-12-08 05:30:43 +00:00
__m128i id128;
2015-07-06 01:33:06 +00:00
#endif
2018-12-08 05:30:43 +00:00
};
private:
2018-12-08 05:30:43 +00:00
Value m_id;
2018-12-08 05:30:43 +00:00
public:
using value_type = uint64_t;
AT_DECL_EXPLICIT_DNA_YAML
UniqueID128() {
m_id.id[0] = 0xffffffffffffffff;
m_id.id[1] = 0xffffffffffffffff;
}
2019-10-01 07:38:03 +00:00
UniqueID128(uint64_t idin) {
2018-12-08 05:30:43 +00:00
m_id.id[0] = idin;
m_id.id[1] = 0;
}
2019-07-20 04:27:21 +00:00
bool isValid() const {
2018-12-08 05:30:43 +00:00
return m_id.id[0] != 0xffffffffffffffff && m_id.id[0] != 0 && m_id.id[1] != 0xffffffffffffffff && m_id.id[1] != 0;
}
UniqueID128& operator=(const hecl::ProjectPath& path) {
m_id.id[0] = path.hash().val64();
m_id.id[1] = 0;
return *this;
}
UniqueID128(const hecl::ProjectPath& path) { *this = path; }
bool operator!=(const UniqueID128& other) const {
2015-07-06 01:33:06 +00:00
#if __SSE__
2018-12-08 05:30:43 +00:00
__m128i vcmp = _mm_cmpeq_epi32(m_id.id128, other.m_id.id128);
int vmask = _mm_movemask_epi8(vcmp);
return vmask != 0xffff;
2015-07-06 01:33:06 +00:00
#else
2018-12-08 05:30:43 +00:00
return (m_id.id[0] != other.m_id.id[0]) || (m_id.id[1] != other.m_id.id[1]);
2015-07-06 01:33:06 +00:00
#endif
2018-12-08 05:30:43 +00:00
}
bool operator==(const UniqueID128& other) const {
2015-07-06 01:33:06 +00:00
#if __SSE__
2018-12-08 05:30:43 +00:00
__m128i vcmp = _mm_cmpeq_epi32(m_id.id128, other.m_id.id128);
int vmask = _mm_movemask_epi8(vcmp);
return vmask == 0xffff;
2015-07-06 01:33:06 +00:00
#else
2018-12-08 05:30:43 +00:00
return (m_id.id[0] == other.m_id.id[0]) && (m_id.id[1] == other.m_id.id[1]);
2015-07-06 01:33:06 +00:00
#endif
2018-12-08 05:30:43 +00:00
}
2019-07-20 04:27:21 +00:00
bool operator<(const UniqueID128& other) const {
return m_id.id[0] < other.m_id.id[0] || (m_id.id[0] == other.m_id.id[0] && m_id.id[1] < other.m_id.id[1]);
}
2018-12-08 05:30:43 +00:00
void clear() {
m_id.id[0] = 0xffffffffffffffff;
m_id.id[1] = 0xffffffffffffffff;
}
uint64_t toUint64() const { return m_id.id[0]; }
uint64_t toHighUint64() const { return m_id.id[0]; }
uint64_t toLowUint64() const { return m_id.id[1]; }
std::string toString() const;
static constexpr size_t BinarySize() { return 16; }
2015-06-24 20:56:23 +00:00
};
2018-04-02 04:27:24 +00:00
/** Casts ID type to its null-zero equivalent */
template <class T>
using CastIDToZero = typename std::conditional_t<std::is_same_v<T, UniqueID32>, UniqueID32Zero, T>;
2015-11-10 02:07:15 +00:00
/** Word Bitmap reader/writer */
2018-12-08 05:30:43 +00:00
class WordBitmap {
std::vector<atUint32> m_words;
size_t m_bitCount = 0;
2015-08-31 03:44:42 +00:00
public:
2018-12-08 05:30:43 +00:00
void read(athena::io::IStreamReader& reader, size_t bitCount);
void write(athena::io::IStreamWriter& writer) const;
void reserve(size_t bitCount) { m_words.reserve((bitCount + 31) / 32); }
void binarySize(size_t& __isz) const;
size_t getBitCount() const { return m_bitCount; }
bool getBit(size_t idx) const {
size_t wordIdx = idx / 32;
if (wordIdx >= m_words.size())
return false;
size_t wordCur = idx % 32;
return (m_words[wordIdx] >> wordCur) & 0x1;
}
void setBit(size_t idx) {
size_t wordIdx = idx / 32;
while (wordIdx >= m_words.size())
m_words.push_back(0);
size_t wordCur = idx % 32;
m_words[wordIdx] |= (1 << wordCur);
m_bitCount = std::max(m_bitCount, idx + 1);
}
void unsetBit(size_t idx) {
size_t wordIdx = idx / 32;
while (wordIdx >= m_words.size())
m_words.push_back(0);
size_t wordCur = idx % 32;
m_words[wordIdx] &= ~(1 << wordCur);
m_bitCount = std::max(m_bitCount, idx + 1);
}
void clear() {
m_words.clear();
m_bitCount = 0;
}
class Iterator {
friend class WordBitmap;
const WordBitmap& m_bmp;
size_t m_idx = 0;
Iterator(const WordBitmap& bmp, size_t idx) : m_bmp(bmp), m_idx(idx) {}
public:
using iterator_category = std::forward_iterator_tag;
using value_type = bool;
using difference_type = std::ptrdiff_t;
using pointer = bool*;
using reference = bool&;
Iterator& operator++() {
++m_idx;
return *this;
2015-08-11 23:32:02 +00:00
}
bool operator*() const { return m_bmp.getBit(m_idx); }
2018-12-08 05:30:43 +00:00
bool operator!=(const Iterator& other) const { return m_idx != other.m_idx; }
};
Iterator begin() const { return Iterator(*this, 0); }
Iterator end() const { return Iterator(*this, m_bitCount); }
2015-08-11 23:32:02 +00:00
};
2015-11-10 02:07:15 +00:00
/** Resource cooker function */
2016-03-04 23:04:53 +00:00
typedef std::function<bool(const hecl::ProjectPath&, const hecl::ProjectPath&)> ResCooker;
2015-07-10 05:28:08 +00:00
/** Mappings of resources involved in extracting characters */
template <class IDType>
2018-12-08 05:30:43 +00:00
struct CharacterAssociations {
2019-10-01 07:38:03 +00:00
struct RigPair { IDType cskr, cinf; };
struct ModelRigPair { IDType cinf, cmdl; };
2018-12-08 05:30:43 +00:00
/* CMDL -> (CSKR, CINF) */
std::unordered_map<IDType, RigPair> m_cmdlRigs;
2019-10-01 07:38:03 +00:00
/* CSKR -> ANCS */
std::unordered_map<IDType, std::pair<IDType, std::string>> m_cskrToCharacter;
2018-12-08 05:30:43 +00:00
/* ANCS -> (CINF, CMDL) */
2019-10-01 07:38:03 +00:00
std::unordered_multimap<IDType, std::pair<ModelRigPair, std::string>> m_characterToAttachmentRigs;
2018-12-08 05:30:43 +00:00
using MultimapIteratorPair =
2019-10-01 07:38:03 +00:00
std::pair<typename std::unordered_multimap<IDType, std::pair<ModelRigPair, std::string>>::const_iterator,
typename std::unordered_multimap<IDType, std::pair<ModelRigPair, std::string>>::const_iterator>;
2018-12-08 05:30:43 +00:00
void addAttachmentRig(IDType character, IDType cinf, IDType cmdl, const char* name) {
auto range = m_characterToAttachmentRigs.equal_range(character);
for (auto it = range.first; it != range.second; ++it)
if (it->second.second == name)
return;
2019-10-01 07:38:03 +00:00
m_characterToAttachmentRigs.insert(std::make_pair(character, std::make_pair(ModelRigPair{cinf, cmdl}, name)));
2018-12-08 05:30:43 +00:00
}
};
2019-10-01 07:38:03 +00:00
hecl::ProjectPath GetPathBeginsWith(const hecl::DirectoryEnumerator& dEnum, const hecl::ProjectPath& parentPath,
hecl::SystemStringView test);
inline hecl::ProjectPath GetPathBeginsWith(const hecl::ProjectPath& parentPath, hecl::SystemStringView test) {
return GetPathBeginsWith(hecl::DirectoryEnumerator(parentPath.getAbsolutePath()), parentPath, test);
}
2018-12-08 05:30:43 +00:00
} // namespace DataSpec
2015-07-06 01:33:06 +00:00
/* Hash template-specializations for UniqueID types */
2018-12-08 05:30:43 +00:00
namespace std {
template <>
struct hash<DataSpec::DNAFourCC> {
size_t operator()(const DataSpec::DNAFourCC& fcc) const { return fcc.toUint32(); }
};
2018-12-08 05:30:43 +00:00
template <>
struct hash<DataSpec::UniqueID32> {
size_t operator()(const DataSpec::UniqueID32& id) const { return id.toUint32(); }
2015-07-06 01:33:06 +00:00
};
2018-12-08 05:30:43 +00:00
template <>
struct hash<DataSpec::UniqueID64> {
size_t operator()(const DataSpec::UniqueID64& id) const { return id.toUint64(); }
2015-06-24 20:56:23 +00:00
};
2018-12-08 05:30:43 +00:00
template <>
struct hash<DataSpec::UniqueID128> {
size_t operator()(const DataSpec::UniqueID128& id) const { return id.toHighUint64() ^ id.toLowUint64(); }
2015-07-06 01:33:06 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace std
2019-07-20 04:27:21 +00:00
2019-07-28 01:21:31 +00:00
FMT_CUSTOM_FORMATTER(DataSpec::UniqueID32, "{:08X}", obj.toUint32())
2019-10-01 07:38:03 +00:00
FMT_CUSTOM_FORMATTER(DataSpec::UniqueID32Zero, "{:08X}", obj.toUint32())
2019-07-28 01:21:31 +00:00
FMT_CUSTOM_FORMATTER(DataSpec::UniqueID64, "{:016X}", obj.toUint64())
FMT_CUSTOM_FORMATTER(DataSpec::UniqueID128, "{:016X}{:016X}", obj.toHighUint64(), obj.toLowUint64())