35 constexpr u32 TEST_HEADER_SIGNATURE = 0x54535448;
36 constexpr u32 TEST_FOOTER_SIGNATURE = 0x54535446;
37 constexpr u16 SUITE_MAJOR_VER = 1;
38 constexpr u16 SUITE_MAX_MINOR_VER = 0;
43 System::RaceConfig::RegisterInitCallback(
OnInit,
nullptr);
44 Abstract::File::Remove(
"results.txt");
46 u16 numTestCases = m_stream.read_u16();
47 u16 testMajorVer = m_stream.read_u16();
48 u16 testMinorVer = m_stream.read_u16();
50 if (testMajorVer != SUITE_MAJOR_VER || testMinorVer > SUITE_MAX_MINOR_VER) {
51 PANIC(
"Version not supported! Provided file is %d.%d while Kinoko supports up to %d.%d",
52 testMajorVer, testMinorVer, SUITE_MAJOR_VER, SUITE_MAX_MINOR_VER);
55 for (
u16 i = 0; i < numTestCases; ++i) {
57 if (m_stream.read_u32() != TEST_HEADER_SIGNATURE) {
58 PANIC(
"Invalid binary data for test case!");
61 u16 totalSize = m_stream.read_u16();
64 u16 nameLen = m_stream.read_u16();
65 testCase.name = m_stream.read_string();
66 if (nameLen != testCase.name.size() + 1) {
67 PANIC(
"Test case name length mismatch!");
70 u16 rkgPathLen = m_stream.read_u16();
71 testCase.rkgPath = m_stream.read_string();
72 if (rkgPathLen != testCase.rkgPath.size() + 1) {
73 PANIC(
"Test case RKG Path length mismatch!");
76 u16 krkgPathLen = m_stream.read_u16();
77 testCase.krkgPath = m_stream.read_string();
78 if (krkgPathLen != testCase.krkgPath.size() + 1) {
79 PANIC(
"Test case KRKG Path length mismatch!");
82 testCase.targetFrame = m_stream.read_u16();
85 if (m_stream.read_u32() != TEST_FOOTER_SIGNATURE) {
86 PANIC(
"Invalid binary data for test case!");
89 if (totalSize !=
sizeof(
u16) * 4 + nameLen + rkgPathLen + krkgPathLen) {
90 PANIC(
"Unexpected bytes in test case");
93 m_testCases.push(testCase);
97 m_sceneMgr->changeScene(0);
189 constexpr u32 KRKG_SIGNATURE = 0x4b524b47;
198 u16 mark = *
reinterpret_cast<u16 *
>(krkg + offsetof(
TestHeader, byteOrderMark));
199 std::endian endian = parse<u16>(mark) == 0xfeff ? std::endian::big : std::endian::little;
200 m_stream.setEndian(endian);
202 ASSERT(m_stream.read_u32() == KRKG_SIGNATURE);
204 m_frameCount = m_stream.read_u16();
205 m_versionMajor = m_stream.read_u16();
206 m_versionMinor = m_stream.read_u16();
208 ASSERT(m_stream.read_u32() == m_stream.index());
246 f32 acceleration = 0.0f;
247 f32 softSpeedLimit = 0.0f;
250 f32 raceCompletion = 0.0f;
251 u16 checkpointId = 0;
255 fullRot.read(m_stream);
257 if (m_versionMinor >= Changelog::AddedExtVel) {
258 extVel.
read(m_stream);
261 if (m_versionMinor >= Changelog::AddedIntVel) {
262 intVel.
read(m_stream);
265 if (m_versionMinor >= Changelog::AddedSpeed) {
266 speed = m_stream.read_f32();
267 acceleration = m_stream.read_f32();
268 softSpeedLimit = m_stream.read_f32();
271 if (m_versionMinor >= Changelog::AddedRotation) {
272 mainRot.read(m_stream);
273 angVel2.
read(m_stream);
276 if (m_versionMinor >= Changelog::AddedCheckpoints) {
277 raceCompletion = m_stream.read_f32();
278 checkpointId = m_stream.read_u16();
279 jugemId = m_stream.read_u8();
285 data.fullRot = fullRot;
286 data.extVel = extVel;
287 data.intVel = intVel;
289 data.acceleration = acceleration;
290 data.softSpeedLimit = softSpeedLimit;
291 data.mainRot = mainRot;
292 data.angVel2 = angVel2;
293 data.raceCompletion = raceCompletion;
294 data.checkpointId = checkpointId;
295 data.jugemId = jugemId;
302 auto *
object = Kart::KartObjectManager::Instance()->object(0);
303 const auto &pos =
object->pos();
304 const auto &fullRot =
object->fullRot();
305 const auto &extVel =
object->extVel();
306 const auto &intVel =
object->intVel();
307 f32 speed =
object->speed();
308 f32 acceleration =
object->acceleration();
309 f32 softSpeedLimit =
object->softSpeedLimit();
310 const auto &mainRot =
object->mainRot();
311 const auto &angVel2 =
object->angVel2();
313 const auto &player = System::RaceManager::Instance()->player();
314 f32 raceCompletion = player.raceCompletion();
315 u16 checkpointId = player.checkpointId();
316 u8 jugemId = player.jugemId();
318 switch (m_versionMinor) {
319 case Changelog::AddedCheckpoints:
320 checkDesync(data.raceCompletion, raceCompletion,
"raceCompletion");
321 checkDesync(data.checkpointId, checkpointId,
"checkpointId");
322 checkDesync(data.jugemId, jugemId,
"jugemId");
324 case Changelog::AddedRotation:
325 checkDesync(data.mainRot, mainRot,
"mainRot");
326 checkDesync(data.angVel2, angVel2,
"angVel2");
328 case Changelog::AddedSpeed:
329 checkDesync(data.speed, speed,
"speed");
330 checkDesync(data.acceleration, acceleration,
"acceleration");
331 checkDesync(data.softSpeedLimit, softSpeedLimit,
"softSpeedLimit");
333 case Changelog::AddedIntVel:
334 checkDesync(data.intVel, intVel,
"intVel");
336 case Changelog::AddedExtVel:
337 checkDesync(data.extVel, extVel,
"extVel");
340 checkDesync(data.pos, pos,
"pos");
341 checkDesync(data.fullRot, fullRot,
"fullRot");