A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
System::GhostFile Class Reference

#include <GhostFile.hh>

Description

Parsed representation of a binary ghost file.

Definition at line 77 of file GhostFile.hh.

Public Member Functions

 GhostFile (const RawGhostFile &raw)
 
void read (EGG::RamStream &stream)
 Organizes binary data into members. See RawGhostFile.
 

Getters

const TimerlapTimer (size_t i) const
 
const TimerraceTimer () const
 
Character character () const
 
Vehicle vehicle () const
 
Course course () const
 
const u8 * inputs () const
 
bool driftIsAuto () const
 

Private Attributes

std::array< wchar_t, 11 > m_userData
 
std::array< u8, 76 > m_miiData
 
u8 m_lapCount
 
std::array< Timer, 5 > m_lapTimes
 
Timer m_raceTime
 
Character m_character
 
Vehicle m_vehicle
 
Course m_course
 
u32 m_controllerId
 
u8 m_year
 The year, relative to 2000.
 
u8 m_month
 
u8 m_day
 
u32 m_type
 The type of ghost.
 
bool m_driftIsAuto
 True for automatic, false for manual.
 
u32 m_location
 0xFFFF if sharing disabled
 
u16 m_inputSize
 The size of the decompressed input data section.
 
const u8 * m_inputs
 

Constructor & Destructor Documentation

◆ GhostFile()

System::GhostFile::GhostFile ( const RawGhostFile & raw)
0x8051C398

Definition at line 10 of file GhostFile.cc.

Member Function Documentation

◆ character()

Character System::GhostFile::character ( ) const
inlinenodiscard

Definition at line 94 of file GhostFile.hh.

◆ course()

Course System::GhostFile::course ( ) const
inlinenodiscard

Definition at line 102 of file GhostFile.hh.

◆ driftIsAuto()

bool System::GhostFile::driftIsAuto ( ) const
inlinenodiscard

Definition at line 110 of file GhostFile.hh.

◆ inputs()

const u8 * System::GhostFile::inputs ( ) const
inlinenodiscard

Definition at line 106 of file GhostFile.hh.

◆ lapTimer()

const Timer & System::GhostFile::lapTimer ( size_t i) const
inlinenodiscard

Definition at line 85 of file GhostFile.hh.

◆ raceTimer()

const Timer & System::GhostFile::raceTimer ( ) const
inlinenodiscard

Definition at line 90 of file GhostFile.hh.

◆ read()

void System::GhostFile::read ( EGG::RamStream & stream)
0x8051C530

Organizes binary data into members. See RawGhostFile.

Definition at line 21 of file GhostFile.cc.

◆ vehicle()

Vehicle System::GhostFile::vehicle ( ) const
inlinenodiscard

Definition at line 98 of file GhostFile.hh.

Member Data Documentation

◆ m_character

Character System::GhostFile::m_character
private

Definition at line 121 of file GhostFile.hh.

◆ m_controllerId

u32 System::GhostFile::m_controllerId
private

Definition at line 124 of file GhostFile.hh.

◆ m_course

Course System::GhostFile::m_course
private

Definition at line 123 of file GhostFile.hh.

◆ m_day

u8 System::GhostFile::m_day
private

Definition at line 127 of file GhostFile.hh.

◆ m_driftIsAuto

bool System::GhostFile::m_driftIsAuto
private

True for automatic, false for manual.

Definition at line 129 of file GhostFile.hh.

◆ m_inputs

const u8* System::GhostFile::m_inputs
private

Definition at line 132 of file GhostFile.hh.

◆ m_inputSize

u16 System::GhostFile::m_inputSize
private

The size of the decompressed input data section.

Definition at line 131 of file GhostFile.hh.

◆ m_lapCount

u8 System::GhostFile::m_lapCount
private

Definition at line 118 of file GhostFile.hh.

◆ m_lapTimes

std::array<Timer, 5> System::GhostFile::m_lapTimes
private

Definition at line 119 of file GhostFile.hh.

◆ m_location

u32 System::GhostFile::m_location
private

0xFFFF if sharing disabled

Definition at line 130 of file GhostFile.hh.

◆ m_miiData

std::array<u8, 76> System::GhostFile::m_miiData
private

Definition at line 117 of file GhostFile.hh.

◆ m_month

u8 System::GhostFile::m_month
private

Definition at line 126 of file GhostFile.hh.

◆ m_raceTime

Timer System::GhostFile::m_raceTime
private

Definition at line 120 of file GhostFile.hh.

◆ m_type

u32 System::GhostFile::m_type
private

The type of ghost.

Definition at line 128 of file GhostFile.hh.

◆ m_userData

std::array<wchar_t, 11> System::GhostFile::m_userData
private

Definition at line 116 of file GhostFile.hh.

◆ m_vehicle

Vehicle System::GhostFile::m_vehicle
private

Definition at line 122 of file GhostFile.hh.

◆ m_year

u8 System::GhostFile::m_year
private

The year, relative to 2000.

Definition at line 125 of file GhostFile.hh.