2021-11-30 21:29:18 -06:00
|
|
|
#ifndef SCRIPT_H
|
|
|
|
#define SCRIPT_H
|
|
|
|
|
2023-01-10 07:13:00 -06:00
|
|
|
#include "duktape.h"
|
2022-12-28 16:50:54 -06:00
|
|
|
#include <chipmunk/chipmunk.h>
|
2022-08-07 01:43:45 -05:00
|
|
|
|
2023-01-10 07:13:00 -06:00
|
|
|
extern duk_context *duk;
|
2022-12-26 20:57:45 -06:00
|
|
|
|
2023-01-11 16:57:34 -06:00
|
|
|
|
|
|
|
struct callee {
|
|
|
|
void *fn;
|
|
|
|
void *obj;
|
|
|
|
};
|
|
|
|
|
2021-11-30 21:29:18 -06:00
|
|
|
void script_init();
|
|
|
|
void script_run(const char *script);
|
2022-11-20 15:50:14 -06:00
|
|
|
int script_dofile(const char *file);
|
2022-08-07 01:43:45 -05:00
|
|
|
void script_update(double dt);
|
2022-08-03 17:00:00 -05:00
|
|
|
void script_draw();
|
2023-02-02 17:52:15 -06:00
|
|
|
|
2023-02-23 17:03:58 -06:00
|
|
|
void duk_run_err();
|
|
|
|
|
2022-08-03 20:49:56 -05:00
|
|
|
void script_editor();
|
2022-08-05 14:23:39 -05:00
|
|
|
void script_call(const char *f);
|
2023-01-10 14:02:24 -06:00
|
|
|
void script_call_sym(void *sym);
|
|
|
|
void script_call_sym_args(void *sym, void *args);
|
2023-01-18 17:15:36 -06:00
|
|
|
void call_callee(struct callee *c);
|
2023-01-10 14:02:24 -06:00
|
|
|
int script_has_sym(void *sym);
|
|
|
|
void script_eval_w_env(const char *s, void *env);
|
2023-02-02 17:52:15 -06:00
|
|
|
|
|
|
|
int script_eval_setup(const char *s, void *env);
|
|
|
|
void script_eval_exec(int argc);
|
|
|
|
|
2023-01-13 13:07:44 -06:00
|
|
|
time_t file_mod_secs(const char *file);
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-11 16:57:34 -06:00
|
|
|
void register_update(struct callee c);
|
2022-12-22 16:58:06 -06:00
|
|
|
void call_updates(double dt);
|
2023-03-17 10:25:35 -05:00
|
|
|
void call_debugs();
|
2022-12-19 09:12:34 -06:00
|
|
|
|
2023-02-28 17:03:28 -06:00
|
|
|
void unregister_gui(struct callee c);
|
2023-01-11 16:57:34 -06:00
|
|
|
void register_gui(struct callee c);
|
2023-03-17 10:25:35 -05:00
|
|
|
void register_debug(struct callee c);
|
2023-01-19 13:06:32 -06:00
|
|
|
void register_nk_gui(struct callee c);
|
2022-12-20 19:34:22 -06:00
|
|
|
void call_gui();
|
2023-01-19 13:06:32 -06:00
|
|
|
void call_nk_gui();
|
2023-02-24 12:11:36 -06:00
|
|
|
void unregister_obj(void *obj);
|
2022-12-20 19:34:22 -06:00
|
|
|
|
2023-01-11 16:57:34 -06:00
|
|
|
void register_physics(struct callee c);
|
2022-12-22 16:58:06 -06:00
|
|
|
void call_physics(double dt);
|
2022-12-20 19:34:22 -06:00
|
|
|
|
2022-02-06 10:14:57 -06:00
|
|
|
#endif
|