quakeforge/libs/gib/bi_gib.c
Bill Currie 698d27c996 [gamecode] Save all param pointers with PR_SaveParams
Builtins calling other functions that call back into progs can get their
parameter pointers messed up resulting in all sorts of errors. Thus wrap
all callbacks to progs in PR_SaveParams/PR_RestoreParams.

Also, ditch PR_RESET_PARAMS in favor of using PR_SetupParams and move
setting pr_argc into PR_SetupParams.
2024-09-05 00:00:44 +09:00

216 lines
5 KiB
C

/*
bi_gib.c
GIB <-> Ruamoko interface
Copyright (C) 2003 Brian Koropoff
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdlib.h>
#ifdef HAVE_STRING_H
# include <string.h>
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#include "QF/cmd.h"
#include "QF/csqc.h"
#include "QF/dstring.h"
#include "QF/hash.h"
#include "QF/progs.h"
#include "QF/sys.h"
#include "QF/gib.h"
#include "gib_builtin.h"
typedef struct bi_gib_builtin_s {
struct bi_gib_builtin_s *next;
gib_builtin_t *builtin;
progs_t *pr;
pr_func_t func;
} bi_gib_builtin_t;
typedef struct bi_gib_resources_s {
bi_gib_builtin_t *builtins;
} bi_gib_resources_t;
static hashtab_t *bi_gib_builtins;
static const char *
bi_gib_builtin_get_key (const void *c, void *unused)
{
return ((bi_gib_builtin_t *)c)->builtin->name;
}
static void
bi_gib_builtin_free (void *_c, void *unused)
{
bi_gib_builtin_t *c = (bi_gib_builtin_t *) _c;
free (c);
}
static void
bi_gib_builtin_f (void)
{
bi_gib_builtin_t *builtin = Hash_Find (bi_gib_builtins, GIB_Argv(0));
pr_type_t *pr_list;
int i;
if (!builtin)
Sys_Error ("bi_gib_builtin_f: unexpected call %s", GIB_Argv (0));
PR_PushFrame (builtin->pr);
pr_list = PR_Zone_Malloc (builtin->pr, GIB_Argc() * sizeof (pr_type_t));
for (i = 0; i < GIB_Argc(); i++)
PR_PTR (string, &pr_list[i]) = PR_SetTempString (builtin->pr,
GIB_Argv(i));
auto params = PR_SaveParams (builtin->pr);
PR_SetupParams (builtin->pr, 2, 1);
P_INT (builtin->pr, 0) = GIB_Argc();
P_INT (builtin->pr, 1) = PR_SetPointer (builtin->pr, pr_list);
PR_ExecuteProgram (builtin->pr, builtin->func);
PR_RestoreParams (builtin->pr, params);
PR_PopFrame (builtin->pr);
PR_Zone_Free (builtin->pr, pr_list);
}
static void
bi_gib_builtin_clear (progs_t *progs, void *_res)
{
bi_gib_resources_t *res = (bi_gib_resources_t *) _res;
bi_gib_builtin_t *cur;
while ((cur = res->builtins)) {
void *del = Hash_Del (bi_gib_builtins, cur->builtin->name);
GIB_Builtin_Remove (cur->builtin->name);
res->builtins = cur->next;
Hash_Free (bi_gib_builtins, del);
}
}
static void
bi_gib_builtin_destroy (progs_t *progs, void *_res)
{
bi_gib_resources_t *res = (bi_gib_resources_t *) _res;
Hash_DelTable (bi_gib_builtins);
free (res);
}
static void
bi_GIB_Builtin_Add (progs_t *pr, void *_res)
{
bi_gib_resources_t *res = _res;
bi_gib_builtin_t *builtin;
const char *name = P_GSTRING (pr, 0);
pr_func_t func = P_FUNCTION (pr, 1);
if (GIB_Builtin_Exists (name)) {
R_INT (pr) = 0;
return;
}
builtin = malloc (sizeof (bi_gib_builtin_t));
GIB_Builtin_Add (name, bi_gib_builtin_f);
builtin->builtin = GIB_Builtin_Find (name);
builtin->pr = pr;
builtin->func = func;
builtin->next = res->builtins;
res->builtins = builtin;
Hash_Add (bi_gib_builtins, builtin);
R_INT (pr) = 1;
}
static void
bi_GIB_Return (progs_t *pr, void *_res)
{
const char *str = P_GSTRING(pr, 0);
if (str)
GIB_Return (str);
R_INT (pr) = GIB_CanReturn () ? 1 : 0;
}
static void
bi_GIB_Handle_New (progs_t *pr, void *_res)
{
//long *qcptr = malloc (sizeof (long));
//*qcptr = P_POINTER (pr, 0);
//R_INT (pr) = GIB_Handle_New (qcptr);
}
static void
bi_GIB_Handle_Free (progs_t *pr, void *_res)
{
//unsigned long int hand = P_INT (pr, 0);
//long *qcptr = GIB_Handle_Get (hand);
//free (qcptr);
//GIB_Handle_Free (hand);
}
static void
bi_GIB_Handle_Get (progs_t *pr, void *_res)
{
//long *hand = GIB_Handle_Get (P_INT (pr, 0));
//if (hand)
// R_INT (pr) = *hand;
//else
// R_INT (pr) = 0;
}
#define bi(x,np,params...) {#x, bi_##x, -1, np, {params}}
#define p(type) PR_PARAM(type)
#define P(a, s) { .size = (s), .alignment = BITOP_LOG2 (a), }
static builtin_t builtins[] = {
bi(GIB_Builtin_Add, 2, p(string), p(func)),
bi(GIB_Return, 1, p(string)),
bi(GIB_Handle_New, 0),//FIXME
bi(GIB_Handle_Free, 0),//FIXME
bi(GIB_Handle_Get, 0),//FIXME
{0}
};
VISIBLE void
GIB_Progs_Init (progs_t *pr)
{
bi_gib_resources_t *res = malloc (sizeof (bi_gib_resources_t));
res->builtins = 0;
if (bi_gib_builtins) {
Sys_Error ("GIB_Progs_Init: only one progs VM supported FIXME");
}
bi_gib_builtins = Hash_NewTable (1021, bi_gib_builtin_get_key,
bi_gib_builtin_free, 0, pr->hashctx);
PR_Resources_Register (pr, "GIB", res, bi_gib_builtin_clear,
bi_gib_builtin_destroy);
PR_RegisterBuiltins (pr, builtins, res);
}