3#include "game/system/TimerManager.hh"
5#include <egg/util/Stream.hh>
11static constexpr size_t RKG_HEADER_SIZE = 0x88;
12static constexpr size_t RKG_UNCOMPRESSED_INPUT_DATA_SECTION_SIZE = 0x2774;
53 void init(
const u8 *rkg);
54 [[nodiscard]]
bool decompress(
const u8 *rkg);
55 [[nodiscard]]
bool isValid(
const u8 *rkg)
const;
57 [[nodiscard]]
const u8 *buffer()
const {
62 [[nodiscard]] T parseAt(
size_t offset)
const {
63 return parse<T>(*
reinterpret_cast<const T *
>(m_buffer + offset));
67 [[nodiscard]]
bool compressed(
const u8 *rkg)
const {
68 return ((*(rkg + 0xC) >> 3) & 1) == 1;
85 [[nodiscard]]
const Timer &lapTimer(
size_t i)
const {
86 ASSERT(i < m_lapTimes.size());
90 [[nodiscard]]
const Timer &raceTimer()
const {
94 [[nodiscard]] Character character()
const {
98 [[nodiscard]] Vehicle vehicle()
const {
102 [[nodiscard]] Course course()
const {
106 [[nodiscard]]
const u8 *inputs()
const {
110 [[nodiscard]]
bool driftIsAuto()
const {
116 std::array<wchar_t, 11> m_userData;
117 std::array<u8, 76> m_miiData;
119 std::array<Timer, 5> m_lapTimes;
121 Character m_character;
A stream of data stored in memory.
Parsed representation of a binary ghost file.
u32 m_type
The type of ghost.
u16 m_inputSize
The size of the decompressed input data section.
u32 m_location
0xFFFF if sharing disabled
bool m_driftIsAuto
True for automatic, false for manual.
void read(EGG::RamStream &stream)
Organizes binary data into members. See RawGhostFile.
u8 m_year
The year, relative to 2000.
The binary data of a ghost saved to a file.
bool isValid(const u8 *rkg) const
High-level handling for generic system operations, such as input reading, race configuration,...
A simple struct to represent a lap or race finish time.