A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ObjectBase.cc
1#include "ObjectBase.hh"
2
3#include "game/field/ObjectDirector.hh"
4
5#include <game/system/CourseMap.hh>
6#include <game/system/map/MapdataPointInfo.hh>
7
8#include <egg/math/Math.hh>
9
10namespace Field {
11
13ObjectBase::ObjectBase(const System::MapdataGeoObj &params)
14 : m_id(static_cast<ObjectId>(params.id())), m_flags(0x3), m_pos(params.pos()),
15 m_rot(params.rot() * DEG2RAD), m_scale(params.scale()), m_transform(EGG::Matrix34f::ident),
16 m_mapObj(&params) {}
17
19ObjectBase::~ObjectBase() = default;
20
22void ObjectBase::calcModel() {
23 calcTransform();
24}
25
27void ObjectBase::loadRail() {
28 if (!m_mapObj) {
29 return;
30 }
31
32 s16 pathId = m_mapObj->pathId();
33
34 if (pathId == -1) {
35 return;
36 }
37
38 auto *point = System::CourseMap::Instance()->getPointInfo(pathId);
39 f32 speed = static_cast<f32>(m_mapObj->setting(0));
40
41 if (point->setting(0) == 0) {
42 m_railInterpolator = new RailLinearInterpolator(speed, pathId);
43 } else {
44 m_railInterpolator = new RailSmoothInterpolator(speed, pathId);
45 }
46}
47
49const char *ObjectBase::getKclName() const {
50 const auto &flowTable = ObjectDirector::Instance()->flowTable();
51 const auto *collisionSet = flowTable.set(flowTable.slot(m_id));
52 ASSERT(collisionSet);
53 return collisionSet->resources;
54}
55
57void ObjectBase::calcTransform() {
58 if (m_flags & 2) {
59 m_transform.makeRT(m_rot, m_pos);
60 m_flags &= ~0x3;
61 } else if (m_flags & 1) {
62 m_transform.setBase(3, m_pos);
63 m_flags |= 4;
64 }
65}
66
67} // namespace Field
EGG core library.
Definition Archive.cc:6
Pertains to collision.