1#include "ObjectDirector.hh"
3#include "game/field/BoxColManager.hh"
4#include "game/field/ObjectDrivableDirector.hh"
5#include "game/field/obj/ObjectRegistry.hh"
7#include "game/kart/KartObject.hh"
9#include "game/system/CourseMap.hh"
14void ObjectDirector::init() {
20 ObjectDrivableDirector::Instance()->init();
24void ObjectDirector::calc() {
33 ObjectDrivableDirector::Instance()->calc();
37void ObjectDirector::addObject(ObjectCollidable *obj) {
38 u32 loadFlags = obj->loadFlags();
44 if (m_flowTable.set(m_flowTable.slot(obj->id()))->mode != 0) {
45 if (obj->collision()) {
53void ObjectDirector::addObjectNoImpl(ObjectNoImpl *obj) {
59 ObjectCollisionConvexHull *convexHull) {
62 while (ObjectCollidable *obj = BoxColManager::Instance()->getNextObject()) {
63 auto *objCollision = obj->collision();
68 obj->calcCollisionTransform();
69 if (!obj->checkCollision(convexHull, m_hitDepths[count])) {
75 Kart::Reaction reactionOnKart = m_hitTableKart.reaction(m_hitTableKart.slot(obj->id()));
76 Kart::Reaction reactionOnObj =
77 m_hitTableKartObject.reaction(m_hitTableKartObject.slot(obj->id()));
80 obj->processKartReactions(kartObj, reactionOnKart, reactionOnObj);
82 Kart::Reaction reaction =
83 obj->onCollision(kartObj, reactionOnKart, reactionOnObj, m_hitDepths[count]);
84 m_reactions[count] = reaction;
86 if (reaction == Kart::Reaction::WallAllSpeed || reaction == Kart::Reaction::WallSpark) {
87 obj->onWallCollision(kartObj, m_hitDepths[count]);
89 obj->onObjectCollision(kartObj);
93 if (m_hitDepths[count].y < 0.0f) {
94 m_hitDepths[count].y = 0.0f;
104ObjectDirector *ObjectDirector::CreateInstance() {
106 s_instance =
new ObjectDirector;
108 ObjectDrivableDirector::CreateInstance();
110 s_instance->createObjects();
116void ObjectDirector::DestroyInstance() {
118 auto *instance = s_instance;
119 s_instance =
nullptr;
122 ObjectDrivableDirector::DestroyInstance();
126ObjectDirector::ObjectDirector()
127 : m_flowTable(
"ObjFlow.bin"), m_hitTableKart(
"GeoHitTableKart.bin"),
128 m_hitTableKartObject(
"GeoHitTableKartObj.bin") {}
131ObjectDirector::~ObjectDirector() {
133 s_instance =
nullptr;
134 WARN(
"ObjectDirector instance not explicitly handled!");
137 for (
auto *&obj : m_objects) {
143void ObjectDirector::createObjects() {
144 const auto *courseMap = System::CourseMap::Instance();
145 size_t objectCount = courseMap->getGeoObjCount();
149 size_t maxCount = std::min(objectCount, MAX_UNIT_COUNT);
150 m_objects.reserve(maxCount);
151 m_calcObjects.reserve(maxCount);
152 m_collisionObjects.reserve(maxCount);
154 for (
size_t i = 0; i < objectCount; ++i) {
155 const auto *pObj = courseMap->getGeoObj(i);
159 if (!(pObj->presenceFlag() & 1)) {
164 if (IsObjectBlacklisted(pObj->id())) {
168 ObjectBase *
object = createObject(*pObj);
175 ObjectId
id =
static_cast<ObjectId
>(params.id());
177 case ObjectId::DokanSFC:
178 return new ObjectDokan(params);
179 case ObjectId::OilSFC:
180 return new ObjectOilSFC(params);
181 case ObjectId::ParasolR:
182 return new ObjectParasolR(params);
183 case ObjectId::PuchiPakkun:
185 case ObjectId::Aurora:
186 return new ObjectAurora(params);
189 case ObjectId::DummyPole:
190 case ObjectId::CastleTree1c:
191 case ObjectId::PalmTree:
192 case ObjectId::DKtreeA64c:
193 case ObjectId::TownTreeDsc:
194 return new ObjectCollidable(params);
195 case ObjectId::Mdush:
196 return new ObjectKCL(params);
198 return new ObjectNoImpl(params);
202ObjectDirector *ObjectDirector::s_instance =
nullptr;
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.
ObjectDokan ObjectPuchiPakkun
This is just to help with readability. The rMR piranhas are really just pipes.