mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
[ActionReplay] Add HID stuff
This commit is contained in:
parent
d007b2d780
commit
4a45599303
5 changed files with 24 additions and 6 deletions
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
#include "helpers.hpp"
|
#include "helpers.hpp"
|
||||||
#include "memory.hpp"
|
#include "memory.hpp"
|
||||||
|
#include "services/hid.hpp"
|
||||||
|
|
||||||
class ActionReplay {
|
class ActionReplay {
|
||||||
using Cheat = std::vector<u32>; // A cheat is really just a bunch of 64-bit opcodes neatly encoded into 32-bit chunks
|
using Cheat = std::vector<u32>; // A cheat is really just a bunch of 64-bit opcodes neatly encoded into 32-bit chunks
|
||||||
|
@ -24,6 +25,7 @@ class ActionReplay {
|
||||||
// Program counter
|
// Program counter
|
||||||
u32 pc = 0;
|
u32 pc = 0;
|
||||||
Memory& mem;
|
Memory& mem;
|
||||||
|
HIDService& hid;
|
||||||
|
|
||||||
// Has the cheat ended?
|
// Has the cheat ended?
|
||||||
bool running = false;
|
bool running = false;
|
||||||
|
@ -41,8 +43,10 @@ class ActionReplay {
|
||||||
void write16(u32 addr, u16 value);
|
void write16(u32 addr, u16 value);
|
||||||
void write32(u32 addr, u32 value);
|
void write32(u32 addr, u32 value);
|
||||||
|
|
||||||
|
void pushConditionBlock(bool condition);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ActionReplay(Memory& mem);
|
ActionReplay(Memory& mem, HIDService& hid);
|
||||||
void runCheat(const Cheat& cheat);
|
void runCheat(const Cheat& cheat);
|
||||||
void reset();
|
void reset();
|
||||||
};
|
};
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
#include "action_replay.hpp"
|
#include "action_replay.hpp"
|
||||||
#include "helpers.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
|
// Forward-declare this since it's just passed and we don't want to include memory.hpp and increase compile time
|
||||||
class Memory;
|
class Memory;
|
||||||
|
@ -20,12 +21,12 @@ class Cheats {
|
||||||
std::vector<u32> instructions;
|
std::vector<u32> instructions;
|
||||||
};
|
};
|
||||||
|
|
||||||
Cheats(Memory& mem);
|
Cheats(Memory& mem, HIDService& hid);
|
||||||
void addCheat(const Cheat& cheat);
|
void addCheat(const Cheat& cheat);
|
||||||
void reset();
|
void reset();
|
||||||
void run();
|
void run();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
ActionReplay ar; // An ActionReplay cheat machine for executing CTRPF codes
|
ActionReplay ar; // An ActionReplay cheat machine for executing CTRPF codes
|
||||||
std::vector<Cheat> cheats;
|
std::vector<Cheat> cheats;
|
||||||
};
|
};
|
|
@ -1,6 +1,6 @@
|
||||||
#include "action_replay.hpp"
|
#include "action_replay.hpp"
|
||||||
|
|
||||||
ActionReplay::ActionReplay(Memory& mem) : mem(mem) { reset(); }
|
ActionReplay::ActionReplay(Memory& mem, HIDService& hid) : mem(mem), hid(hid) { reset(); }
|
||||||
|
|
||||||
void ActionReplay::reset() {
|
void ActionReplay::reset() {
|
||||||
// Default value of storage regs is 0
|
// Default value of storage regs is 0
|
||||||
|
@ -119,6 +119,9 @@ void ActionReplay::executeDType(const Cheat& cheat, u32 instruction) {
|
||||||
// DD000000 XXXXXXXX - if KEYPAD has value XXXXXXXX execute next block
|
// DD000000 XXXXXXXX - if KEYPAD has value XXXXXXXX execute next block
|
||||||
case 0xDD000000: {
|
case 0xDD000000: {
|
||||||
const u32 mask = cheat[pc++];
|
const u32 mask = cheat[pc++];
|
||||||
|
const u32 buttons = hid.getOldButtons();
|
||||||
|
|
||||||
|
pushConditionBlock((buttons & mask) == mask);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -194,4 +197,14 @@ void ActionReplay::executeDType(const Cheat& cheat, u32 instruction) {
|
||||||
|
|
||||||
default: Helpers::panic("ActionReplay: Unimplemented d-type opcode: %08X", instruction); break;
|
default: Helpers::panic("ActionReplay: Unimplemented d-type opcode: %08X", instruction); break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ActionReplay::pushConditionBlock(bool condition) {
|
||||||
|
if (ifStackIndex >= 32) {
|
||||||
|
Helpers::warn("ActionReplay if stack overflowed");
|
||||||
|
running = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ifStack[ifStackIndex++] = condition;
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
#include "cheats.hpp"
|
#include "cheats.hpp"
|
||||||
|
|
||||||
Cheats::Cheats(Memory& mem) : ar(mem) { reset(); }
|
Cheats::Cheats(Memory& mem, HIDService& hid) : ar(mem, hid) { reset(); }
|
||||||
|
|
||||||
void Cheats::reset() {
|
void Cheats::reset() {
|
||||||
cheats.clear(); // Unload loaded cheats
|
cheats.clear(); // Unload loaded cheats
|
||||||
|
|
|
@ -16,7 +16,7 @@ __declspec(dllexport) DWORD AmdPowerXpressRequestHighPerformance = 1;
|
||||||
|
|
||||||
Emulator::Emulator()
|
Emulator::Emulator()
|
||||||
: config(std::filesystem::current_path() / "config.toml"), kernel(cpu, memory, gpu), cpu(memory, kernel), gpu(memory, config),
|
: config(std::filesystem::current_path() / "config.toml"), kernel(cpu, memory, gpu), cpu(memory, kernel), gpu(memory, config),
|
||||||
memory(cpu.getTicksRef()), cheats(memory) {
|
memory(cpu.getTicksRef()), cheats(memory, kernel.getServiceManager().getHID()) {
|
||||||
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_EVENTS) < 0) {
|
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_EVENTS) < 0) {
|
||||||
Helpers::panic("Failed to initialize SDL2");
|
Helpers::panic("Failed to initialize SDL2");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue