A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
KReplaySystem.hh
1#include "host/KSystem.hh"
2
3#include <egg/core/SceneManager.hh>
4
5#include <game/system/RaceConfig.hh>
6
8class KReplaySystem : public KSystem {
9public:
10 void init() override;
11 void calc() override;
12 bool run() override;
13 void parseOptions(int argc, char **argv) override;
14
15 static KReplaySystem *CreateInstance();
16 static void DestroyInstance();
17
18 static KReplaySystem *Instance() {
19 return static_cast<KReplaySystem *>(s_instance);
20 }
21
22private:
23 typedef std::pair<const System::Timer &, const System::Timer &> DesyncingTimerPair;
24
26 KReplaySystem(const KReplaySystem &) = delete;
27 KReplaySystem(KReplaySystem &&) = delete;
28 ~KReplaySystem() override;
29
30 bool calcEnd() const;
31 void reportFail(const std::string &msg) const;
32
33 bool success() const;
34 s32 getDesyncingTimerIdx() const;
35 DesyncingTimerPair getDesyncingTimer(s32 i) const;
36
37 static void OnInit(System::RaceConfig *config, void *arg);
38
39 EGG::SceneManager *m_sceneMgr;
40
41 const char *m_currentGhostFileName;
42 const System::GhostFile *m_currentGhost;
43 const u8 *m_currentRawGhost;
44 size_t m_currentRawGhostSize;
45};
Manages the scene stack and transitions between scenes.
Kinoko system designed to execute replays.
bool success() const
Determines whether the simulation was a success or not.
bool calcEnd() const
Determines whether or not the ghost simulation should end.
void reportFail(const std::string &msg) const
Reports failure to file.
void parseOptions(int argc, char **argv) override
Parses non-generic command line options.
static void OnInit(System::RaceConfig *config, void *arg)
Initializes the race configuration as needed for replays.
void init() override
Initializes the system.
s32 getDesyncingTimerIdx() const
Finds the desyncing timer index, if one exists.
DesyncingTimerPair getDesyncingTimer(s32 i) const
Gets the desyncing timer according to the index.
bool run() override
Executes a run.
void calc() override
Executes a frame.
Base interface for a Kinoko system.
Definition KSystem.hh:6
Parsed representation of a binary ghost file.
Definition GhostFile.hh:77
Initializes the player with parameters specified in the provided ghost file.
Definition RaceConfig.hh:15