2023-09-19 23:00:34 -04:00
|
|
|
#ifndef MXREGION_H
|
|
|
|
#define MXREGION_H
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
#include "decomp.h"
|
2023-09-19 23:00:34 -04:00
|
|
|
#include "mxcore.h"
|
2023-10-16 19:20:52 -04:00
|
|
|
#include "mxrect32.h"
|
2023-10-31 11:30:13 -04:00
|
|
|
#include "mxregionlist.h"
|
|
|
|
|
|
|
|
// SIZE 0x0c
|
|
|
|
struct MxRegionTopBottom {
|
|
|
|
MxRegionTopBottom(MxRect32& p_rect);
|
|
|
|
MxRegionTopBottom(MxS32 m_top, MxS32 m_bottom);
|
|
|
|
|
|
|
|
MxRegionTopBottom* Clone();
|
|
|
|
void FUN_100c5280(MxS32 p_left, MxS32 p_right);
|
|
|
|
MxBool FUN_100c57b0(MxRect32& p_rect);
|
|
|
|
|
2023-11-06 18:12:09 -05:00
|
|
|
inline MxS32 GetTop() { return m_top; }
|
|
|
|
inline MxS32 GetBottom() { return m_bottom; }
|
|
|
|
|
|
|
|
inline void SetTop(MxS32 p_top) { m_top = p_top; }
|
|
|
|
inline void SetBottom(MxS32 p_bottom) { m_bottom = p_bottom; }
|
|
|
|
|
2023-11-19 07:23:30 -05:00
|
|
|
friend class MxRegionList;
|
2023-11-06 18:12:09 -05:00
|
|
|
|
|
|
|
private:
|
2023-10-31 11:30:13 -04:00
|
|
|
MxS32 m_top;
|
|
|
|
MxS32 m_bottom;
|
|
|
|
MxRegionLeftRightList* m_leftRightList;
|
|
|
|
};
|
|
|
|
|
|
|
|
// SIZE 0x08
|
|
|
|
struct MxRegionLeftRight {
|
|
|
|
MxRegionLeftRight(MxS32 p_left, MxS32 p_right)
|
|
|
|
{
|
|
|
|
m_left = p_left;
|
|
|
|
m_right = p_right;
|
|
|
|
}
|
|
|
|
|
|
|
|
MxRegionLeftRight* Clone() { return new MxRegionLeftRight(m_left, m_right); }
|
|
|
|
|
2023-11-06 18:12:09 -05:00
|
|
|
inline MxS32 GetLeft() { return m_left; }
|
|
|
|
inline MxS32 GetRight() { return m_right; }
|
|
|
|
|
|
|
|
inline void SetLeft(MxS32 p_left) { m_left = p_left; }
|
|
|
|
inline void SetRight(MxS32 p_right) { m_right = p_right; }
|
|
|
|
|
|
|
|
private:
|
2023-10-31 11:30:13 -04:00
|
|
|
MxS32 m_left;
|
|
|
|
MxS32 m_right;
|
|
|
|
};
|
2023-09-19 23:00:34 -04:00
|
|
|
|
|
|
|
// VTABLE 0x100dcae8
|
|
|
|
// SIZE 0x1c
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxRegion : public MxCore {
|
2023-09-19 23:00:34 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
MxRegion();
|
|
|
|
virtual ~MxRegion() override;
|
2023-09-19 23:00:34 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
virtual void Reset();
|
|
|
|
virtual void vtable18(MxRect32& p_rect);
|
2023-10-31 11:30:13 -04:00
|
|
|
virtual MxBool vtable1c(MxRect32& p_rect);
|
2023-10-24 19:38:27 -04:00
|
|
|
virtual MxBool vtable20();
|
2023-10-16 19:20:52 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
inline MxRect32& GetRect() { return this->m_rect; }
|
2023-09-19 23:00:34 -04:00
|
|
|
|
|
|
|
private:
|
2023-10-31 11:30:13 -04:00
|
|
|
MxRegionList* m_list;
|
2023-10-24 19:38:27 -04:00
|
|
|
MxRect32 m_rect;
|
2023-09-19 23:00:34 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXREGION_H
|