1#include "MapdataStartPoint.hh"
3#include "game/system/CourseMap.hh"
4#include "game/system/map/MapdataStageInfo.hh"
6#include <egg/math/Math.hh>
7#include <egg/math/Quat.hh>
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},
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},
42MapdataStartPoint::MapdataStartPoint(
const SData *data) : m_rawData(data) {
48 m_position.read(stream);
49 m_rotation.read(stream);
50 if (CourseMap::Instance()->version() > 1830) {
51 m_playerIndex = stream.read_s16();
62 rotation.
setRPY(m_rotation * DEG2RAD);
67 CourseMap *courseMap = CourseMap::Instance();
70 int translationDirection = stageInfo->polePosition() == 1 ? -1 : 1;
72 f32 cos = EGG::Mathf::CosFIdx(courseMap->startTmpAngle() * DEG2FIDX);
73 f32 sin = EGG::Mathf::SinFIdx(courseMap->startTmpAngle() * DEG2FIDX) * translationDirection;
75 int xTranslation = translationDirection * X_TRANSLATION_TABLE[playerCount - 1][0];
77 sin * (courseMap->startTmp0() * (
static_cast<f32
>(xTranslation) + 10.0f) / 10.0f) / cos;
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);
95 int tmpTranslation = translationDirection * X_TRANSLATION_TABLE[playerCount - 1][placement];
97 courseMap->startTmp0() * (
static_cast<f32
>(tmpTranslation) + 10.0f) / (cos * 10.0f);
100 pos = tmpPos + tmpRes;
105MapdataStartPointAccessor::MapdataStartPointAccessor(
const MapSectionHeader *header)
107 if (CourseMap::Instance()->version() > 1830) {
109 parse<u16>(m_sectionHeader->count));
111 init(
reinterpret_cast<const MapdataStartPoint::SData *
>(
112 reinterpret_cast<const u8 *
>(m_sectionHeader + 4)),
117MapdataStartPointAccessor::~MapdataStartPointAccessor() =
default;
A stream of data stored in memory.
A stream of data, abstracted to allow for continuous seeking.
Contains course metadata, notably the starting position.
High-level handling for generic system operations, such as input reading, race configuration,...
A quaternion, used to represent 3D rotation.
Vector3f rotateVector(const Vector3f &vec) const
Rotates a vector based on the quat.
void setRPY(const Vector3f &rpy)
Sets roll, pitch, and yaw.