mirror of
https://github.com/UberGames/rpgxEF.git
synced 2024-11-10 07:11:34 +00:00
6382664a58
- lua function update (partial) - lua documentation update - config.ld for LDoc (documentation creation tool for Lua)
215 lines
4.2 KiB
C
215 lines
4.2 KiB
C
// lua library for trace_t
|
|
|
|
#include "g_lua.h"
|
|
|
|
#ifdef G_LUA
|
|
|
|
/***
|
|
A module allowing to do traces. Documentation under work.
|
|
@module trace
|
|
*/
|
|
|
|
static int Trace_GC(lua_State * L)
|
|
{
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int Trace_ToString(lua_State * L)
|
|
{
|
|
ltrace_t *ltrace;
|
|
trace_t *trace;
|
|
char buf[MAX_STRING_CHARS];
|
|
|
|
ltrace = Lua_GetTrace(L, 1);
|
|
trace = ltrace->tr;
|
|
Com_sprintf(buf, sizeof(buf), "trace: entity=%i fraction=%f allsolid=%i contents=%i endpos=\"%s\" startsolid=%i surfaceFlags=%i pointer=%p\n",
|
|
trace->entityNum,
|
|
trace->fraction,
|
|
trace->allsolid,
|
|
trace->contents,
|
|
vtos(trace->endpos),
|
|
trace->startsolid,
|
|
trace->surfaceFlags,
|
|
trace);
|
|
lua_pushstring(L, buf);
|
|
|
|
return 1;
|
|
}
|
|
|
|
// trace.DoTrace(vector start, vector mins, vector maxs, vector end, float passEnt, float contents)
|
|
// Does a trace.
|
|
// * start start-point of trace
|
|
// * mins minimal distance of trace (nil if unused)
|
|
// * maxs maximal distance of trace (nil if unused)
|
|
// * end end-point of trace
|
|
// * passEnt Number of ents to pass
|
|
// * contents ????????
|
|
static int Trace_DoTrace(lua_State *L) {
|
|
trace_t *tr;
|
|
vec_t *start, *end, *mins = NULL, *maxs = NULL;
|
|
int passEnt, contents;
|
|
|
|
start = Lua_GetVector(L, 1);
|
|
if(!lua_isnil(L, 2))
|
|
mins = Lua_GetVector(L, 2);
|
|
if(!lua_isnil(L, 3))
|
|
maxs = Lua_GetVector(L, 3);
|
|
end = Lua_GetVector(L, 4);
|
|
passEnt = (int)luaL_checknumber(L, 5);
|
|
contents = (int) luaL_checknumber(L, 6);
|
|
|
|
tr = (trace_t *)malloc(sizeof(trace_t));
|
|
if(!tr) {
|
|
LUA_DEBUG("Trace_DoTrace - was unable to allocate a trace_t.\n");
|
|
lua_pushnil(L);
|
|
return 1;
|
|
}
|
|
|
|
trap_Trace(tr, start, mins, maxs, end, passEnt, contents);
|
|
|
|
Lua_PushTrace(L, tr);
|
|
|
|
return 1;
|
|
}
|
|
|
|
// trace.FreeTrace(trace tr)
|
|
// Ends trace-process for tr.
|
|
static int Trace_FreeTrace(lua_State *L) {
|
|
ltrace_t *tr;
|
|
|
|
tr = Lua_GetTrace(L, 1);
|
|
if(tr && tr->tr)
|
|
free(tr->tr);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int Trace_GetAllsolid(lua_State *L) {
|
|
ltrace_t *tr;
|
|
|
|
tr = Lua_GetTrace(L, 1);
|
|
lua_pushboolean(L, (int)tr->tr->allsolid);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int Trace_GetStartsolid(lua_State *L) {
|
|
ltrace_t *tr;
|
|
|
|
tr = Lua_GetTrace(L, 1);
|
|
lua_pushboolean(L, (int)tr->tr->startsolid);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int Trace_GetFraction(lua_State *L) {
|
|
ltrace_t *tr;
|
|
|
|
tr = Lua_GetTrace(L, 1);
|
|
lua_pushnumber(L, tr->tr->fraction);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int Trace_GetEndpos(lua_State *L) {
|
|
ltrace_t *tr;
|
|
|
|
tr = Lua_GetTrace(L, 1);
|
|
Lua_PushVector(L, tr->tr->endpos);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int Trace_GetSurfaceFlags(lua_State *L) {
|
|
ltrace_t *tr;
|
|
|
|
tr = Lua_GetTrace(L, 1);
|
|
lua_pushnumber(L, tr->tr->surfaceFlags);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int Trace_GetContents(lua_State *L) {
|
|
ltrace_t *tr;
|
|
|
|
tr = Lua_GetTrace(L, 1);
|
|
lua_pushnumber(L, tr->tr->contents);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int Trace_GetEntityNum(lua_State *L) {
|
|
ltrace_t *tr;
|
|
|
|
tr = Lua_GetTrace(L, 1);
|
|
lua_pushnumber(L, tr->tr->entityNum);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int Trace_GetEntity(lua_State *L) {
|
|
ltrace_t *tr;
|
|
gentity_t *ent;
|
|
|
|
tr = Lua_GetTrace(L, 1);
|
|
ent = &g_entities[tr->tr->entityNum];
|
|
Lua_PushEntity(L, ent);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static const luaL_Reg lib_trace[] = {
|
|
{"DoTrace", Trace_DoTrace},
|
|
{"FreeTrace", Trace_FreeTrace},
|
|
{NULL, NULL}
|
|
};
|
|
|
|
static const luaL_Reg Trace_meta[] = {
|
|
{"__gc", Trace_GC},
|
|
{"__tostring", Trace_ToString},
|
|
{"GetAllsolid", Trace_GetAllsolid},
|
|
{"GetStartsolid", Trace_GetStartsolid},
|
|
{"GetFraction", Trace_GetFraction},
|
|
{"GetEndpos", Trace_GetEndpos},
|
|
{"GetSurfaceFlags", Trace_GetSurfaceFlags},
|
|
{"GetContents", Trace_GetContents},
|
|
{"GetEntityNum", Trace_GetEntityNum},
|
|
{"GetEntity", Trace_GetEntity},
|
|
{NULL, NULL}
|
|
};
|
|
|
|
int Luaopen_Trace(lua_State *L) {
|
|
luaL_newmetatable(L, "game.trace");
|
|
|
|
lua_pushstring(L, "__index");
|
|
lua_pushvalue(L, -2);
|
|
lua_settable(L, -3);
|
|
|
|
luaL_register(L, NULL, Trace_meta);
|
|
luaL_register(L, "trace", lib_trace);
|
|
|
|
return 1;
|
|
}
|
|
|
|
void Lua_PushTrace(lua_State * L, trace_t * tr)
|
|
{
|
|
ltrace_t *trace;
|
|
|
|
trace = (ltrace_t *)lua_newuserdata(L, sizeof(ltrace_t));
|
|
|
|
luaL_getmetatable(L, "game.trace");
|
|
lua_setmetatable(L, -2);
|
|
|
|
trace->tr = tr;
|
|
}
|
|
|
|
ltrace_t *Lua_GetTrace(lua_State * L, int argNum)
|
|
{
|
|
void *ud;
|
|
|
|
ud = luaL_checkudata(L, argNum, "game.trace");
|
|
luaL_argcheck(L, ud != NULL, argNum, "\'trace\' expected");
|
|
return (ltrace_t *) ud;
|
|
}
|
|
#endif
|