Merge pull request #415 from wheremyfoodat/wheremyfoodat-patch-3

Bind more Lua functions
This commit is contained in:
wheremyfoodat 2024-02-22 15:00:11 +00:00 committed by GitHub
commit de980f997b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -144,6 +144,21 @@ static int getAppIDThunk(lua_State* L) {
return 3;
}
static int pauseThunk(lua_State* L) {
LuaManager::g_emulator->pause();
return 0;
}
static int resumeThunk(lua_State* L) {
LuaManager::g_emulator->resume();
return 0;
}
static int resetThunk(lua_State* L) {
LuaManager::g_emulator->reset(Emulator::ReloadOption::Reload);
return 0;
}
// clang-format off
static constexpr luaL_Reg functions[] = {
{ "__read8", read8Thunk },
@ -155,6 +170,9 @@ static constexpr luaL_Reg functions[] = {
{ "__write32", write32Thunk },
{ "__write64", write64Thunk },
{ "__getAppID", getAppIDThunk },
{ "__pause", pauseThunk},
{ "__resume", resumeThunk},
{ "__reset", resetThunk},
{ nullptr, nullptr },
};
// clang-format on
@ -179,6 +197,10 @@ void LuaManager::initializeThunks() {
return result, id
end,
pause = function() GLOBALS.__pause() end,
resume = function() GLOBALS.__resume() end,
reset = function() GLOBALS.__reset() end,
Frame = __Frame,
}
)";
@ -203,4 +225,4 @@ void LuaManager::initializeThunks() {
}
}
#endif
#endif