rayjs/src/bindings/js_raylib_core.h

75 lines
2.2 KiB
C
Raw Normal View History

2023-05-04 21:54:03 +00:00
#ifndef JS_raylib_core
#define JS_raylib_core
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <quickjs.h>
#ifndef countof
#define countof(x) (sizeof(x) / sizeof((x)[0]))
#endif
static JSValue js_setWindowTitle(JSContext *ctx, JSValueConst this_val, int argc, JSValueConst *argv){
2023-05-05 14:49:33 +00:00
if(!JS_IsString(argv[0])) return JS_ThrowReferenceError(ctx, "SetWindowTitle argument title (0) needs to be a string");
const char * title = JS_ToCString(ctx, argv[0]);
SetWindowTitle(title);
JS_FreeCString(ctx, title);
2023-05-04 21:54:03 +00:00
return JS_UNDEFINED;
}
static JSValue js_setWindowPosition(JSContext *ctx, JSValueConst this_val, int argc, JSValueConst *argv){
2023-05-05 14:49:33 +00:00
if(!JS_IsNumber(argv[0])) return JS_ThrowReferenceError(ctx, "SetWindowPosition argument x (0) needs to be a number");
if(!JS_IsNumber(argv[1])) return JS_ThrowReferenceError(ctx, "SetWindowPosition argument y (1) needs to be a number");
int x; JS_ToInt32(ctx, &x, argv[0]);
int y; JS_ToInt32(ctx, &y, argv[1]);
SetWindowPosition(x, y);
return JS_UNDEFINED;
}
static JSValue js_beginDrawing(JSContext *ctx, JSValueConst this_val, int argc, JSValueConst *argv){
BeginDrawing();
return JS_UNDEFINED;
}
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[] = {
JS_CFUNC_DEF("setWindowTitle", 1, js_setWindowTitle),
2023-05-05 14:49:33 +00:00
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
};
static int js_raylib_core_init(JSContext *ctx, JSModuleDef *m){
JS_SetModuleExportList(ctx, m, js_raylib_core_funcs,
countof(js_raylib_core_funcs));
}
JSModuleDef *js_init_module_raylib_core(JSContext *ctx, const char *module_name)
{
JSModuleDef *m;
m = JS_NewCModule(ctx, module_name, js_raylib_core_init);
if (!m)
return NULL;
JS_AddModuleExportList(ctx, m, js_raylib_core_funcs,
countof(js_raylib_core_funcs));
return m;
}
#endif