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

#include <KReplaySystem.hh>

Description

Kinoko system designed to execute replays.

Definition at line 8 of file KReplaySystem.hh.

Inheritance diagram for KReplaySystem:

Public Member Functions

void init () override
 Initializes the system.
 
void calc () override
 Executes a frame.
 
bool run () override
 Executes a run.
 
void parseOptions (int argc, char **argv) override
 Parses non-generic command line options.
 
- Public Member Functions inherited from KSystem

Static Public Member Functions

static KReplaySystemCreateInstance ()
 
static void DestroyInstance ()
 
static KReplaySystemInstance ()
 

Private Types

typedef std::pair< const System::Timer &, const System::Timer & > DesyncingTimerPair
 

Private Member Functions

 KReplaySystem (const KReplaySystem &)=delete
 
 KReplaySystem (KReplaySystem &&)=delete
 
bool calcEnd () const
 Determines whether or not the ghost simulation should end.
 
void reportFail (const std::string &msg) const
 Reports failure to file.
 
bool success () const
 Determines whether the simulation was a success or not.
 
s32 getDesyncingTimerIdx () const
 Finds the desyncing timer index, if one exists.
 
DesyncingTimerPair getDesyncingTimer (s32 i) const
 Gets the desyncing timer according to the index.
 

Static Private Member Functions

static void OnInit (System::RaceConfig *config, void *arg)
 Initializes the race configuration as needed for replays.
 

Private Attributes

EGG::SceneManagerm_sceneMgr
 
const char * m_currentGhostFileName
 
const System::GhostFilem_currentGhost
 
const u8 * m_currentRawGhost
 
size_t m_currentRawGhostSize
 

Additional Inherited Members

- Static Protected Attributes inherited from KSystem
static KSystems_instance = nullptr
 

Member Typedef Documentation

◆ DesyncingTimerPair

std::pair<const System::Timer &, const System::Timer &> KReplaySystem::DesyncingTimerPair
private

Definition at line 23 of file KReplaySystem.hh.

Constructor & Destructor Documentation

◆ KReplaySystem()

KReplaySystem::KReplaySystem ( )
private

Definition at line 98 of file KReplaySystem.cc.

Member Function Documentation

◆ ~KReplaySystem()

KReplaySystem::~KReplaySystem ( )
overrideprivate

Definition at line 102 of file KReplaySystem.cc.

◆ calc()

void KReplaySystem::calc ( )
overridevirtual

Executes a frame.

Implements KSystem.

Definition at line 28 of file KReplaySystem.cc.

◆ calcEnd()

bool KReplaySystem::calcEnd ( ) const
private

Determines whether or not the ghost simulation should end.

Returns
Whether the ghost should end or not.

Definition at line 115 of file KReplaySystem.cc.

◆ CreateInstance()

KReplaySystem * KReplaySystem::CreateInstance ( )
static

Definition at line 85 of file KReplaySystem.cc.

◆ DestroyInstance()

void KReplaySystem::DestroyInstance ( )
static

Definition at line 91 of file KReplaySystem.cc.

◆ getDesyncingTimer()

KReplaySystem::DesyncingTimerPair KReplaySystem::getDesyncingTimer ( s32 i) const
private

Gets the desyncing timer according to the index.

Parameters
iIndex to the desyncing timer. Cannot be -1.
Returns
The pair of timers. The first is the correct one, and the second is the incorrect one.

Definition at line 194 of file KReplaySystem.cc.

◆ getDesyncingTimerIdx()

s32 KReplaySystem::getDesyncingTimerIdx ( ) const
private

Finds the desyncing timer index, if one exists.

Returns
-1 if there's no desync, 0 if the final timer desyncs, and 1+ if a lap timer desyncs.

Definition at line 176 of file KReplaySystem.cc.

◆ init()

void KReplaySystem::init ( )
overridevirtual

Initializes the system.

Implements KSystem.

Definition at line 13 of file KReplaySystem.cc.

◆ Instance()

static KReplaySystem * KReplaySystem::Instance ( )
inlinestatic

Definition at line 18 of file KReplaySystem.hh.

◆ OnInit()

void KReplaySystem::OnInit ( System::RaceConfig * config,
void * arg )
staticprivate

Initializes the race configuration as needed for replays.

Parameters
configThe race configuration instance.
argUnused optional argument.

Definition at line 217 of file KReplaySystem.cc.

◆ parseOptions()

void KReplaySystem::parseOptions ( int argc,
char ** argv )
overridevirtual

Parses non-generic command line options.

The only currently accepted option is the ghost flag.

Parameters
argcThe number of arguments.
argvThe arguments.

Implements KSystem.

Definition at line 47 of file KReplaySystem.cc.

◆ reportFail()

void KReplaySystem::reportFail ( const std::string & msg) const
private

Reports failure to file.

Parameters
msgThe message to report.

Definition at line 132 of file KReplaySystem.cc.

◆ run()

bool KReplaySystem::run ( )
overridevirtual

Executes a run.

A run consists of replaying a ghost.

Returns
Whether the run was successful or not.

Implements KSystem.

Definition at line 35 of file KReplaySystem.cc.

◆ success()

bool KReplaySystem::success ( ) const
private

Determines whether the simulation was a success or not.

Returns
Whether the simulation was a success or not.

Definition at line 140 of file KReplaySystem.cc.

Member Data Documentation

◆ m_currentGhost

const System::GhostFile* KReplaySystem::m_currentGhost
private

Definition at line 42 of file KReplaySystem.hh.

◆ m_currentGhostFileName

const char* KReplaySystem::m_currentGhostFileName
private

Definition at line 41 of file KReplaySystem.hh.

◆ m_currentRawGhost

const u8* KReplaySystem::m_currentRawGhost
private

Definition at line 43 of file KReplaySystem.hh.

◆ m_currentRawGhostSize

size_t KReplaySystem::m_currentRawGhostSize
private

Definition at line 44 of file KReplaySystem.hh.

◆ m_sceneMgr

EGG::SceneManager* KReplaySystem::m_sceneMgr
private

Definition at line 39 of file KReplaySystem.hh.