A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ObjectDrivableDirector.cc
1#include "ObjectDrivableDirector.hh"
2
3namespace Field {
4
6void ObjectDrivableDirector::init() {
7 for (auto *&obj : m_objects) {
8 obj->init();
9 obj->calcModel();
10 }
11}
12
14void ObjectDrivableDirector::calc() {
15 for (auto *&obj : m_calcObjects) {
16 obj->calc();
17 }
18
19 for (auto *&obj : m_calcObjects) {
20 obj->calcModel();
21 }
22}
23
25void ObjectDrivableDirector::addObject(ObjectDrivable *obj) {
26 if (obj->loadFlags() & 1) {
27 m_calcObjects.push_back(obj);
28 }
29
30 m_objects.push_back(obj);
31}
32
34bool ObjectDrivableDirector::checkSpherePartial(f32 radius, const EGG::Vector3f &pos,
35 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfoPartial *info,
36 KCLTypeMask *maskOut, u32 timeOffset) {
37 if (m_objects.empty()) {
38 return false;
39 }
40
41 bool hasCollision = false;
42 auto *boxColMgr = BoxColManager::Instance();
43 boxColMgr->search(radius, pos, eBoxColFlag::Drivable);
44
45 while (ObjectDrivable *obj = boxColMgr->getNextDrivable()) {
46 hasCollision |=
47 obj->checkSpherePartial(radius, pos, prevPos, mask, info, maskOut, timeOffset);
48 }
49
50 return hasCollision;
51}
52
54bool ObjectDrivableDirector::checkSpherePartialPush(f32 radius, const EGG::Vector3f &pos,
55 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfoPartial *info,
56 KCLTypeMask *maskOut, u32 timeOffset) {
57 if (m_objects.empty()) {
58 return false;
59 }
60
61 bool hasCollision = false;
62 auto *boxColMgr = BoxColManager::Instance();
63 boxColMgr->search(radius, pos, eBoxColFlag::Drivable);
64
65 while (ObjectDrivable *obj = boxColMgr->getNextDrivable()) {
66 hasCollision |=
67 obj->checkSpherePartialPush(radius, pos, prevPos, mask, info, maskOut, timeOffset);
68 }
69
70 return hasCollision;
71}
72
74bool ObjectDrivableDirector::checkSphereFull(f32 radius, const EGG::Vector3f &pos,
75 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfo *info, KCLTypeMask *maskOut,
76 u32 timeOffset) {
77 if (m_objects.empty()) {
78 return false;
79 }
80
81 bool hasCollision = false;
82 auto *boxColMgr = BoxColManager::Instance();
83 boxColMgr->search(radius, pos, eBoxColFlag::Drivable);
84
85 while (ObjectDrivable *obj = boxColMgr->getNextDrivable()) {
86 hasCollision |= obj->checkSphereFull(radius, pos, prevPos, mask, info, maskOut, timeOffset);
87 }
88
89 return hasCollision;
90}
91
93bool ObjectDrivableDirector::checkSphereFullPush(f32 radius, const EGG::Vector3f &pos,
94 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfo *info, KCLTypeMask *maskOut,
95 u32 timeOffset) {
96 if (m_objects.empty()) {
97 return false;
98 }
99
100 bool hasCollision = false;
101 auto *boxColMgr = BoxColManager::Instance();
102 boxColMgr->search(radius, pos, eBoxColFlag::Drivable);
103
104 while (ObjectDrivable *obj = boxColMgr->getNextDrivable()) {
105 hasCollision |=
106 obj->checkSphereFullPush(radius, pos, prevPos, mask, info, maskOut, timeOffset);
107 }
108
109 return hasCollision;
110}
111
113bool ObjectDrivableDirector::checkSphereCachedPartial(f32 radius, const EGG::Vector3f &pos,
114 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfoPartial *info,
115 KCLTypeMask *maskOut, u32 timeOffset) {
116 if (m_objects.empty()) {
117 return false;
118 }
119
120 auto *boxColMgr = BoxColManager::Instance();
121
122 if (boxColMgr->isSphereInSpatialCache(radius, pos, eBoxColFlag::Drivable)) {
123 boxColMgr->resetIterators();
124
125 bool hasCollision = false;
126 while (ObjectDrivable *obj = boxColMgr->getNextDrivable()) {
127 hasCollision |= obj->checkSphereCachedPartial(radius, pos, prevPos, mask, info, maskOut,
128 timeOffset);
129 }
130
131 return hasCollision;
132 }
133
134 return checkSpherePartial(radius, pos, prevPos, mask, info, maskOut, timeOffset);
135}
136
138bool ObjectDrivableDirector::checkSphereCachedPartialPush(f32 radius, const EGG::Vector3f &pos,
139 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfoPartial *info,
140 KCLTypeMask *maskOut, u32 timeOffset) {
141 if (m_objects.empty()) {
142 return false;
143 }
144
145 auto *boxColMgr = BoxColManager::Instance();
146
147 if (boxColMgr->isSphereInSpatialCache(radius, pos, eBoxColFlag::Drivable)) {
148 boxColMgr->resetIterators();
149
150 bool hasCollision = false;
151 while (ObjectDrivable *obj = boxColMgr->getNextDrivable()) {
152 hasCollision |= obj->checkSphereCachedPartialPush(radius, pos, prevPos, mask, info,
153 maskOut, timeOffset);
154 }
155
156 return hasCollision;
157 }
158
159 return checkSpherePartialPush(radius, pos, prevPos, mask, info, maskOut, timeOffset);
160}
161
163bool ObjectDrivableDirector::checkSphereCachedFullPush(f32 radius, const EGG::Vector3f &pos,
164 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfo *info, KCLTypeMask *maskOut,
165 u32 timeOffset) {
166 if (m_objects.empty()) {
167 return false;
168 }
169
170 auto *boxColMgr = BoxColManager::Instance();
171
172 if (boxColMgr->isSphereInSpatialCache(radius, pos, eBoxColFlag::Drivable)) {
173 bool hasCollision = false;
174 boxColMgr->resetIterators();
175
176 while (ObjectDrivable *obj = boxColMgr->getNextDrivable()) {
177 hasCollision |= obj->checkSphereCachedFullPush(radius, pos, prevPos, mask, info,
178 maskOut, timeOffset);
179 }
180
181 return hasCollision;
182 }
183
184 return checkSphereFullPush(radius, pos, prevPos, mask, info, maskOut, timeOffset);
185}
186
188void ObjectDrivableDirector::colNarScLocal(f32 radius, const EGG::Vector3f &pos, KCLTypeMask mask,
189 u32 timeOffset) {
190 if (m_objects.empty()) {
191 return;
192 }
193
194 auto *boxColMgr = BoxColManager::Instance();
195 boxColMgr->search(radius, pos, eBoxColFlag::Drivable);
196
197 while (ObjectDrivable *obj = boxColMgr->getNextDrivable()) {
198 obj->narrScLocal(radius, pos, mask, timeOffset);
199 }
200}
201
203ObjectDrivableDirector *ObjectDrivableDirector::CreateInstance() {
204 ASSERT(!s_instance);
205 s_instance = new ObjectDrivableDirector;
206 return s_instance;
207}
208
210void ObjectDrivableDirector::DestroyInstance() {
211 ASSERT(s_instance);
212 auto *instance = s_instance;
213 s_instance = nullptr;
214 delete instance;
215}
216
218ObjectDrivableDirector::ObjectDrivableDirector() = default;
219
221ObjectDrivableDirector::~ObjectDrivableDirector() {
222 if (s_instance) {
223 s_instance = nullptr;
224 WARN("ObjectDrivableDirector instance not explicitly handled!");
225 }
226}
227
228ObjectDrivableDirector *ObjectDrivableDirector::s_instance = nullptr;
229
230} // namespace Field
std::vector< ObjectDrivable * > m_objects
All objects live here.
std::vector< ObjectDrivable * > m_calcObjects
Objects needing calc() live here too.
Pertains to collision.
A 3D float vector.
Definition Vector.hh:83