2016-04-13 06:07:23 +00:00
|
|
|
#ifndef __URDE_TYPES_HPP__
|
|
|
|
#define __URDE_TYPES_HPP__
|
2015-08-17 20:33:58 +00:00
|
|
|
|
2015-08-20 02:52:07 +00:00
|
|
|
#include <vector>
|
2015-08-18 05:54:43 +00:00
|
|
|
#include <utility>
|
2015-08-22 01:58:41 +00:00
|
|
|
#include <string>
|
2015-08-17 20:33:58 +00:00
|
|
|
#include "GCNTypes.hpp"
|
2015-08-22 01:58:41 +00:00
|
|
|
#include "rstl.hpp"
|
|
|
|
#include "DataSpec/DNACommon/DNACommon.hpp"
|
2016-04-11 07:10:28 +00:00
|
|
|
#include "IOStreams.hpp"
|
2015-08-17 20:33:58 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
namespace urde
|
2015-08-17 22:05:00 +00:00
|
|
|
{
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
using FourCC = hecl::FourCC;
|
2017-08-13 05:26:14 +00:00
|
|
|
|
|
|
|
class CAssetId
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
u64 id = UINT64_MAX;
|
|
|
|
public:
|
|
|
|
CAssetId() = default;
|
|
|
|
CAssetId(u64 v) { Assign(v); }
|
|
|
|
explicit CAssetId(CInputStream& in);
|
|
|
|
bool IsValid() const { return id != UINT64_MAX; }
|
|
|
|
u64 Value() const { return id; }
|
|
|
|
void Assign(u64 v) { id = (v == UINT32_MAX ? UINT64_MAX : (v == 0 ? UINT64_MAX : v)); }
|
|
|
|
void Reset() { id = UINT64_MAX; }
|
|
|
|
void PutTo(COutputStream& out);
|
|
|
|
|
|
|
|
bool operator==(const CAssetId& other) const { return id == other.id; }
|
|
|
|
bool operator!=(const CAssetId& other) const { return id != other.id; }
|
|
|
|
bool operator<(const CAssetId& other) const { return id < other.id; }
|
|
|
|
};
|
|
|
|
|
|
|
|
//#define kInvalidAssetId CAssetId()
|
2015-08-23 06:42:29 +00:00
|
|
|
|
2015-08-22 01:58:41 +00:00
|
|
|
struct SObjectTag
|
|
|
|
{
|
|
|
|
FourCC type;
|
2017-08-13 05:26:14 +00:00
|
|
|
CAssetId id;
|
|
|
|
operator bool() const { return id.IsValid(); }
|
2016-09-10 04:50:00 +00:00
|
|
|
bool operator!=(const SObjectTag& other) const { return id != other.id; }
|
|
|
|
bool operator==(const SObjectTag& other) const { return id == other.id; }
|
2017-02-08 06:48:43 +00:00
|
|
|
bool operator<(const SObjectTag& other) const { return id < other.id; }
|
2016-02-17 03:42:27 +00:00
|
|
|
SObjectTag() = default;
|
2017-08-13 05:26:14 +00:00
|
|
|
SObjectTag(FourCC tp, CAssetId rid) : type(tp), id(rid) {}
|
2017-08-29 13:17:52 +00:00
|
|
|
SObjectTag(CInputStream& in)
|
2016-04-11 07:10:28 +00:00
|
|
|
{
|
|
|
|
in.readBytesToBuf(&type, 4);
|
2017-08-29 13:17:52 +00:00
|
|
|
id = CAssetId(in);
|
2016-04-11 07:10:28 +00:00
|
|
|
}
|
2017-08-29 13:17:52 +00:00
|
|
|
void readMLVL(CInputStream& in)
|
2016-04-19 00:17:49 +00:00
|
|
|
{
|
2017-08-29 13:17:52 +00:00
|
|
|
id = CAssetId(in);
|
2016-04-19 00:17:49 +00:00
|
|
|
in.readBytesToBuf(&type, 4);
|
|
|
|
}
|
2015-08-22 01:58:41 +00:00
|
|
|
};
|
|
|
|
|
2016-08-14 03:00:58 +00:00
|
|
|
struct TEditorId
|
|
|
|
{
|
|
|
|
TEditorId() = default;
|
|
|
|
TEditorId(u32 idin) : id(idin) {}
|
2017-07-30 11:00:30 +00:00
|
|
|
u32 id = u32(-1);
|
|
|
|
u8 LayerNum() const { return u8((id >> 26) & 0x3f); }
|
|
|
|
u16 AreaNum() const { return u16((id >> 16) & 0x3ff); }
|
|
|
|
u16 Id() const { return u16(id & 0xffff); }
|
2016-08-14 03:00:58 +00:00
|
|
|
|
|
|
|
bool operator<(const TEditorId& other) const { return (id & 0x3ffffff) < (other.id & 0x3ffffff); }
|
|
|
|
bool operator!=(const TEditorId& other) const { return (id & 0x3ffffff) != (other.id & 0x3ffffff); }
|
|
|
|
bool operator==(const TEditorId& other) const { return (id & 0x3ffffff) == (other.id & 0x3ffffff); }
|
|
|
|
};
|
2017-08-13 05:26:14 +00:00
|
|
|
#define kInvalidEditorId TEditorId()
|
2016-08-14 03:00:58 +00:00
|
|
|
|
2017-08-10 13:40:07 +00:00
|
|
|
struct TUniqueId
|
|
|
|
{
|
|
|
|
TUniqueId() = default;
|
|
|
|
TUniqueId(u16 value, u16 version) : id(value | (version << 10)) {}
|
|
|
|
u16 id = u16(-1);
|
|
|
|
|
2017-08-25 06:18:09 +00:00
|
|
|
u16 Version() const { return u16((id >> 10) & 0x3f);}
|
|
|
|
u16 Value() const { return u16(id & 0x3ff);}
|
2017-08-10 13:40:07 +00:00
|
|
|
bool operator<(const TUniqueId& other) const { return (id < other.id); }
|
|
|
|
bool operator!=(const TUniqueId& other) const { return (id != other.id); }
|
|
|
|
bool operator==(const TUniqueId& other) const { return (id == other.id); }
|
|
|
|
};
|
|
|
|
|
2017-08-13 05:26:14 +00:00
|
|
|
#define kInvalidUniqueId TUniqueId()
|
|
|
|
|
2017-01-15 03:59:37 +00:00
|
|
|
using TAreaId = s32;
|
|
|
|
|
2015-08-20 02:52:07 +00:00
|
|
|
#define kInvalidAreaId TAreaId(-1)
|
|
|
|
}
|
|
|
|
|
2016-09-10 04:50:00 +00:00
|
|
|
#if 0
|
|
|
|
template <class T, size_t N>
|
|
|
|
class TRoundRobin
|
|
|
|
{
|
|
|
|
rstl::reserved_vector<T, N> vals;
|
|
|
|
|
|
|
|
public:
|
|
|
|
TRoundRobin(const T& val) : vals(N, val) {}
|
|
|
|
|
|
|
|
void PushBack(const T& val) { vals.push_back(val); }
|
|
|
|
|
|
|
|
size_t Size() const { return vals.size(); }
|
|
|
|
|
|
|
|
const T& GetLastValue() const { return vals.back(); }
|
|
|
|
|
|
|
|
void Clear() { vals.clear(); }
|
|
|
|
|
|
|
|
const T& GetValue(s32) const {}
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2016-09-25 16:45:22 +00:00
|
|
|
template <class T>
|
|
|
|
T GetAverage(const T* v, s32 count)
|
|
|
|
{
|
|
|
|
T r = v[0];
|
|
|
|
for (s32 i = 1; i < count; ++i)
|
|
|
|
r += v[i];
|
|
|
|
|
2016-12-19 18:27:58 +00:00
|
|
|
return r / count;
|
2016-09-25 16:45:22 +00:00
|
|
|
}
|
|
|
|
|
2016-09-16 22:21:19 +00:00
|
|
|
template <class T, size_t N>
|
2016-09-25 16:45:22 +00:00
|
|
|
class TReservedAverage : rstl::reserved_vector<T, N>
|
2016-09-16 22:21:19 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
TReservedAverage() = default;
|
2016-09-25 16:45:22 +00:00
|
|
|
TReservedAverage(const T& t) { resize(N, t); }
|
2016-09-16 22:21:19 +00:00
|
|
|
|
2016-09-25 16:45:22 +00:00
|
|
|
void AddValue(const T& t)
|
2016-09-16 22:21:19 +00:00
|
|
|
{
|
2016-09-25 16:45:22 +00:00
|
|
|
if (this->size() < N)
|
2017-07-23 23:45:04 +00:00
|
|
|
{
|
2017-08-16 05:34:02 +00:00
|
|
|
this->insert(this->begin(), t);
|
2017-07-23 23:45:04 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->pop_back();
|
|
|
|
this->insert(this->begin(), t);
|
|
|
|
}
|
2016-09-25 16:45:22 +00:00
|
|
|
}
|
2016-09-16 22:21:19 +00:00
|
|
|
|
2016-09-25 16:45:22 +00:00
|
|
|
rstl::optional_object<T> GetAverage() const
|
|
|
|
{
|
|
|
|
if (this->empty())
|
|
|
|
return {};
|
|
|
|
|
2017-01-15 03:59:37 +00:00
|
|
|
return {::GetAverage<T>(this->data(), this->size())};
|
2016-09-16 22:21:19 +00:00
|
|
|
}
|
|
|
|
|
2017-07-31 05:19:05 +00:00
|
|
|
rstl::optional_object<T> GetEntry(int i) const
|
|
|
|
{
|
|
|
|
if (i >= this->size())
|
|
|
|
return {};
|
|
|
|
return this->operator[](i);
|
|
|
|
}
|
|
|
|
|
2016-09-25 16:45:22 +00:00
|
|
|
void Clear() { this->clear(); }
|
|
|
|
};
|
2016-09-16 22:21:19 +00:00
|
|
|
|
2015-08-23 06:42:29 +00:00
|
|
|
namespace std
|
|
|
|
{
|
2016-09-10 04:50:00 +00:00
|
|
|
template <>
|
2016-03-04 23:04:53 +00:00
|
|
|
struct hash<urde::SObjectTag>
|
2015-08-23 06:42:29 +00:00
|
|
|
{
|
2017-08-13 05:26:14 +00:00
|
|
|
inline size_t operator()(const urde::SObjectTag& tag) const { return tag.id.Value(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct hash<urde::CAssetId>
|
|
|
|
{
|
|
|
|
inline size_t operator()(const urde::CAssetId& id) const { return id.Value(); }
|
2015-08-23 06:42:29 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-04-13 06:07:23 +00:00
|
|
|
#endif // __URDE_TYPES_HPP__
|