prime/include/MetroidPrime/TGameTypes.hpp

77 lines
1.8 KiB
C++
Raw Normal View History

2022-07-18 22:42:58 +00:00
#ifndef _TGAMETYPES_HPP
#define _TGAMETYPES_HPP
#include "types.h"
class CInputStream;
class COutputStream;
2022-08-09 23:03:51 +00:00
struct TAreaId;
struct TEditorId;
struct TUniqueId;
2022-07-18 22:42:58 +00:00
extern TAreaId kInvalidAreaId;
extern TEditorId kInvalidEditorId;
extern TUniqueId kInvalidUniqueId;
2022-08-09 23:03:51 +00:00
struct TAreaId {
int value;
2022-08-09 23:03:51 +00:00
TAreaId() : value(-1) {}
TAreaId(int value) : value(value) {}
int Value() const { return value; }
2022-08-09 23:03:51 +00:00
bool operator==(const TAreaId& other) const { return value == other.value; }
bool operator!=(const TAreaId& other) const { return value != other.value; }
};
2022-08-13 01:26:00 +00:00
CHECK_SIZEOF(TAreaId, 0x4)
2022-08-11 02:33:46 +00:00
2022-08-09 23:03:51 +00:00
struct TEditorId {
uint value;
2022-08-09 23:03:51 +00:00
TEditorId(uint value) : value(value) {}
TEditorId(CInputStream& in);
// TODO
uint Value() const { return value; }
uint Id() const { return value; }
uint AreaNum() const { return value; }
void PutTo(COutputStream&) const;
2022-08-11 02:33:46 +00:00
bool operator==(const TEditorId& other) const { return value == other.value; }
bool operator!=(const TEditorId& other) const { return value != other.value; }
2022-08-09 23:03:51 +00:00
};
2022-08-13 01:26:00 +00:00
CHECK_SIZEOF(TEditorId, 0x4)
2022-08-11 02:33:46 +00:00
2022-08-09 23:03:51 +00:00
struct TUniqueId {
u16 value;
TUniqueId(u16 version, u16 id) : value(((version & 0x3F) << 10) | (id & 0x3FF)) {}
u16 Value() const { return value & 0x3FF; }
u16 Version() const { return (value >> 10) & 0x3F; }
2022-08-11 02:33:46 +00:00
bool operator==(const TUniqueId& other) const { return value == other.value; }
bool operator!=(const TUniqueId& other) const { return value != other.value; }
bool operator<(const TUniqueId& other) const; // TODO
private:
2022-08-09 23:03:51 +00:00
};
CHECK_SIZEOF(TUniqueId, 0x2)
// struct TGameScriptId {
// TEditorId editorId;
// bool b;
// };
// CHECK_SIZEOF(TGameScriptId, 0x8)
2022-08-13 01:26:00 +00:00
typedef u16 TSfxId;
static TSfxId InvalidSfxId = 0xFFFFu;
2022-08-09 23:03:51 +00:00
class CSegId {
private:
u8 x0_id;
};
#define ALIGN_UP(x, a) (((x) + (a - 1)) & ~(a - 1))
2022-07-18 22:42:58 +00:00
#endif