Browse Source
```lua
local render = devilutionx.render
local function drawGreet ()
render.string("Hello from " .. _VERSION, 10, 40)
end
Events.OnGameDrawComplete.Add(drawGreet)
```
pull/6748/head
12 changed files with 142 additions and 80 deletions
@ -0,0 +1,93 @@ |
|||||||
|
#include "lua/modules/log.hpp" |
||||||
|
|
||||||
|
#include <SDL.h> |
||||||
|
|
||||||
|
#include <fmt/args.h> |
||||||
|
#include <fmt/format.h> |
||||||
|
#include <sol/sol.hpp> |
||||||
|
#include <sol/utility/to_string.hpp> |
||||||
|
|
||||||
|
#include "utils/log.hpp" |
||||||
|
|
||||||
|
#ifdef USE_SDL1 |
||||||
|
#include "utils/sdl2_to_1_2_backports.h" |
||||||
|
#endif |
||||||
|
|
||||||
|
namespace devilution { |
||||||
|
|
||||||
|
namespace { |
||||||
|
|
||||||
|
void LuaLogMessage(LogPriority priority, std::string_view fmt, sol::variadic_args args) |
||||||
|
{ |
||||||
|
std::string formatted; |
||||||
|
FMT_TRY |
||||||
|
{ |
||||||
|
fmt::dynamic_format_arg_store<fmt::format_context> store; |
||||||
|
for (const sol::stack_proxy arg : args) { |
||||||
|
switch (arg.get_type()) { |
||||||
|
case sol::type::boolean: |
||||||
|
store.push_back(arg.as<bool>()); |
||||||
|
break; |
||||||
|
case sol::type::number: |
||||||
|
if (lua_isinteger(arg.lua_state(), arg.stack_index())) { |
||||||
|
store.push_back(lua_tointeger(arg.lua_state(), arg.stack_index())); |
||||||
|
} else { |
||||||
|
store.push_back(lua_tonumber(arg.lua_state(), arg.stack_index())); |
||||||
|
} |
||||||
|
break; |
||||||
|
case sol::type::string: |
||||||
|
store.push_back(arg.as<std::string>()); |
||||||
|
break; |
||||||
|
default: |
||||||
|
store.push_back(sol::utility::to_string(sol::stack_object(arg))); |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
formatted = fmt::vformat(fmt, store); |
||||||
|
} |
||||||
|
FMT_CATCH(const fmt::format_error &e) |
||||||
|
{ |
||||||
|
#if FMT_EXCEPTIONS |
||||||
|
// e.what() is undefined if exceptions are disabled, so we wrap the whole block
|
||||||
|
// with an `FMT_EXCEPTIONS` check.
|
||||||
|
std::string error = StrCat("Format error, fmt: ", fmt, " error: ", e.what()); |
||||||
|
SDL_LogCritical(SDL_LOG_CATEGORY_APPLICATION, "%s", error.c_str()); |
||||||
|
return; |
||||||
|
#endif |
||||||
|
} |
||||||
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, static_cast<SDL_LogPriority>(priority), "%s", formatted.c_str()); |
||||||
|
} |
||||||
|
|
||||||
|
void LuaLogInfo(std::string_view fmt, sol::variadic_args args) |
||||||
|
{ |
||||||
|
LuaLogMessage(LogPriority::Info, fmt, std::move(args)); |
||||||
|
} |
||||||
|
void LuaLogVerbose(std::string_view fmt, sol::variadic_args args) |
||||||
|
{ |
||||||
|
LuaLogMessage(LogPriority::Verbose, fmt, std::move(args)); |
||||||
|
} |
||||||
|
void LuaLogDebug(std::string_view fmt, sol::variadic_args args) |
||||||
|
{ |
||||||
|
LuaLogMessage(LogPriority::Debug, fmt, std::move(args)); |
||||||
|
} |
||||||
|
void LuaLogWarn(std::string_view fmt, sol::variadic_args args) |
||||||
|
{ |
||||||
|
LuaLogMessage(LogPriority::Warn, fmt, std::move(args)); |
||||||
|
} |
||||||
|
void LuaLogError(std::string_view fmt, sol::variadic_args args) |
||||||
|
{ |
||||||
|
LuaLogMessage(LogPriority::Error, fmt, std::move(args)); |
||||||
|
} |
||||||
|
} // namespace
|
||||||
|
|
||||||
|
sol::table LuaLogModule(sol::state_view &lua) |
||||||
|
{ |
||||||
|
return lua.create_table_with( |
||||||
|
"info", LuaLogInfo, |
||||||
|
"verbose", LuaLogVerbose, |
||||||
|
"debug", LuaLogDebug, |
||||||
|
"warn", LuaLogWarn, |
||||||
|
"error", LuaLogError); |
||||||
|
} |
||||||
|
|
||||||
|
} // namespace devilution
|
||||||
@ -0,0 +1,9 @@ |
|||||||
|
#pragma once |
||||||
|
|
||||||
|
#include <sol/sol.hpp> |
||||||
|
|
||||||
|
namespace devilution { |
||||||
|
|
||||||
|
sol::table LuaLogModule(sol::state_view &lua); |
||||||
|
|
||||||
|
} // namespace devilution
|
||||||
@ -0,0 +1,16 @@ |
|||||||
|
#include "lua/modules/render.hpp" |
||||||
|
|
||||||
|
#include <sol/sol.hpp> |
||||||
|
|
||||||
|
#include "engine/dx.h" |
||||||
|
#include "engine/render/text_render.hpp" |
||||||
|
|
||||||
|
namespace devilution { |
||||||
|
|
||||||
|
sol::table LuaRenderModule(sol::state_view &lua) |
||||||
|
{ |
||||||
|
return lua.create_table_with( |
||||||
|
"string", [](std::string_view text, int x, int y) { DrawString(GlobalBackBuffer(), text, { x, y }); }); |
||||||
|
} |
||||||
|
|
||||||
|
} // namespace devilution
|
||||||
@ -0,0 +1,9 @@ |
|||||||
|
#pragma once |
||||||
|
|
||||||
|
#include <sol/sol.hpp> |
||||||
|
|
||||||
|
namespace devilution { |
||||||
|
|
||||||
|
sol::table LuaRenderModule(sol::state_view &lua); |
||||||
|
|
||||||
|
} // namespace devilution
|
||||||
Loading…
Reference in new issue