A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ObjectDrivableDirector.hh
1#pragma once
2
3#include "game/field/obj/ObjectCollidable.hh"
4#include "game/field/obj/ObjectDrivable.hh"
5
6#include <vector>
7
8namespace Field {
9
11public:
12 void init();
13 void calc();
14 void addObject(ObjectDrivable *obj);
15
16 [[nodiscard]] bool checkSpherePartial(f32 radius, const EGG::Vector3f &pos,
17 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfoPartial *info,
18 KCLTypeMask *maskOut, u32 timeOffset);
19 [[nodiscard]] bool checkSpherePartialPush(f32 radius, const EGG::Vector3f &pos,
20 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfoPartial *info,
21 KCLTypeMask *maskOut, u32 timeOffset);
22 [[nodiscard]] bool checkSphereFull(f32 radius, const EGG::Vector3f &pos,
23 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfo *info,
24 KCLTypeMask *maskOut, u32 timeOffset);
25 [[nodiscard]] bool checkSphereFullPush(f32 radius, const EGG::Vector3f &pos,
26 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfo *info,
27 KCLTypeMask *maskOut, u32 timeOffset);
28 [[nodiscard]] bool checkSphereCachedPartial(f32 radius, const EGG::Vector3f &pos,
29 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfoPartial *info,
30 KCLTypeMask *maskOut, u32 timeOffset);
31 [[nodiscard]] bool checkSphereCachedPartialPush(f32 radius, const EGG::Vector3f &pos,
32 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfoPartial *info,
33 KCLTypeMask *maskOut, u32 timeOffset);
34 [[nodiscard]] bool checkSphereCachedFullPush(f32 radius, const EGG::Vector3f &pos,
35 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfo *info,
36 KCLTypeMask *maskOut, u32 timeOffset);
37 void colNarScLocal(f32 radius, const EGG::Vector3f &pos, KCLTypeMask mask, u32 timeOffset);
38
39 static ObjectDrivableDirector *CreateInstance();
40 static void DestroyInstance();
41
42 [[nodiscard]] static ObjectDrivableDirector *Instance() {
43 return s_instance;
44 }
45
46private:
48 ~ObjectDrivableDirector() override;
49
50 std::vector<ObjectDrivable *> m_objects;
51 std::vector<ObjectDrivable *> m_calcObjects;
52
53 static ObjectDrivableDirector *s_instance;
54};
55
56} // namespace Field
An interface for ensuring certain structures and classes are destroyed with the heap.
Definition Disposer.hh:11
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