A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
KTestSystem.hh
1#pragma once
2
3#include "host/KSystem.hh"
4
5#include <egg/core/SceneManager.hh>
6#include <egg/math/Quat.hh>
7
8#include <game/system/RaceConfig.hh>
9
10#include <queue>
11
13class KTestSystem final : public KSystem {
14public:
15 void init() override;
16 void calc() override;
17 bool run() override;
18 void parseOptions(int argc, char **argv) override;
19
20 static KTestSystem *CreateInstance();
21 static void DestroyInstance();
22
23 static KTestSystem *Instance() {
24 return static_cast<KTestSystem *>(s_instance);
25 }
26
27private:
28 struct TestCase {
29 std::string name;
30 std::string rkgPath;
31 std::string krkgPath;
32 u16 targetFrame;
33 };
34
35 struct TestData {
36 EGG::Vector3f pos;
37 EGG::Quatf fullRot;
38 // Added in 0.2
39 EGG::Vector3f extVel;
40 // Added in 0.3
41 EGG::Vector3f intVel;
42 // Added in 0.4
43 f32 speed;
44 f32 acceleration;
45 f32 softSpeedLimit;
46 // Added in 0.5
47 EGG::Quatf mainRot;
48 EGG::Vector3f angVel2;
49 // Added in 0.6
50 f32 raceCompletion;
51 u16 checkpointId;
52 u8 jugemId;
53 };
54
56 KTestSystem(const KTestSystem &) = delete;
57 KTestSystem(KTestSystem &&) = delete;
58 ~KTestSystem() override;
59
60 template <IntegralType T>
61 void checkDesync(const T &t0, const T &t1, const char *name) {
62 if (t0 == t1) {
63 return;
64 }
65
66 if (m_sync) {
67 REPORT("Test Case Failed: %s [%d / %d]", getCurrentTestCase().name.c_str(),
68 m_currentFrame, m_frameCount);
69 }
70
71 REPORT("DESYNC! Name: %s", name);
72 REPORT("Expected: %d", t0);
73 REPORT("Observed: %d", t1);
74
75 m_sync = false;
76 }
77
78 template <typename T>
79 void checkDesync(const T &t0, const T &t1, const char *name) {
80 if (t0 == t1) {
81 return;
82 }
83
84 m_sceneMgr->currentScene()->heap()->enableAllocation();
85
86 if (m_sync) {
87 REPORT("Test Case Failed: %s [%d / %d]", getCurrentTestCase().name.c_str(),
88 m_currentFrame, m_frameCount);
89 }
90
91 REPORT("DESYNC! Name: %s", name);
92 std::string s0(t0);
93 std::string s1(t1);
94 REPORT("Expected: %s", s0.c_str());
95 REPORT("Observed: %s", s1.c_str());
96
97 m_sceneMgr->currentScene()->heap()->disableAllocation();
98
99 m_sync = false;
100 }
101
102 void checkDesync(const f32 &t0, const f32 &t1, const char *name) {
103 if (t0 == t1) {
104 return;
105 }
106
107 m_sceneMgr->currentScene()->heap()->enableAllocation();
108
109 if (m_sync) {
110 REPORT("Test Case Failed: %s [%d / %d]", getCurrentTestCase().name.c_str(),
111 m_currentFrame, m_frameCount);
112 }
113
114 REPORT("DESYNC! Name: %s", name);
115 std::string s0 = std::to_string(t0);
116 std::string s1 = std::to_string(t1);
117 REPORT("Expected: 0x%08X | %s", f2u(t0), s0.c_str());
118 REPORT("Observed: 0x%08X | %s", f2u(t1), s1.c_str());
119
120 m_sceneMgr->currentScene()->heap()->disableAllocation();
121
122 m_sync = false;
123 }
124
125 void startNextTestCase();
126 bool popTestCase();
127
128 bool calcTest();
129 TestData findCurrentFrameEntry();
130 void testFrame(const TestData &data);
131
132 bool runTest();
133 void writeTestOutput() const;
134
135 const TestCase &getCurrentTestCase() const;
136
137 static void OnInit(System::RaceConfig *config, void *arg);
138
139 EGG::SceneManager *m_sceneMgr;
140 EGG::RamStream m_stream;
141 std::queue<TestCase> m_testCases;
142
143 u16 m_versionMajor;
144 u16 m_versionMinor;
145 u16 m_frameCount;
146 u16 m_currentFrame;
147 bool m_sync;
148};
A stream of data stored in memory.
Definition Stream.hh:64
Manages the scene stack and transitions between scenes.
Base interface for a Kinoko system.
Definition KSystem.hh:6
Kinoko system designed to execute tests.
void init() override
Initializes the system.
void writeTestOutput() const
Writes details about the current test to file.
static void OnInit(System::RaceConfig *config, void *arg)
Initializes the race configuration as needed for test cases.
bool popTestCase()
Pops the current test case and frees the KRKG buffer.
bool run() override
Executes a run.
bool runTest()
Runs a single test case, and ends when the test is finished or when a desync is found.
void startNextTestCase()
Starts the next test case.
void parseOptions(int argc, char **argv) override
Parses non-generic command line options.
void testFrame(const TestData &data)
Tests the frame against the provided test data.
bool calcTest()
Checks one frame in the test.
const TestCase & getCurrentTestCase() const
Gets the current test case.
void calc() override
Executes a frame.
TestData findCurrentFrameEntry()
Finds the test data of the current frame.
Initializes the player with parameters specified in the provided ghost file.
Definition RaceConfig.hh:15
A quaternion, used to represent 3D rotation.
Definition Quat.hh:12
A 3D float vector.
Definition Vector.hh:83