A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
BoxColManager.hh
1#pragma once
2
3#include <egg/core/BitFlag.hh>
4#include <egg/math/Vector.hh>
5
6namespace Kart {
7
8class KartObject;
9
10} // namespace Kart
11
12namespace Field {
13
14class ObjectCollidable;
15class ObjectDrivable;
16
20enum class eBoxColFlag {
21 Driver = 0,
22 Object = 3,
23 Drivable = 4,
24 PermRecalcAABB = 8,
25 Intangible = 9,
26 Active = 10,
27 TempRecalcAABB = 11,
28};
29typedef EGG::TBitFlag<u32, eBoxColFlag> BoxColFlag;
30
32struct BoxColUnit {
33 BoxColUnit();
35
36 void init(f32 radius, f32 maxSpeed, const EGG::Vector3f *pos, const BoxColFlag &flag,
37 void *userData);
38 void makeInactive();
39 void resize(f32 radius, f32 maxSpeed);
40 void reinsert();
41 void search(const BoxColFlag &flag);
42
43 const EGG::Vector3f *m_pos;
44 f32 m_radius;
45 f32 m_range;
46 BoxColFlag m_flag;
47 void *m_userData;
48 s16 m_highPointIdx;
49 s16 m_lowPointIdx;
50 f32 m_xMax;
51 f32 m_xMin;
52};
53
55 f32 z;
56 u8 highPoint;
57 u8 unitID;
58};
59
61 f32 z;
62 u8 lowPoint;
63 u8 minLowPoint;
64};
65
68public:
70 ~BoxColManager() override;
71
72 void clear();
73 void calc();
74
75 [[nodiscard]] ObjectCollidable *getNextObject();
76 [[nodiscard]] ObjectDrivable *getNextDrivable();
77
78 void resetIterators();
79
80 [[nodiscard]] BoxColUnit *insertDriver(f32 radius, f32 maxSpeed, const EGG::Vector3f *pos,
81 bool alwaysRecalc, Kart::KartObject *kartObject);
82 [[nodiscard]] BoxColUnit *insertObject(f32 radius, f32 maxSpeed, const EGG::Vector3f *pos,
83 bool alwaysRecalc, void *userData);
84 [[nodiscard]] BoxColUnit *insertDrivable(f32 radius, f32 maxSpeed, const EGG::Vector3f *pos,
85 bool alwaysRecalc, void *userData);
86
87 void reinsertUnit(BoxColUnit *unit);
88 void search(BoxColUnit *unit, const BoxColFlag &flag);
89 void search(f32 radius, const EGG::Vector3f &pos, const BoxColFlag &flag);
90
91 [[nodiscard]] bool isSphereInSpatialCache(f32 radius, const EGG::Vector3f &pos,
92 const BoxColFlag &flag) const;
93
94 static BoxColManager *CreateInstance();
95 static void DestroyInstance();
96 [[nodiscard]] static BoxColManager *Instance();
97
98private:
99 [[nodiscard]] void *getNextImpl(s32 &id, const BoxColFlag &flag);
100 void iterate(s32 &iter, const BoxColFlag &flag);
101 [[nodiscard]] BoxColUnit *insert(f32 radius, f32 maxSpeed, const EGG::Vector3f *pos,
102 const BoxColFlag &flag, void *userData);
103 void remove(BoxColUnit *&pUnit);
104 void searchImpl(BoxColUnit *unit, const BoxColFlag &flag);
105 void searchImpl(f32 radius, const EGG::Vector3f &pos, const BoxColFlag &flag);
106
107 static constexpr size_t MAX_UNIT_COUNT = 0x100;
108
109 std::array<BoxColHighPoint, MAX_UNIT_COUNT> m_highPoints;
110 std::array<BoxColLowPoint, MAX_UNIT_COUNT> m_lowPoints;
111 std::array<BoxColUnit, MAX_UNIT_COUNT> m_unitPool;
112 std::array<BoxColUnit *, MAX_UNIT_COUNT> m_units;
113
115 std::array<u32, MAX_UNIT_COUNT> m_unitIDs;
116
117 s32 m_unitCount;
118 s32 m_nextUnitID;
119 s32 m_nextObjectID;
120 s32 m_nextDrivableID;
121 s32 m_maxID;
122 BoxColUnit *m_cacheQueryUnit;
123 EGG::Vector3f m_cachePoint;
124 f32 m_cacheRadius;
125 BoxColFlag m_cacheFlag;
126
127 static BoxColManager *s_instance;
128};
129
130} // namespace Field
An interface for ensuring certain structures and classes are destroyed with the heap.
Definition Disposer.hh:11
Spatial indexing manager for entities with dynamic collision.
std::array< BoxColUnit *, MAX_UNIT_COUNT > m_units
Units within our search bounds.
void * getNextImpl(s32 &id, const BoxColFlag &flag)
Helper function since the getters share all code except the flag.
std::array< BoxColHighPoint, MAX_UNIT_COUNT > m_highPoints
A unit's rightmost Z-axis point.
BoxColManager()
Creates two intangible units to represent the spatial bounds.
std::array< BoxColLowPoint, MAX_UNIT_COUNT > m_lowPoints
A unit's leftmost Z-axis point;.
std::array< u32, MAX_UNIT_COUNT > m_unitIDs
Specifies what unit to retrieve from the pool during allocation.
std::array< BoxColUnit, MAX_UNIT_COUNT > m_unitPool
Where all the units live.
void calc()
Recalculate the bounds of all active units having PermRecalcAABB or TempRecalcAABB flag,...
The highest level abstraction for a kart.
Definition KartObject.hh:11
Pertains to collision.
eBoxColFlag
A bitfield that represents the state and type of a given BoxColUnit.
@ TempRecalcAABB
Only recalculate once.
@ PermRecalcAABB
Recalculate this unit's spatial indexing every frame.
@ Intangible
Ignore collision with the unit.
Pertains to kart-related functionality.
Wrapper around an integral type with an enum corresponding to its bits.
Definition BitFlag.hh:16
A 3D float vector.
Definition Vector.hh:83
A representation of the boundaries of an entity that has dynamic collision.