A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
CourseColMgr.hh
1#pragma once
2
3#include "game/field/KColData.hh"
4
5#include <egg/math/BoundBox.hh>
6#include <egg/math/Matrix.hh>
7
8// Credit: em-eight/mkw
9
10namespace Field {
11
12typedef bool (
13 KColData::*CollisionCheckFunc)(f32 *distOut, EGG::Vector3f *fnrmOut, u16 *attributeOut);
14
19public:
21 EGG::BoundBox3f bbox;
22 EGG::Vector3f tangentOff;
23 f32 dist;
24 EGG::Vector3f fnrm;
25 };
26 STATIC_ASSERT(sizeof(NoBounceWallColInfo) == 0x34);
27
28 void init();
29
30 void scaledNarrowScopeLocal(f32 scale, f32 radius, KColData *data, const EGG::Vector3f &pos,
31 KCLTypeMask mask);
32
33 [[nodiscard]] bool checkPointPartial(f32 scale, KColData *data, const EGG::Vector3f &pos,
34 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfoPartial *info,
35 KCLTypeMask *maskOut);
36 [[nodiscard]] bool checkPointPartialPush(f32 scale, KColData *data, const EGG::Vector3f &pos,
37 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfoPartial *info,
38 KCLTypeMask *maskOut);
39 [[nodiscard]] bool checkPointFull(f32 kclScale, KColData *data, const EGG::Vector3f &pos,
40 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfo *info,
41 KCLTypeMask *maskOut);
42 [[nodiscard]] bool checkPointFullPush(f32 kclScale, KColData *data, const EGG::Vector3f &pos,
43 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfo *info,
44 KCLTypeMask *maskOut);
45
46 [[nodiscard]] bool checkSpherePartial(f32 scale, f32 radius, KColData *data,
47 const EGG::Vector3f &pos, const EGG::Vector3f &prevPos, KCLTypeMask mask,
48 CollisionInfoPartial *info, KCLTypeMask *maskOut);
49 [[nodiscard]] bool checkSpherePartialPush(f32 scale, f32 radius, KColData *data,
50 const EGG::Vector3f &pos, const EGG::Vector3f &prevPos, KCLTypeMask mask,
51 CollisionInfoPartial *info, KCLTypeMask *maskOut);
52 [[nodiscard]] bool checkSphereFull(f32 scalar, f32 radius, KColData *data,
53 const EGG::Vector3f &pos, const EGG::Vector3f &prevPos, KCLTypeMask mask,
54 CollisionInfo *info, KCLTypeMask *maskOut);
55 [[nodiscard]] bool checkSphereFullPush(f32 scalar, f32 radius, KColData *data,
56 const EGG::Vector3f &pos, const EGG::Vector3f &prevPos, KCLTypeMask mask,
57 CollisionInfo *info, KCLTypeMask *maskOut);
58
59 [[nodiscard]] bool checkPointCachedPartial(f32 scale, KColData *data, const EGG::Vector3f &pos,
60 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfoPartial *info,
61 KCLTypeMask *maskOut);
62 [[nodiscard]] bool checkPointCachedPartialPush(f32 scale, KColData *data,
63 const EGG::Vector3f &pos, const EGG::Vector3f &prevPos, KCLTypeMask mask,
64 CollisionInfoPartial *info, KCLTypeMask *maskOut);
65 [[nodiscard]] bool checkPointCachedFull(f32 scale, KColData *data, const EGG::Vector3f &pos,
66 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfo *info,
67 KCLTypeMask *maskOut);
68 [[nodiscard]] bool checkPointCachedFullPush(f32 scale, KColData *data, const EGG::Vector3f &pos,
69 const EGG::Vector3f &prevPos, KCLTypeMask mask, CollisionInfo *info,
70 KCLTypeMask *maskOut);
71
72 [[nodiscard]] bool checkSphereCachedPartial(f32 scale, f32 radius, KColData *data,
73 const EGG::Vector3f &pos, const EGG::Vector3f &prevPos, KCLTypeMask typeMask,
74 CollisionInfoPartial *info, KCLTypeMask *maskOut);
75 [[nodiscard]] bool checkSphereCachedPartialPush(f32 scale, f32 radius, KColData *data,
76 const EGG::Vector3f &pos, const EGG::Vector3f &prevPos, KCLTypeMask typeMask,
77 CollisionInfoPartial *info, KCLTypeMask *maskOut);
78 [[nodiscard]] bool checkSphereCachedFull(f32 scale, f32 radius, KColData *data,
79 const EGG::Vector3f &pos, const EGG::Vector3f &prevPos, KCLTypeMask typeMask,
80 CollisionInfo *colInfo, KCLTypeMask *maskOut);
81 [[nodiscard]] bool checkSphereCachedFullPush(f32 scale, f32 radius, KColData *data,
82 const EGG::Vector3f &pos, const EGG::Vector3f &prevPos, KCLTypeMask typeMask,
83 CollisionInfo *colInfo, KCLTypeMask *maskOut);
84
86 void setNoBounceWallInfo(NoBounceWallColInfo *info) {
87 m_noBounceWallInfo = info;
88 }
89
90 void clearNoBounceWallInfo() {
91 m_noBounceWallInfo = nullptr;
92 }
93
94 void setLocalMtx(EGG::Matrix34f *mtx) {
95 m_localMtx = mtx;
96 }
98
100 [[nodiscard]] NoBounceWallColInfo *noBounceWallInfo() const {
101 return m_noBounceWallInfo;
102 }
104
105 static void *LoadFile(const char *filename);
106
107 static CourseColMgr *CreateInstance();
108 static void DestroyInstance();
109
110 [[nodiscard]] static CourseColMgr *Instance() {
111 return s_instance;
112 }
113
114private:
115 CourseColMgr();
116 ~CourseColMgr() override;
117
118 [[nodiscard]] bool doCheckWithPartialInfo(KColData *data, CollisionCheckFunc collisionCheckFunc,
119 CollisionInfoPartial *info, KCLTypeMask *typeMask);
120 [[nodiscard]] bool doCheckWithPartialInfoPush(KColData *data,
121 CollisionCheckFunc collisionCheckFunc, CollisionInfoPartial *info,
122 KCLTypeMask *typeMask);
123 [[nodiscard]] bool doCheckWithFullInfo(KColData *data, CollisionCheckFunc collisionCheckFunc,
124 CollisionInfo *colInfo, KCLTypeMask *flagsOut);
125 [[nodiscard]] bool doCheckWithFullInfoPush(KColData *data,
126 CollisionCheckFunc collisionCheckFunc, CollisionInfo *colInfo, KCLTypeMask *flagsOut);
127 [[nodiscard]] bool doCheckMaskOnly(KColData *data, CollisionCheckFunc collisionCheckFunc,
128 KCLTypeMask *maskOut);
129 [[nodiscard]] bool doCheckMaskOnlyPush(KColData *data, CollisionCheckFunc collisionCheckFunc,
130 KCLTypeMask *maskOut);
131
132 KColData *m_data;
133 f32 m_kclScale;
134 NoBounceWallColInfo *m_noBounceWallInfo;
135 EGG::Matrix34f *m_localMtx;
136
137 static CourseColMgr *s_instance;
138};
139
140} // namespace Field
An interface for ensuring certain structures and classes are destroyed with the heap.
Definition Disposer.hh:11
A 3 x 4 matrix.
Definition Matrix.hh:8
Manager for course KCL interactions.
static void * LoadFile(const char *filename)
Loads a particular section of a .szs file.
Performs lookups for KCL triangles.
Definition KColData.hh:57
Pertains to collision.
A representation of a bounding cuboid.
Definition BoundBox.hh:30
A 3D float vector.
Definition Vector.hh:83