Luanti 5.16.0-dev
Loading...
Searching...
No Matches
c_internal.h
Go to the documentation of this file.
1// Luanti
2// SPDX-License-Identifier: LGPL-2.1-or-later
3// Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5/******************************************************************************/
6/******************************************************************************/
7/* WARNING!!!! do NOT add this header in any include file or any code file */
8/* not being a modapi file!!!!!!!! */
9/******************************************************************************/
10/******************************************************************************/
11
12#pragma once
13
14#include <string>
15#include <string_view>
16
17extern "C" {
18#include <lua.h>
19#include <lauxlib.h>
20}
21
22#include "config.h"
23
24/*
25 Define our custom indices into the Lua registry table.
26
27 Lua 5.2 and above define the LUA_RIDX_LAST macro. Only numbers above that
28 may be used for custom indices, anything else is reserved.
29
30 Lua 5.1 / LuaJIT do not use any numeric indices (only string indices),
31 so we can use numeric indices freely.
32*/
33enum {
34#ifdef LUA_RIDX_LAST
35 CUSTOM_RIDX_BEFORE_ = LUA_RIDX_LAST,
36#else
38#endif
39
47
48 // The following functions are implemented in Lua because LuaJIT can
49 // trace them and optimize tables/string better than from the C API.
57};
58
59
60// Determine if CUSTOM_RIDX_SCRIPTAPI will hold a light or full userdata
61#if defined(__aarch64__) && USE_LUAJIT
62/* LuaJIT has a 47-bit limit for lightuserdata on this platform and we cannot
63 * assume that the ScriptApi class was allocated at a fitting address. */
64#define INDIRECT_SCRIPTAPI_RIDX 1
65#else
66#define INDIRECT_SCRIPTAPI_RIDX 0
67#endif
68
69// Pushes the error handler onto the stack and returns its index
70#define PUSH_ERROR_HANDLER(L) \
71 (lua_rawgeti((L), LUA_REGISTRYINDEX, CUSTOM_RIDX_ERROR_HANDLER), lua_gettop((L)))
72
73#define PCALL_RESL(L, RES) { \
74 int result_ = (RES); \
75 if (result_ != 0) { \
76 script_error((L), result_, NULL, __FUNCTION__); \
77 } \
78}
79
80// What script_run_callbacks does with the return values of callbacks.
81// Regardless of the mode, if only one callback is defined,
82// its return value is the total return value.
83// Modes only affect the case where 0 or >= 2 callbacks are defined.
85{
86 // Returns the return value of the first callback
87 // Returns nil if list of callbacks is empty
89 // Returns the return value of the last callback
90 // Returns nil if list of callbacks is empty
92 // If any callback returns a false value, the first such is returned
93 // Otherwise, the first callback's return value (trueish) is returned
94 // Returns true if list of callbacks is empty
96 // Like above, but stops calling callbacks (short circuit)
97 // after seeing the first false value
99 // If any callback returns a true value, the first such is returned
100 // Otherwise, the first callback's return value (falseish) is returned
101 // Returns false if list of callbacks is empty
103 // Like above, but stops calling callbacks (short circuit)
104 // after seeing the first true value
106 // Note: "a true value" and "a false value" refer to values that
107 // are converted by readParam<bool> to true or false, respectively.
108};
109
110// Gets a backtrace of the current execution point
111std::string script_get_backtrace(lua_State *L);
112// Wrapper for CFunction calls that converts C++ exceptions to Lua errors
113int script_exception_wrapper(lua_State *L, lua_CFunction f);
114// Acts as the error handler for lua_pcall
115int script_error_handler(lua_State *L);
116// Takes an error from lua_pcall and throws it as a LuaError
117void script_error(lua_State *L, int pcall_result, const char *mod, const char *fxn);
118
119bool script_log_unique(lua_State *L, std::string_view message, std::ostream &log_to,
120 int stack_depth = 1);
121
127
134
144void log_deprecated(lua_State *L, std::string_view message,
145 int stack_depth = 1, bool once = false);
146
147// Safely call string.dump on a function value
148// (does not pop, leaves one value on stack)
149void call_string_dump(lua_State *L, int idx);
DeprecatedHandlingMode
Definition c_internal.h:122
@ Log
Definition c_internal.h:124
@ Ignore
Definition c_internal.h:123
@ Error
Definition c_internal.h:125
std::string script_get_backtrace(lua_State *L)
Definition c_internal.cpp:15
DeprecatedHandlingMode get_deprecated_handling_mode()
Reads deprecated_lua_api_handling in settings, returns cached value.
Definition c_internal.cpp:150
RunCallbacksMode
Definition c_internal.h:85
@ RUN_CALLBACKS_MODE_OR
Definition c_internal.h:102
@ RUN_CALLBACKS_MODE_LAST
Definition c_internal.h:91
@ RUN_CALLBACKS_MODE_AND_SC
Definition c_internal.h:98
@ RUN_CALLBACKS_MODE_FIRST
Definition c_internal.h:88
@ RUN_CALLBACKS_MODE_OR_SC
Definition c_internal.h:105
@ RUN_CALLBACKS_MODE_AND
Definition c_internal.h:95
void log_deprecated(lua_State *L, std::string_view message, int stack_depth=1, bool once=false)
Handles a deprecation warning based on user settings.
Definition c_internal.cpp:169
int script_exception_wrapper(lua_State *L, lua_CFunction f)
Definition c_internal.cpp:25
void script_error(lua_State *L, int pcall_result, const char *mod, const char *fxn)
Definition c_internal.cpp:67
int script_error_handler(lua_State *L)
Definition c_internal.cpp:38
bool script_log_unique(lua_State *L, std::string_view message, std::ostream &log_to, int stack_depth=1)
Definition c_internal.cpp:132
@ CUSTOM_RIDX_ERROR_HANDLER
Definition c_internal.h:44
@ CUSTOM_RIDX_HTTP_API_LUA
Definition c_internal.h:45
@ CUSTOM_RIDX_PUSH_NODE
Definition c_internal.h:55
@ CUSTOM_RIDX_READ_VECTOR
Definition c_internal.h:50
@ CUSTOM_RIDX_READ_NODE
Definition c_internal.h:54
@ CUSTOM_RIDX_METATABLE_MAP
Definition c_internal.h:46
@ CUSTOM_RIDX_PUSH_VECTOR
Definition c_internal.h:51
@ CUSTOM_RIDX_PUSH_VECTOR2
Definition c_internal.h:53
@ CUSTOM_RIDX_CURRENT_MOD_NAME
Definition c_internal.h:43
@ CUSTOM_RIDX_READ_VECTOR2
Definition c_internal.h:52
@ CUSTOM_RIDX_PUSH_MOVERESULT1
Definition c_internal.h:56
@ CUSTOM_RIDX_BEFORE_
Definition c_internal.h:37
@ CUSTOM_RIDX_SCRIPTAPI
Definition c_internal.h:40
@ CUSTOM_RIDX_GLOBALS_BACKUP
Definition c_internal.h:42
void call_string_dump(lua_State *L, int idx)
Definition c_internal.cpp:189
#define idx(x, y)
Definition noise.cpp:495