prosperon/source/engine/script.c

170 lines
3.2 KiB
C
Raw Normal View History

2021-11-30 21:29:18 -06:00
#include "script.h"
2022-08-01 13:32:58 -05:00
#include "stdio.h"
2022-08-03 17:00:00 -05:00
#include "log.h"
2022-06-21 12:48:19 -05:00
2023-01-10 14:02:24 -06:00
#include "ffi.h"
#include "font.h"
2022-06-21 12:48:19 -05:00
#include "ftw.h"
2022-12-19 09:12:34 -06:00
#include "stb_ds.h"
2023-01-10 07:13:00 -06:00
duk_context *duk = NULL;
2021-11-30 21:29:18 -06:00
2023-01-10 14:02:24 -06:00
duk_idx_t vect2duk(cpVect v) {
duk_idx_t arr = duk_push_array(duk);
duk_push_number(duk, v.x);
duk_put_prop_index(duk, arr, 0);
duk_push_number(duk, v.y);
duk_put_prop_index(duk, arr, 1);
2022-12-20 19:34:22 -06:00
2023-01-10 14:02:24 -06:00
return arr;
2022-12-28 16:50:54 -06:00
}
2022-12-19 09:12:34 -06:00
static int load_prefab(const char *fpath, const struct stat *sb, int typeflag) {
if (typeflag != FTW_F)
return 0;
if (!strcmp(".prefab", strrchr(fpath, '.')))
2023-01-10 14:02:24 -06:00
script_dofile(fpath);
return 0;
}
2022-08-01 13:32:58 -05:00
void script_init() {
2023-01-10 07:13:00 -06:00
duk = duk_create_heap_default();
2022-08-03 17:00:00 -05:00
ffi_load();
/* Load all prefabs into memory */
2023-01-10 14:02:24 -06:00
script_dofile("scripts/engine.js");
script_dofile("config.js");
//ftw(".", load_prefab, 10);
2021-11-30 21:29:18 -06:00
}
2022-08-01 13:32:58 -05:00
void script_run(const char *script) {
2023-01-10 14:02:24 -06:00
duk_eval_string(duk, script);
2022-02-06 10:14:57 -06:00
}
2022-08-01 13:32:58 -05:00
2022-11-20 15:50:14 -06:00
int script_dofile(const char *file) {
2023-01-10 14:02:24 -06:00
const char *script = slurp_text(file);
if (!script) {
YughError("Can't find file %s.", file);
return 1;
}
2023-01-10 14:02:24 -06:00
duk_push_string(duk, script);
free(script);
if (duk_peval(duk) != 0) {
printf("ERROR: %s\n", duk_safe_to_string(duk, -1));
return 1;
}
duk_pop(duk);
return 0;
2022-08-03 17:00:00 -05:00
}
/* Call the "update" function in the master game script */
2022-08-07 01:43:45 -05:00
void script_update(double dt) {
2023-01-10 14:02:24 -06:00
2022-08-03 17:00:00 -05:00
}
/* Call the "draw" function in master game script */
2022-08-03 17:00:00 -05:00
void script_draw() {
2023-01-10 14:02:24 -06:00
2022-08-03 20:49:56 -05:00
}
/* Call "editor" function in master game script */
2022-08-03 20:49:56 -05:00
void script_editor() {
2023-01-10 14:02:24 -06:00
2022-08-05 14:23:39 -05:00
}
2023-01-10 14:02:24 -06:00
/* Call the given function name */
2022-08-05 14:23:39 -05:00
void script_call(const char *f) {
2023-01-10 14:02:24 -06:00
//s7_call(s7, s7_name_to_value(s7, f), s7_nil(s7));
2022-08-07 01:43:45 -05:00
}
2023-01-10 14:02:24 -06:00
void script_eval_w_env(const char *s, void *env) {
duk_push_heapptr(duk, env);
duk_push_string(duk, s);
2023-01-09 15:35:05 -06:00
2023-01-10 14:02:24 -06:00
if (!duk_has_prop(duk, -2)) {
duk_pop(duk);
return;
}
duk_push_string(duk, s);
duk_call_prop(duk, -2, 0);
duk_pop(duk);
duk_pop(duk);
2022-12-19 18:15:38 -06:00
}
2023-01-10 14:02:24 -06:00
void script_call_sym(void *sym)
2022-08-07 01:43:45 -05:00
{
2023-01-10 14:02:24 -06:00
duk_push_heapptr(duk, sym);
duk_call(duk, 0);
duk_pop(duk);
2022-08-07 01:43:45 -05:00
}
2023-01-10 14:02:24 -06:00
void script_call_sym_args(void *sym, void *args)
2022-12-26 20:57:45 -06:00
{
2023-01-10 14:02:24 -06:00
//s7_call(s7, sym, s7_cons(s7, args, s7_nil(s7)));
}
2022-12-19 09:12:34 -06:00
2022-12-20 19:34:22 -06:00
2023-01-10 14:02:24 -06:00
void **updates;
void **guis;
void **physics;
2022-12-20 19:34:22 -06:00
2023-01-09 07:21:45 -06:00
struct obupdate {
2023-01-10 14:02:24 -06:00
void *obj;
void *sym;
2023-01-09 07:21:45 -06:00
};
struct obupdate *obupdates = NULL;
2023-01-10 14:02:24 -06:00
void register_update(void *sym) {
2022-12-19 09:12:34 -06:00
arrput(updates, sym);
}
2023-01-10 14:02:24 -06:00
void register_obupdate(void *obj, void *sym) {
2023-01-09 07:21:45 -06:00
struct obupdate ob = {obj, sym};
arrput(obupdates, ob);
}
2022-12-22 16:58:06 -06:00
void call_updates(double dt) {
2023-01-10 14:02:24 -06:00
for (int i = 0; i < arrlen(updates); i++) {
duk_push_heapptr(duk, updates[i]);
duk_push_number(duk, dt);
duk_call(duk, 1);
}
2023-01-09 07:21:45 -06:00
for (int i = 0; i < arrlen(obupdates); i++) {
2023-01-10 14:02:24 -06:00
duk_push_heapptr(duk, obupdates[i].sym);
duk_push_heapptr(duk, obupdates[i].obj);
duk_push_number(duk, dt);
duk_call_method(duk, 1);
2023-01-09 07:21:45 -06:00
}
2022-12-20 19:34:22 -06:00
}
2023-01-10 14:02:24 -06:00
void register_gui(void *sym) {
2022-12-20 19:34:22 -06:00
arrput(guis, sym);
}
void call_gui() {
for (int i = 0; i < arrlen(guis); i++)
script_call_sym(guis[i]);
}
2023-01-10 14:02:24 -06:00
void register_physics(void *sym) {
2022-12-20 19:34:22 -06:00
arrput(physics, sym);
}
2022-12-22 16:58:06 -06:00
void call_physics(double dt) {
2023-01-10 14:02:24 -06:00
for (int i = 0; i < arrlen(physics); i++) {
duk_push_pointer(duk, physics[i]);
duk_push_number(duk, dt);
duk_call(duk, 1);
}
2023-01-10 15:41:43 -06:00
}