2021-09-09 21:21:51 -04:00
|
|
|
#include <std_include.hpp>
|
|
|
|
#include "loader/component_loader.hpp"
|
|
|
|
|
|
|
|
#include "game/game.hpp"
|
|
|
|
#include "game/dvars.hpp"
|
|
|
|
|
|
|
|
#include "chat.hpp"
|
|
|
|
#include "scheduler.hpp"
|
|
|
|
#include "command.hpp"
|
2021-09-19 12:20:15 -04:00
|
|
|
|
|
|
|
#include "game_console.hpp"
|
|
|
|
#include "fps.hpp"
|
|
|
|
#include "branding.hpp"
|
|
|
|
|
2021-09-09 21:21:51 -04:00
|
|
|
#include "ui_scripting.hpp"
|
|
|
|
|
|
|
|
#include "game/ui_scripting/lua/engine.hpp"
|
2021-10-02 12:30:21 -04:00
|
|
|
#include "game/ui_scripting/execution.hpp"
|
2021-09-09 21:21:51 -04:00
|
|
|
|
|
|
|
#include <utils/string.hpp>
|
2021-09-26 19:37:48 -04:00
|
|
|
#include <utils/hook.hpp>
|
2021-09-09 21:21:51 -04:00
|
|
|
|
|
|
|
namespace ui_scripting
|
|
|
|
{
|
2021-09-30 18:55:14 -04:00
|
|
|
std::unordered_map<std::string, game::hks::lua_function> functions;
|
|
|
|
std::unordered_map<std::string, game::hks::lua_function> methods;
|
|
|
|
|
2021-09-26 19:37:48 -04:00
|
|
|
namespace
|
2021-09-09 21:21:51 -04:00
|
|
|
{
|
2021-10-02 12:30:21 -04:00
|
|
|
std::unordered_map<game::hks::cclosure*, sol::protected_function> converted_functions;
|
|
|
|
|
2021-09-26 19:37:48 -04:00
|
|
|
utils::hook::detour hksi_open_lib_hook;
|
|
|
|
utils::hook::detour hksi_lual_error_hook;
|
2021-09-30 18:55:14 -04:00
|
|
|
utils::hook::detour hksi_lual_error_hook2;
|
2021-09-27 20:11:17 -04:00
|
|
|
utils::hook::detour hksi_add_function_hook;
|
2021-09-26 19:37:48 -04:00
|
|
|
utils::hook::detour hks_start_hook;
|
|
|
|
utils::hook::detour hks_shutdown_hook;
|
2021-09-09 21:21:51 -04:00
|
|
|
|
2021-09-26 19:37:48 -04:00
|
|
|
bool error_hook_enabled = false;
|
|
|
|
|
|
|
|
void* hksi_open_lib_stub(game::hks::lua_State* s, const char* libname, game::hks::luaL_Reg* l)
|
2021-09-09 21:21:51 -04:00
|
|
|
{
|
2021-09-28 16:39:27 -04:00
|
|
|
for (auto i = l; i->name; ++i)
|
2021-09-26 19:37:48 -04:00
|
|
|
{
|
2021-09-28 16:39:27 -04:00
|
|
|
if (i->name == "__gc"s)
|
2021-09-26 19:37:48 -04:00
|
|
|
{
|
2021-09-28 16:39:27 -04:00
|
|
|
continue;
|
2021-09-26 19:37:48 -04:00
|
|
|
}
|
2021-09-28 16:39:27 -04:00
|
|
|
|
|
|
|
const auto lower = utils::string::to_lower(i->name);
|
|
|
|
|
|
|
|
libname
|
|
|
|
? functions[lower] = i->function
|
|
|
|
: methods[lower] = i->function;
|
2021-09-26 19:37:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return hksi_open_lib_hook.invoke<void*>(s, libname, l);
|
|
|
|
}
|
|
|
|
|
|
|
|
void hksi_lual_error_stub(game::hks::lua_State* s, const char* fmt, ...)
|
|
|
|
{
|
|
|
|
char va_buffer[0x200] = { 0 };
|
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vsprintf_s(va_buffer, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
const auto formatted = std::string(va_buffer);
|
|
|
|
|
|
|
|
if (!error_hook_enabled)
|
|
|
|
{
|
|
|
|
return hksi_lual_error_hook.invoke<void>(s, formatted.data());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw std::runtime_error(formatted);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void* hks_start_stub(char a1)
|
|
|
|
{
|
|
|
|
const auto _ = gsl::finally([]()
|
2021-09-09 21:21:51 -04:00
|
|
|
{
|
|
|
|
ui_scripting::lua::engine::start();
|
2021-09-26 19:37:48 -04:00
|
|
|
});
|
|
|
|
|
2021-09-28 16:39:27 -04:00
|
|
|
functions = {};
|
|
|
|
methods = {};
|
2021-09-26 19:37:48 -04:00
|
|
|
return hks_start_hook.invoke<void*>(a1);
|
|
|
|
}
|
2021-09-09 21:21:51 -04:00
|
|
|
|
2021-09-26 19:37:48 -04:00
|
|
|
void hks_shutdown_stub()
|
|
|
|
{
|
|
|
|
ui_scripting::lua::engine::stop();
|
|
|
|
hks_shutdown_hook.invoke<void*>();
|
|
|
|
}
|
2021-09-27 20:11:17 -04:00
|
|
|
|
|
|
|
void hksi_add_function_stub(game::hks::lua_State* s, game::hks::lua_function f, int a3, const char* name, int a5)
|
|
|
|
{
|
|
|
|
if (name != "( lua_CFunction )LUI_CoD_LuaCall_UIExpression"s)
|
|
|
|
{
|
|
|
|
std::string name_ = name;
|
2021-09-28 16:39:27 -04:00
|
|
|
const auto sub = utils::string::to_lower(name_.substr(13, name_.size() - 14));
|
|
|
|
functions[sub] = f;
|
2021-09-27 20:11:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
hksi_add_function_hook.invoke<void>(s, f, a3, name, a5);
|
|
|
|
}
|
2021-09-26 19:37:48 -04:00
|
|
|
}
|
|
|
|
|
2021-10-02 12:30:21 -04:00
|
|
|
int main_function_handler(game::hks::lua_State* state)
|
|
|
|
{
|
|
|
|
const auto value = state->m_apistack.base[-1];
|
|
|
|
if (value.t != game::hks::TCFUNCTION)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto closure = value.v.cClosure;
|
|
|
|
if (converted_functions.find(closure) == converted_functions.end())
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto function = converted_functions[closure];
|
|
|
|
const auto count = static_cast<int>(state->m_apistack.top - state->m_apistack.base);
|
|
|
|
const auto arguments = get_return_values(count);
|
|
|
|
const auto s = function.lua_state();
|
|
|
|
|
|
|
|
std::vector<sol::lua_value> converted_args;
|
|
|
|
|
|
|
|
for (const auto& argument : arguments)
|
|
|
|
{
|
|
|
|
converted_args.push_back(lua::convert(s, argument));
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto results = function(sol::as_args(converted_args));
|
|
|
|
|
|
|
|
for (const auto& result : results)
|
|
|
|
{
|
|
|
|
push_value(lua::convert({s, result}));
|
|
|
|
}
|
|
|
|
|
|
|
|
return results.return_count();
|
|
|
|
}
|
|
|
|
|
|
|
|
void add_converted_function(game::hks::cclosure* closure, const sol::protected_function& function)
|
|
|
|
{
|
|
|
|
converted_functions[closure] = function;
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear_converted_functions()
|
|
|
|
{
|
|
|
|
converted_functions.clear();
|
|
|
|
}
|
|
|
|
|
2021-09-26 19:37:48 -04:00
|
|
|
void enable_error_hook()
|
|
|
|
{
|
|
|
|
error_hook_enabled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void disable_error_hook()
|
|
|
|
{
|
|
|
|
error_hook_enabled = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
game::hks::lua_function find_function(const std::string& name)
|
|
|
|
{
|
|
|
|
const auto lower = utils::string::to_lower(name);
|
2021-09-28 16:39:27 -04:00
|
|
|
if (functions.find(lower) == functions.end())
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return functions[lower];
|
|
|
|
}
|
2021-09-26 19:37:48 -04:00
|
|
|
|
2021-09-28 16:39:27 -04:00
|
|
|
game::hks::lua_function find_method(const std::string& name)
|
|
|
|
{
|
|
|
|
const auto lower = utils::string::to_lower(name);
|
|
|
|
if (methods.find(lower) == methods.end())
|
2021-09-26 19:37:48 -04:00
|
|
|
{
|
2021-09-28 16:39:27 -04:00
|
|
|
return 0;
|
2021-09-26 19:37:48 -04:00
|
|
|
}
|
2021-09-28 16:39:27 -04:00
|
|
|
return methods[lower];
|
|
|
|
}
|
2021-09-26 19:37:48 -04:00
|
|
|
|
2021-09-28 16:39:27 -04:00
|
|
|
void notify(const event& e)
|
|
|
|
{
|
|
|
|
lua::engine::notify(e);
|
2021-09-26 19:37:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
class component final : public component_interface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
void post_unpack() override
|
|
|
|
{
|
2021-09-09 21:21:51 -04:00
|
|
|
scheduler::loop([]()
|
|
|
|
{
|
|
|
|
ui_scripting::lua::engine::run_frame();
|
2021-09-19 12:20:15 -04:00
|
|
|
fps::draw();
|
|
|
|
branding::draw();
|
|
|
|
game_console::draw_console();
|
2021-09-09 21:21:51 -04:00
|
|
|
}, scheduler::pipeline::renderer);
|
|
|
|
|
|
|
|
command::add("reloadmenus", []()
|
|
|
|
{
|
|
|
|
scheduler::once([]()
|
|
|
|
{
|
|
|
|
ui_scripting::lua::engine::start();
|
|
|
|
}, scheduler::pipeline::renderer);
|
|
|
|
});
|
|
|
|
|
|
|
|
command::add("openluamenu", [](const command::params& params)
|
|
|
|
{
|
|
|
|
const std::string name = params.get(1);
|
|
|
|
scheduler::once([name]()
|
|
|
|
{
|
2021-09-12 19:30:14 -04:00
|
|
|
ui_scripting::lua::engine::open_menu(name);
|
2021-09-09 21:21:51 -04:00
|
|
|
}, scheduler::pipeline::renderer);
|
|
|
|
});
|
|
|
|
|
|
|
|
command::add("closeluamenu", [](const command::params& params)
|
|
|
|
{
|
|
|
|
const std::string name = params.get(1);
|
|
|
|
scheduler::once([name]()
|
|
|
|
{
|
2021-09-12 19:30:14 -04:00
|
|
|
ui_scripting::lua::engine::close_menu(name);
|
2021-09-09 21:21:51 -04:00
|
|
|
}, scheduler::pipeline::renderer);
|
|
|
|
});
|
2021-09-26 19:37:48 -04:00
|
|
|
|
|
|
|
hks_start_hook.create(game::base_address + 0x328BE0, hks_start_stub);
|
|
|
|
hks_shutdown_hook.create(game::base_address + 0x3203B0, hks_shutdown_stub);
|
|
|
|
hksi_open_lib_hook.create(game::base_address + 0x2E4530, hksi_open_lib_stub);
|
|
|
|
hksi_lual_error_hook.create(game::base_address + 0x2E3E40, hksi_lual_error_stub);
|
2021-09-30 18:55:14 -04:00
|
|
|
hksi_lual_error_hook2.create(game::base_address + 0x2DCB40, hksi_lual_error_stub);
|
2021-09-27 20:11:17 -04:00
|
|
|
hksi_add_function_hook.create(game::base_address + 0x2DB570, hksi_add_function_stub);
|
2021-09-09 21:21:51 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
REGISTER_COMPONENT(ui_scripting::component)
|