2012-11-10 20:59:00 +00:00
|
|
|
/* The Lunatic Interpreter, part of EDuke32. Game-side stuff. */
|
2011-09-20 19:12:24 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <lualib.h>
|
|
|
|
#include <lauxlib.h>
|
|
|
|
|
2012-11-10 20:59:00 +00:00
|
|
|
#include "lunatic_game.h"
|
|
|
|
|
2011-09-20 19:12:24 +00:00
|
|
|
#include "osd.h"
|
2012-11-10 20:59:00 +00:00
|
|
|
#include "gamedef.h" // EventNames[]
|
|
|
|
|
2011-09-20 19:12:24 +00:00
|
|
|
|
2012-11-10 20:59:00 +00:00
|
|
|
L_State g_ElState;
|
2012-10-07 15:25:52 +00:00
|
|
|
|
2011-09-20 19:12:24 +00:00
|
|
|
|
2012-02-09 22:45:18 +00:00
|
|
|
// this serves two purposes:
|
|
|
|
// the values as booleans and the addresses as keys to the Lua registry
|
2012-06-10 18:56:10 +00:00
|
|
|
uint8_t g_elEvents[MAXEVENTS];
|
2012-02-09 22:45:18 +00:00
|
|
|
|
2012-06-10 18:56:15 +00:00
|
|
|
// same thing for actors:
|
|
|
|
uint8_t g_elActors[MAXTILES];
|
|
|
|
|
2012-07-20 21:57:44 +00:00
|
|
|
// for timing events and actors
|
|
|
|
uint32_t g_eventCalls[MAXEVENTS], g_actorCalls[MAXTILES];
|
|
|
|
double g_eventTotalMs[MAXEVENTS], g_actorTotalMs[MAXTILES];
|
|
|
|
|
2012-02-09 22:45:18 +00:00
|
|
|
|
|
|
|
// forward-decls...
|
|
|
|
static int32_t SetEvent_luacf(lua_State *L);
|
2012-06-10 18:56:15 +00:00
|
|
|
static int32_t SetActor_luacf(lua_State *L);
|
2012-02-09 22:45:18 +00:00
|
|
|
|
2012-05-13 16:05:16 +00:00
|
|
|
// in lpeg.o
|
|
|
|
extern int luaopen_lpeg(lua_State *L);
|
2011-09-20 19:12:24 +00:00
|
|
|
|
2012-08-02 10:52:28 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint32_t x, y, z, c;
|
|
|
|
} rng_jkiss_t;
|
|
|
|
|
|
|
|
// See: Good Practice in (Pseudo) Random Number Generation for
|
|
|
|
// Bioinformatics Applications, by David Jones
|
|
|
|
ATTRIBUTE((optimize("O2")))
|
|
|
|
uint32_t rand_jkiss_u32(rng_jkiss_t *s)
|
|
|
|
{
|
|
|
|
uint64_t t;
|
|
|
|
s->x = 314527869 * s->x + 1234567;
|
|
|
|
s->y ^= s->y << 5; s->y ^= s->y >> 7; s->y ^= s->y << 22;
|
|
|
|
t = 4294584393ULL * s->z + s->c; s->c = t >> 32; s->z = t;
|
|
|
|
return s->x + s->y + s->z;
|
|
|
|
}
|
|
|
|
|
|
|
|
ATTRIBUTE((optimize("O2")))
|
|
|
|
double rand_jkiss_dbl(rng_jkiss_t *s)
|
|
|
|
{
|
|
|
|
double x;
|
|
|
|
unsigned int a, b;
|
|
|
|
a = rand_jkiss_u32(s) >> 6; /* Upper 26 bits */
|
|
|
|
b = rand_jkiss_u32(s) >> 5; /* Upper 27 bits */
|
|
|
|
x = (a * 134217728.0 + b) / 9007199254740992.0;
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-20 21:57:44 +00:00
|
|
|
void El_PrintTimes(void)
|
|
|
|
{
|
|
|
|
int32_t i;
|
|
|
|
|
|
|
|
OSD_Printf("{\n {\n");
|
|
|
|
OSD_Printf(" -- event times, [event]={ total calls, total time in ms, time per call in us }\n");
|
|
|
|
for (i=0; i<MAXEVENTS; i++)
|
|
|
|
if (g_eventCalls[i])
|
|
|
|
OSD_Printf(" [%2d]={ %8d, %9.3f, %9.3f },\n",
|
|
|
|
i, g_eventCalls[i], g_eventTotalMs[i],
|
|
|
|
1000*g_eventTotalMs[i]/g_eventCalls[i]);
|
|
|
|
|
|
|
|
OSD_Printf(" },\n\n {\n");
|
|
|
|
OSD_Printf(" -- actor times, [tile]={ total calls, total time in ms, time per call in us }\n");
|
|
|
|
for (i=0; i<MAXTILES; i++)
|
|
|
|
if (g_actorCalls[i])
|
|
|
|
OSD_Printf(" [%5d]={ %8d, %9.3f, %9.3f },\n",
|
|
|
|
i, g_actorCalls[i], g_actorTotalMs[i],
|
|
|
|
1000*g_actorTotalMs[i]/g_actorCalls[i]);
|
|
|
|
OSD_Printf(" },\n}\n");
|
|
|
|
}
|
2012-05-13 16:05:16 +00:00
|
|
|
|
2012-07-13 18:20:35 +00:00
|
|
|
|
2012-11-10 20:59:00 +00:00
|
|
|
////////// STATE CREATION/DESTRUCTIION //////////
|
2011-09-20 19:12:24 +00:00
|
|
|
|
2012-11-10 20:59:00 +00:00
|
|
|
static void El_StateSetup(lua_State *L)
|
|
|
|
{
|
2012-07-13 18:20:35 +00:00
|
|
|
luaL_openlibs(L); // NOTE: we set up the sandbox in defs.ilua
|
|
|
|
luaopen_lpeg(L);
|
|
|
|
lua_pop(L, lua_gettop(L)); // pop off whatever lpeg leaves on the stack
|
|
|
|
|
2012-11-10 20:59:00 +00:00
|
|
|
L_SetupDebugTraceback(L);
|
2011-09-20 19:12:24 +00:00
|
|
|
|
2012-02-09 22:45:18 +00:00
|
|
|
// create misc. global functions in the Lua state
|
2012-07-13 18:20:35 +00:00
|
|
|
lua_pushcfunction(L, SetEvent_luacf);
|
|
|
|
lua_setglobal(L, "gameevent");
|
|
|
|
lua_pushcfunction(L, SetActor_luacf);
|
|
|
|
lua_setglobal(L, "gameactor");
|
|
|
|
|
|
|
|
Bassert(lua_gettop(L)==0);
|
2011-09-20 19:12:24 +00:00
|
|
|
}
|
|
|
|
|
2012-11-10 20:59:00 +00:00
|
|
|
// 0: success, <0: failure
|
|
|
|
int32_t El_CreateState(L_State *estate, const char *name)
|
2011-09-20 19:12:24 +00:00
|
|
|
{
|
2012-11-10 20:59:00 +00:00
|
|
|
return L_CreateState(estate, name, &El_StateSetup);
|
2011-09-20 19:12:24 +00:00
|
|
|
}
|
|
|
|
|
2012-11-10 20:59:00 +00:00
|
|
|
void El_DestroyState(L_State *estate)
|
2011-09-20 19:12:24 +00:00
|
|
|
{
|
2012-11-10 20:59:00 +00:00
|
|
|
L_DestroyState(estate);
|
2012-06-10 18:56:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
////////// Lua_CFunctions //////////
|
|
|
|
|
|
|
|
// gameevent(EVENT_..., lua_function)
|
|
|
|
static int32_t SetEvent_luacf(lua_State *L)
|
|
|
|
{
|
2012-07-13 18:20:35 +00:00
|
|
|
int32_t eventidx;
|
|
|
|
|
|
|
|
if (lua_gettop(L) != 2)
|
|
|
|
luaL_error(L, "gameevent: must pass exactly two arguments");
|
|
|
|
|
|
|
|
eventidx = luaL_checkint(L, 1);
|
2012-06-10 18:56:15 +00:00
|
|
|
|
|
|
|
luaL_argcheck(L, (unsigned)eventidx < MAXEVENTS, 1, "must be an event number (0 .. MAXEVENTS-1)");
|
2012-11-10 20:59:00 +00:00
|
|
|
L_CheckAndRegisterFunction(L, &g_elEvents[eventidx]);
|
2012-02-09 22:45:18 +00:00
|
|
|
g_elEvents[eventidx] = 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-06-10 18:56:15 +00:00
|
|
|
// gameactor(<actortile>, lua_function)
|
|
|
|
static int32_t SetActor_luacf(lua_State *L)
|
2012-02-09 22:45:18 +00:00
|
|
|
{
|
2012-07-13 18:20:35 +00:00
|
|
|
int32_t actortile;
|
|
|
|
|
|
|
|
if (lua_gettop(L) != 2)
|
|
|
|
luaL_error(L, "gameactor: must pass exactly two arguments");
|
|
|
|
|
|
|
|
actortile = luaL_checkint(L, 1);
|
2012-02-09 22:45:18 +00:00
|
|
|
|
2012-06-10 18:56:15 +00:00
|
|
|
luaL_argcheck(L, (unsigned)actortile < MAXTILES, 1, "must be an tile number (0 .. MAXTILES-1)");
|
2012-11-10 20:59:00 +00:00
|
|
|
L_CheckAndRegisterFunction(L, &g_elActors[actortile]);
|
2012-06-10 18:56:15 +00:00
|
|
|
g_elActors[actortile] = 1;
|
2012-02-09 22:45:18 +00:00
|
|
|
|
2012-06-10 18:56:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////
|
|
|
|
|
2012-11-10 20:59:00 +00:00
|
|
|
static int32_t call_regd_function3(lua_State *L, void *keyaddr,
|
|
|
|
int32_t iActor, int32_t iPlayer, int32_t lDist)
|
2012-06-10 18:56:15 +00:00
|
|
|
{
|
|
|
|
int32_t i;
|
2012-02-09 22:45:18 +00:00
|
|
|
|
2012-07-13 18:20:35 +00:00
|
|
|
// get the Lua function from the registry
|
|
|
|
lua_pushlightuserdata(L, keyaddr);
|
|
|
|
lua_gettable(L, LUA_REGISTRYINDEX);
|
2012-06-10 18:56:10 +00:00
|
|
|
|
|
|
|
lua_pushinteger(L, iActor);
|
|
|
|
lua_pushinteger(L, iPlayer);
|
|
|
|
lua_pushinteger(L, lDist);
|
2012-02-09 22:45:18 +00:00
|
|
|
|
|
|
|
// -- call it! --
|
|
|
|
|
2012-06-10 18:56:10 +00:00
|
|
|
i = lua_pcall(L, 3, 0, 0);
|
2012-06-10 18:56:15 +00:00
|
|
|
if (i == LUA_ERRMEM)
|
|
|
|
{
|
2012-07-13 18:20:35 +00:00
|
|
|
lua_pop(L, 1);
|
2012-06-10 18:56:15 +00:00
|
|
|
// XXX: should be more sophisticated. Clean up stack? Do GC?
|
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2012-11-10 20:59:00 +00:00
|
|
|
int32_t El_CallEvent(L_State *estate, int32_t eventidx, int32_t iActor, int32_t iPlayer, int32_t lDist)
|
2012-06-10 18:56:15 +00:00
|
|
|
{
|
|
|
|
// XXX: estate must be the one where the events were registered...
|
|
|
|
// make a global?
|
|
|
|
|
|
|
|
lua_State *const L = estate->L;
|
|
|
|
|
2012-11-10 20:59:00 +00:00
|
|
|
int32_t i = call_regd_function3(L, &g_elEvents[eventidx], iActor, iPlayer, lDist);
|
2012-02-09 22:45:18 +00:00
|
|
|
|
|
|
|
if (i == LUA_ERRRUN)
|
|
|
|
{
|
2012-03-26 05:05:57 +00:00
|
|
|
OSD_Printf("event \"%s\" (state \"%s\") runtime error: %s\n", EventNames[eventidx].text,
|
2012-06-10 18:56:15 +00:00
|
|
|
estate->name, lua_tostring(L, -1)); // get err msg
|
|
|
|
lua_pop(L, 1);
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-10 20:59:00 +00:00
|
|
|
int32_t El_CallActor(L_State *estate, int32_t actortile, int32_t iActor, int32_t iPlayer, int32_t lDist)
|
2012-06-10 18:56:15 +00:00
|
|
|
{
|
|
|
|
lua_State *const L = estate->L;
|
|
|
|
|
2012-11-10 20:59:00 +00:00
|
|
|
int32_t i = call_regd_function3(L, &g_elActors[actortile], iActor, iPlayer, lDist);
|
2012-06-10 18:56:15 +00:00
|
|
|
|
|
|
|
if (i == LUA_ERRRUN)
|
|
|
|
{
|
|
|
|
OSD_Printf("actor %d (sprite %d, state \"%s\") runtime error: %s\n", actortile, iActor,
|
|
|
|
estate->name, lua_tostring(L, -1)); // get err msg
|
2012-06-10 18:56:10 +00:00
|
|
|
lua_pop(L, 1);
|
2012-02-09 22:45:18 +00:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|