A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
RaceConfig.hh
1#pragma once
2
3#include "game/system/GhostFile.hh"
4
5#include <functional>
6
7namespace System {
8
16public:
17 struct Player {
18 public:
19 enum class Type {
20 Local = 0, // Inputs managed by ML algorithm
21 Ghost = 3, // Inputs managed by ghost
22 None = 5,
23 };
24
25 Character character;
26 Vehicle vehicle;
27 Type type;
28 bool driftIsAuto;
29 };
30
31 struct Scenario {
32 public:
33 enum class GameMode {
34 Time_Trial = 2,
35 Ghost_Race = 5,
36 };
37
38 void init();
39
40 std::array<Player, 12> players;
41 u8 playerCount;
42 Course course;
43 };
44
45 typedef std::function<void(RaceConfig *, void *)> InitCallback;
46
47 void init();
48 void initRace();
49 void initControllers();
50 void initGhost();
51
52 [[nodiscard]] const Scenario &raceScenario() const {
53 return m_raceScenario;
54 }
55
56 [[nodiscard]] Scenario &raceScenario() {
57 return m_raceScenario;
58 }
59
60 void setGhost(const u8 *rkg) {
61 m_ghost = rkg;
62 }
63
64 static void RegisterInitCallback(const InitCallback &callback, void *arg) {
65 s_onInitCallback = callback;
67 }
68
69 static RaceConfig *CreateInstance();
70 static void DestroyInstance();
71
72 [[nodiscard]] static RaceConfig *Instance() {
73 return s_instance;
74 }
75
76private:
77 RaceConfig();
78 ~RaceConfig() override;
79
80 Scenario m_raceScenario;
81 RawGhostFile m_ghost;
82
83 static RaceConfig *s_instance;
84 static InitCallback s_onInitCallback;
85 static void *s_onInitCallbackArg;
86};
87
88} // namespace System
An interface for ensuring certain structures and classes are destroyed with the heap.
Definition Disposer.hh:11
Initializes the player with parameters specified in the provided ghost file.
Definition RaceConfig.hh:15
static void * s_onInitCallbackArg
The argument sent into the callback. This is expected to be reinterpret_casted.
Definition RaceConfig.hh:85
void initGhost()
Initializes the ghost.
Definition RaceConfig.cc:47
static InitCallback s_onInitCallback
Host-agnostic way of initializing RaceConfig. The type of the first player must be set to either Loca...
Definition RaceConfig.hh:84
void initControllers()
Initializes the controllers.
Definition RaceConfig.cc:30
High-level handling for generic system operations, such as input reading, race configuration,...
Definition CourseMap.cc:5