1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-04 13:42:55 +01:00

Move three tables to MazeSetTrackACtion.cpp

This commit is contained in:
Michael Steenbeek
2023-01-21 23:25:31 +01:00
committed by GitHub
parent ba39d7be5d
commit e17f09c25c
2 changed files with 27 additions and 26 deletions

View File

@@ -25,6 +25,33 @@
using namespace OpenRCT2::TrackMetaData;
// clang-format off
/** rct2: 0x00993CE9 */
static constexpr const uint8_t Byte993CE9[] = {
0xFF, 0xE0, 0xFF,
14, 0, 1, 2,
6, 2, 4, 5,
9, 10, 6, 8,
12, 13, 14, 10,
};
/** rct2: 0x00993CFC */
static constexpr const uint8_t Byte993CFC[] = {
5, 12, 0xFF, 0xFF,
9, 0, 0xFF, 0xFF,
13, 4, 0xFF, 0xFF,
1, 8, 0xFF, 0xFF,
};
/** rct2: 0x00993D0C */
static constexpr const uint8_t Byte993D0C[] = {
3, 0, 0xFF, 0xFF,
0, 1, 0xFF, 0xFF,
1, 2, 0xFF, 0xFF,
2, 3, 0xFF, 0xFF,
};
// clang-format on
MazeSetTrackAction::MazeSetTrackAction(const CoordsXYZD& location, bool initialPlacement, RideId rideIndex, uint8_t mode)
: _loc(location)
, _initialPlacement(initialPlacement)

View File

@@ -10,32 +10,6 @@
#pragma once
#include "GameAction.h"
// clang-format off
/** rct2: 0x00993CE9 */
static constexpr const uint8_t Byte993CE9[] = {
0xFF, 0xE0, 0xFF,
14, 0, 1, 2,
6, 2, 4, 5,
9, 10, 6, 8,
12, 13, 14, 10,
};
/** rct2: 0x00993CFC */
static constexpr const uint8_t Byte993CFC[] = {
5, 12, 0xFF, 0xFF,
9, 0, 0xFF, 0xFF,
13, 4, 0xFF, 0xFF,
1, 8, 0xFF, 0xFF,
};
/** rct2: 0x00993D0C */
static constexpr const uint8_t Byte993D0C[] = {
3, 0, 0xFF, 0xFF,
0, 1, 0xFF, 0xFF,
1, 2, 0xFF, 0xFF,
2, 3, 0xFF, 0xFF,
};
// clang-format on
class MazeSetTrackAction final : public GameActionBase<GameCommand::SetMazeTrack>
{