2014-03-15 16:59:03 +00:00
|
|
|
// SONIC ROBO BLAST 2
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2012-2014 by John "JTE" Muniz.
|
|
|
|
// Copyright (C) 2012-2014 by Sonic Team Junior.
|
|
|
|
//
|
|
|
|
// This program is free software distributed under the
|
|
|
|
// terms of the GNU General Public License, version 2.
|
|
|
|
// See the 'LICENSE' file for more details.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
/// \file lua_script.h
|
|
|
|
/// \brief Lua scripting basics
|
|
|
|
|
|
|
|
#ifdef HAVE_BLUA
|
|
|
|
|
|
|
|
#include "m_fixed.h"
|
|
|
|
#include "doomtype.h"
|
|
|
|
#include "d_player.h"
|
|
|
|
|
|
|
|
#include "blua/lua.h"
|
|
|
|
#include "blua/lualib.h"
|
|
|
|
#include "blua/lauxlib.h"
|
2015-05-21 03:54:04 +00:00
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
#define lua_optboolean(L, i) (!lua_isnoneornil(L, i) && lua_toboolean(L, i))
|
|
|
|
#define lua_opttrueboolean(L, i) (lua_isnoneornil(L, i) || lua_toboolean(L, i))
|
|
|
|
|
2015-05-21 03:54:04 +00:00
|
|
|
// fixed_t casting
|
|
|
|
// TODO add some distinction between fixed numbers and integer numbers
|
|
|
|
// for at least the purpose of printing and maybe math.
|
|
|
|
#define luaL_checkfixed(L, i) luaL_checkinteger(L, i)
|
|
|
|
#define lua_pushfixed(L, f) lua_pushinteger(L, f)
|
|
|
|
|
|
|
|
// angle_t casting
|
2015-05-21 03:54:04 +00:00
|
|
|
// TODO deal with signedness
|
|
|
|
#define luaL_checkangle(L, i) ((angle_t)luaL_checkinteger(L, i))
|
|
|
|
#define lua_pushangle(L, a) lua_pushinteger(L, a)
|
2015-05-21 03:54:04 +00:00
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
#ifdef _DEBUG
|
|
|
|
void LUA_ClearExtVars(void);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void LUA_LoadLump(UINT16 wad, UINT16 lump);
|
|
|
|
#ifdef LUA_ALLOW_BYTECODE
|
|
|
|
void LUA_DumpFile(const char *filename);
|
|
|
|
#endif
|
|
|
|
fixed_t LUA_EvalMath(const char *word);
|
|
|
|
void LUA_PushUserdata(lua_State *L, void *data, const char *meta);
|
|
|
|
void LUA_InvalidateUserdata(void *data);
|
|
|
|
void LUA_InvalidateLevel(void);
|
|
|
|
void LUA_InvalidateMapthings(void);
|
|
|
|
void LUA_InvalidatePlayer(player_t *player);
|
2015-06-10 17:42:45 +00:00
|
|
|
void LUA_Step(void);
|
2014-03-15 16:59:03 +00:00
|
|
|
void LUA_Archive(void);
|
|
|
|
void LUA_UnArchive(void);
|
|
|
|
void Got_Luacmd(UINT8 **cp, INT32 playernum); // lua_consolelib.c
|
|
|
|
void LUA_CVarChanged(const char *name); // lua_consolelib.c
|
|
|
|
int Lua_optoption(lua_State *L, int narg,
|
|
|
|
const char *def, const char *const lst[]);
|
2016-03-03 22:30:10 +00:00
|
|
|
void LUAh_NetArchiveHook(lua_CFunction archFunc);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2014-04-14 05:14:58 +00:00
|
|
|
// Console wrapper
|
|
|
|
void COM_Lua_f(void);
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
#define LUA_Call(L,a)\
|
|
|
|
{\
|
|
|
|
if (lua_pcall(L, a, 0, 0)) {\
|
|
|
|
CONS_Alert(CONS_WARNING,"%s\n",lua_tostring(L,-1));\
|
|
|
|
lua_pop(L, 1);\
|
|
|
|
}\
|
|
|
|
}
|
|
|
|
|
|
|
|
#define LUA_ErrInvalid(L, type) luaL_error(L, "accessed " type " doesn't exist anymore, please check 'valid' before using " type ".");
|
|
|
|
|
2016-03-09 06:15:26 +00:00
|
|
|
// Deprecation warnings
|
|
|
|
// Shows once upon use. Then doesn't show again.
|
|
|
|
#define LUA_Deprecated(L,this_func,use_instead)\
|
|
|
|
{\
|
|
|
|
static UINT8 seen = 0;\
|
|
|
|
if (!seen) {\
|
|
|
|
seen = 1;\
|
|
|
|
CONS_Alert(CONS_WARNING,"\"%s\" is deprecated and will be removed.\nUse \"%s\" instead.\n", this_func, use_instead);\
|
|
|
|
}\
|
|
|
|
}
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
#endif
|