From b908f3efc187ec6df3e6649333ca78bc7dd0dae3 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Sun, 17 Sep 2023 16:15:54 +0300 Subject: [PATCH] Embed LuaJIT part 1 --- .gitmodules | 3 +++ CMakeLists.txt | 22 ++++++++++++++++++++-- include/emulator.hpp | 2 ++ include/lua.hpp | 32 ++++++++++++++++++++++++++++++++ src/emulator.cpp | 4 ++++ src/lua.cpp | 37 +++++++++++++++++++++++++++++++++++++ third_party/LuaJIT | 1 + 7 files changed, 99 insertions(+), 2 deletions(-) create mode 100644 include/lua.hpp create mode 100644 src/lua.cpp create mode 160000 third_party/LuaJIT diff --git a/.gitmodules b/.gitmodules index af704c7d..c884b29d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -34,3 +34,6 @@ [submodule "third_party/discord-rpc"] path = third_party/discord-rpc url = https://github.com/Panda3DS-emu/discord-rpc +[submodule "third_party/LuaJIT"] + path = third_party/LuaJIT + url = https://github.com/Panda3DS-emu/LuaJIT diff --git a/CMakeLists.txt b/CMakeLists.txt index f3459d1a..a9688fe3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,6 +36,7 @@ option(ENABLE_LTO "Enable link-time optimization" OFF) option(ENABLE_USER_BUILD "Make a user-facing build. These builds have various assertions disabled, LTO, and more" OFF) option(ENABLE_HTTP_SERVER "Enable HTTP server. Used for Discord bot support" OFF) option(ENABLE_DISCORD_RPC "Compile with Discord RPC support (disabled by default)" ON) +option(ENABLE_LUAJIT "Enable scripting with the Lua programming language" ON) include_directories(${PROJECT_SOURCE_DIR}/include/) include_directories(${PROJECT_SOURCE_DIR}/include/kernel) @@ -85,6 +86,18 @@ set(CRYPTOPP_BUILD_TESTING OFF) add_subdirectory(third_party/cryptopp) add_subdirectory(third_party/glad) +if(ENABLE_LUAJIT) + add_subdirectory(third_party/LuaJIT luajit) + include_directories(third_party/LuaJIT/src ${CMAKE_BINARY_DIR}/luajit) + set_target_properties(luajit PROPERTIES EXCLUDE_FROM_ALL 1) + + if(MSVC) + target_compile_definitions(libluajit PRIVATE _CRT_SECURE_NO_WARNINGS) + target_compile_definitions(minilua PRIVATE _CRT_SECURE_NO_WARNINGS) + target_compile_definitions(buildvm PRIVATE _CRT_SECURE_NO_WARNINGS) + endif() +endif() + # Check for x64 if (CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "x86-64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") set(HOST_X64 TRUE) @@ -118,7 +131,7 @@ set(SOURCE_FILES src/main.cpp src/emulator.cpp src/io_file.cpp src/config.cpp src/core/CPU/cpu_dynarmic.cpp src/core/CPU/dynarmic_cycles.cpp src/core/memory.cpp src/renderer.cpp src/core/renderer_null/renderer_null.cpp src/http_server.cpp src/stb_image_write.c src/core/cheats.cpp src/core/action_replay.cpp - src/discord_rpc.cpp + src/discord_rpc.cpp src/lua.cpp ) set(CRYPTO_SOURCE_FILES src/core/crypto/aes_engine.cpp) set(KERNEL_SOURCE_FILES src/core/kernel/kernel.cpp src/core/kernel/resource_limits.cpp @@ -183,7 +196,7 @@ set(HEADER_FILES include/emulator.hpp include/helpers.hpp include/termcolor.hpp include/applets/applet.hpp include/applets/mii_selector.hpp include/math_util.hpp include/services/soc.hpp include/services/news_u.hpp include/applets/software_keyboard.hpp include/applets/applet_manager.hpp include/fs/archive_user_save_data.hpp include/services/amiibo_device.hpp include/services/nfc_types.hpp include/swap.hpp include/services/csnd.hpp include/services/nwm_uds.hpp - include/fs/archive_system_save_data.hpp + include/fs/archive_system_save_data.hpp include/lua.hpp ) cmrc_add_resource_library( @@ -334,6 +347,11 @@ if(ENABLE_DISCORD_RPC AND NOT ANDROID) target_link_libraries(Alber PRIVATE discord-rpc) endif() +if(ENABLE_LUAJIT) + target_compile_definitions(Alber PUBLIC "PANDA3DS_ENABLE_LUA=1") + target_link_libraries(Alber PRIVATE libluajit) +endif() + if(ENABLE_OPENGL) target_compile_definitions(Alber PUBLIC "PANDA3DS_ENABLE_OPENGL=1") target_link_libraries(Alber PRIVATE resources_renderer_gl) diff --git a/include/emulator.hpp b/include/emulator.hpp index 47358a95..25c0ed49 100644 --- a/include/emulator.hpp +++ b/include/emulator.hpp @@ -13,6 +13,7 @@ #include "crypto/aes_engine.hpp" #include "discord_rpc.hpp" #include "io_file.hpp" +#include "lua.hpp" #include "memory.hpp" #ifdef PANDA3DS_ENABLE_HTTP_SERVER @@ -77,6 +78,7 @@ class Emulator { NCSD loadedNCSD; std::optional romPath = std::nullopt; + LuaManager lua; public: // Decides whether to reload or not reload the ROM when resetting. We use enum class over a plain bool for clarity. diff --git a/include/lua.hpp b/include/lua.hpp new file mode 100644 index 00000000..f45a838d --- /dev/null +++ b/include/lua.hpp @@ -0,0 +1,32 @@ +#pragma once +#include "helpers.hpp" + +#ifdef PANDA3DS_ENABLE_LUA +extern "C" { +#include +#include +#include + +#include "luajit.h" +} + +class LuaManager { + lua_State* L = nullptr; + bool initialized = false; + + public: + void close(); + void initialize(); + void loadFile(const char* path); + void reset(); +}; + +#elif // Lua not enabled, Lua manager does nothing +class LuaManager { + public: + void close() {} + void initialize() {} + void loadFile(const char* path) {} + void reset() {} +}; +#endif \ No newline at end of file diff --git a/src/emulator.cpp b/src/emulator.cpp index 40201d31..c5acce76 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -82,11 +82,13 @@ Emulator::Emulator() } } + lua.initialize(); reset(ReloadOption::NoReload); } Emulator::~Emulator() { config.save(std::filesystem::current_path() / "config.toml"); + lua.close(); #ifdef PANDA3DS_ENABLE_DISCORD_RPC discordRpc.stop(); @@ -357,6 +359,8 @@ void Emulator::run() { if (path.extension() == ".amiibo") { loadAmiibo(path); + } else if (path.extension() == ".lua") { + lua.loadFile(droppedDir); } else { loadROM(path); } diff --git a/src/lua.cpp b/src/lua.cpp new file mode 100644 index 00000000..a01cc0b5 --- /dev/null +++ b/src/lua.cpp @@ -0,0 +1,37 @@ +#ifdef PANDA3DS_ENABLE_LUA +#include "lua.hpp" + +void LuaManager::initialize() { + L = luaL_newstate(); // Open Lua + + if (!L) { + printf("Lua initialization failed, continuing without Lua"); + initialized = false; + return; + } + + luaL_openlibs(L); + initialized = true; +} + +void LuaManager::close() { + if (initialized) { + lua_close(L); + initialized = false; + L = nullptr; + } +} + +void LuaManager::loadFile(const char* path) { + int status = luaL_loadfile(L, path); // load Lua script + int ret = lua_pcall(L, 0, 0, 0); // tell Lua to run the script + + if (ret != 0) { + fprintf(stderr, "%s\n", lua_tostring(L, -1)); // tell us what mistake we made + } +} + +void LuaManager::reset() { + // Reset scripts +} +#endif \ No newline at end of file diff --git a/third_party/LuaJIT b/third_party/LuaJIT new file mode 160000 index 00000000..41edf095 --- /dev/null +++ b/third_party/LuaJIT @@ -0,0 +1 @@ +Subproject commit 41edf0959b9504d36dd85f5f16893c004ea7d7ba