A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ObjectDirector.hh
1#pragma once
2
3#include "game/field/ObjectCollisionConvexHull.hh"
4#include "game/field/ObjectFlowTable.hh"
5#include "game/field/ObjectHitTable.hh"
6#include "game/field/obj/ObjectCollidable.hh"
7#include "game/field/obj/ObjectNoImpl.hh"
8
9#include <vector>
10
11namespace Field {
12
14public:
15 void init();
16 void calc();
17 void addObject(ObjectCollidable *obj);
18 void addObjectNoImpl(ObjectNoImpl *obj);
19
20 size_t checkKartObjectCollision(Kart::KartObject *kartObj,
21 ObjectCollisionConvexHull *convexHull);
22
23 [[nodiscard]] const ObjectFlowTable &flowTable() const {
24 return m_flowTable;
25 }
26
27 [[nodiscard]] const ObjectBase *collidingObject(size_t idx) const {
28 ASSERT(idx < m_collidingObjects.size());
29 return m_collidingObjects[idx];
30 }
31
32 [[nodiscard]] Kart::Reaction reaction(size_t idx) const {
33 ASSERT(idx < m_reactions.size());
34 return m_reactions[idx];
35 }
36
37 [[nodiscard]] const EGG::Vector3f &hitDepth(size_t idx) const {
38 ASSERT(idx < m_hitDepths.size());
39 return m_hitDepths[idx];
40 }
41
42 static ObjectDirector *CreateInstance();
43 static void DestroyInstance();
44
45 [[nodiscard]] static ObjectDirector *Instance() {
46 return s_instance;
47 }
48
49private:
51 ~ObjectDirector() override;
52
53 void createObjects();
54 [[nodiscard]] ObjectBase *createObject(const System::MapdataGeoObj &params);
55
56 ObjectFlowTable m_flowTable;
57 ObjectHitTable m_hitTableKart;
58 ObjectHitTable m_hitTableKartObject;
59
60 std::vector<ObjectBase *> m_objects;
61 std::vector<ObjectBase *> m_calcObjects;
62 std::vector<ObjectBase *> m_collisionObjects;
63
64 static constexpr size_t MAX_UNIT_COUNT = 0x100;
65
66 std::array<ObjectBase *, MAX_UNIT_COUNT>
68 std::array<EGG::Vector3f, MAX_UNIT_COUNT> m_hitDepths;
69 std::array<Kart::Reaction, MAX_UNIT_COUNT> m_reactions;
70
71 static ObjectDirector *s_instance;
72};
73
74} // namespace Field
An interface for ensuring certain structures and classes are destroyed with the heap.
Definition Disposer.hh:11
Smallest convex shape that encloses a given set of points.
std::vector< ObjectBase * > m_objects
All objects live here.
std::vector< ObjectBase * > m_collisionObjects
Objects having collision live here too.
std::vector< ObjectBase * > m_calcObjects
Objects needing calc() live here too.
std::array< ObjectBase *, MAX_UNIT_COUNT > m_collidingObjects
Objects we are currently colliding with.
The highest level abstraction for a kart.
Definition KartObject.hh:11
Pertains to collision.
A 3D float vector.
Definition Vector.hh:83