Kinoko
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
7
namespace
System
{
8
9
class
MapdataStartPoint
{
10
public
:
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
24
private
:
25
const
SData
*m_rawData;
26
EGG::Vector3f
m_position;
27
EGG::Vector3f
m_rotation;
28
s16 m_playerIndex;
29
};
30
31
class
MapdataStartPointAccessor
32
:
public
MapdataAccessorBase
<MapdataStartPoint, MapdataStartPoint::SData> {
33
public
:
34
MapdataStartPointAccessor
(
const
MapSectionHeader
*header);
35
~MapdataStartPointAccessor
()
override
;
36
};
37
38
}
// namespace System
EGG::Stream
A stream of data, abstracted to allow for continuous seeking.
Definition
Stream.hh:10
System::MapdataAccessorBase
Definition
MapdataAccessorBase.hh:13
System::MapdataStartPointAccessor
Definition
MapdataStartPoint.hh:32
System::MapdataStartPoint
Definition
MapdataStartPoint.hh:9
System::MapdataStartPoint::findKartStartPoint
void findKartStartPoint(EGG::Vector3f &pos, EGG::Vector3f &angles, u8 placement, u8 playerCount)
Definition
MapdataStartPoint.cc:59
System
High-level handling for generic system operations, such as input reading, race configuration,...
Definition
CourseMap.cc:5
EGG::Vector3f
A 3D float vector.
Definition
Vector.hh:83
System::MapSectionHeader
Definition
MapdataAccessorBase.hh:7
System::MapdataStartPoint::SData
Definition
MapdataStartPoint.hh:11
game
system
map
MapdataStartPoint.hh
Made by
Malleo
. Logo by
vabold
. Website generated by
Doxygen
1.12.0