A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
MapdataStartPoint.cc
1#include "MapdataStartPoint.hh"
2
3#include "game/system/CourseMap.hh"
4#include "game/system/map/MapdataStageInfo.hh"
5
6#include <egg/math/Math.hh>
7#include <egg/math/Quat.hh>
8
9namespace System {
10
11// We have to define these early so they're available for findKartStartPoint
12static constexpr s8 X_TRANSLATION_TABLE[12][12] = {
13 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
14 {-5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
15 {-10, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0},
16 {-10, 5, -5, 10, 0, 0, 0, 0, 0, 0, 0, 0},
17 {-10, 0, 10, -5, 5, 0, 0, 0, 0, 0, 0, 0},
18 {-10, -2, 6, -6, 2, 10, 0, 0, 0, 0, 0, 0},
19 {-5, 5, -10, 0, 10, -5, 5, 0, 0, 0, 0, 0},
20 {-10, 0, 10, -5, 5, -10, 0, 10, 0, 0, 0, 0},
21 {-10, -2, 6, -6, 2, 10, -10, -2, 6, 0, 0, 0},
22 {-10, 0, 10, -5, 5, -10, 0, 10, -5, 5, 0, 0},
23 {-10, -2, 6, -6, 2, 10, -10, -2, 6, -6, 2, 0},
24 {-10, -2, 6, -6, 2, 10, -10, -2, 6, -6, 2, 10},
25};
26
27static constexpr s8 Z_TRANSLATION_TABLE[12][12] = {
28 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
29 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
30 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
31 {0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
32 {0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0},
33 {0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0},
34 {0, 0, 1, 1, 1, 2, 2, 0, 0, 0, 0, 0},
35 {0, 0, 0, 1, 1, 2, 2, 2, 0, 0, 0, 0},
36 {0, 0, 0, 1, 1, 1, 2, 2, 2, 0, 0, 0},
37 {0, 0, 0, 1, 1, 2, 2, 2, 3, 3, 0, 0},
38 {0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 0},
39 {0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 3},
40};
41
42MapdataStartPoint::MapdataStartPoint(const SData *data) : m_rawData(data) {
43 EGG::RamStream stream = EGG::RamStream(data, sizeof(SData));
44 read(stream);
45}
46
47void MapdataStartPoint::read(EGG::Stream &stream) {
48 m_position.read(stream);
49 m_rotation.read(stream);
50 if (CourseMap::Instance()->version() > 1830) {
51 m_playerIndex = stream.read_s16();
52 } else {
53 m_playerIndex = 0;
54 }
55}
56
59void MapdataStartPoint::findKartStartPoint(EGG::Vector3f &pos, EGG::Vector3f &angles, u8 placement,
60 u8 playerCount) {
61 EGG::Quatf rotation;
62 rotation.setRPY(m_rotation * DEG2RAD);
63
64 EGG::Vector3f zAxis = rotation.rotateVector(-EGG::Vector3f::ez);
65 EGG::Vector3f xAxis = rotation.rotateVector(-EGG::Vector3f::ex);
66
67 CourseMap *courseMap = CourseMap::Instance();
68 const MapdataStageInfo *stageInfo = courseMap->getStageInfo();
69 ASSERT(stageInfo);
70 int translationDirection = stageInfo->polePosition() == 1 ? -1 : 1;
71
72 f32 cos = EGG::Mathf::CosFIdx(courseMap->startTmpAngle() * DEG2FIDX);
73 f32 sin = EGG::Mathf::SinFIdx(courseMap->startTmpAngle() * DEG2FIDX) * translationDirection;
74
75 int xTranslation = translationDirection * X_TRANSLATION_TABLE[playerCount - 1][0];
76 f32 xScalar =
77 sin * (courseMap->startTmp0() * (static_cast<f32>(xTranslation) + 10.0f) / 10.0f) / cos;
78 EGG::Vector3f xTmp = -zAxis * xScalar;
79
80 int zTranslation = Z_TRANSLATION_TABLE[playerCount - 1][placement];
81 f32 zScalar = courseMap->startTmp2() * static_cast<f32>(zTranslation / 2) +
82 courseMap->startTmp1() * static_cast<f32>(zTranslation) +
83 courseMap->startTmp3() * static_cast<f32>((zTranslation + 1) / 2);
84 EGG::Vector3f zTmp = zAxis * zScalar;
85
86 EGG::Vector3f tmp0 = xTmp + zTmp;
87 EGG::Vector3f tmp1 = xAxis * courseMap->startTmp0();
88 EGG::Vector3f tmp2 = tmp0 - tmp1;
89 EGG::Vector3f tmpPos = tmp2 + m_position;
90
91 EGG::Vector3f vCos = xAxis * cos;
92 EGG::Vector3f vSin = zAxis * sin;
93 EGG::Vector3f vRes = vCos + vSin;
94
95 int tmpTranslation = translationDirection * X_TRANSLATION_TABLE[playerCount - 1][placement];
96 f32 tmpScalar =
97 courseMap->startTmp0() * (static_cast<f32>(tmpTranslation) + 10.0f) / (cos * 10.0f);
98 EGG::Vector3f tmpRes = vRes * tmpScalar;
99
100 pos = tmpPos + tmpRes;
101 angles = m_rotation;
102}
103
105MapdataStartPointAccessor::MapdataStartPointAccessor(const MapSectionHeader *header)
107 if (CourseMap::Instance()->version() > 1830) {
108 init(reinterpret_cast<const MapdataStartPoint::SData *>(m_sectionHeader + 1),
109 parse<u16>(m_sectionHeader->count));
110 } else {
111 init(reinterpret_cast<const MapdataStartPoint::SData *>(
112 reinterpret_cast<const u8 *>(m_sectionHeader + 4)),
113 1);
114 }
115}
116
117MapdataStartPointAccessor::~MapdataStartPointAccessor() = default;
118
119} // namespace System
A stream of data stored in memory.
Definition Stream.hh:64
A stream of data, abstracted to allow for continuous seeking.
Definition Stream.hh:10
Contains course metadata, notably the starting position.
Definition CourseMap.hh:26
High-level handling for generic system operations, such as input reading, race configuration,...
Definition CourseMap.cc:5
A quaternion, used to represent 3D rotation.
Definition Quat.hh:12
Vector3f rotateVector(const Vector3f &vec) const
Rotates a vector based on the quat.
Definition Quat.cc:50
void setRPY(const Vector3f &rpy)
Sets roll, pitch, and yaw.
Definition Quat.cc:7
A 3D float vector.
Definition Vector.hh:83