A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
KartObjectManager.cc
1#include "KartObjectManager.hh"
2
3#include "game/kart/KartCollide.hh"
4#include "game/kart/KartParamFileManager.hh"
5#include "game/system/RaceConfig.hh"
6
7namespace Kart {
8
10void KartObjectManager::init() {
11 for (size_t i = 0; i < m_count; ++i) {
12 m_objects[i]->initImpl();
13 m_objects[i]->prepare();
14 }
15}
16
18void KartObjectManager::calc() {
19 for (size_t i = 0; i < m_count; ++i) {
20 KartObject *object = m_objects[i];
21 object->collide()->setTangentOff(EGG::Vector3f::zero);
22 object->collide()->setMovement(EGG::Vector3f::zero);
23 }
24
25 for (size_t i = 0; i < m_count; ++i) {
26 KartObject *object = m_objects[i];
27 object->calcSub();
28 object->calc();
29 }
30}
31
33KartObjectManager *KartObjectManager::CreateInstance() {
34 ASSERT(!s_instance);
35 s_instance = new KartObjectManager;
36 return s_instance;
37}
38
40void KartObjectManager::DestroyInstance() {
41 ASSERT(s_instance);
42 auto *instance = s_instance;
43 s_instance = nullptr;
44 delete instance;
45}
46
48KartObjectManager::KartObjectManager() {
49 const auto &raceScenario = System::RaceConfig::Instance()->raceScenario();
50 m_count = raceScenario.playerCount;
51 m_objects = new KartObject *[m_count];
52 KartParamFileManager::CreateInstance();
53 for (size_t i = 0; i < m_count; ++i) {
54 const auto &player = raceScenario.players[i];
55 KartObject *object = KartObject::Create(player.character, player.vehicle, i);
56 object->createModel();
57 m_objects[i] = object;
58 }
59}
60
62KartObjectManager::~KartObjectManager() {
63 if (s_instance) {
64 s_instance = nullptr;
65 WARN("KartObjectManager instance not explicitly handled!");
66 }
67
68 KartParamFileManager::DestroyInstance();
69
70 for (size_t i = 0; i < m_count; ++i) {
71 delete m_objects[i];
72 }
73
74 delete[] m_objects;
75
76 // If the proxy list is not cleared when we're done with the KartObjectManager, the list's
77 // destructor calls delete on all of the links remaining in the list. Since the heaps are
78 // gone by that point, this results in a segmentation fault. So, we clear the links here.
79 KartObjectProxy::proxyList().clear();
80}
81
82KartObjectManager *KartObjectManager::s_instance = nullptr;
83
84} // namespace Kart
void prepare()
Sets the initial position and rotation of the kart based off the current track.
Pertains to kart-related functionality.