A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
MapdataStartPoint.hh
1#pragma once
2
3#include "game/system/map/MapdataAccessorBase.hh"
4
5#include <egg/math/Vector.hh>
6
7namespace System {
8
10public:
11 struct SData {
12 EGG::Vector3f pos;
13 EGG::Vector3f rot;
14 // Pre Revision 1830: End of structure
15 s16 playerIndex;
16 };
17
18 MapdataStartPoint(const SData *data);
19
20 void read(EGG::Stream &stream);
21 void findKartStartPoint(EGG::Vector3f &pos, EGG::Vector3f &angles, u8 placement,
22 u8 playerCount);
23
24private:
25 const SData *m_rawData;
26 EGG::Vector3f m_position;
27 EGG::Vector3f m_rotation;
28 s16 m_playerIndex;
29};
30
32 : public MapdataAccessorBase<MapdataStartPoint, MapdataStartPoint::SData> {
33public:
36};
37
38} // namespace System
A stream of data, abstracted to allow for continuous seeking.
Definition Stream.hh:10
void findKartStartPoint(EGG::Vector3f &pos, EGG::Vector3f &angles, u8 placement, u8 playerCount)
High-level handling for generic system operations, such as input reading, race configuration,...
Definition CourseMap.cc:5
A 3D float vector.
Definition Vector.hh:83