Merge pull request #571 from jonian/lr-cheats

Libretro: Add support for cheats
This commit is contained in:
wheremyfoodat 2024-08-03 09:53:18 +00:00 committed by GitHub
commit e9f98bffa9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,6 @@
#include <stdexcept>
#include <cstdio>
#include <regex>
#include <libretro.h>
@ -381,5 +382,24 @@ void* retro_get_memory_data(uint id) {
return nullptr;
}
void retro_cheat_set(uint index, bool enabled, const char* code) {}
void retro_cheat_reset() {}
void retro_cheat_set(uint index, bool enabled, const char* code) {
std::string cheatCode = std::regex_replace(code, std::regex("[^0-9a-fA-F]"), "");
std::vector<u8> bytes;
for (usize i = 0; i < cheatCode.size(); i += 2) {
std::string hex = cheatCode.substr(i, 2);
bytes.push_back((u8)std::stoul(hex, nullptr, 16));
}
u32 id = emulator->getCheats().addCheat(bytes.data(), bytes.size());
if (enabled) {
emulator->getCheats().enableCheat(id);
} else {
emulator->getCheats().disableCheat(id);
}
}
void retro_cheat_reset() {
emulator->getCheats().reset();
}