2023-05-06 21:43:40 +00:00
|
|
|
#ifndef JS_raylib_core_GUARD
|
|
|
|
#define JS_raylib_core_GUARD
|
2023-05-04 21:54:03 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <quickjs.h>
|
2023-05-06 21:43:40 +00:00
|
|
|
#include <raylib.h>
|
2023-05-04 21:54:03 +00:00
|
|
|
|
|
|
|
#ifndef countof
|
|
|
|
#define countof(x) (sizeof(x) / sizeof((x)[0]))
|
|
|
|
#endif
|
|
|
|
|
2023-05-06 21:43:40 +00:00
|
|
|
|
|
|
|
static JSValue js_setWindowTitle(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * title = JS_ToCString(ctx, argv[0]);
|
|
|
|
if(title == NULL) return JS_EXCEPTION;
|
|
|
|
SetWindowTitle(title);
|
|
|
|
JS_FreeCString(ctx, title);
|
2023-05-04 21:54:03 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-06 21:43:40 +00:00
|
|
|
static JSValue js_setWindowPosition(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int x;
|
|
|
|
JS_ToInt32(ctx, &x, argv[0]);
|
|
|
|
int y;
|
|
|
|
JS_ToInt32(ctx, &y, argv[1]);
|
|
|
|
SetWindowPosition(x, y);
|
2023-05-05 14:49:33 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-06 21:43:40 +00:00
|
|
|
static JSValue js_beginDrawing(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
BeginDrawing();
|
2023-05-05 14:49:33 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-06 21:43:40 +00:00
|
|
|
static JSValue js_endDrawing(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
EndDrawing();
|
2023-05-04 21:54:03 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_raylib_core_funcs[] = {
|
2023-05-06 21:43:40 +00:00
|
|
|
JS_CFUNC_DEF("setWindowTitle",1,js_setWindowTitle),
|
|
|
|
JS_CFUNC_DEF("setWindowPosition",2,js_setWindowPosition),
|
|
|
|
JS_CFUNC_DEF("beginDrawing",0,js_beginDrawing),
|
|
|
|
JS_CFUNC_DEF("endDrawing",0,js_endDrawing),
|
2023-05-04 21:54:03 +00:00
|
|
|
};
|
|
|
|
|
2023-05-08 14:43:50 +00:00
|
|
|
static int js_raylib_core_init(JSContext * ctx, JSModuleDef * m) {
|
2023-05-06 21:43:40 +00:00
|
|
|
JS_SetModuleExportList(ctx, m,js_raylib_core_funcs,countof(js_raylib_core_funcs));
|
|
|
|
return 0;
|
2023-05-04 21:54:03 +00:00
|
|
|
}
|
|
|
|
|
2023-05-06 21:43:40 +00:00
|
|
|
JSModuleDef * js_init_module_raylib_core(JSContext * ctx, const char * module_name) {
|
2023-05-04 21:54:03 +00:00
|
|
|
JSModuleDef *m;
|
|
|
|
m = JS_NewCModule(ctx, module_name, js_raylib_core_init);
|
2023-05-06 21:43:40 +00:00
|
|
|
if(!m) return NULL;
|
|
|
|
JS_AddModuleExportList(ctx, m, js_raylib_core_funcs, countof(js_raylib_core_funcs));
|
2023-05-04 21:54:03 +00:00
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
2023-05-06 21:43:40 +00:00
|
|
|
#endif // JS_raylib_core_GUARD
|