diff options
Diffstat (limited to '')
-rw-r--r-- | src/Placeable.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/Placeable.h b/src/Placeable.h new file mode 100644 index 00000000..bca9462d --- /dev/null +++ b/src/Placeable.h @@ -0,0 +1,26 @@ +#pragma once + +class CPlaceable +{ + // disable allocation + static void *operator new(size_t) { assert(0); return nil; } + static void operator delete(void*, size_t) { assert(0); } +public: + CMatrix m_matrix; + + CPlaceable(void); + virtual ~CPlaceable(void); + CVector &GetPosition(void) { return *m_matrix.GetPosition(); } + CVector &GetRight(void) { return *m_matrix.GetRight(); } + CVector &GetForward(void) { return *m_matrix.GetForward(); } + CVector &GetUp(void) { return *m_matrix.GetUp(); } + CMatrix &GetMatrix(void) { return m_matrix; } + void SetTransform(RwMatrix *m) { m_matrix = CMatrix(m, false); } + void SetHeading(float angle); + bool IsWithinArea(float x1, float y1, float x2, float y2); + bool IsWithinArea(float x1, float y1, float z1, float x2, float y2, float z2); + + CPlaceable *ctor(void) { return ::new (this) CPlaceable(); } + void dtor(void) { this->CPlaceable::~CPlaceable(); } +}; +static_assert(sizeof(CPlaceable) == 0x4C, "CPlaceable: error"); |