mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[ruamoko] Add builtins for handling models
Just "loading" and "unloading" (both really just hints due to the caching system), and an internal function for converting a handle to a model pointer, but it let me test IQM loading and unloading in Vulkan.
This commit is contained in:
parent
ecf33fe8e3
commit
3de10f32c7
4 changed files with 183 additions and 0 deletions
|
@ -62,6 +62,8 @@ struct plitem_s *Plist_GetItem (struct progs_s *pr, int handle);
|
|||
|
||||
void RUA_Input_Init (struct progs_s *pr, int secure);
|
||||
void RUA_Mersenne_Init (struct progs_s *pr, int secure);
|
||||
void RUA_Model_Init (struct progs_s *pr, int secure);
|
||||
struct model_s *Model_GetModel (progs_t *pr, int handle);
|
||||
void RUA_Scene_Init (struct progs_s *pr, int secure);
|
||||
|
||||
#endif//__rua_internal_h
|
||||
|
|
|
@ -38,4 +38,5 @@ libs_ruamoko_libQFruamoko_client_la_SOURCES= \
|
|||
libs/ruamoko/rua_game_init.c \
|
||||
libs/ruamoko/rua_input.c \
|
||||
libs/ruamoko/rua_mersenne.c \
|
||||
libs/ruamoko/rua_model.c \
|
||||
libs/ruamoko/rua_scene.c
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
static void (*init_funcs[])(progs_t *, int) = {
|
||||
RUA_Input_Init,
|
||||
RUA_Mersenne_Init,
|
||||
RUA_Model_Init,
|
||||
RUA_Scene_Init,
|
||||
};
|
||||
|
||||
|
|
179
libs/ruamoko/rua_model.c
Normal file
179
libs/ruamoko/rua_model.c
Normal file
|
@ -0,0 +1,179 @@
|
|||
/*
|
||||
bi_model.c
|
||||
|
||||
Ruamkoko model builtins
|
||||
|
||||
Copyright (C) 2022 Bill Currie <bill@taniwha.org>
|
||||
|
||||
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/model.h"
|
||||
#include "QF/progs.h"
|
||||
|
||||
#include "rua_internal.h"
|
||||
|
||||
typedef struct rua_model_s {
|
||||
struct rua_model_s *next;
|
||||
struct rua_model_s **prev;
|
||||
model_t *model;
|
||||
} rua_model_t;
|
||||
|
||||
typedef struct {
|
||||
PR_RESMAP (rua_model_t) model_map;
|
||||
rua_model_t *handles;
|
||||
progs_t *pr;
|
||||
} rua_model_resources_t;
|
||||
|
||||
static rua_model_t *
|
||||
rua_model_handle_new (rua_model_resources_t *res)
|
||||
{
|
||||
return PR_RESNEW (res->model_map);
|
||||
}
|
||||
|
||||
static void
|
||||
rua_model_handle_free (rua_model_resources_t *res, rua_model_t *handle)
|
||||
{
|
||||
PR_RESFREE (res->model_map, handle);
|
||||
}
|
||||
|
||||
static void
|
||||
rua_model_handle_reset (rua_model_resources_t *res)
|
||||
{
|
||||
PR_RESRESET (res->model_map);
|
||||
}
|
||||
|
||||
static inline rua_model_t * __attribute__((pure))
|
||||
rua__model_handle_get (rua_model_resources_t *res, int index, const char *name)
|
||||
{
|
||||
rua_model_t *handle = 0;
|
||||
|
||||
handle = PR_RESGET(res->model_map, index);
|
||||
if (!handle) {
|
||||
PR_RunError (res->pr, "invalid model handle passed to %s", name + 3);
|
||||
}
|
||||
return handle;
|
||||
}
|
||||
#define rua_model_handle_get(res, index) \
|
||||
rua__model_handle_get (res, index, __FUNCTION__)
|
||||
|
||||
static inline int __attribute__((pure))
|
||||
rua_model_handle_index (rua_model_resources_t *res, rua_model_t *handle)
|
||||
{
|
||||
return PR_RESINDEX(res->model_map, handle);
|
||||
}
|
||||
|
||||
static void
|
||||
bi_rua_model_clear (progs_t *pr, void *_res)
|
||||
{
|
||||
rua_model_resources_t *res = (rua_model_resources_t *) _res;
|
||||
rua_model_t *handle;
|
||||
|
||||
for (handle = res->handles; handle; handle = handle->next)
|
||||
Mod_UnloadModel (handle->model);
|
||||
res->handles = 0;
|
||||
rua_model_handle_reset (res);
|
||||
}
|
||||
|
||||
static int
|
||||
alloc_handle (rua_model_resources_t *res, model_t *model)
|
||||
{
|
||||
rua_model_t *handle = rua_model_handle_new (res);
|
||||
|
||||
if (!handle)
|
||||
return 0;
|
||||
|
||||
handle->next = res->handles;
|
||||
handle->prev = &res->handles;
|
||||
if (res->handles)
|
||||
res->handles->prev = &handle->next;
|
||||
res->handles = handle;
|
||||
handle->model = model;
|
||||
return rua_model_handle_index (res, handle);
|
||||
}
|
||||
|
||||
static void
|
||||
bi_Model_Load (progs_t *pr, void *_res)
|
||||
{
|
||||
__auto_type res = (rua_model_resources_t *) _res;
|
||||
const char *path = P_GSTRING (pr, 0);
|
||||
model_t *model;
|
||||
|
||||
R_INT (pr) = 0;
|
||||
if (!(model = Mod_ForName (path, 0)))
|
||||
return;
|
||||
if (!(R_INT (pr) = alloc_handle (res, model)))
|
||||
Mod_UnloadModel (model);
|
||||
}
|
||||
|
||||
model_t *
|
||||
Model_GetModel (progs_t *pr, int handle)
|
||||
{
|
||||
rua_model_resources_t *res = PR_Resources_Find (pr, "Model");
|
||||
rua_model_t *h = rua_model_handle_get (res, handle);
|
||||
|
||||
return h->model;
|
||||
}
|
||||
|
||||
static void
|
||||
bi_Model_Unload (progs_t *pr, void *_res)
|
||||
{
|
||||
__auto_type res = (rua_model_resources_t *) _res;
|
||||
int handle = P_INT (pr, 0);
|
||||
rua_model_t *h = rua_model_handle_get (res, handle);
|
||||
|
||||
if (!h)
|
||||
PR_RunError (pr, "invalid model handle passed to Qclose");
|
||||
Mod_UnloadModel (h->model);
|
||||
*h->prev = h->next;
|
||||
if (h->next)
|
||||
h->next->prev = h->prev;
|
||||
rua_model_handle_free (res, h);
|
||||
}
|
||||
|
||||
#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(Model_Load, 1, p(string)),
|
||||
bi(Model_Unload, 1, p(ptr)),
|
||||
{0}
|
||||
};
|
||||
|
||||
void
|
||||
RUA_Model_Init (progs_t *pr, int secure)
|
||||
{
|
||||
rua_model_resources_t *res = calloc (sizeof (rua_model_resources_t), 1);
|
||||
res->pr = pr;
|
||||
|
||||
PR_Resources_Register (pr, "Model", res, bi_rua_model_clear);
|
||||
PR_RegisterBuiltins (pr, builtins, res);
|
||||
}
|
Loading…
Reference in a new issue