mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-05 22:55:41 +13:00
42 lines
1 KiB
C++
42 lines
1 KiB
C++
#pragma once
|
|
#include <array>
|
|
#include <vector>
|
|
|
|
#include "action_replay.hpp"
|
|
#include "helpers.hpp"
|
|
#include "services/hid.hpp"
|
|
|
|
// Forward-declare this since it's just passed and we don't want to include memory.hpp and increase compile time
|
|
class Memory;
|
|
|
|
class Cheats {
|
|
public:
|
|
enum class CheatType {
|
|
None, // Cheat has been removed by the frontend or is invalid
|
|
ActionReplay, // CTRPF cheats
|
|
};
|
|
|
|
struct Cheat {
|
|
bool enabled = true;
|
|
CheatType type = CheatType::ActionReplay;
|
|
std::vector<u32> instructions;
|
|
};
|
|
|
|
Cheats(Memory& mem, HIDService& hid);
|
|
u32 addCheat(const Cheat& cheat);
|
|
u32 addCheat(const u8* data, size_t size);
|
|
void removeCheat(u32 id);
|
|
void enableCheat(u32 id);
|
|
void disableCheat(u32 id);
|
|
void reset();
|
|
void run();
|
|
|
|
void clear();
|
|
bool haveCheats() const { return cheatsLoaded; }
|
|
static constexpr u32 badCheatHandle = 0xFFFFFFFF;
|
|
|
|
private:
|
|
ActionReplay ar; // An ActionReplay cheat machine for executing CTRPF codes
|
|
std::vector<Cheat> cheats;
|
|
bool cheatsLoaded = false;
|
|
};
|