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-08 21:37:58 +00:00
|
|
|
static JSClassID js_Color_class_id;
|
2023-05-13 12:49:05 +00:00
|
|
|
static JSClassID js_Rectangle_class_id;
|
2023-05-10 21:26:53 +00:00
|
|
|
static JSClassID js_Vector2_class_id;
|
2023-05-13 12:49:05 +00:00
|
|
|
static JSClassID js_Vector3_class_id;
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSClassID js_Vector4_class_id;
|
2023-05-13 12:49:05 +00:00
|
|
|
static JSClassID js_Ray_class_id;
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSClassID js_RayCollision_class_id;
|
2023-05-13 12:49:05 +00:00
|
|
|
static JSClassID js_Camera2D_class_id;
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSClassID js_Camera3D_class_id;
|
|
|
|
static JSClassID js_BoundingBox_class_id;
|
2023-05-13 12:49:05 +00:00
|
|
|
static JSClassID js_Matrix_class_id;
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSClassID js_Image_class_id;
|
|
|
|
static JSClassID js_Wave_class_id;
|
|
|
|
static JSClassID js_Sound_class_id;
|
|
|
|
static JSClassID js_Music_class_id;
|
|
|
|
static JSClassID js_Model_class_id;
|
|
|
|
static JSClassID js_Mesh_class_id;
|
|
|
|
static JSClassID js_Shader_class_id;
|
|
|
|
static JSClassID js_Texture_class_id;
|
|
|
|
static JSClassID js_Font_class_id;
|
2023-05-08 21:37:58 +00:00
|
|
|
|
|
|
|
static void js_Color_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Color* ptr = JS_GetOpaque(val, js_Color_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Color_get_r(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Color* ptr = JS_GetOpaque2(ctx, this_val, js_Color_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
unsigned char r = ptr->r;
|
2023-05-14 20:19:47 +00:00
|
|
|
JSValue ret = JS_NewUint32(ctx, r);
|
2023-05-08 21:37:58 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Color_set_r(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Color* ptr = JS_GetOpaque2(ctx, this_val, js_Color_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
2023-05-14 20:19:47 +00:00
|
|
|
unsigned int _int_value;
|
|
|
|
JS_ToUint32(ctx, &_int_value, v);
|
2023-05-09 16:24:54 +00:00
|
|
|
unsigned char value = (unsigned char)_int_value;
|
2023-05-08 21:37:58 +00:00
|
|
|
ptr->r = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Color_get_g(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Color* ptr = JS_GetOpaque2(ctx, this_val, js_Color_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
unsigned char g = ptr->g;
|
2023-05-14 20:19:47 +00:00
|
|
|
JSValue ret = JS_NewUint32(ctx, g);
|
2023-05-08 21:37:58 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Color_set_g(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Color* ptr = JS_GetOpaque2(ctx, this_val, js_Color_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
2023-05-14 20:19:47 +00:00
|
|
|
unsigned int _int_value;
|
|
|
|
JS_ToUint32(ctx, &_int_value, v);
|
2023-05-09 16:24:54 +00:00
|
|
|
unsigned char value = (unsigned char)_int_value;
|
2023-05-08 21:37:58 +00:00
|
|
|
ptr->g = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Color_get_b(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Color* ptr = JS_GetOpaque2(ctx, this_val, js_Color_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
unsigned char b = ptr->b;
|
2023-05-14 20:19:47 +00:00
|
|
|
JSValue ret = JS_NewUint32(ctx, b);
|
2023-05-08 21:37:58 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Color_set_b(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Color* ptr = JS_GetOpaque2(ctx, this_val, js_Color_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
2023-05-14 20:19:47 +00:00
|
|
|
unsigned int _int_value;
|
|
|
|
JS_ToUint32(ctx, &_int_value, v);
|
2023-05-09 16:24:54 +00:00
|
|
|
unsigned char value = (unsigned char)_int_value;
|
2023-05-08 21:37:58 +00:00
|
|
|
ptr->b = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Color_get_a(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Color* ptr = JS_GetOpaque2(ctx, this_val, js_Color_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
unsigned char a = ptr->a;
|
2023-05-14 20:19:47 +00:00
|
|
|
JSValue ret = JS_NewUint32(ctx, a);
|
2023-05-08 21:37:58 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Color_set_a(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Color* ptr = JS_GetOpaque2(ctx, this_val, js_Color_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
2023-05-14 20:19:47 +00:00
|
|
|
unsigned int _int_value;
|
|
|
|
JS_ToUint32(ctx, &_int_value, v);
|
2023-05-09 16:24:54 +00:00
|
|
|
unsigned char value = (unsigned char)_int_value;
|
2023-05-08 21:37:58 +00:00
|
|
|
ptr->a = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Color_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("r",js_Color_get_r,js_Color_set_r),
|
|
|
|
JS_CGETSET_DEF("g",js_Color_get_g,js_Color_set_g),
|
|
|
|
JS_CGETSET_DEF("b",js_Color_get_b,js_Color_set_b),
|
|
|
|
JS_CGETSET_DEF("a",js_Color_get_a,js_Color_set_a),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Color", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Color(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Color_class_id);
|
|
|
|
JSClassDef js_Color_def = { .class_name = "Color", .finalizer = js_Color_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Color_class_id, &js_Color_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Color_proto_funcs, countof(js_Color_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Color_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
2023-05-06 21:43:40 +00:00
|
|
|
|
2023-05-13 12:49:05 +00:00
|
|
|
static void js_Rectangle_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Rectangle* ptr = JS_GetOpaque(val, js_Rectangle_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Rectangle_get_x(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Rectangle* ptr = JS_GetOpaque2(ctx, this_val, js_Rectangle_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float x = ptr->x;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, x);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Rectangle_set_x(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Rectangle* ptr = JS_GetOpaque2(ctx, this_val, js_Rectangle_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->x = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Rectangle_get_y(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Rectangle* ptr = JS_GetOpaque2(ctx, this_val, js_Rectangle_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float y = ptr->y;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, y);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Rectangle_set_y(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Rectangle* ptr = JS_GetOpaque2(ctx, this_val, js_Rectangle_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->y = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Rectangle_get_width(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Rectangle* ptr = JS_GetOpaque2(ctx, this_val, js_Rectangle_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float width = ptr->width;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, width);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Rectangle_set_width(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Rectangle* ptr = JS_GetOpaque2(ctx, this_val, js_Rectangle_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->width = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Rectangle_get_height(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Rectangle* ptr = JS_GetOpaque2(ctx, this_val, js_Rectangle_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float height = ptr->height;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, height);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Rectangle_set_height(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Rectangle* ptr = JS_GetOpaque2(ctx, this_val, js_Rectangle_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->height = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Rectangle_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("x",js_Rectangle_get_x,js_Rectangle_set_x),
|
|
|
|
JS_CGETSET_DEF("y",js_Rectangle_get_y,js_Rectangle_set_y),
|
|
|
|
JS_CGETSET_DEF("width",js_Rectangle_get_width,js_Rectangle_set_width),
|
|
|
|
JS_CGETSET_DEF("height",js_Rectangle_get_height,js_Rectangle_set_height),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Rectangle", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Rectangle(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Rectangle_class_id);
|
|
|
|
JSClassDef js_Rectangle_def = { .class_name = "Rectangle", .finalizer = js_Rectangle_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Rectangle_class_id, &js_Rectangle_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Rectangle_proto_funcs, countof(js_Rectangle_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Rectangle_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-05-10 21:26:53 +00:00
|
|
|
static void js_Vector2_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Vector2* ptr = JS_GetOpaque(val, js_Vector2_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector2_get_x(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Vector2* ptr = JS_GetOpaque2(ctx, this_val, js_Vector2_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float x = ptr->x;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, x);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector2_set_x(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Vector2* ptr = JS_GetOpaque2(ctx, this_val, js_Vector2_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->x = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector2_get_y(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Vector2* ptr = JS_GetOpaque2(ctx, this_val, js_Vector2_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float y = ptr->y;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, y);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-13 12:49:05 +00:00
|
|
|
static JSValue js_Vector2_set_y(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Vector2* ptr = JS_GetOpaque2(ctx, this_val, js_Vector2_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->y = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Vector2_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("x",js_Vector2_get_x,js_Vector2_set_x),
|
|
|
|
JS_CGETSET_DEF("y",js_Vector2_get_y,js_Vector2_set_y),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Vector2", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Vector2(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Vector2_class_id);
|
|
|
|
JSClassDef js_Vector2_def = { .class_name = "Vector2", .finalizer = js_Vector2_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Vector2_class_id, &js_Vector2_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Vector2_proto_funcs, countof(js_Vector2_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Vector2_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void js_Vector3_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Vector3* ptr = JS_GetOpaque(val, js_Vector3_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector3_get_x(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Vector3* ptr = JS_GetOpaque2(ctx, this_val, js_Vector3_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float x = ptr->x;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, x);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector3_set_x(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Vector3* ptr = JS_GetOpaque2(ctx, this_val, js_Vector3_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->x = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector3_get_y(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Vector3* ptr = JS_GetOpaque2(ctx, this_val, js_Vector3_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float y = ptr->y;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, y);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector3_set_y(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Vector3* ptr = JS_GetOpaque2(ctx, this_val, js_Vector3_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->y = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector3_get_z(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Vector3* ptr = JS_GetOpaque2(ctx, this_val, js_Vector3_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float z = ptr->z;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, z);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector3_set_z(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Vector3* ptr = JS_GetOpaque2(ctx, this_val, js_Vector3_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->z = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Vector3_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("x",js_Vector3_get_x,js_Vector3_set_x),
|
|
|
|
JS_CGETSET_DEF("y",js_Vector3_get_y,js_Vector3_set_y),
|
|
|
|
JS_CGETSET_DEF("z",js_Vector3_get_z,js_Vector3_set_z),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Vector3", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Vector3(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Vector3_class_id);
|
|
|
|
JSClassDef js_Vector3_def = { .class_name = "Vector3", .finalizer = js_Vector3_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Vector3_class_id, &js_Vector3_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Vector3_proto_funcs, countof(js_Vector3_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Vector3_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static void js_Vector4_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Vector4* ptr = JS_GetOpaque(val, js_Vector4_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector4_get_x(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Vector4* ptr = JS_GetOpaque2(ctx, this_val, js_Vector4_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float x = ptr->x;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, x);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector4_set_x(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Vector4* ptr = JS_GetOpaque2(ctx, this_val, js_Vector4_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->x = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector4_get_y(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Vector4* ptr = JS_GetOpaque2(ctx, this_val, js_Vector4_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float y = ptr->y;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, y);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector4_set_y(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Vector4* ptr = JS_GetOpaque2(ctx, this_val, js_Vector4_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->y = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector4_get_z(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Vector4* ptr = JS_GetOpaque2(ctx, this_val, js_Vector4_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float z = ptr->z;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, z);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector4_set_z(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Vector4* ptr = JS_GetOpaque2(ctx, this_val, js_Vector4_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->z = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector4_get_w(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Vector4* ptr = JS_GetOpaque2(ctx, this_val, js_Vector4_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float w = ptr->w;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, w);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector4_set_w(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Vector4* ptr = JS_GetOpaque2(ctx, this_val, js_Vector4_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->w = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Vector4_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("x",js_Vector4_get_x,js_Vector4_set_x),
|
|
|
|
JS_CGETSET_DEF("y",js_Vector4_get_y,js_Vector4_set_y),
|
|
|
|
JS_CGETSET_DEF("z",js_Vector4_get_z,js_Vector4_set_z),
|
|
|
|
JS_CGETSET_DEF("w",js_Vector4_get_w,js_Vector4_set_w),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Vector4", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Vector4(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Vector4_class_id);
|
|
|
|
JSClassDef js_Vector4_def = { .class_name = "Vector4", .finalizer = js_Vector4_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Vector4_class_id, &js_Vector4_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Vector4_proto_funcs, countof(js_Vector4_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Vector4_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-05-13 12:49:05 +00:00
|
|
|
static void js_Ray_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Ray* ptr = JS_GetOpaque(val, js_Ray_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Ray_set_position(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Ray* ptr = JS_GetOpaque2(ctx, this_val, js_Ray_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
Vector3* value_ptr = (Vector3*)JS_GetOpaque2(ctx, v, js_Vector3_class_id);
|
|
|
|
if(value_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 value = *value_ptr;
|
|
|
|
ptr->position = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Ray_set_direction(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Ray* ptr = JS_GetOpaque2(ctx, this_val, js_Ray_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
Vector3* value_ptr = (Vector3*)JS_GetOpaque2(ctx, v, js_Vector3_class_id);
|
|
|
|
if(value_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 value = *value_ptr;
|
|
|
|
ptr->direction = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Ray_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("position",NULL,js_Ray_set_position),
|
|
|
|
JS_CGETSET_DEF("direction",NULL,js_Ray_set_direction),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Ray", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Ray(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Ray_class_id);
|
|
|
|
JSClassDef js_Ray_def = { .class_name = "Ray", .finalizer = js_Ray_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Ray_class_id, &js_Ray_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Ray_proto_funcs, countof(js_Ray_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Ray_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static void js_RayCollision_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
RayCollision* ptr = JS_GetOpaque(val, js_RayCollision_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_RayCollision_get_hit(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
RayCollision* ptr = JS_GetOpaque2(ctx, this_val, js_RayCollision_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
bool hit = ptr->hit;
|
|
|
|
JSValue ret = JS_NewBool(ctx, hit);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_RayCollision_get_distance(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
RayCollision* ptr = JS_GetOpaque2(ctx, this_val, js_RayCollision_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float distance = ptr->distance;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, distance);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_RayCollision_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("hit",js_RayCollision_get_hit,NULL),
|
|
|
|
JS_CGETSET_DEF("distance",js_RayCollision_get_distance,NULL),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","RayCollision", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_RayCollision(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_RayCollision_class_id);
|
|
|
|
JSClassDef js_RayCollision_def = { .class_name = "RayCollision", .finalizer = js_RayCollision_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_RayCollision_class_id, &js_RayCollision_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_RayCollision_proto_funcs, countof(js_RayCollision_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_RayCollision_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-05-13 12:49:05 +00:00
|
|
|
static void js_Camera2D_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Camera2D* ptr = JS_GetOpaque(val, js_Camera2D_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera2D_set_offset(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Camera2D* ptr = JS_GetOpaque2(ctx, this_val, js_Camera2D_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
Vector2* value_ptr = (Vector2*)JS_GetOpaque2(ctx, v, js_Vector2_class_id);
|
|
|
|
if(value_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 value = *value_ptr;
|
|
|
|
ptr->offset = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera2D_set_target(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Camera2D* ptr = JS_GetOpaque2(ctx, this_val, js_Camera2D_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
Vector2* value_ptr = (Vector2*)JS_GetOpaque2(ctx, v, js_Vector2_class_id);
|
|
|
|
if(value_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 value = *value_ptr;
|
|
|
|
ptr->target = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera2D_get_rotation(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Camera2D* ptr = JS_GetOpaque2(ctx, this_val, js_Camera2D_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float rotation = ptr->rotation;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, rotation);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera2D_set_rotation(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Camera2D* ptr = JS_GetOpaque2(ctx, this_val, js_Camera2D_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->rotation = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera2D_get_zoom(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Camera2D* ptr = JS_GetOpaque2(ctx, this_val, js_Camera2D_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float zoom = ptr->zoom;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, zoom);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera2D_set_zoom(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Camera2D* ptr = JS_GetOpaque2(ctx, this_val, js_Camera2D_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->zoom = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Camera2D_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("offset",NULL,js_Camera2D_set_offset),
|
|
|
|
JS_CGETSET_DEF("target",NULL,js_Camera2D_set_target),
|
|
|
|
JS_CGETSET_DEF("rotation",js_Camera2D_get_rotation,js_Camera2D_set_rotation),
|
|
|
|
JS_CGETSET_DEF("zoom",js_Camera2D_get_zoom,js_Camera2D_set_zoom),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Camera2D", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Camera2D(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Camera2D_class_id);
|
|
|
|
JSClassDef js_Camera2D_def = { .class_name = "Camera2D", .finalizer = js_Camera2D_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Camera2D_class_id, &js_Camera2D_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Camera2D_proto_funcs, countof(js_Camera2D_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Camera2D_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static void js_Camera3D_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Camera3D* ptr = JS_GetOpaque(val, js_Camera3D_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera3D_set_position(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Camera3D* ptr = JS_GetOpaque2(ctx, this_val, js_Camera3D_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
Vector3* value_ptr = (Vector3*)JS_GetOpaque2(ctx, v, js_Vector3_class_id);
|
|
|
|
if(value_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 value = *value_ptr;
|
|
|
|
ptr->position = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera3D_set_target(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Camera3D* ptr = JS_GetOpaque2(ctx, this_val, js_Camera3D_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
Vector3* value_ptr = (Vector3*)JS_GetOpaque2(ctx, v, js_Vector3_class_id);
|
|
|
|
if(value_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 value = *value_ptr;
|
|
|
|
ptr->target = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera3D_set_up(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Camera3D* ptr = JS_GetOpaque2(ctx, this_val, js_Camera3D_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
Vector3* value_ptr = (Vector3*)JS_GetOpaque2(ctx, v, js_Vector3_class_id);
|
|
|
|
if(value_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 value = *value_ptr;
|
|
|
|
ptr->up = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera3D_get_fovy(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Camera3D* ptr = JS_GetOpaque2(ctx, this_val, js_Camera3D_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
float fovy = ptr->fovy;
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, fovy);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera3D_set_fovy(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Camera3D* ptr = JS_GetOpaque2(ctx, this_val, js_Camera3D_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, v);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
ptr->fovy = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera3D_get_projection(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Camera3D* ptr = JS_GetOpaque2(ctx, this_val, js_Camera3D_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
int projection = ptr->projection;
|
|
|
|
JSValue ret = JS_NewInt32(ctx, projection);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera3D_set_projection(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Camera3D* ptr = JS_GetOpaque2(ctx, this_val, js_Camera3D_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
int value;
|
|
|
|
JS_ToInt32(ctx, &value, v);
|
|
|
|
ptr->projection = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Camera3D_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("position",NULL,js_Camera3D_set_position),
|
|
|
|
JS_CGETSET_DEF("target",NULL,js_Camera3D_set_target),
|
|
|
|
JS_CGETSET_DEF("up",NULL,js_Camera3D_set_up),
|
|
|
|
JS_CGETSET_DEF("fovy",js_Camera3D_get_fovy,js_Camera3D_set_fovy),
|
|
|
|
JS_CGETSET_DEF("projection",js_Camera3D_get_projection,js_Camera3D_set_projection),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Camera3D", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Camera3D(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Camera3D_class_id);
|
|
|
|
JSClassDef js_Camera3D_def = { .class_name = "Camera3D", .finalizer = js_Camera3D_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Camera3D_class_id, &js_Camera3D_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Camera3D_proto_funcs, countof(js_Camera3D_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Camera3D_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void js_BoundingBox_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
BoundingBox* ptr = JS_GetOpaque(val, js_BoundingBox_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_BoundingBox_proto_funcs[] = {
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","BoundingBox", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_BoundingBox(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_BoundingBox_class_id);
|
|
|
|
JSClassDef js_BoundingBox_def = { .class_name = "BoundingBox", .finalizer = js_BoundingBox_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_BoundingBox_class_id, &js_BoundingBox_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_BoundingBox_proto_funcs, countof(js_BoundingBox_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_BoundingBox_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-05-13 12:49:05 +00:00
|
|
|
static void js_Matrix_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Matrix* ptr = JS_GetOpaque(val, js_Matrix_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Matrix_proto_funcs[] = {
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Matrix", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Matrix(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Matrix_class_id);
|
|
|
|
JSClassDef js_Matrix_def = { .class_name = "Matrix", .finalizer = js_Matrix_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Matrix_class_id, &js_Matrix_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Matrix_proto_funcs, countof(js_Matrix_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Matrix_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static void js_Image_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Image* ptr = JS_GetOpaque(val, js_Image_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
UnloadImage(*ptr);
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_Image_get_width(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Image* ptr = JS_GetOpaque2(ctx, this_val, js_Image_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
int width = ptr->width;
|
|
|
|
JSValue ret = JS_NewInt32(ctx, width);
|
|
|
|
return ret;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_Image_get_height(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Image* ptr = JS_GetOpaque2(ctx, this_val, js_Image_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
int height = ptr->height;
|
|
|
|
JSValue ret = JS_NewInt32(ctx, height);
|
|
|
|
return ret;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_Image_get_mipmaps(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Image* ptr = JS_GetOpaque2(ctx, this_val, js_Image_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
int mipmaps = ptr->mipmaps;
|
|
|
|
JSValue ret = JS_NewInt32(ctx, mipmaps);
|
|
|
|
return ret;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_Image_get_format(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Image* ptr = JS_GetOpaque2(ctx, this_val, js_Image_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
int format = ptr->format;
|
|
|
|
JSValue ret = JS_NewInt32(ctx, format);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Image_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("width",js_Image_get_width,NULL),
|
|
|
|
JS_CGETSET_DEF("height",js_Image_get_height,NULL),
|
|
|
|
JS_CGETSET_DEF("mipmaps",js_Image_get_mipmaps,NULL),
|
|
|
|
JS_CGETSET_DEF("format",js_Image_get_format,NULL),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Image", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Image(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Image_class_id);
|
|
|
|
JSClassDef js_Image_def = { .class_name = "Image", .finalizer = js_Image_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Image_class_id, &js_Image_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Image_proto_funcs, countof(js_Image_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Image_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void js_Wave_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Wave* ptr = JS_GetOpaque(val, js_Wave_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
UnloadWave(*ptr);
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Wave_get_frameCount(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Wave* ptr = JS_GetOpaque2(ctx, this_val, js_Wave_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
unsigned int frameCount = ptr->frameCount;
|
|
|
|
JSValue ret = JS_NewUint32(ctx, frameCount);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Wave_get_sampleRate(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Wave* ptr = JS_GetOpaque2(ctx, this_val, js_Wave_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
unsigned int sampleRate = ptr->sampleRate;
|
|
|
|
JSValue ret = JS_NewUint32(ctx, sampleRate);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Wave_get_sampleSize(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Wave* ptr = JS_GetOpaque2(ctx, this_val, js_Wave_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
unsigned int sampleSize = ptr->sampleSize;
|
|
|
|
JSValue ret = JS_NewUint32(ctx, sampleSize);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Wave_get_channels(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Wave* ptr = JS_GetOpaque2(ctx, this_val, js_Wave_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
unsigned int channels = ptr->channels;
|
|
|
|
JSValue ret = JS_NewUint32(ctx, channels);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Wave_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("frameCount",js_Wave_get_frameCount,NULL),
|
|
|
|
JS_CGETSET_DEF("sampleRate",js_Wave_get_sampleRate,NULL),
|
|
|
|
JS_CGETSET_DEF("sampleSize",js_Wave_get_sampleSize,NULL),
|
|
|
|
JS_CGETSET_DEF("channels",js_Wave_get_channels,NULL),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Wave", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Wave(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Wave_class_id);
|
|
|
|
JSClassDef js_Wave_def = { .class_name = "Wave", .finalizer = js_Wave_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Wave_class_id, &js_Wave_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Wave_proto_funcs, countof(js_Wave_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Wave_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void js_Sound_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Sound* ptr = JS_GetOpaque(val, js_Sound_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
UnloadSound(*ptr);
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Sound_get_frameCount(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Sound* ptr = JS_GetOpaque2(ctx, this_val, js_Sound_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
unsigned int frameCount = ptr->frameCount;
|
|
|
|
JSValue ret = JS_NewUint32(ctx, frameCount);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Sound_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("frameCount",js_Sound_get_frameCount,NULL),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Sound", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Sound(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Sound_class_id);
|
|
|
|
JSClassDef js_Sound_def = { .class_name = "Sound", .finalizer = js_Sound_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Sound_class_id, &js_Sound_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Sound_proto_funcs, countof(js_Sound_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Sound_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void js_Music_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Music* ptr = JS_GetOpaque(val, js_Music_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
UnloadMusicStream(*ptr);
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Music_get_frameCount(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Music* ptr = JS_GetOpaque2(ctx, this_val, js_Music_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
unsigned int frameCount = ptr->frameCount;
|
|
|
|
JSValue ret = JS_NewUint32(ctx, frameCount);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Music_get_looping(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Music* ptr = JS_GetOpaque2(ctx, this_val, js_Music_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
bool looping = ptr->looping;
|
|
|
|
JSValue ret = JS_NewBool(ctx, looping);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Music_set_looping(JSContext* ctx, JSValueConst this_val, JSValueConst v) {
|
|
|
|
Music* ptr = JS_GetOpaque2(ctx, this_val, js_Music_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
bool value = JS_ToBool(ctx, v);
|
|
|
|
ptr->looping = value;
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Music_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("frameCount",js_Music_get_frameCount,NULL),
|
|
|
|
JS_CGETSET_DEF("looping",js_Music_get_looping,js_Music_set_looping),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Music", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Music(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Music_class_id);
|
|
|
|
JSClassDef js_Music_def = { .class_name = "Music", .finalizer = js_Music_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Music_class_id, &js_Music_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Music_proto_funcs, countof(js_Music_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Music_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void js_Model_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Model* ptr = JS_GetOpaque(val, js_Model_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
UnloadModel(*ptr);
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Model_proto_funcs[] = {
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Model", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Model(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Model_class_id);
|
|
|
|
JSClassDef js_Model_def = { .class_name = "Model", .finalizer = js_Model_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Model_class_id, &js_Model_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Model_proto_funcs, countof(js_Model_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Model_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void js_Mesh_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Mesh* ptr = JS_GetOpaque(val, js_Mesh_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
UnloadMesh(*ptr);
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Mesh_proto_funcs[] = {
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Mesh", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Mesh(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Mesh_class_id);
|
|
|
|
JSClassDef js_Mesh_def = { .class_name = "Mesh", .finalizer = js_Mesh_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Mesh_class_id, &js_Mesh_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Mesh_proto_funcs, countof(js_Mesh_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Mesh_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void js_Shader_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Shader* ptr = JS_GetOpaque(val, js_Shader_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
UnloadShader(*ptr);
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Shader_proto_funcs[] = {
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Shader", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Shader(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Shader_class_id);
|
|
|
|
JSClassDef js_Shader_def = { .class_name = "Shader", .finalizer = js_Shader_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Shader_class_id, &js_Shader_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Shader_proto_funcs, countof(js_Shader_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Shader_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void js_Texture_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Texture* ptr = JS_GetOpaque(val, js_Texture_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
UnloadTexture(*ptr);
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Texture_get_width(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Texture* ptr = JS_GetOpaque2(ctx, this_val, js_Texture_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
int width = ptr->width;
|
|
|
|
JSValue ret = JS_NewInt32(ctx, width);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Texture_get_height(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Texture* ptr = JS_GetOpaque2(ctx, this_val, js_Texture_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
int height = ptr->height;
|
|
|
|
JSValue ret = JS_NewInt32(ctx, height);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Texture_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("width",js_Texture_get_width,NULL),
|
|
|
|
JS_CGETSET_DEF("height",js_Texture_get_height,NULL),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Texture", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Texture(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Texture_class_id);
|
|
|
|
JSClassDef js_Texture_def = { .class_name = "Texture", .finalizer = js_Texture_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Texture_class_id, &js_Texture_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Texture_proto_funcs, countof(js_Texture_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Texture_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void js_Font_finalizer(JSRuntime * rt, JSValue val) {
|
|
|
|
Font* ptr = JS_GetOpaque(val, js_Font_class_id);
|
|
|
|
if(ptr) {
|
|
|
|
UnloadFont(*ptr);
|
|
|
|
js_free_rt(rt, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Font_get_baseSize(JSContext* ctx, JSValueConst this_val) {
|
|
|
|
Font* ptr = JS_GetOpaque2(ctx, this_val, js_Font_class_id);
|
|
|
|
if(!ptr) {
|
|
|
|
return JS_EXCEPTION;
|
|
|
|
}
|
|
|
|
int baseSize = ptr->baseSize;
|
|
|
|
JSValue ret = JS_NewInt32(ctx, baseSize);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const JSCFunctionListEntry js_Font_proto_funcs[] = {
|
|
|
|
JS_CGETSET_DEF("baseSize",js_Font_get_baseSize,NULL),
|
|
|
|
JS_PROP_STRING_DEF("[Symbol.toStringTag]","Font", JS_PROP_CONFIGURABLE),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int js_declare_Font(JSContext * ctx, JSModuleDef * m) {
|
|
|
|
JS_NewClassID(&js_Font_class_id);
|
|
|
|
JSClassDef js_Font_def = { .class_name = "Font", .finalizer = js_Font_finalizer };
|
|
|
|
JS_NewClass(JS_GetRuntime(ctx), js_Font_class_id, &js_Font_def);
|
|
|
|
JSValue proto = JS_NewObject(ctx);
|
|
|
|
JS_SetPropertyFunctionList(ctx, proto, js_Font_proto_funcs, countof(js_Font_proto_funcs));
|
|
|
|
JS_SetClassProto(ctx, js_Font_class_id, proto);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Color_constructor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
unsigned int _int_r;
|
|
|
|
JS_ToUint32(ctx, &_int_r, argv[0]);
|
|
|
|
unsigned char r = (unsigned char)_int_r;
|
|
|
|
unsigned int _int_g;
|
|
|
|
JS_ToUint32(ctx, &_int_g, argv[1]);
|
|
|
|
unsigned char g = (unsigned char)_int_g;
|
|
|
|
unsigned int _int_b;
|
|
|
|
JS_ToUint32(ctx, &_int_b, argv[2]);
|
|
|
|
unsigned char b = (unsigned char)_int_b;
|
|
|
|
unsigned int _int_a;
|
|
|
|
JS_ToUint32(ctx, &_int_a, argv[3]);
|
|
|
|
unsigned char a = (unsigned char)_int_a;
|
|
|
|
Color _struct = { r, g, b, a };
|
|
|
|
Color* _return_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*_return_ptr = _struct;
|
|
|
|
JSValue _return = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(_return, _return_ptr);
|
|
|
|
return _return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Rectangle_constructor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_x;
|
|
|
|
JS_ToFloat64(ctx, &_double_x, argv[0]);
|
|
|
|
float x = (float)_double_x;
|
|
|
|
double _double_y;
|
|
|
|
JS_ToFloat64(ctx, &_double_y, argv[1]);
|
|
|
|
float y = (float)_double_y;
|
|
|
|
double _double_width;
|
|
|
|
JS_ToFloat64(ctx, &_double_width, argv[2]);
|
|
|
|
float width = (float)_double_width;
|
|
|
|
double _double_height;
|
|
|
|
JS_ToFloat64(ctx, &_double_height, argv[3]);
|
|
|
|
float height = (float)_double_height;
|
|
|
|
Rectangle _struct = { x, y, width, height };
|
|
|
|
Rectangle* _return_ptr = (Rectangle*)js_malloc(ctx, sizeof(Rectangle));
|
|
|
|
*_return_ptr = _struct;
|
|
|
|
JSValue _return = JS_NewObjectClass(ctx, js_Rectangle_class_id);
|
|
|
|
JS_SetOpaque(_return, _return_ptr);
|
|
|
|
return _return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector2_constructor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_x;
|
|
|
|
JS_ToFloat64(ctx, &_double_x, argv[0]);
|
|
|
|
float x = (float)_double_x;
|
|
|
|
double _double_y;
|
|
|
|
JS_ToFloat64(ctx, &_double_y, argv[1]);
|
|
|
|
float y = (float)_double_y;
|
|
|
|
Vector2 _struct = { x, y };
|
|
|
|
Vector2* _return_ptr = (Vector2*)js_malloc(ctx, sizeof(Vector2));
|
|
|
|
*_return_ptr = _struct;
|
|
|
|
JSValue _return = JS_NewObjectClass(ctx, js_Vector2_class_id);
|
|
|
|
JS_SetOpaque(_return, _return_ptr);
|
|
|
|
return _return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector3_constructor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_x;
|
|
|
|
JS_ToFloat64(ctx, &_double_x, argv[0]);
|
|
|
|
float x = (float)_double_x;
|
|
|
|
double _double_y;
|
|
|
|
JS_ToFloat64(ctx, &_double_y, argv[1]);
|
|
|
|
float y = (float)_double_y;
|
|
|
|
double _double_z;
|
|
|
|
JS_ToFloat64(ctx, &_double_z, argv[2]);
|
|
|
|
float z = (float)_double_z;
|
|
|
|
Vector3 _struct = { x, y, z };
|
|
|
|
Vector3* _return_ptr = (Vector3*)js_malloc(ctx, sizeof(Vector3));
|
|
|
|
*_return_ptr = _struct;
|
|
|
|
JSValue _return = JS_NewObjectClass(ctx, js_Vector3_class_id);
|
|
|
|
JS_SetOpaque(_return, _return_ptr);
|
|
|
|
return _return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Vector4_constructor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_x;
|
|
|
|
JS_ToFloat64(ctx, &_double_x, argv[0]);
|
|
|
|
float x = (float)_double_x;
|
|
|
|
double _double_y;
|
|
|
|
JS_ToFloat64(ctx, &_double_y, argv[1]);
|
|
|
|
float y = (float)_double_y;
|
|
|
|
double _double_z;
|
|
|
|
JS_ToFloat64(ctx, &_double_z, argv[2]);
|
|
|
|
float z = (float)_double_z;
|
|
|
|
double _double_w;
|
|
|
|
JS_ToFloat64(ctx, &_double_w, argv[3]);
|
|
|
|
float w = (float)_double_w;
|
|
|
|
Vector4 _struct = { x, y, z, w };
|
|
|
|
Vector4* _return_ptr = (Vector4*)js_malloc(ctx, sizeof(Vector4));
|
|
|
|
*_return_ptr = _struct;
|
|
|
|
JSValue _return = JS_NewObjectClass(ctx, js_Vector4_class_id);
|
|
|
|
JS_SetOpaque(_return, _return_ptr);
|
|
|
|
return _return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Ray_constructor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
2023-05-13 12:49:05 +00:00
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
Vector3* direction_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(direction_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 direction = *direction_ptr;
|
|
|
|
Ray _struct = { position, direction };
|
|
|
|
Ray* _return_ptr = (Ray*)js_malloc(ctx, sizeof(Ray));
|
|
|
|
*_return_ptr = _struct;
|
|
|
|
JSValue _return = JS_NewObjectClass(ctx, js_Ray_class_id);
|
|
|
|
JS_SetOpaque(_return, _return_ptr);
|
|
|
|
return _return;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_Camera2D_constructor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* offset_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(offset_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 offset = *offset_ptr;
|
|
|
|
Vector2* target_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(target_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 target = *target_ptr;
|
|
|
|
double _double_rotation;
|
|
|
|
JS_ToFloat64(ctx, &_double_rotation, argv[2]);
|
|
|
|
float rotation = (float)_double_rotation;
|
|
|
|
double _double_zoom;
|
|
|
|
JS_ToFloat64(ctx, &_double_zoom, argv[3]);
|
|
|
|
float zoom = (float)_double_zoom;
|
|
|
|
Camera2D _struct = { offset, target, rotation, zoom };
|
|
|
|
Camera2D* _return_ptr = (Camera2D*)js_malloc(ctx, sizeof(Camera2D));
|
|
|
|
*_return_ptr = _struct;
|
|
|
|
JSValue _return = JS_NewObjectClass(ctx, js_Camera2D_class_id);
|
|
|
|
JS_SetOpaque(_return, _return_ptr);
|
|
|
|
return _return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_Camera3D_constructor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
Vector3* target_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(target_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 target = *target_ptr;
|
|
|
|
Vector3* up_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[2], js_Vector3_class_id);
|
|
|
|
if(up_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 up = *up_ptr;
|
|
|
|
double _double_fovy;
|
|
|
|
JS_ToFloat64(ctx, &_double_fovy, argv[3]);
|
|
|
|
float fovy = (float)_double_fovy;
|
|
|
|
int projection;
|
|
|
|
JS_ToInt32(ctx, &projection, argv[4]);
|
|
|
|
Camera3D _struct = { position, target, up, fovy, projection };
|
|
|
|
Camera3D* _return_ptr = (Camera3D*)js_malloc(ctx, sizeof(Camera3D));
|
|
|
|
*_return_ptr = _struct;
|
|
|
|
JSValue _return = JS_NewObjectClass(ctx, js_Camera3D_class_id);
|
|
|
|
JS_SetOpaque(_return, _return_ptr);
|
|
|
|
return _return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_BoundingBox_constructor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* min_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(min_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 min = *min_ptr;
|
|
|
|
Vector3* max_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(max_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 max = *max_ptr;
|
|
|
|
BoundingBox _struct = { min, max };
|
|
|
|
BoundingBox* _return_ptr = (BoundingBox*)js_malloc(ctx, sizeof(BoundingBox));
|
|
|
|
*_return_ptr = _struct;
|
|
|
|
JSValue _return = JS_NewObjectClass(ctx, js_BoundingBox_class_id);
|
|
|
|
JS_SetOpaque(_return, _return_ptr);
|
|
|
|
return _return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_initWindow(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[0]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[1]);
|
|
|
|
const char * title = (const char *)JS_ToCString(ctx, argv[2]);
|
|
|
|
if(title == NULL) return JS_EXCEPTION;
|
|
|
|
InitWindow(width, height, title);
|
|
|
|
JS_FreeCString(ctx, title);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_windowShouldClose(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
bool returnVal = WindowShouldClose();
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_closeWindow(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
CloseWindow();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isWindowReady(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
bool returnVal = IsWindowReady();
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isWindowFullscreen(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
bool returnVal = IsWindowFullscreen();
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isWindowHidden(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
bool returnVal = IsWindowHidden();
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isWindowMinimized(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
bool returnVal = IsWindowMinimized();
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isWindowMaximized(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
bool returnVal = IsWindowMaximized();
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isWindowFocused(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
bool returnVal = IsWindowFocused();
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isWindowResized(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
bool returnVal = IsWindowResized();
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isWindowState(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
unsigned int flag;
|
|
|
|
JS_ToUint32(ctx, &flag, argv[0]);
|
|
|
|
bool returnVal = IsWindowState(flag);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setWindowState(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
unsigned int flags;
|
|
|
|
JS_ToUint32(ctx, &flags, argv[0]);
|
|
|
|
SetWindowState(flags);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_clearWindowState(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
unsigned int flags;
|
|
|
|
JS_ToUint32(ctx, &flags, argv[0]);
|
|
|
|
ClearWindowState(flags);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_toggleFullscreen(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
ToggleFullscreen();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_maximizeWindow(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
MaximizeWindow();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_minimizeWindow(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
MinimizeWindow();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_restoreWindow(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
RestoreWindow();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setWindowTitle(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * title = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(title == NULL) return JS_EXCEPTION;
|
|
|
|
SetWindowTitle(title);
|
|
|
|
JS_FreeCString(ctx, title);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setWindowMonitor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int monitor;
|
|
|
|
JS_ToInt32(ctx, &monitor, argv[0]);
|
|
|
|
SetWindowMonitor(monitor);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setWindowMinSize(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[0]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[1]);
|
|
|
|
SetWindowMinSize(width, height);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setWindowSize(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[0]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[1]);
|
|
|
|
SetWindowSize(width, height);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setWindowOpacity(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_opacity;
|
|
|
|
JS_ToFloat64(ctx, &_double_opacity, argv[0]);
|
|
|
|
float opacity = (float)_double_opacity;
|
|
|
|
SetWindowOpacity(opacity);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getScreenWidth(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetScreenWidth();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getScreenHeight(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetScreenHeight();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getRenderWidth(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetRenderWidth();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getRenderHeight(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetRenderHeight();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMonitorCount(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetMonitorCount();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getCurrentMonitor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetCurrentMonitor();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMonitorPosition(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int monitor;
|
|
|
|
JS_ToInt32(ctx, &monitor, argv[0]);
|
|
|
|
Vector2 returnVal = GetMonitorPosition(monitor);
|
|
|
|
Vector2* ret_ptr = (Vector2*)js_malloc(ctx, sizeof(Vector2));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector2_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMonitorWidth(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int monitor;
|
|
|
|
JS_ToInt32(ctx, &monitor, argv[0]);
|
|
|
|
int returnVal = GetMonitorWidth(monitor);
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMonitorHeight(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int monitor;
|
|
|
|
JS_ToInt32(ctx, &monitor, argv[0]);
|
|
|
|
int returnVal = GetMonitorHeight(monitor);
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMonitorPhysicalWidth(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int monitor;
|
|
|
|
JS_ToInt32(ctx, &monitor, argv[0]);
|
|
|
|
int returnVal = GetMonitorPhysicalWidth(monitor);
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMonitorPhysicalHeight(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int monitor;
|
|
|
|
JS_ToInt32(ctx, &monitor, argv[0]);
|
|
|
|
int returnVal = GetMonitorPhysicalHeight(monitor);
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMonitorRefreshRate(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int monitor;
|
|
|
|
JS_ToInt32(ctx, &monitor, argv[0]);
|
|
|
|
int returnVal = GetMonitorRefreshRate(monitor);
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getWindowPosition(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2 returnVal = GetWindowPosition();
|
|
|
|
Vector2* ret_ptr = (Vector2*)js_malloc(ctx, sizeof(Vector2));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector2_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getWindowScaleDPI(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2 returnVal = GetWindowScaleDPI();
|
|
|
|
Vector2* ret_ptr = (Vector2*)js_malloc(ctx, sizeof(Vector2));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector2_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMonitorName(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int monitor;
|
|
|
|
JS_ToInt32(ctx, &monitor, argv[0]);
|
|
|
|
const char * returnVal = GetMonitorName(monitor);
|
|
|
|
JSValue ret = JS_NewString(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setClipboardText(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * text = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(text == NULL) return JS_EXCEPTION;
|
|
|
|
SetClipboardText(text);
|
|
|
|
JS_FreeCString(ctx, text);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getClipboardText(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * returnVal = GetClipboardText();
|
|
|
|
JSValue ret = JS_NewString(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_enableEventWaiting(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
EnableEventWaiting();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_disableEventWaiting(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
DisableEventWaiting();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_showCursor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
ShowCursor();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_hideCursor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
HideCursor();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isCursorHidden(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
bool returnVal = IsCursorHidden();
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_enableCursor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
EnableCursor();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_disableCursor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
DisableCursor();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isCursorOnScreen(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
bool returnVal = IsCursorOnScreen();
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_clearBackground(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[0], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
ClearBackground(color);
|
|
|
|
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) {
|
|
|
|
app_update_quickjs();
|
|
|
|
EndDrawing();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_beginMode2D(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Camera2D* camera_ptr = (Camera2D*)JS_GetOpaque2(ctx, argv[0], js_Camera2D_class_id);
|
|
|
|
if(camera_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Camera2D camera = *camera_ptr;
|
|
|
|
BeginMode2D(camera);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_endMode2D(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
EndMode2D();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_beginMode3D(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Camera3D* camera_ptr = (Camera3D*)JS_GetOpaque2(ctx, argv[0], js_Camera3D_class_id);
|
|
|
|
if(camera_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Camera3D camera = *camera_ptr;
|
|
|
|
BeginMode3D(camera);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_endMode3D(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
EndMode3D();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_beginBlendMode(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int mode;
|
|
|
|
JS_ToInt32(ctx, &mode, argv[0]);
|
|
|
|
BeginBlendMode(mode);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_endBlendMode(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
EndBlendMode();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_beginScissorMode(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]);
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[2]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[3]);
|
|
|
|
BeginScissorMode(x, y, width, height);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_endScissorMode(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
EndScissorMode();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getCameraMatrix2D(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Camera2D* camera_ptr = (Camera2D*)JS_GetOpaque2(ctx, argv[0], js_Camera2D_class_id);
|
|
|
|
if(camera_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Camera2D camera = *camera_ptr;
|
|
|
|
Matrix returnVal = GetCameraMatrix2D(camera);
|
|
|
|
Matrix* ret_ptr = (Matrix*)js_malloc(ctx, sizeof(Matrix));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Matrix_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getScreenToWorld2D(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* position_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 position = *position_ptr;
|
|
|
|
Camera2D* camera_ptr = (Camera2D*)JS_GetOpaque2(ctx, argv[1], js_Camera2D_class_id);
|
|
|
|
if(camera_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Camera2D camera = *camera_ptr;
|
|
|
|
Vector2 returnVal = GetScreenToWorld2D(position, camera);
|
|
|
|
Vector2* ret_ptr = (Vector2*)js_malloc(ctx, sizeof(Vector2));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector2_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getWorldToScreen2D(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* position_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 position = *position_ptr;
|
|
|
|
Camera2D* camera_ptr = (Camera2D*)JS_GetOpaque2(ctx, argv[1], js_Camera2D_class_id);
|
|
|
|
if(camera_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Camera2D camera = *camera_ptr;
|
|
|
|
Vector2 returnVal = GetWorldToScreen2D(position, camera);
|
|
|
|
Vector2* ret_ptr = (Vector2*)js_malloc(ctx, sizeof(Vector2));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector2_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setTargetFPS(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int fps;
|
|
|
|
JS_ToInt32(ctx, &fps, argv[0]);
|
|
|
|
SetTargetFPS(fps);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getFPS(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetFPS();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getFrameTime(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
float returnVal = GetFrameTime();
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getTime(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double returnVal = GetTime();
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getRandomValue(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int min;
|
|
|
|
JS_ToInt32(ctx, &min, argv[0]);
|
|
|
|
int max;
|
|
|
|
JS_ToInt32(ctx, &max, argv[1]);
|
|
|
|
int returnVal = GetRandomValue(min, max);
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setRandomSeed(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
unsigned int seed;
|
|
|
|
JS_ToUint32(ctx, &seed, argv[0]);
|
|
|
|
SetRandomSeed(seed);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_takeScreenshot(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
TakeScreenshot(fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setConfigFlags(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
unsigned int flags;
|
|
|
|
JS_ToUint32(ctx, &flags, argv[0]);
|
|
|
|
SetConfigFlags(flags);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_traceLog(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int logLevel;
|
|
|
|
JS_ToInt32(ctx, &logLevel, argv[0]);
|
|
|
|
const char * text = (const char *)JS_ToCString(ctx, argv[1]);
|
|
|
|
if(text == NULL) return JS_EXCEPTION;
|
|
|
|
TraceLog(logLevel, text);
|
|
|
|
JS_FreeCString(ctx, text);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setTraceLogLevel(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int logLevel;
|
|
|
|
JS_ToInt32(ctx, &logLevel, argv[0]);
|
|
|
|
SetTraceLogLevel(logLevel);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_openURL(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * url = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(url == NULL) return JS_EXCEPTION;
|
|
|
|
OpenURL(url);
|
|
|
|
JS_FreeCString(ctx, url);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_loadFileText(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
char * returnVal = LoadFileText(fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
UnloadFileText(returnVal);
|
|
|
|
JSValue ret = JS_NewString(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_saveFileText(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
char * text = (char *)JS_ToCString(ctx, argv[1]);
|
|
|
|
if(text == NULL) return JS_EXCEPTION;
|
|
|
|
bool returnVal = SaveFileText(fileName, text);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_fileExists(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
bool returnVal = FileExists(fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_directoryExists(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * dirPath = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(dirPath == NULL) return JS_EXCEPTION;
|
|
|
|
bool returnVal = DirectoryExists(dirPath);
|
|
|
|
JS_FreeCString(ctx, dirPath);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isFileExtension(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
const char * ext = (const char *)JS_ToCString(ctx, argv[1]);
|
|
|
|
if(ext == NULL) return JS_EXCEPTION;
|
|
|
|
bool returnVal = IsFileExtension(fileName, ext);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
JS_FreeCString(ctx, ext);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getFileLength(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
int returnVal = GetFileLength(fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getFileExtension(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
const char * returnVal = GetFileExtension(fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
JSValue ret = JS_NewString(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getFileName(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * filePath = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(filePath == NULL) return JS_EXCEPTION;
|
|
|
|
const char * returnVal = GetFileName(filePath);
|
|
|
|
JS_FreeCString(ctx, filePath);
|
|
|
|
JSValue ret = JS_NewString(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getFileNameWithoutExt(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * filePath = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(filePath == NULL) return JS_EXCEPTION;
|
|
|
|
const char * returnVal = GetFileNameWithoutExt(filePath);
|
|
|
|
JS_FreeCString(ctx, filePath);
|
|
|
|
JSValue ret = JS_NewString(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getDirectoryPath(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * filePath = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(filePath == NULL) return JS_EXCEPTION;
|
|
|
|
const char * returnVal = GetDirectoryPath(filePath);
|
|
|
|
JS_FreeCString(ctx, filePath);
|
|
|
|
JSValue ret = JS_NewString(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getPrevDirectoryPath(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * dirPath = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(dirPath == NULL) return JS_EXCEPTION;
|
|
|
|
const char * returnVal = GetPrevDirectoryPath(dirPath);
|
|
|
|
JS_FreeCString(ctx, dirPath);
|
|
|
|
JSValue ret = JS_NewString(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getWorkingDirectory(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * returnVal = GetWorkingDirectory();
|
|
|
|
JSValue ret = JS_NewString(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getApplicationDirectory(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * returnVal = GetApplicationDirectory();
|
|
|
|
JSValue ret = JS_NewString(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_changeDirectory(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * dir = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(dir == NULL) return JS_EXCEPTION;
|
|
|
|
bool returnVal = ChangeDirectory(dir);
|
|
|
|
JS_FreeCString(ctx, dir);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isPathFile(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * path = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(path == NULL) return JS_EXCEPTION;
|
|
|
|
bool returnVal = IsPathFile(path);
|
|
|
|
JS_FreeCString(ctx, path);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isFileDropped(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
bool returnVal = IsFileDropped();
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getFileModTime(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
long returnVal = GetFileModTime(fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isKeyPressed(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int key;
|
|
|
|
JS_ToInt32(ctx, &key, argv[0]);
|
|
|
|
bool returnVal = IsKeyPressed(key);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isKeyDown(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int key;
|
|
|
|
JS_ToInt32(ctx, &key, argv[0]);
|
|
|
|
bool returnVal = IsKeyDown(key);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isKeyReleased(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int key;
|
|
|
|
JS_ToInt32(ctx, &key, argv[0]);
|
|
|
|
bool returnVal = IsKeyReleased(key);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isKeyUp(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int key;
|
|
|
|
JS_ToInt32(ctx, &key, argv[0]);
|
|
|
|
bool returnVal = IsKeyUp(key);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setExitKey(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int key;
|
|
|
|
JS_ToInt32(ctx, &key, argv[0]);
|
|
|
|
SetExitKey(key);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getKeyPressed(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetKeyPressed();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getCharPressed(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetCharPressed();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isGamepadAvailable(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int gamepad;
|
|
|
|
JS_ToInt32(ctx, &gamepad, argv[0]);
|
|
|
|
bool returnVal = IsGamepadAvailable(gamepad);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getGamepadName(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int gamepad;
|
|
|
|
JS_ToInt32(ctx, &gamepad, argv[0]);
|
|
|
|
const char * returnVal = GetGamepadName(gamepad);
|
|
|
|
JSValue ret = JS_NewString(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isGamepadButtonPressed(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int gamepad;
|
|
|
|
JS_ToInt32(ctx, &gamepad, argv[0]);
|
|
|
|
int button;
|
|
|
|
JS_ToInt32(ctx, &button, argv[1]);
|
|
|
|
bool returnVal = IsGamepadButtonPressed(gamepad, button);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isGamepadButtonDown(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int gamepad;
|
|
|
|
JS_ToInt32(ctx, &gamepad, argv[0]);
|
|
|
|
int button;
|
|
|
|
JS_ToInt32(ctx, &button, argv[1]);
|
|
|
|
bool returnVal = IsGamepadButtonDown(gamepad, button);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isGamepadButtonReleased(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int gamepad;
|
|
|
|
JS_ToInt32(ctx, &gamepad, argv[0]);
|
|
|
|
int button;
|
|
|
|
JS_ToInt32(ctx, &button, argv[1]);
|
|
|
|
bool returnVal = IsGamepadButtonReleased(gamepad, button);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isGamepadButtonUp(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int gamepad;
|
|
|
|
JS_ToInt32(ctx, &gamepad, argv[0]);
|
|
|
|
int button;
|
|
|
|
JS_ToInt32(ctx, &button, argv[1]);
|
|
|
|
bool returnVal = IsGamepadButtonUp(gamepad, button);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getGamepadButtonPressed(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetGamepadButtonPressed();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getGamepadAxisCount(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int gamepad;
|
|
|
|
JS_ToInt32(ctx, &gamepad, argv[0]);
|
|
|
|
int returnVal = GetGamepadAxisCount(gamepad);
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getGamepadAxisMovement(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int gamepad;
|
|
|
|
JS_ToInt32(ctx, &gamepad, argv[0]);
|
|
|
|
int axis;
|
|
|
|
JS_ToInt32(ctx, &axis, argv[1]);
|
|
|
|
float returnVal = GetGamepadAxisMovement(gamepad, axis);
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setGamepadMappings(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * mappings = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(mappings == NULL) return JS_EXCEPTION;
|
|
|
|
int returnVal = SetGamepadMappings(mappings);
|
|
|
|
JS_FreeCString(ctx, mappings);
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isMouseButtonPressed(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int button;
|
|
|
|
JS_ToInt32(ctx, &button, argv[0]);
|
|
|
|
bool returnVal = IsMouseButtonPressed(button);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isMouseButtonDown(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int button;
|
|
|
|
JS_ToInt32(ctx, &button, argv[0]);
|
|
|
|
bool returnVal = IsMouseButtonDown(button);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isMouseButtonReleased(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int button;
|
|
|
|
JS_ToInt32(ctx, &button, argv[0]);
|
|
|
|
bool returnVal = IsMouseButtonReleased(button);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isMouseButtonUp(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int button;
|
|
|
|
JS_ToInt32(ctx, &button, argv[0]);
|
|
|
|
bool returnVal = IsMouseButtonUp(button);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMouseX(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetMouseX();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMouseY(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetMouseY();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMousePosition(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2 returnVal = GetMousePosition();
|
|
|
|
Vector2* ret_ptr = (Vector2*)js_malloc(ctx, sizeof(Vector2));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector2_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMouseDelta(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2 returnVal = GetMouseDelta();
|
|
|
|
Vector2* ret_ptr = (Vector2*)js_malloc(ctx, sizeof(Vector2));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector2_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setMousePosition(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]);
|
|
|
|
SetMousePosition(x, y);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setMouseOffset(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int offsetX;
|
|
|
|
JS_ToInt32(ctx, &offsetX, argv[0]);
|
|
|
|
int offsetY;
|
|
|
|
JS_ToInt32(ctx, &offsetY, argv[1]);
|
|
|
|
SetMouseOffset(offsetX, offsetY);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setMouseScale(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_scaleX;
|
|
|
|
JS_ToFloat64(ctx, &_double_scaleX, argv[0]);
|
|
|
|
float scaleX = (float)_double_scaleX;
|
|
|
|
double _double_scaleY;
|
|
|
|
JS_ToFloat64(ctx, &_double_scaleY, argv[1]);
|
|
|
|
float scaleY = (float)_double_scaleY;
|
|
|
|
SetMouseScale(scaleX, scaleY);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMouseWheelMove(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
float returnVal = GetMouseWheelMove();
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMouseWheelMoveV(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2 returnVal = GetMouseWheelMoveV();
|
|
|
|
Vector2* ret_ptr = (Vector2*)js_malloc(ctx, sizeof(Vector2));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector2_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setMouseCursor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int cursor;
|
|
|
|
JS_ToInt32(ctx, &cursor, argv[0]);
|
|
|
|
SetMouseCursor(cursor);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getTouchX(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetTouchX();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getTouchY(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetTouchY();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getTouchPosition(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int index;
|
|
|
|
JS_ToInt32(ctx, &index, argv[0]);
|
|
|
|
Vector2 returnVal = GetTouchPosition(index);
|
|
|
|
Vector2* ret_ptr = (Vector2*)js_malloc(ctx, sizeof(Vector2));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector2_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getTouchPointId(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int index;
|
|
|
|
JS_ToInt32(ctx, &index, argv[0]);
|
|
|
|
int returnVal = GetTouchPointId(index);
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getTouchPointCount(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetTouchPointCount();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setGesturesEnabled(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
unsigned int flags;
|
|
|
|
JS_ToUint32(ctx, &flags, argv[0]);
|
|
|
|
SetGesturesEnabled(flags);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isGestureDetected(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int gesture;
|
|
|
|
JS_ToInt32(ctx, &gesture, argv[0]);
|
|
|
|
bool returnVal = IsGestureDetected(gesture);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getGestureDetected(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int returnVal = GetGestureDetected();
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getGestureHoldDuration(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
float returnVal = GetGestureHoldDuration();
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getGestureDragVector(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2 returnVal = GetGestureDragVector();
|
|
|
|
Vector2* ret_ptr = (Vector2*)js_malloc(ctx, sizeof(Vector2));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector2_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getGestureDragAngle(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
float returnVal = GetGestureDragAngle();
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getGesturePinchVector(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2 returnVal = GetGesturePinchVector();
|
|
|
|
Vector2* ret_ptr = (Vector2*)js_malloc(ctx, sizeof(Vector2));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector2_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getGesturePinchAngle(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
float returnVal = GetGesturePinchAngle();
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawPixel(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int posX;
|
|
|
|
JS_ToInt32(ctx, &posX, argv[0]);
|
|
|
|
int posY;
|
|
|
|
JS_ToInt32(ctx, &posY, argv[1]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawPixel(posX, posY, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawPixelV(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* position_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 position = *position_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[1], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawPixelV(position, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawLine(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int startPosX;
|
|
|
|
JS_ToInt32(ctx, &startPosX, argv[0]);
|
|
|
|
int startPosY;
|
|
|
|
JS_ToInt32(ctx, &startPosY, argv[1]);
|
|
|
|
int endPosX;
|
|
|
|
JS_ToInt32(ctx, &endPosX, argv[2]);
|
|
|
|
int endPosY;
|
|
|
|
JS_ToInt32(ctx, &endPosY, argv[3]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawLine(startPosX, startPosY, endPosX, endPosY, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawLineV(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* startPos_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(startPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 startPos = *startPos_ptr;
|
|
|
|
Vector2* endPos_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(endPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 endPos = *endPos_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawLineV(startPos, endPos, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawLineEx(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* startPos_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(startPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 startPos = *startPos_ptr;
|
|
|
|
Vector2* endPos_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(endPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 endPos = *endPos_ptr;
|
|
|
|
double _double_thick;
|
|
|
|
JS_ToFloat64(ctx, &_double_thick, argv[2]);
|
|
|
|
float thick = (float)_double_thick;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawLineEx(startPos, endPos, thick, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawLineBezier(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* startPos_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(startPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 startPos = *startPos_ptr;
|
|
|
|
Vector2* endPos_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(endPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 endPos = *endPos_ptr;
|
|
|
|
double _double_thick;
|
|
|
|
JS_ToFloat64(ctx, &_double_thick, argv[2]);
|
|
|
|
float thick = (float)_double_thick;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawLineBezier(startPos, endPos, thick, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawLineBezierQuad(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* startPos_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(startPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 startPos = *startPos_ptr;
|
|
|
|
Vector2* endPos_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(endPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 endPos = *endPos_ptr;
|
|
|
|
Vector2* controlPos_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[2], js_Vector2_class_id);
|
|
|
|
if(controlPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 controlPos = *controlPos_ptr;
|
|
|
|
double _double_thick;
|
|
|
|
JS_ToFloat64(ctx, &_double_thick, argv[3]);
|
|
|
|
float thick = (float)_double_thick;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawLineBezierQuad(startPos, endPos, controlPos, thick, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawLineBezierCubic(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* startPos_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(startPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 startPos = *startPos_ptr;
|
|
|
|
Vector2* endPos_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(endPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 endPos = *endPos_ptr;
|
|
|
|
Vector2* startControlPos_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[2], js_Vector2_class_id);
|
|
|
|
if(startControlPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 startControlPos = *startControlPos_ptr;
|
|
|
|
Vector2* endControlPos_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[3], js_Vector2_class_id);
|
|
|
|
if(endControlPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 endControlPos = *endControlPos_ptr;
|
|
|
|
double _double_thick;
|
|
|
|
JS_ToFloat64(ctx, &_double_thick, argv[4]);
|
|
|
|
float thick = (float)_double_thick;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawLineBezierCubic(startPos, endPos, startControlPos, endControlPos, thick, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawCircle(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int centerX;
|
|
|
|
JS_ToInt32(ctx, ¢erX, argv[0]);
|
|
|
|
int centerY;
|
|
|
|
JS_ToInt32(ctx, ¢erY, argv[1]);
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[2]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCircle(centerX, centerY, radius, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawCircleSector(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* center_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(center_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 center = *center_ptr;
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[1]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
double _double_startAngle;
|
|
|
|
JS_ToFloat64(ctx, &_double_startAngle, argv[2]);
|
|
|
|
float startAngle = (float)_double_startAngle;
|
|
|
|
double _double_endAngle;
|
|
|
|
JS_ToFloat64(ctx, &_double_endAngle, argv[3]);
|
|
|
|
float endAngle = (float)_double_endAngle;
|
|
|
|
int segments;
|
|
|
|
JS_ToInt32(ctx, &segments, argv[4]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCircleSector(center, radius, startAngle, endAngle, segments, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawCircleSectorLines(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* center_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(center_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 center = *center_ptr;
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[1]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
double _double_startAngle;
|
|
|
|
JS_ToFloat64(ctx, &_double_startAngle, argv[2]);
|
|
|
|
float startAngle = (float)_double_startAngle;
|
|
|
|
double _double_endAngle;
|
|
|
|
JS_ToFloat64(ctx, &_double_endAngle, argv[3]);
|
|
|
|
float endAngle = (float)_double_endAngle;
|
|
|
|
int segments;
|
|
|
|
JS_ToInt32(ctx, &segments, argv[4]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCircleSectorLines(center, radius, startAngle, endAngle, segments, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawCircleGradient(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int centerX;
|
|
|
|
JS_ToInt32(ctx, ¢erX, argv[0]);
|
|
|
|
int centerY;
|
|
|
|
JS_ToInt32(ctx, ¢erY, argv[1]);
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[2]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
Color* color1_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(color1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color1 = *color1_ptr;
|
|
|
|
Color* color2_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color2 = *color2_ptr;
|
|
|
|
DrawCircleGradient(centerX, centerY, radius, color1, color2);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawCircleV(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* center_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(center_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 center = *center_ptr;
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[1]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCircleV(center, radius, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawCircleLines(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int centerX;
|
|
|
|
JS_ToInt32(ctx, ¢erX, argv[0]);
|
|
|
|
int centerY;
|
|
|
|
JS_ToInt32(ctx, ¢erY, argv[1]);
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[2]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCircleLines(centerX, centerY, radius, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawEllipse(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int centerX;
|
|
|
|
JS_ToInt32(ctx, ¢erX, argv[0]);
|
|
|
|
int centerY;
|
|
|
|
JS_ToInt32(ctx, ¢erY, argv[1]);
|
|
|
|
double _double_radiusH;
|
|
|
|
JS_ToFloat64(ctx, &_double_radiusH, argv[2]);
|
|
|
|
float radiusH = (float)_double_radiusH;
|
|
|
|
double _double_radiusV;
|
|
|
|
JS_ToFloat64(ctx, &_double_radiusV, argv[3]);
|
|
|
|
float radiusV = (float)_double_radiusV;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawEllipse(centerX, centerY, radiusH, radiusV, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawEllipseLines(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int centerX;
|
|
|
|
JS_ToInt32(ctx, ¢erX, argv[0]);
|
|
|
|
int centerY;
|
|
|
|
JS_ToInt32(ctx, ¢erY, argv[1]);
|
|
|
|
double _double_radiusH;
|
|
|
|
JS_ToFloat64(ctx, &_double_radiusH, argv[2]);
|
|
|
|
float radiusH = (float)_double_radiusH;
|
|
|
|
double _double_radiusV;
|
|
|
|
JS_ToFloat64(ctx, &_double_radiusV, argv[3]);
|
|
|
|
float radiusV = (float)_double_radiusV;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawEllipseLines(centerX, centerY, radiusH, radiusV, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawRing(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* center_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(center_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 center = *center_ptr;
|
|
|
|
double _double_innerRadius;
|
|
|
|
JS_ToFloat64(ctx, &_double_innerRadius, argv[1]);
|
|
|
|
float innerRadius = (float)_double_innerRadius;
|
|
|
|
double _double_outerRadius;
|
|
|
|
JS_ToFloat64(ctx, &_double_outerRadius, argv[2]);
|
|
|
|
float outerRadius = (float)_double_outerRadius;
|
|
|
|
double _double_startAngle;
|
|
|
|
JS_ToFloat64(ctx, &_double_startAngle, argv[3]);
|
|
|
|
float startAngle = (float)_double_startAngle;
|
|
|
|
double _double_endAngle;
|
|
|
|
JS_ToFloat64(ctx, &_double_endAngle, argv[4]);
|
|
|
|
float endAngle = (float)_double_endAngle;
|
|
|
|
int segments;
|
|
|
|
JS_ToInt32(ctx, &segments, argv[5]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[6], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawRing(center, innerRadius, outerRadius, startAngle, endAngle, segments, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawRingLines(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* center_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(center_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 center = *center_ptr;
|
|
|
|
double _double_innerRadius;
|
|
|
|
JS_ToFloat64(ctx, &_double_innerRadius, argv[1]);
|
|
|
|
float innerRadius = (float)_double_innerRadius;
|
|
|
|
double _double_outerRadius;
|
|
|
|
JS_ToFloat64(ctx, &_double_outerRadius, argv[2]);
|
|
|
|
float outerRadius = (float)_double_outerRadius;
|
|
|
|
double _double_startAngle;
|
|
|
|
JS_ToFloat64(ctx, &_double_startAngle, argv[3]);
|
|
|
|
float startAngle = (float)_double_startAngle;
|
|
|
|
double _double_endAngle;
|
|
|
|
JS_ToFloat64(ctx, &_double_endAngle, argv[4]);
|
|
|
|
float endAngle = (float)_double_endAngle;
|
|
|
|
int segments;
|
|
|
|
JS_ToInt32(ctx, &segments, argv[5]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[6], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawRingLines(center, innerRadius, outerRadius, startAngle, endAngle, segments, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawRectangle(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int posX;
|
|
|
|
JS_ToInt32(ctx, &posX, argv[0]);
|
|
|
|
int posY;
|
|
|
|
JS_ToInt32(ctx, &posY, argv[1]);
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[2]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[3]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawRectangle(posX, posY, width, height, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawRectangleV(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* position_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 position = *position_ptr;
|
|
|
|
Vector2* size_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(size_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 size = *size_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawRectangleV(position, size, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawRectangleRec(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Rectangle* rec_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[0], js_Rectangle_class_id);
|
|
|
|
if(rec_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle rec = *rec_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[1], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawRectangleRec(rec, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawRectanglePro(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Rectangle* rec_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[0], js_Rectangle_class_id);
|
|
|
|
if(rec_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle rec = *rec_ptr;
|
|
|
|
Vector2* origin_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(origin_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 origin = *origin_ptr;
|
|
|
|
double _double_rotation;
|
|
|
|
JS_ToFloat64(ctx, &_double_rotation, argv[2]);
|
|
|
|
float rotation = (float)_double_rotation;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawRectanglePro(rec, origin, rotation, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawRectangleGradientV(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int posX;
|
|
|
|
JS_ToInt32(ctx, &posX, argv[0]);
|
|
|
|
int posY;
|
|
|
|
JS_ToInt32(ctx, &posY, argv[1]);
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[2]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[3]);
|
|
|
|
Color* color1_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color1 = *color1_ptr;
|
|
|
|
Color* color2_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(color2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color2 = *color2_ptr;
|
|
|
|
DrawRectangleGradientV(posX, posY, width, height, color1, color2);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawRectangleGradientH(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int posX;
|
|
|
|
JS_ToInt32(ctx, &posX, argv[0]);
|
|
|
|
int posY;
|
|
|
|
JS_ToInt32(ctx, &posY, argv[1]);
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[2]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[3]);
|
|
|
|
Color* color1_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color1 = *color1_ptr;
|
|
|
|
Color* color2_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(color2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color2 = *color2_ptr;
|
|
|
|
DrawRectangleGradientH(posX, posY, width, height, color1, color2);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawRectangleGradientEx(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Rectangle* rec_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[0], js_Rectangle_class_id);
|
|
|
|
if(rec_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle rec = *rec_ptr;
|
|
|
|
Color* col1_ptr = (Color*)JS_GetOpaque2(ctx, argv[1], js_Color_class_id);
|
|
|
|
if(col1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color col1 = *col1_ptr;
|
|
|
|
Color* col2_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(col2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color col2 = *col2_ptr;
|
|
|
|
Color* col3_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(col3_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color col3 = *col3_ptr;
|
|
|
|
Color* col4_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(col4_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color col4 = *col4_ptr;
|
|
|
|
DrawRectangleGradientEx(rec, col1, col2, col3, col4);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawRectangleLines(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int posX;
|
|
|
|
JS_ToInt32(ctx, &posX, argv[0]);
|
|
|
|
int posY;
|
|
|
|
JS_ToInt32(ctx, &posY, argv[1]);
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[2]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[3]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawRectangleLines(posX, posY, width, height, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawRectangleLinesEx(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Rectangle* rec_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[0], js_Rectangle_class_id);
|
|
|
|
if(rec_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle rec = *rec_ptr;
|
|
|
|
double _double_lineThick;
|
|
|
|
JS_ToFloat64(ctx, &_double_lineThick, argv[1]);
|
|
|
|
float lineThick = (float)_double_lineThick;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawRectangleLinesEx(rec, lineThick, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawRectangleRounded(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Rectangle* rec_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[0], js_Rectangle_class_id);
|
|
|
|
if(rec_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle rec = *rec_ptr;
|
|
|
|
double _double_roundness;
|
|
|
|
JS_ToFloat64(ctx, &_double_roundness, argv[1]);
|
|
|
|
float roundness = (float)_double_roundness;
|
|
|
|
int segments;
|
|
|
|
JS_ToInt32(ctx, &segments, argv[2]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawRectangleRounded(rec, roundness, segments, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawRectangleRoundedLines(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Rectangle* rec_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[0], js_Rectangle_class_id);
|
|
|
|
if(rec_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle rec = *rec_ptr;
|
|
|
|
double _double_roundness;
|
|
|
|
JS_ToFloat64(ctx, &_double_roundness, argv[1]);
|
|
|
|
float roundness = (float)_double_roundness;
|
|
|
|
int segments;
|
|
|
|
JS_ToInt32(ctx, &segments, argv[2]);
|
|
|
|
double _double_lineThick;
|
|
|
|
JS_ToFloat64(ctx, &_double_lineThick, argv[3]);
|
|
|
|
float lineThick = (float)_double_lineThick;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawRectangleRoundedLines(rec, roundness, segments, lineThick, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawTriangle(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* v1_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(v1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 v1 = *v1_ptr;
|
|
|
|
Vector2* v2_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(v2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 v2 = *v2_ptr;
|
|
|
|
Vector2* v3_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[2], js_Vector2_class_id);
|
|
|
|
if(v3_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 v3 = *v3_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawTriangle(v1, v2, v3, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawTriangleLines(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* v1_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(v1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 v1 = *v1_ptr;
|
|
|
|
Vector2* v2_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(v2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 v2 = *v2_ptr;
|
|
|
|
Vector2* v3_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[2], js_Vector2_class_id);
|
|
|
|
if(v3_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 v3 = *v3_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawTriangleLines(v1, v2, v3, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawPoly(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* center_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(center_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 center = *center_ptr;
|
|
|
|
int sides;
|
|
|
|
JS_ToInt32(ctx, &sides, argv[1]);
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[2]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
double _double_rotation;
|
|
|
|
JS_ToFloat64(ctx, &_double_rotation, argv[3]);
|
|
|
|
float rotation = (float)_double_rotation;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawPoly(center, sides, radius, rotation, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawPolyLines(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* center_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(center_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 center = *center_ptr;
|
|
|
|
int sides;
|
|
|
|
JS_ToInt32(ctx, &sides, argv[1]);
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[2]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
double _double_rotation;
|
|
|
|
JS_ToFloat64(ctx, &_double_rotation, argv[3]);
|
|
|
|
float rotation = (float)_double_rotation;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawPolyLines(center, sides, radius, rotation, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawPolyLinesEx(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* center_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(center_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 center = *center_ptr;
|
|
|
|
int sides;
|
|
|
|
JS_ToInt32(ctx, &sides, argv[1]);
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[2]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
double _double_rotation;
|
|
|
|
JS_ToFloat64(ctx, &_double_rotation, argv[3]);
|
|
|
|
float rotation = (float)_double_rotation;
|
|
|
|
double _double_lineThick;
|
|
|
|
JS_ToFloat64(ctx, &_double_lineThick, argv[4]);
|
|
|
|
float lineThick = (float)_double_lineThick;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawPolyLinesEx(center, sides, radius, rotation, lineThick, color);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_checkCollisionRecs(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Rectangle* rec1_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[0], js_Rectangle_class_id);
|
|
|
|
if(rec1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle rec1 = *rec1_ptr;
|
|
|
|
Rectangle* rec2_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[1], js_Rectangle_class_id);
|
|
|
|
if(rec2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle rec2 = *rec2_ptr;
|
|
|
|
bool returnVal = CheckCollisionRecs(rec1, rec2);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_checkCollisionCircles(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* center1_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(center1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 center1 = *center1_ptr;
|
|
|
|
double _double_radius1;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius1, argv[1]);
|
|
|
|
float radius1 = (float)_double_radius1;
|
|
|
|
Vector2* center2_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[2], js_Vector2_class_id);
|
|
|
|
if(center2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 center2 = *center2_ptr;
|
|
|
|
double _double_radius2;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius2, argv[3]);
|
|
|
|
float radius2 = (float)_double_radius2;
|
|
|
|
bool returnVal = CheckCollisionCircles(center1, radius1, center2, radius2);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_checkCollisionCircleRec(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* center_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(center_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 center = *center_ptr;
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[1]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
Rectangle* rec_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[2], js_Rectangle_class_id);
|
|
|
|
if(rec_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle rec = *rec_ptr;
|
|
|
|
bool returnVal = CheckCollisionCircleRec(center, radius, rec);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_checkCollisionPointRec(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* point_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(point_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 point = *point_ptr;
|
|
|
|
Rectangle* rec_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[1], js_Rectangle_class_id);
|
|
|
|
if(rec_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle rec = *rec_ptr;
|
|
|
|
bool returnVal = CheckCollisionPointRec(point, rec);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_checkCollisionPointCircle(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* point_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(point_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 point = *point_ptr;
|
|
|
|
Vector2* center_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(center_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 center = *center_ptr;
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[2]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
bool returnVal = CheckCollisionPointCircle(point, center, radius);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_checkCollisionPointTriangle(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* point_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(point_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 point = *point_ptr;
|
|
|
|
Vector2* p1_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(p1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 p1 = *p1_ptr;
|
|
|
|
Vector2* p2_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[2], js_Vector2_class_id);
|
|
|
|
if(p2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 p2 = *p2_ptr;
|
|
|
|
Vector2* p3_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[3], js_Vector2_class_id);
|
|
|
|
if(p3_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 p3 = *p3_ptr;
|
|
|
|
bool returnVal = CheckCollisionPointTriangle(point, p1, p2, p3);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_checkCollisionPointLine(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector2* point_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[0], js_Vector2_class_id);
|
|
|
|
if(point_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 point = *point_ptr;
|
|
|
|
Vector2* p1_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(p1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 p1 = *p1_ptr;
|
|
|
|
Vector2* p2_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[2], js_Vector2_class_id);
|
|
|
|
if(p2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 p2 = *p2_ptr;
|
|
|
|
int threshold;
|
|
|
|
JS_ToInt32(ctx, &threshold, argv[3]);
|
|
|
|
bool returnVal = CheckCollisionPointLine(point, p1, p2, threshold);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getCollisionRec(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Rectangle* rec1_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[0], js_Rectangle_class_id);
|
|
|
|
if(rec1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle rec1 = *rec1_ptr;
|
|
|
|
Rectangle* rec2_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[1], js_Rectangle_class_id);
|
|
|
|
if(rec2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle rec2 = *rec2_ptr;
|
|
|
|
Rectangle returnVal = GetCollisionRec(rec1, rec2);
|
|
|
|
Rectangle* ret_ptr = (Rectangle*)js_malloc(ctx, sizeof(Rectangle));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Rectangle_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_loadImage(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
Image returnVal = LoadImage(fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_loadImageRaw(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[1]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[2]);
|
|
|
|
int format;
|
|
|
|
JS_ToInt32(ctx, &format, argv[3]);
|
|
|
|
int headerSize;
|
|
|
|
JS_ToInt32(ctx, &headerSize, argv[4]);
|
|
|
|
Image returnVal = LoadImageRaw(fileName, width, height, format, headerSize);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_loadImageFromTexture(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Texture2D* texture_ptr = (Texture2D*)JS_GetOpaque2(ctx, argv[0], js_Texture_class_id);
|
|
|
|
if(texture_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Texture2D texture = *texture_ptr;
|
|
|
|
Image returnVal = LoadImageFromTexture(texture);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_loadImageFromScreen(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Image returnVal = LoadImageFromScreen();
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isImageReady(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Image* image_ptr = (Image*)JS_GetOpaque2(ctx, argv[0], js_Image_class_id);
|
|
|
|
if(image_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Image image = *image_ptr;
|
|
|
|
bool returnVal = IsImageReady(image);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_exportImage(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Image* image_ptr = (Image*)JS_GetOpaque2(ctx, argv[0], js_Image_class_id);
|
|
|
|
if(image_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Image image = *image_ptr;
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[1]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
bool returnVal = ExportImage(image, fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_genImageColor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[0]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[1]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
Image returnVal = GenImageColor(width, height, color);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_genImageGradientV(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[0]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[1]);
|
|
|
|
Color* top_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(top_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color top = *top_ptr;
|
|
|
|
Color* bottom_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(bottom_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color bottom = *bottom_ptr;
|
|
|
|
Image returnVal = GenImageGradientV(width, height, top, bottom);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_genImageGradientH(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[0]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[1]);
|
|
|
|
Color* left_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(left_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color left = *left_ptr;
|
|
|
|
Color* right_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(right_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color right = *right_ptr;
|
|
|
|
Image returnVal = GenImageGradientH(width, height, left, right);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_genImageGradientRadial(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[0]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[1]);
|
|
|
|
double _double_density;
|
|
|
|
JS_ToFloat64(ctx, &_double_density, argv[2]);
|
|
|
|
float density = (float)_double_density;
|
|
|
|
Color* inner_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(inner_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color inner = *inner_ptr;
|
|
|
|
Color* outer_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(outer_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color outer = *outer_ptr;
|
|
|
|
Image returnVal = GenImageGradientRadial(width, height, density, inner, outer);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_genImageChecked(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[0]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[1]);
|
|
|
|
int checksX;
|
|
|
|
JS_ToInt32(ctx, &checksX, argv[2]);
|
|
|
|
int checksY;
|
|
|
|
JS_ToInt32(ctx, &checksY, argv[3]);
|
|
|
|
Color* col1_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(col1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color col1 = *col1_ptr;
|
|
|
|
Color* col2_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(col2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color col2 = *col2_ptr;
|
|
|
|
Image returnVal = GenImageChecked(width, height, checksX, checksY, col1, col2);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genImageWhiteNoise(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
2023-05-13 12:49:05 +00:00
|
|
|
int width;
|
2023-05-14 20:19:47 +00:00
|
|
|
JS_ToInt32(ctx, &width, argv[0]);
|
2023-05-13 12:49:05 +00:00
|
|
|
int height;
|
2023-05-14 20:19:47 +00:00
|
|
|
JS_ToInt32(ctx, &height, argv[1]);
|
|
|
|
double _double_factor;
|
|
|
|
JS_ToFloat64(ctx, &_double_factor, argv[2]);
|
|
|
|
float factor = (float)_double_factor;
|
|
|
|
Image returnVal = GenImageWhiteNoise(width, height, factor);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genImagePerlinNoise(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[0]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[1]);
|
|
|
|
int offsetX;
|
|
|
|
JS_ToInt32(ctx, &offsetX, argv[2]);
|
|
|
|
int offsetY;
|
|
|
|
JS_ToInt32(ctx, &offsetY, argv[3]);
|
|
|
|
double _double_scale;
|
|
|
|
JS_ToFloat64(ctx, &_double_scale, argv[4]);
|
|
|
|
float scale = (float)_double_scale;
|
|
|
|
Image returnVal = GenImagePerlinNoise(width, height, offsetX, offsetY, scale);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genImageCellular(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[0]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[1]);
|
|
|
|
int tileSize;
|
|
|
|
JS_ToInt32(ctx, &tileSize, argv[2]);
|
|
|
|
Image returnVal = GenImageCellular(width, height, tileSize);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genImageText(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[0]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[1]);
|
|
|
|
const char * text = (const char *)JS_ToCString(ctx, argv[2]);
|
|
|
|
if(text == NULL) return JS_EXCEPTION;
|
|
|
|
Image returnVal = GenImageText(width, height, text);
|
|
|
|
JS_FreeCString(ctx, text);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_imageCopy(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Image* image_ptr = (Image*)JS_GetOpaque2(ctx, argv[0], js_Image_class_id);
|
|
|
|
if(image_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Image image = *image_ptr;
|
|
|
|
Image returnVal = ImageCopy(image);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_imageFromImage(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Image* image_ptr = (Image*)JS_GetOpaque2(ctx, argv[0], js_Image_class_id);
|
|
|
|
if(image_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Image image = *image_ptr;
|
|
|
|
Rectangle* rec_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[1], js_Rectangle_class_id);
|
|
|
|
if(rec_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle rec = *rec_ptr;
|
|
|
|
Image returnVal = ImageFromImage(image, rec);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_imageText(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * text = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(text == NULL) return JS_EXCEPTION;
|
|
|
|
int fontSize;
|
|
|
|
JS_ToInt32(ctx, &fontSize, argv[1]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
Image returnVal = ImageText(text, fontSize, color);
|
|
|
|
JS_FreeCString(ctx, text);
|
|
|
|
Image* ret_ptr = (Image*)js_malloc(ctx, sizeof(Image));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Image_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getImageAlphaBorder(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Image* image_ptr = (Image*)JS_GetOpaque2(ctx, argv[0], js_Image_class_id);
|
|
|
|
if(image_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Image image = *image_ptr;
|
|
|
|
double _double_threshold;
|
|
|
|
JS_ToFloat64(ctx, &_double_threshold, argv[1]);
|
|
|
|
float threshold = (float)_double_threshold;
|
|
|
|
Rectangle returnVal = GetImageAlphaBorder(image, threshold);
|
|
|
|
Rectangle* ret_ptr = (Rectangle*)js_malloc(ctx, sizeof(Rectangle));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Rectangle_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getImageColor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Image* image_ptr = (Image*)JS_GetOpaque2(ctx, argv[0], js_Image_class_id);
|
|
|
|
if(image_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Image image = *image_ptr;
|
|
|
|
int x;
|
|
|
|
JS_ToInt32(ctx, &x, argv[1]);
|
|
|
|
int y;
|
|
|
|
JS_ToInt32(ctx, &y, argv[2]);
|
|
|
|
Color returnVal = GetImageColor(image, x, y);
|
|
|
|
Color* ret_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_loadTexture(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
Texture2D returnVal = LoadTexture(fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
Texture2D* ret_ptr = (Texture2D*)js_malloc(ctx, sizeof(Texture2D));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Texture_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_loadTextureFromImage(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Image* image_ptr = (Image*)JS_GetOpaque2(ctx, argv[0], js_Image_class_id);
|
|
|
|
if(image_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Image image = *image_ptr;
|
|
|
|
Texture2D returnVal = LoadTextureFromImage(image);
|
|
|
|
Texture2D* ret_ptr = (Texture2D*)js_malloc(ctx, sizeof(Texture2D));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Texture_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_loadTextureCubemap(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Image* image_ptr = (Image*)JS_GetOpaque2(ctx, argv[0], js_Image_class_id);
|
|
|
|
if(image_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Image image = *image_ptr;
|
|
|
|
int layout;
|
|
|
|
JS_ToInt32(ctx, &layout, argv[1]);
|
|
|
|
TextureCubemap returnVal = LoadTextureCubemap(image, layout);
|
|
|
|
TextureCubemap* ret_ptr = (TextureCubemap*)js_malloc(ctx, sizeof(TextureCubemap));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Texture_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isTextureReady(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Texture2D* texture_ptr = (Texture2D*)JS_GetOpaque2(ctx, argv[0], js_Texture_class_id);
|
|
|
|
if(texture_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Texture2D texture = *texture_ptr;
|
|
|
|
bool returnVal = IsTextureReady(texture);
|
2023-05-13 12:49:05 +00:00
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_setTextureFilter(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Texture2D* texture_ptr = (Texture2D*)JS_GetOpaque2(ctx, argv[0], js_Texture_class_id);
|
|
|
|
if(texture_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Texture2D texture = *texture_ptr;
|
|
|
|
int filter;
|
|
|
|
JS_ToInt32(ctx, &filter, argv[1]);
|
|
|
|
SetTextureFilter(texture, filter);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_setTextureWrap(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Texture2D* texture_ptr = (Texture2D*)JS_GetOpaque2(ctx, argv[0], js_Texture_class_id);
|
|
|
|
if(texture_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Texture2D texture = *texture_ptr;
|
|
|
|
int wrap;
|
|
|
|
JS_ToInt32(ctx, &wrap, argv[1]);
|
|
|
|
SetTextureWrap(texture, wrap);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawTexture(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Texture2D* texture_ptr = (Texture2D*)JS_GetOpaque2(ctx, argv[0], js_Texture_class_id);
|
|
|
|
if(texture_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Texture2D texture = *texture_ptr;
|
|
|
|
int posX;
|
|
|
|
JS_ToInt32(ctx, &posX, argv[1]);
|
|
|
|
int posY;
|
|
|
|
JS_ToInt32(ctx, &posY, argv[2]);
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawTexture(texture, posX, posY, tint);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawTextureV(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Texture2D* texture_ptr = (Texture2D*)JS_GetOpaque2(ctx, argv[0], js_Texture_class_id);
|
|
|
|
if(texture_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Texture2D texture = *texture_ptr;
|
|
|
|
Vector2* position_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 position = *position_ptr;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawTextureV(texture, position, tint);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawTextureEx(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Texture2D* texture_ptr = (Texture2D*)JS_GetOpaque2(ctx, argv[0], js_Texture_class_id);
|
|
|
|
if(texture_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Texture2D texture = *texture_ptr;
|
|
|
|
Vector2* position_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 position = *position_ptr;
|
|
|
|
double _double_rotation;
|
|
|
|
JS_ToFloat64(ctx, &_double_rotation, argv[2]);
|
|
|
|
float rotation = (float)_double_rotation;
|
|
|
|
double _double_scale;
|
|
|
|
JS_ToFloat64(ctx, &_double_scale, argv[3]);
|
|
|
|
float scale = (float)_double_scale;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawTextureEx(texture, position, rotation, scale, tint);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawTextureRec(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Texture2D* texture_ptr = (Texture2D*)JS_GetOpaque2(ctx, argv[0], js_Texture_class_id);
|
|
|
|
if(texture_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Texture2D texture = *texture_ptr;
|
|
|
|
Rectangle* source_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[1], js_Rectangle_class_id);
|
|
|
|
if(source_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle source = *source_ptr;
|
|
|
|
Vector2* position_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[2], js_Vector2_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 position = *position_ptr;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawTextureRec(texture, source, position, tint);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawTexturePro(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Texture2D* texture_ptr = (Texture2D*)JS_GetOpaque2(ctx, argv[0], js_Texture_class_id);
|
|
|
|
if(texture_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Texture2D texture = *texture_ptr;
|
|
|
|
Rectangle* source_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[1], js_Rectangle_class_id);
|
|
|
|
if(source_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle source = *source_ptr;
|
|
|
|
Rectangle* dest_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[2], js_Rectangle_class_id);
|
|
|
|
if(dest_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle dest = *dest_ptr;
|
|
|
|
Vector2* origin_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[3], js_Vector2_class_id);
|
|
|
|
if(origin_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 origin = *origin_ptr;
|
|
|
|
double _double_rotation;
|
|
|
|
JS_ToFloat64(ctx, &_double_rotation, argv[4]);
|
|
|
|
float rotation = (float)_double_rotation;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawTexturePro(texture, source, dest, origin, rotation, tint);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_fade(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[0], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
double _double_alpha;
|
|
|
|
JS_ToFloat64(ctx, &_double_alpha, argv[1]);
|
|
|
|
float alpha = (float)_double_alpha;
|
|
|
|
Color returnVal = Fade(color, alpha);
|
|
|
|
Color* ret_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_colorToInt(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[0], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
int returnVal = ColorToInt(color);
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_colorNormalize(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[0], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
Vector4 returnVal = ColorNormalize(color);
|
|
|
|
Vector4* ret_ptr = (Vector4*)js_malloc(ctx, sizeof(Vector4));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector4_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_colorFromNormalized(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector4* normalized_ptr = (Vector4*)JS_GetOpaque2(ctx, argv[0], js_Vector4_class_id);
|
|
|
|
if(normalized_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector4 normalized = *normalized_ptr;
|
|
|
|
Color returnVal = ColorFromNormalized(normalized);
|
|
|
|
Color* ret_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_colorToHSV(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[0], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
Vector3 returnVal = ColorToHSV(color);
|
|
|
|
Vector3* ret_ptr = (Vector3*)js_malloc(ctx, sizeof(Vector3));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector3_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_colorFromHSV(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_hue;
|
|
|
|
JS_ToFloat64(ctx, &_double_hue, argv[0]);
|
|
|
|
float hue = (float)_double_hue;
|
|
|
|
double _double_saturation;
|
|
|
|
JS_ToFloat64(ctx, &_double_saturation, argv[1]);
|
|
|
|
float saturation = (float)_double_saturation;
|
|
|
|
double _double_value;
|
|
|
|
JS_ToFloat64(ctx, &_double_value, argv[2]);
|
|
|
|
float value = (float)_double_value;
|
|
|
|
Color returnVal = ColorFromHSV(hue, saturation, value);
|
|
|
|
Color* ret_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_colorTint(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[0], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[1], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
Color returnVal = ColorTint(color, tint);
|
|
|
|
Color* ret_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_colorBrightness(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[0], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
double _double_factor;
|
|
|
|
JS_ToFloat64(ctx, &_double_factor, argv[1]);
|
|
|
|
float factor = (float)_double_factor;
|
|
|
|
Color returnVal = ColorBrightness(color, factor);
|
|
|
|
Color* ret_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_colorContrast(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[0], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
double _double_contrast;
|
|
|
|
JS_ToFloat64(ctx, &_double_contrast, argv[1]);
|
|
|
|
float contrast = (float)_double_contrast;
|
|
|
|
Color returnVal = ColorContrast(color, contrast);
|
|
|
|
Color* ret_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_colorAlpha(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[0], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
double _double_alpha;
|
|
|
|
JS_ToFloat64(ctx, &_double_alpha, argv[1]);
|
|
|
|
float alpha = (float)_double_alpha;
|
|
|
|
Color returnVal = ColorAlpha(color, alpha);
|
|
|
|
Color* ret_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_colorAlphaBlend(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Color* dst_ptr = (Color*)JS_GetOpaque2(ctx, argv[0], js_Color_class_id);
|
|
|
|
if(dst_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color dst = *dst_ptr;
|
|
|
|
Color* src_ptr = (Color*)JS_GetOpaque2(ctx, argv[1], js_Color_class_id);
|
|
|
|
if(src_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color src = *src_ptr;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
Color returnVal = ColorAlphaBlend(dst, src, tint);
|
|
|
|
Color* ret_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getColor(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
unsigned int hexValue;
|
|
|
|
JS_ToUint32(ctx, &hexValue, argv[0]);
|
|
|
|
Color returnVal = GetColor(hexValue);
|
|
|
|
Color* ret_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getPixelDataSize(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int width;
|
|
|
|
JS_ToInt32(ctx, &width, argv[0]);
|
|
|
|
int height;
|
|
|
|
JS_ToInt32(ctx, &height, argv[1]);
|
|
|
|
int format;
|
|
|
|
JS_ToInt32(ctx, &format, argv[2]);
|
|
|
|
int returnVal = GetPixelDataSize(width, height, format);
|
2023-05-13 12:49:05 +00:00
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getFontDefault(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Font returnVal = GetFontDefault();
|
|
|
|
Font* ret_ptr = (Font*)js_malloc(ctx, sizeof(Font));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Font_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_loadFont(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
Font returnVal = LoadFont(fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
Font* ret_ptr = (Font*)js_malloc(ctx, sizeof(Font));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Font_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_loadFontFromImage(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Image* image_ptr = (Image*)JS_GetOpaque2(ctx, argv[0], js_Image_class_id);
|
|
|
|
if(image_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Image image = *image_ptr;
|
|
|
|
Color* key_ptr = (Color*)JS_GetOpaque2(ctx, argv[1], js_Color_class_id);
|
|
|
|
if(key_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color key = *key_ptr;
|
|
|
|
int firstChar;
|
|
|
|
JS_ToInt32(ctx, &firstChar, argv[2]);
|
|
|
|
Font returnVal = LoadFontFromImage(image, key, firstChar);
|
|
|
|
Font* ret_ptr = (Font*)js_malloc(ctx, sizeof(Font));
|
2023-05-13 12:49:05 +00:00
|
|
|
*ret_ptr = returnVal;
|
2023-05-14 20:19:47 +00:00
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Font_class_id);
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_isFontReady(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Font* font_ptr = (Font*)JS_GetOpaque2(ctx, argv[0], js_Font_class_id);
|
|
|
|
if(font_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Font font = *font_ptr;
|
|
|
|
bool returnVal = IsFontReady(font);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawFPS(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int posX;
|
|
|
|
JS_ToInt32(ctx, &posX, argv[0]);
|
|
|
|
int posY;
|
|
|
|
JS_ToInt32(ctx, &posY, argv[1]);
|
|
|
|
DrawFPS(posX, posY);
|
|
|
|
return JS_UNDEFINED;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawText(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * text = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(text == NULL) return JS_EXCEPTION;
|
|
|
|
int posX;
|
|
|
|
JS_ToInt32(ctx, &posX, argv[1]);
|
|
|
|
int posY;
|
|
|
|
JS_ToInt32(ctx, &posY, argv[2]);
|
|
|
|
int fontSize;
|
|
|
|
JS_ToInt32(ctx, &fontSize, argv[3]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawText(text, posX, posY, fontSize, color);
|
|
|
|
JS_FreeCString(ctx, text);
|
|
|
|
return JS_UNDEFINED;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawTextEx(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Font* font_ptr = (Font*)JS_GetOpaque2(ctx, argv[0], js_Font_class_id);
|
|
|
|
if(font_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Font font = *font_ptr;
|
|
|
|
const char * text = (const char *)JS_ToCString(ctx, argv[1]);
|
|
|
|
if(text == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2* position_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[2], js_Vector2_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 position = *position_ptr;
|
|
|
|
double _double_fontSize;
|
|
|
|
JS_ToFloat64(ctx, &_double_fontSize, argv[3]);
|
|
|
|
float fontSize = (float)_double_fontSize;
|
|
|
|
double _double_spacing;
|
|
|
|
JS_ToFloat64(ctx, &_double_spacing, argv[4]);
|
|
|
|
float spacing = (float)_double_spacing;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawTextEx(font, text, position, fontSize, spacing, tint);
|
|
|
|
JS_FreeCString(ctx, text);
|
|
|
|
return JS_UNDEFINED;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawTextPro(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Font* font_ptr = (Font*)JS_GetOpaque2(ctx, argv[0], js_Font_class_id);
|
|
|
|
if(font_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Font font = *font_ptr;
|
|
|
|
const char * text = (const char *)JS_ToCString(ctx, argv[1]);
|
|
|
|
if(text == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2* position_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[2], js_Vector2_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 position = *position_ptr;
|
|
|
|
Vector2* origin_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[3], js_Vector2_class_id);
|
|
|
|
if(origin_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 origin = *origin_ptr;
|
|
|
|
double _double_rotation;
|
|
|
|
JS_ToFloat64(ctx, &_double_rotation, argv[4]);
|
|
|
|
float rotation = (float)_double_rotation;
|
|
|
|
double _double_fontSize;
|
|
|
|
JS_ToFloat64(ctx, &_double_fontSize, argv[5]);
|
|
|
|
float fontSize = (float)_double_fontSize;
|
|
|
|
double _double_spacing;
|
|
|
|
JS_ToFloat64(ctx, &_double_spacing, argv[6]);
|
|
|
|
float spacing = (float)_double_spacing;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[7], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawTextPro(font, text, position, origin, rotation, fontSize, spacing, tint);
|
|
|
|
JS_FreeCString(ctx, text);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_drawTextCodepoint(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Font* font_ptr = (Font*)JS_GetOpaque2(ctx, argv[0], js_Font_class_id);
|
|
|
|
if(font_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Font font = *font_ptr;
|
|
|
|
int codepoint;
|
|
|
|
JS_ToInt32(ctx, &codepoint, argv[1]);
|
|
|
|
Vector2* position_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[2], js_Vector2_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 position = *position_ptr;
|
|
|
|
double _double_fontSize;
|
|
|
|
JS_ToFloat64(ctx, &_double_fontSize, argv[3]);
|
|
|
|
float fontSize = (float)_double_fontSize;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawTextCodepoint(font, codepoint, position, fontSize, tint);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_measureText(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * text = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(text == NULL) return JS_EXCEPTION;
|
|
|
|
int fontSize;
|
|
|
|
JS_ToInt32(ctx, &fontSize, argv[1]);
|
|
|
|
int returnVal = MeasureText(text, fontSize);
|
|
|
|
JS_FreeCString(ctx, text);
|
2023-05-13 12:49:05 +00:00
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_measureTextEx(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Font* font_ptr = (Font*)JS_GetOpaque2(ctx, argv[0], js_Font_class_id);
|
|
|
|
if(font_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Font font = *font_ptr;
|
|
|
|
const char * text = (const char *)JS_ToCString(ctx, argv[1]);
|
|
|
|
if(text == NULL) return JS_EXCEPTION;
|
|
|
|
double _double_fontSize;
|
|
|
|
JS_ToFloat64(ctx, &_double_fontSize, argv[2]);
|
|
|
|
float fontSize = (float)_double_fontSize;
|
|
|
|
double _double_spacing;
|
|
|
|
JS_ToFloat64(ctx, &_double_spacing, argv[3]);
|
|
|
|
float spacing = (float)_double_spacing;
|
|
|
|
Vector2 returnVal = MeasureTextEx(font, text, fontSize, spacing);
|
|
|
|
JS_FreeCString(ctx, text);
|
2023-05-13 12:49:05 +00:00
|
|
|
Vector2* ret_ptr = (Vector2*)js_malloc(ctx, sizeof(Vector2));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Vector2_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getGlyphIndex(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Font* font_ptr = (Font*)JS_GetOpaque2(ctx, argv[0], js_Font_class_id);
|
|
|
|
if(font_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Font font = *font_ptr;
|
|
|
|
int codepoint;
|
|
|
|
JS_ToInt32(ctx, &codepoint, argv[1]);
|
|
|
|
int returnVal = GetGlyphIndex(font, codepoint);
|
|
|
|
JSValue ret = JS_NewInt32(ctx, returnVal);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getGlyphAtlasRec(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Font* font_ptr = (Font*)JS_GetOpaque2(ctx, argv[0], js_Font_class_id);
|
|
|
|
if(font_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Font font = *font_ptr;
|
|
|
|
int codepoint;
|
|
|
|
JS_ToInt32(ctx, &codepoint, argv[1]);
|
|
|
|
Rectangle returnVal = GetGlyphAtlasRec(font, codepoint);
|
|
|
|
Rectangle* ret_ptr = (Rectangle*)js_malloc(ctx, sizeof(Rectangle));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Rectangle_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawLine3D(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* startPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(startPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 startPos = *startPos_ptr;
|
|
|
|
Vector3* endPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(endPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 endPos = *endPos_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawLine3D(startPos, endPos, color);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawPoint3D(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[1], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawPoint3D(position, color);
|
|
|
|
return JS_UNDEFINED;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawCircle3D(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* center_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(center_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 center = *center_ptr;
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[1]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
Vector3* rotationAxis_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[2], js_Vector3_class_id);
|
|
|
|
if(rotationAxis_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 rotationAxis = *rotationAxis_ptr;
|
|
|
|
double _double_rotationAngle;
|
|
|
|
JS_ToFloat64(ctx, &_double_rotationAngle, argv[3]);
|
|
|
|
float rotationAngle = (float)_double_rotationAngle;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCircle3D(center, radius, rotationAxis, rotationAngle, color);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawTriangle3D(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* v1_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(v1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 v1 = *v1_ptr;
|
|
|
|
Vector3* v2_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(v2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 v2 = *v2_ptr;
|
|
|
|
Vector3* v3_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[2], js_Vector3_class_id);
|
|
|
|
if(v3_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 v3 = *v3_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawTriangle3D(v1, v2, v3, color);
|
2023-05-10 21:26:53 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawCube(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
double _double_width;
|
|
|
|
JS_ToFloat64(ctx, &_double_width, argv[1]);
|
|
|
|
float width = (float)_double_width;
|
|
|
|
double _double_height;
|
|
|
|
JS_ToFloat64(ctx, &_double_height, argv[2]);
|
|
|
|
float height = (float)_double_height;
|
|
|
|
double _double_length;
|
|
|
|
JS_ToFloat64(ctx, &_double_length, argv[3]);
|
|
|
|
float length = (float)_double_length;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCube(position, width, height, length, color);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
2023-05-10 21:26:53 +00:00
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawCubeV(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
Vector3* size_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(size_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 size = *size_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCubeV(position, size, color);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
2023-05-10 21:26:53 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawCubeWires(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
double _double_width;
|
|
|
|
JS_ToFloat64(ctx, &_double_width, argv[1]);
|
|
|
|
float width = (float)_double_width;
|
|
|
|
double _double_height;
|
|
|
|
JS_ToFloat64(ctx, &_double_height, argv[2]);
|
|
|
|
float height = (float)_double_height;
|
|
|
|
double _double_length;
|
|
|
|
JS_ToFloat64(ctx, &_double_length, argv[3]);
|
|
|
|
float length = (float)_double_length;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCubeWires(position, width, height, length, color);
|
|
|
|
return JS_UNDEFINED;
|
2023-05-10 21:26:53 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawCubeWiresV(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
Vector3* size_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(size_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 size = *size_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCubeWiresV(position, size, color);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
2023-05-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawSphere(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* centerPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(centerPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 centerPos = *centerPos_ptr;
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[1]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawSphere(centerPos, radius, color);
|
2023-05-04 21:54:03 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawSphereEx(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* centerPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(centerPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 centerPos = *centerPos_ptr;
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[1]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
int rings;
|
|
|
|
JS_ToInt32(ctx, &rings, argv[2]);
|
|
|
|
int slices;
|
|
|
|
JS_ToInt32(ctx, &slices, argv[3]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawSphereEx(centerPos, radius, rings, slices, color);
|
|
|
|
return JS_UNDEFINED;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawSphereWires(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* centerPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(centerPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 centerPos = *centerPos_ptr;
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[1]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
int rings;
|
|
|
|
JS_ToInt32(ctx, &rings, argv[2]);
|
|
|
|
int slices;
|
|
|
|
JS_ToInt32(ctx, &slices, argv[3]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
2023-05-13 12:49:05 +00:00
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
2023-05-14 20:19:47 +00:00
|
|
|
DrawSphereWires(centerPos, radius, rings, slices, color);
|
2023-05-05 14:49:33 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawCylinder(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
double _double_radiusTop;
|
|
|
|
JS_ToFloat64(ctx, &_double_radiusTop, argv[1]);
|
|
|
|
float radiusTop = (float)_double_radiusTop;
|
|
|
|
double _double_radiusBottom;
|
|
|
|
JS_ToFloat64(ctx, &_double_radiusBottom, argv[2]);
|
|
|
|
float radiusBottom = (float)_double_radiusBottom;
|
|
|
|
double _double_height;
|
|
|
|
JS_ToFloat64(ctx, &_double_height, argv[3]);
|
|
|
|
float height = (float)_double_height;
|
|
|
|
int slices;
|
|
|
|
JS_ToInt32(ctx, &slices, argv[4]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCylinder(position, radiusTop, radiusBottom, height, slices, color);
|
2023-05-05 14:49:33 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawCylinderEx(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* startPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(startPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 startPos = *startPos_ptr;
|
|
|
|
Vector3* endPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(endPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 endPos = *endPos_ptr;
|
|
|
|
double _double_startRadius;
|
|
|
|
JS_ToFloat64(ctx, &_double_startRadius, argv[2]);
|
|
|
|
float startRadius = (float)_double_startRadius;
|
|
|
|
double _double_endRadius;
|
|
|
|
JS_ToFloat64(ctx, &_double_endRadius, argv[3]);
|
|
|
|
float endRadius = (float)_double_endRadius;
|
|
|
|
int sides;
|
|
|
|
JS_ToInt32(ctx, &sides, argv[4]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCylinderEx(startPos, endPos, startRadius, endRadius, sides, color);
|
2023-05-04 21:54:03 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawCylinderWires(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
double _double_radiusTop;
|
|
|
|
JS_ToFloat64(ctx, &_double_radiusTop, argv[1]);
|
|
|
|
float radiusTop = (float)_double_radiusTop;
|
|
|
|
double _double_radiusBottom;
|
|
|
|
JS_ToFloat64(ctx, &_double_radiusBottom, argv[2]);
|
|
|
|
float radiusBottom = (float)_double_radiusBottom;
|
|
|
|
double _double_height;
|
|
|
|
JS_ToFloat64(ctx, &_double_height, argv[3]);
|
|
|
|
float height = (float)_double_height;
|
|
|
|
int slices;
|
|
|
|
JS_ToInt32(ctx, &slices, argv[4]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCylinderWires(position, radiusTop, radiusBottom, height, slices, color);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawCylinderWiresEx(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* startPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(startPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 startPos = *startPos_ptr;
|
|
|
|
Vector3* endPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(endPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 endPos = *endPos_ptr;
|
|
|
|
double _double_startRadius;
|
|
|
|
JS_ToFloat64(ctx, &_double_startRadius, argv[2]);
|
|
|
|
float startRadius = (float)_double_startRadius;
|
|
|
|
double _double_endRadius;
|
|
|
|
JS_ToFloat64(ctx, &_double_endRadius, argv[3]);
|
|
|
|
float endRadius = (float)_double_endRadius;
|
|
|
|
int sides;
|
|
|
|
JS_ToInt32(ctx, &sides, argv[4]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCylinderWiresEx(startPos, endPos, startRadius, endRadius, sides, color);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawCapsule(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* startPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(startPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 startPos = *startPos_ptr;
|
|
|
|
Vector3* endPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(endPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 endPos = *endPos_ptr;
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[2]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
int slices;
|
|
|
|
JS_ToInt32(ctx, &slices, argv[3]);
|
|
|
|
int rings;
|
|
|
|
JS_ToInt32(ctx, &rings, argv[4]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCapsule(startPos, endPos, radius, slices, rings, color);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawCapsuleWires(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* startPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(startPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 startPos = *startPos_ptr;
|
|
|
|
Vector3* endPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(endPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 endPos = *endPos_ptr;
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[2]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
int slices;
|
|
|
|
JS_ToInt32(ctx, &slices, argv[3]);
|
|
|
|
int rings;
|
|
|
|
JS_ToInt32(ctx, &rings, argv[4]);
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawCapsuleWires(startPos, endPos, radius, slices, rings, color);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawPlane(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* centerPos_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(centerPos_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 centerPos = *centerPos_ptr;
|
|
|
|
Vector2* size_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[1], js_Vector2_class_id);
|
|
|
|
if(size_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 size = *size_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[2], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawPlane(centerPos, size, color);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawRay(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Ray* ray_ptr = (Ray*)JS_GetOpaque2(ctx, argv[0], js_Ray_class_id);
|
|
|
|
if(ray_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Ray ray = *ray_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[1], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawRay(ray, color);
|
2023-05-10 21:26:53 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawGrid(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int slices;
|
|
|
|
JS_ToInt32(ctx, &slices, argv[0]);
|
|
|
|
double _double_spacing;
|
|
|
|
JS_ToFloat64(ctx, &_double_spacing, argv[1]);
|
|
|
|
float spacing = (float)_double_spacing;
|
|
|
|
DrawGrid(slices, spacing);
|
|
|
|
return JS_UNDEFINED;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_loadModel(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
Model returnVal = LoadModel(fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
Model* ret_ptr = (Model*)js_malloc(ctx, sizeof(Model));
|
2023-05-13 12:49:05 +00:00
|
|
|
*ret_ptr = returnVal;
|
2023-05-14 20:19:47 +00:00
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Model_class_id);
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_loadModelFromMesh(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Mesh* mesh_ptr = (Mesh*)JS_GetOpaque2(ctx, argv[0], js_Mesh_class_id);
|
|
|
|
if(mesh_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Mesh mesh = *mesh_ptr;
|
|
|
|
Model returnVal = LoadModelFromMesh(mesh);
|
|
|
|
Model* ret_ptr = (Model*)js_malloc(ctx, sizeof(Model));
|
2023-05-13 12:49:05 +00:00
|
|
|
*ret_ptr = returnVal;
|
2023-05-14 20:19:47 +00:00
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Model_class_id);
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_isModelReady(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Model* model_ptr = (Model*)JS_GetOpaque2(ctx, argv[0], js_Model_class_id);
|
|
|
|
if(model_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Model model = *model_ptr;
|
|
|
|
bool returnVal = IsModelReady(model);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
2023-05-10 21:26:53 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getModelBoundingBox(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Model* model_ptr = (Model*)JS_GetOpaque2(ctx, argv[0], js_Model_class_id);
|
|
|
|
if(model_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Model model = *model_ptr;
|
|
|
|
BoundingBox returnVal = GetModelBoundingBox(model);
|
|
|
|
BoundingBox* ret_ptr = (BoundingBox*)js_malloc(ctx, sizeof(BoundingBox));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_BoundingBox_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawModel(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Model* model_ptr = (Model*)JS_GetOpaque2(ctx, argv[0], js_Model_class_id);
|
|
|
|
if(model_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Model model = *model_ptr;
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
double _double_scale;
|
|
|
|
JS_ToFloat64(ctx, &_double_scale, argv[2]);
|
|
|
|
float scale = (float)_double_scale;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawModel(model, position, scale, tint);
|
|
|
|
return JS_UNDEFINED;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawModelEx(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Model* model_ptr = (Model*)JS_GetOpaque2(ctx, argv[0], js_Model_class_id);
|
|
|
|
if(model_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Model model = *model_ptr;
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
Vector3* rotationAxis_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[2], js_Vector3_class_id);
|
|
|
|
if(rotationAxis_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 rotationAxis = *rotationAxis_ptr;
|
|
|
|
double _double_rotationAngle;
|
|
|
|
JS_ToFloat64(ctx, &_double_rotationAngle, argv[3]);
|
|
|
|
float rotationAngle = (float)_double_rotationAngle;
|
|
|
|
Vector3* scale_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[4], js_Vector3_class_id);
|
|
|
|
if(scale_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 scale = *scale_ptr;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawModelEx(model, position, rotationAxis, rotationAngle, scale, tint);
|
|
|
|
return JS_UNDEFINED;
|
2023-05-13 12:49:05 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawModelWires(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Model* model_ptr = (Model*)JS_GetOpaque2(ctx, argv[0], js_Model_class_id);
|
|
|
|
if(model_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Model model = *model_ptr;
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
double _double_scale;
|
|
|
|
JS_ToFloat64(ctx, &_double_scale, argv[2]);
|
|
|
|
float scale = (float)_double_scale;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[3], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawModelWires(model, position, scale, tint);
|
2023-05-10 21:26:53 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawModelWiresEx(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Model* model_ptr = (Model*)JS_GetOpaque2(ctx, argv[0], js_Model_class_id);
|
|
|
|
if(model_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Model model = *model_ptr;
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
Vector3* rotationAxis_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[2], js_Vector3_class_id);
|
|
|
|
if(rotationAxis_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 rotationAxis = *rotationAxis_ptr;
|
|
|
|
double _double_rotationAngle;
|
|
|
|
JS_ToFloat64(ctx, &_double_rotationAngle, argv[3]);
|
|
|
|
float rotationAngle = (float)_double_rotationAngle;
|
|
|
|
Vector3* scale_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[4], js_Vector3_class_id);
|
|
|
|
if(scale_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 scale = *scale_ptr;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawModelWiresEx(model, position, rotationAxis, rotationAngle, scale, tint);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawBoundingBox(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
BoundingBox* box_ptr = (BoundingBox*)JS_GetOpaque2(ctx, argv[0], js_BoundingBox_class_id);
|
|
|
|
if(box_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
BoundingBox box = *box_ptr;
|
|
|
|
Color* color_ptr = (Color*)JS_GetOpaque2(ctx, argv[1], js_Color_class_id);
|
|
|
|
if(color_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color color = *color_ptr;
|
|
|
|
DrawBoundingBox(box, color);
|
2023-05-10 21:26:53 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawBillboard(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Camera* camera_ptr = (Camera*)JS_GetOpaque2(ctx, argv[0], js_Camera3D_class_id);
|
|
|
|
if(camera_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Camera camera = *camera_ptr;
|
|
|
|
Texture2D* texture_ptr = (Texture2D*)JS_GetOpaque2(ctx, argv[1], js_Texture_class_id);
|
|
|
|
if(texture_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Texture2D texture = *texture_ptr;
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[2], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
double _double_size;
|
|
|
|
JS_ToFloat64(ctx, &_double_size, argv[3]);
|
|
|
|
float size = (float)_double_size;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[4], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawBillboard(camera, texture, position, size, tint);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawBillboardRec(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Camera* camera_ptr = (Camera*)JS_GetOpaque2(ctx, argv[0], js_Camera3D_class_id);
|
|
|
|
if(camera_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Camera camera = *camera_ptr;
|
|
|
|
Texture2D* texture_ptr = (Texture2D*)JS_GetOpaque2(ctx, argv[1], js_Texture_class_id);
|
|
|
|
if(texture_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Texture2D texture = *texture_ptr;
|
|
|
|
Rectangle* source_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[2], js_Rectangle_class_id);
|
|
|
|
if(source_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle source = *source_ptr;
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[3], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
Vector2* size_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[4], js_Vector2_class_id);
|
|
|
|
if(size_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 size = *size_ptr;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[5], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawBillboardRec(camera, texture, source, position, size, tint);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_drawBillboardPro(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Camera* camera_ptr = (Camera*)JS_GetOpaque2(ctx, argv[0], js_Camera3D_class_id);
|
|
|
|
if(camera_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Camera camera = *camera_ptr;
|
|
|
|
Texture2D* texture_ptr = (Texture2D*)JS_GetOpaque2(ctx, argv[1], js_Texture_class_id);
|
|
|
|
if(texture_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Texture2D texture = *texture_ptr;
|
|
|
|
Rectangle* source_ptr = (Rectangle*)JS_GetOpaque2(ctx, argv[2], js_Rectangle_class_id);
|
|
|
|
if(source_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Rectangle source = *source_ptr;
|
|
|
|
Vector3* position_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[3], js_Vector3_class_id);
|
|
|
|
if(position_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 position = *position_ptr;
|
|
|
|
Vector3* up_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[4], js_Vector3_class_id);
|
|
|
|
if(up_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 up = *up_ptr;
|
|
|
|
Vector2* size_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[5], js_Vector2_class_id);
|
|
|
|
if(size_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 size = *size_ptr;
|
|
|
|
Vector2* origin_ptr = (Vector2*)JS_GetOpaque2(ctx, argv[6], js_Vector2_class_id);
|
|
|
|
if(origin_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector2 origin = *origin_ptr;
|
|
|
|
double _double_rotation;
|
|
|
|
JS_ToFloat64(ctx, &_double_rotation, argv[7]);
|
|
|
|
float rotation = (float)_double_rotation;
|
|
|
|
Color* tint_ptr = (Color*)JS_GetOpaque2(ctx, argv[8], js_Color_class_id);
|
|
|
|
if(tint_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Color tint = *tint_ptr;
|
|
|
|
DrawBillboardPro(camera, texture, source, position, up, size, origin, rotation, tint);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_exportMesh(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Mesh* mesh_ptr = (Mesh*)JS_GetOpaque2(ctx, argv[0], js_Mesh_class_id);
|
|
|
|
if(mesh_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Mesh mesh = *mesh_ptr;
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[1]);
|
2023-05-13 12:49:05 +00:00
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
2023-05-14 20:19:47 +00:00
|
|
|
bool returnVal = ExportMesh(mesh, fileName);
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_FreeCString(ctx, fileName);
|
2023-05-14 20:19:47 +00:00
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getMeshBoundingBox(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Mesh* mesh_ptr = (Mesh*)JS_GetOpaque2(ctx, argv[0], js_Mesh_class_id);
|
|
|
|
if(mesh_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Mesh mesh = *mesh_ptr;
|
|
|
|
BoundingBox returnVal = GetMeshBoundingBox(mesh);
|
|
|
|
BoundingBox* ret_ptr = (BoundingBox*)js_malloc(ctx, sizeof(BoundingBox));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_BoundingBox_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genMeshPoly(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
int sides;
|
|
|
|
JS_ToInt32(ctx, &sides, argv[0]);
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[1]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
Mesh returnVal = GenMeshPoly(sides, radius);
|
|
|
|
Mesh* ret_ptr = (Mesh*)js_malloc(ctx, sizeof(Mesh));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Mesh_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genMeshPlane(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_width;
|
|
|
|
JS_ToFloat64(ctx, &_double_width, argv[0]);
|
|
|
|
float width = (float)_double_width;
|
|
|
|
double _double_length;
|
|
|
|
JS_ToFloat64(ctx, &_double_length, argv[1]);
|
|
|
|
float length = (float)_double_length;
|
|
|
|
int resX;
|
|
|
|
JS_ToInt32(ctx, &resX, argv[2]);
|
|
|
|
int resZ;
|
|
|
|
JS_ToInt32(ctx, &resZ, argv[3]);
|
|
|
|
Mesh returnVal = GenMeshPlane(width, length, resX, resZ);
|
|
|
|
Mesh* ret_ptr = (Mesh*)js_malloc(ctx, sizeof(Mesh));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Mesh_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genMeshCube(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_width;
|
|
|
|
JS_ToFloat64(ctx, &_double_width, argv[0]);
|
|
|
|
float width = (float)_double_width;
|
|
|
|
double _double_height;
|
|
|
|
JS_ToFloat64(ctx, &_double_height, argv[1]);
|
|
|
|
float height = (float)_double_height;
|
|
|
|
double _double_length;
|
|
|
|
JS_ToFloat64(ctx, &_double_length, argv[2]);
|
|
|
|
float length = (float)_double_length;
|
|
|
|
Mesh returnVal = GenMeshCube(width, height, length);
|
|
|
|
Mesh* ret_ptr = (Mesh*)js_malloc(ctx, sizeof(Mesh));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Mesh_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genMeshSphere(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[0]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
int rings;
|
|
|
|
JS_ToInt32(ctx, &rings, argv[1]);
|
|
|
|
int slices;
|
|
|
|
JS_ToInt32(ctx, &slices, argv[2]);
|
|
|
|
Mesh returnVal = GenMeshSphere(radius, rings, slices);
|
|
|
|
Mesh* ret_ptr = (Mesh*)js_malloc(ctx, sizeof(Mesh));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Mesh_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genMeshHemiSphere(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[0]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
int rings;
|
|
|
|
JS_ToInt32(ctx, &rings, argv[1]);
|
|
|
|
int slices;
|
|
|
|
JS_ToInt32(ctx, &slices, argv[2]);
|
|
|
|
Mesh returnVal = GenMeshHemiSphere(radius, rings, slices);
|
|
|
|
Mesh* ret_ptr = (Mesh*)js_malloc(ctx, sizeof(Mesh));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Mesh_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genMeshCylinder(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[0]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
double _double_height;
|
|
|
|
JS_ToFloat64(ctx, &_double_height, argv[1]);
|
|
|
|
float height = (float)_double_height;
|
|
|
|
int slices;
|
|
|
|
JS_ToInt32(ctx, &slices, argv[2]);
|
|
|
|
Mesh returnVal = GenMeshCylinder(radius, height, slices);
|
|
|
|
Mesh* ret_ptr = (Mesh*)js_malloc(ctx, sizeof(Mesh));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Mesh_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genMeshCone(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[0]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
double _double_height;
|
|
|
|
JS_ToFloat64(ctx, &_double_height, argv[1]);
|
|
|
|
float height = (float)_double_height;
|
|
|
|
int slices;
|
|
|
|
JS_ToInt32(ctx, &slices, argv[2]);
|
|
|
|
Mesh returnVal = GenMeshCone(radius, height, slices);
|
|
|
|
Mesh* ret_ptr = (Mesh*)js_malloc(ctx, sizeof(Mesh));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Mesh_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genMeshTorus(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[0]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
double _double_size;
|
|
|
|
JS_ToFloat64(ctx, &_double_size, argv[1]);
|
|
|
|
float size = (float)_double_size;
|
|
|
|
int radSeg;
|
|
|
|
JS_ToInt32(ctx, &radSeg, argv[2]);
|
|
|
|
int sides;
|
|
|
|
JS_ToInt32(ctx, &sides, argv[3]);
|
|
|
|
Mesh returnVal = GenMeshTorus(radius, size, radSeg, sides);
|
|
|
|
Mesh* ret_ptr = (Mesh*)js_malloc(ctx, sizeof(Mesh));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Mesh_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genMeshKnot(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[0]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
double _double_size;
|
|
|
|
JS_ToFloat64(ctx, &_double_size, argv[1]);
|
|
|
|
float size = (float)_double_size;
|
|
|
|
int radSeg;
|
|
|
|
JS_ToInt32(ctx, &radSeg, argv[2]);
|
|
|
|
int sides;
|
|
|
|
JS_ToInt32(ctx, &sides, argv[3]);
|
|
|
|
Mesh returnVal = GenMeshKnot(radius, size, radSeg, sides);
|
|
|
|
Mesh* ret_ptr = (Mesh*)js_malloc(ctx, sizeof(Mesh));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Mesh_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genMeshHeightmap(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Image* heightmap_ptr = (Image*)JS_GetOpaque2(ctx, argv[0], js_Image_class_id);
|
|
|
|
if(heightmap_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Image heightmap = *heightmap_ptr;
|
|
|
|
Vector3* size_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(size_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 size = *size_ptr;
|
|
|
|
Mesh returnVal = GenMeshHeightmap(heightmap, size);
|
|
|
|
Mesh* ret_ptr = (Mesh*)js_malloc(ctx, sizeof(Mesh));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Mesh_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_genMeshCubicmap(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Image* cubicmap_ptr = (Image*)JS_GetOpaque2(ctx, argv[0], js_Image_class_id);
|
|
|
|
if(cubicmap_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Image cubicmap = *cubicmap_ptr;
|
|
|
|
Vector3* cubeSize_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(cubeSize_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 cubeSize = *cubeSize_ptr;
|
|
|
|
Mesh returnVal = GenMeshCubicmap(cubicmap, cubeSize);
|
|
|
|
Mesh* ret_ptr = (Mesh*)js_malloc(ctx, sizeof(Mesh));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Mesh_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_checkCollisionSpheres(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Vector3* center1_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[0], js_Vector3_class_id);
|
|
|
|
if(center1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 center1 = *center1_ptr;
|
|
|
|
double _double_radius1;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius1, argv[1]);
|
|
|
|
float radius1 = (float)_double_radius1;
|
|
|
|
Vector3* center2_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[2], js_Vector3_class_id);
|
|
|
|
if(center2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 center2 = *center2_ptr;
|
|
|
|
double _double_radius2;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius2, argv[3]);
|
|
|
|
float radius2 = (float)_double_radius2;
|
|
|
|
bool returnVal = CheckCollisionSpheres(center1, radius1, center2, radius2);
|
2023-05-13 12:49:05 +00:00
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_checkCollisionBoxes(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
BoundingBox* box1_ptr = (BoundingBox*)JS_GetOpaque2(ctx, argv[0], js_BoundingBox_class_id);
|
|
|
|
if(box1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
BoundingBox box1 = *box1_ptr;
|
|
|
|
BoundingBox* box2_ptr = (BoundingBox*)JS_GetOpaque2(ctx, argv[1], js_BoundingBox_class_id);
|
|
|
|
if(box2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
BoundingBox box2 = *box2_ptr;
|
|
|
|
bool returnVal = CheckCollisionBoxes(box1, box2);
|
2023-05-13 12:49:05 +00:00
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_checkCollisionBoxSphere(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
BoundingBox* box_ptr = (BoundingBox*)JS_GetOpaque2(ctx, argv[0], js_BoundingBox_class_id);
|
|
|
|
if(box_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
BoundingBox box = *box_ptr;
|
|
|
|
Vector3* center_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(center_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 center = *center_ptr;
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[2]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
bool returnVal = CheckCollisionBoxSphere(box, center, radius);
|
2023-05-13 12:49:05 +00:00
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getRayCollisionSphere(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Ray* ray_ptr = (Ray*)JS_GetOpaque2(ctx, argv[0], js_Ray_class_id);
|
|
|
|
if(ray_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Ray ray = *ray_ptr;
|
|
|
|
Vector3* center_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(center_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 center = *center_ptr;
|
|
|
|
double _double_radius;
|
|
|
|
JS_ToFloat64(ctx, &_double_radius, argv[2]);
|
|
|
|
float radius = (float)_double_radius;
|
|
|
|
RayCollision returnVal = GetRayCollisionSphere(ray, center, radius);
|
|
|
|
RayCollision* ret_ptr = (RayCollision*)js_malloc(ctx, sizeof(RayCollision));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_RayCollision_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getRayCollisionBox(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Ray* ray_ptr = (Ray*)JS_GetOpaque2(ctx, argv[0], js_Ray_class_id);
|
|
|
|
if(ray_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Ray ray = *ray_ptr;
|
|
|
|
BoundingBox* box_ptr = (BoundingBox*)JS_GetOpaque2(ctx, argv[1], js_BoundingBox_class_id);
|
|
|
|
if(box_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
BoundingBox box = *box_ptr;
|
|
|
|
RayCollision returnVal = GetRayCollisionBox(ray, box);
|
|
|
|
RayCollision* ret_ptr = (RayCollision*)js_malloc(ctx, sizeof(RayCollision));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_RayCollision_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 14:31:12 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getRayCollisionMesh(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Ray* ray_ptr = (Ray*)JS_GetOpaque2(ctx, argv[0], js_Ray_class_id);
|
|
|
|
if(ray_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Ray ray = *ray_ptr;
|
|
|
|
Mesh* mesh_ptr = (Mesh*)JS_GetOpaque2(ctx, argv[1], js_Mesh_class_id);
|
|
|
|
if(mesh_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Mesh mesh = *mesh_ptr;
|
|
|
|
Matrix* transform_ptr = (Matrix*)JS_GetOpaque2(ctx, argv[2], js_Matrix_class_id);
|
|
|
|
if(transform_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Matrix transform = *transform_ptr;
|
|
|
|
RayCollision returnVal = GetRayCollisionMesh(ray, mesh, transform);
|
|
|
|
RayCollision* ret_ptr = (RayCollision*)js_malloc(ctx, sizeof(RayCollision));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_RayCollision_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 14:31:12 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getRayCollisionTriangle(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Ray* ray_ptr = (Ray*)JS_GetOpaque2(ctx, argv[0], js_Ray_class_id);
|
|
|
|
if(ray_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Ray ray = *ray_ptr;
|
|
|
|
Vector3* p1_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(p1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 p1 = *p1_ptr;
|
|
|
|
Vector3* p2_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[2], js_Vector3_class_id);
|
|
|
|
if(p2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 p2 = *p2_ptr;
|
|
|
|
Vector3* p3_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[3], js_Vector3_class_id);
|
|
|
|
if(p3_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 p3 = *p3_ptr;
|
|
|
|
RayCollision returnVal = GetRayCollisionTriangle(ray, p1, p2, p3);
|
|
|
|
RayCollision* ret_ptr = (RayCollision*)js_malloc(ctx, sizeof(RayCollision));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_RayCollision_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 14:31:12 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_getRayCollisionQuad(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Ray* ray_ptr = (Ray*)JS_GetOpaque2(ctx, argv[0], js_Ray_class_id);
|
|
|
|
if(ray_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Ray ray = *ray_ptr;
|
|
|
|
Vector3* p1_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[1], js_Vector3_class_id);
|
|
|
|
if(p1_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 p1 = *p1_ptr;
|
|
|
|
Vector3* p2_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[2], js_Vector3_class_id);
|
|
|
|
if(p2_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 p2 = *p2_ptr;
|
|
|
|
Vector3* p3_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[3], js_Vector3_class_id);
|
|
|
|
if(p3_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 p3 = *p3_ptr;
|
|
|
|
Vector3* p4_ptr = (Vector3*)JS_GetOpaque2(ctx, argv[4], js_Vector3_class_id);
|
|
|
|
if(p4_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Vector3 p4 = *p4_ptr;
|
|
|
|
RayCollision returnVal = GetRayCollisionQuad(ray, p1, p2, p3, p4);
|
|
|
|
RayCollision* ret_ptr = (RayCollision*)js_malloc(ctx, sizeof(RayCollision));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_RayCollision_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 14:31:12 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_initAudioDevice(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
InitAudioDevice();
|
2023-05-13 14:31:12 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_closeAudioDevice(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
CloseAudioDevice();
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isAudioDeviceReady(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
bool returnVal = IsAudioDeviceReady();
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
2023-05-13 14:31:12 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_setMasterVolume(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
double _double_volume;
|
|
|
|
JS_ToFloat64(ctx, &_double_volume, argv[0]);
|
|
|
|
float volume = (float)_double_volume;
|
|
|
|
SetMasterVolume(volume);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_loadWave(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
Wave returnVal = LoadWave(fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
Wave* ret_ptr = (Wave*)js_malloc(ctx, sizeof(Wave));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Wave_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 14:31:12 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_isWaveReady(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Wave* wave_ptr = (Wave*)JS_GetOpaque2(ctx, argv[0], js_Wave_class_id);
|
|
|
|
if(wave_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Wave wave = *wave_ptr;
|
|
|
|
bool returnVal = IsWaveReady(wave);
|
2023-05-13 14:31:12 +00:00
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_loadSound(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
Sound returnVal = LoadSound(fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
Sound* ret_ptr = (Sound*)js_malloc(ctx, sizeof(Sound));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Sound_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 14:31:12 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_loadSoundFromWave(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Wave* wave_ptr = (Wave*)JS_GetOpaque2(ctx, argv[0], js_Wave_class_id);
|
|
|
|
if(wave_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Wave wave = *wave_ptr;
|
|
|
|
Sound returnVal = LoadSoundFromWave(wave);
|
|
|
|
Sound* ret_ptr = (Sound*)js_malloc(ctx, sizeof(Sound));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Sound_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
2023-05-13 14:31:12 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_isSoundReady(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Sound* sound_ptr = (Sound*)JS_GetOpaque2(ctx, argv[0], js_Sound_class_id);
|
|
|
|
if(sound_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Sound sound = *sound_ptr;
|
|
|
|
bool returnVal = IsSoundReady(sound);
|
2023-05-13 14:31:12 +00:00
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_exportWave(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Wave* wave_ptr = (Wave*)JS_GetOpaque2(ctx, argv[0], js_Wave_class_id);
|
|
|
|
if(wave_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Wave wave = *wave_ptr;
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[1]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
bool returnVal = ExportWave(wave, fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
2023-05-13 14:31:12 +00:00
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_playSound(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Sound* sound_ptr = (Sound*)JS_GetOpaque2(ctx, argv[0], js_Sound_class_id);
|
|
|
|
if(sound_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Sound sound = *sound_ptr;
|
|
|
|
PlaySound(sound);
|
|
|
|
return JS_UNDEFINED;
|
2023-05-13 14:31:12 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_stopSound(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Sound* sound_ptr = (Sound*)JS_GetOpaque2(ctx, argv[0], js_Sound_class_id);
|
|
|
|
if(sound_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Sound sound = *sound_ptr;
|
|
|
|
StopSound(sound);
|
|
|
|
return JS_UNDEFINED;
|
2023-05-13 14:31:12 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_pauseSound(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Sound* sound_ptr = (Sound*)JS_GetOpaque2(ctx, argv[0], js_Sound_class_id);
|
|
|
|
if(sound_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Sound sound = *sound_ptr;
|
|
|
|
PauseSound(sound);
|
|
|
|
return JS_UNDEFINED;
|
2023-05-13 14:31:12 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_resumeSound(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Sound* sound_ptr = (Sound*)JS_GetOpaque2(ctx, argv[0], js_Sound_class_id);
|
|
|
|
if(sound_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Sound sound = *sound_ptr;
|
|
|
|
ResumeSound(sound);
|
|
|
|
return JS_UNDEFINED;
|
2023-05-13 14:31:12 +00:00
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_isSoundPlaying(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Sound* sound_ptr = (Sound*)JS_GetOpaque2(ctx, argv[0], js_Sound_class_id);
|
|
|
|
if(sound_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Sound sound = *sound_ptr;
|
|
|
|
bool returnVal = IsSoundPlaying(sound);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
2023-05-13 14:31:12 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_setSoundVolume(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Sound* sound_ptr = (Sound*)JS_GetOpaque2(ctx, argv[0], js_Sound_class_id);
|
|
|
|
if(sound_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Sound sound = *sound_ptr;
|
|
|
|
double _double_volume;
|
|
|
|
JS_ToFloat64(ctx, &_double_volume, argv[1]);
|
|
|
|
float volume = (float)_double_volume;
|
|
|
|
SetSoundVolume(sound, volume);
|
2023-05-10 21:26:53 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_setSoundPitch(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Sound* sound_ptr = (Sound*)JS_GetOpaque2(ctx, argv[0], js_Sound_class_id);
|
|
|
|
if(sound_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Sound sound = *sound_ptr;
|
|
|
|
double _double_pitch;
|
|
|
|
JS_ToFloat64(ctx, &_double_pitch, argv[1]);
|
|
|
|
float pitch = (float)_double_pitch;
|
|
|
|
SetSoundPitch(sound, pitch);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_setSoundPan(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Sound* sound_ptr = (Sound*)JS_GetOpaque2(ctx, argv[0], js_Sound_class_id);
|
|
|
|
if(sound_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Sound sound = *sound_ptr;
|
|
|
|
double _double_pan;
|
|
|
|
JS_ToFloat64(ctx, &_double_pan, argv[1]);
|
|
|
|
float pan = (float)_double_pan;
|
|
|
|
SetSoundPan(sound, pan);
|
2023-05-10 21:26:53 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_waveCopy(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Wave* wave_ptr = (Wave*)JS_GetOpaque2(ctx, argv[0], js_Wave_class_id);
|
|
|
|
if(wave_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Wave wave = *wave_ptr;
|
|
|
|
Wave returnVal = WaveCopy(wave);
|
|
|
|
Wave* ret_ptr = (Wave*)js_malloc(ctx, sizeof(Wave));
|
2023-05-11 20:10:40 +00:00
|
|
|
*ret_ptr = returnVal;
|
2023-05-14 20:19:47 +00:00
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Wave_class_id);
|
2023-05-11 20:10:40 +00:00
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_loadMusicStream(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
const char * fileName = (const char *)JS_ToCString(ctx, argv[0]);
|
|
|
|
if(fileName == NULL) return JS_EXCEPTION;
|
|
|
|
Music returnVal = LoadMusicStream(fileName);
|
|
|
|
JS_FreeCString(ctx, fileName);
|
|
|
|
Music* ret_ptr = (Music*)js_malloc(ctx, sizeof(Music));
|
|
|
|
*ret_ptr = returnVal;
|
|
|
|
JSValue ret = JS_NewObjectClass(ctx, js_Music_class_id);
|
|
|
|
JS_SetOpaque(ret, ret_ptr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isMusicReady(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Music* music_ptr = (Music*)JS_GetOpaque2(ctx, argv[0], js_Music_class_id);
|
|
|
|
if(music_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Music music = *music_ptr;
|
|
|
|
bool returnVal = IsMusicReady(music);
|
2023-05-11 20:10:40 +00:00
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_playMusicStream(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Music* music_ptr = (Music*)JS_GetOpaque2(ctx, argv[0], js_Music_class_id);
|
|
|
|
if(music_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Music music = *music_ptr;
|
|
|
|
PlayMusicStream(music);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_isMusicStreamPlaying(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Music* music_ptr = (Music*)JS_GetOpaque2(ctx, argv[0], js_Music_class_id);
|
|
|
|
if(music_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Music music = *music_ptr;
|
|
|
|
bool returnVal = IsMusicStreamPlaying(music);
|
|
|
|
JSValue ret = JS_NewBool(ctx, returnVal);
|
2023-05-11 20:10:40 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_updateMusicStream(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Music* music_ptr = (Music*)JS_GetOpaque2(ctx, argv[0], js_Music_class_id);
|
|
|
|
if(music_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Music music = *music_ptr;
|
|
|
|
UpdateMusicStream(music);
|
2023-05-11 20:10:40 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_stopMusicStream(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Music* music_ptr = (Music*)JS_GetOpaque2(ctx, argv[0], js_Music_class_id);
|
|
|
|
if(music_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Music music = *music_ptr;
|
|
|
|
StopMusicStream(music);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_pauseMusicStream(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Music* music_ptr = (Music*)JS_GetOpaque2(ctx, argv[0], js_Music_class_id);
|
|
|
|
if(music_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Music music = *music_ptr;
|
|
|
|
PauseMusicStream(music);
|
2023-05-13 12:49:05 +00:00
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
2023-05-14 20:19:47 +00:00
|
|
|
static JSValue js_resumeMusicStream(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Music* music_ptr = (Music*)JS_GetOpaque2(ctx, argv[0], js_Music_class_id);
|
|
|
|
if(music_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Music music = *music_ptr;
|
|
|
|
ResumeMusicStream(music);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_seekMusicStream(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Music* music_ptr = (Music*)JS_GetOpaque2(ctx, argv[0], js_Music_class_id);
|
|
|
|
if(music_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Music music = *music_ptr;
|
|
|
|
double _double_position;
|
|
|
|
JS_ToFloat64(ctx, &_double_position, argv[1]);
|
|
|
|
float position = (float)_double_position;
|
|
|
|
SeekMusicStream(music, position);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setMusicVolume(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Music* music_ptr = (Music*)JS_GetOpaque2(ctx, argv[0], js_Music_class_id);
|
|
|
|
if(music_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Music music = *music_ptr;
|
|
|
|
double _double_volume;
|
|
|
|
JS_ToFloat64(ctx, &_double_volume, argv[1]);
|
|
|
|
float volume = (float)_double_volume;
|
|
|
|
SetMusicVolume(music, volume);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setMusicPitch(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Music* music_ptr = (Music*)JS_GetOpaque2(ctx, argv[0], js_Music_class_id);
|
|
|
|
if(music_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Music music = *music_ptr;
|
|
|
|
double _double_pitch;
|
|
|
|
JS_ToFloat64(ctx, &_double_pitch, argv[1]);
|
|
|
|
float pitch = (float)_double_pitch;
|
|
|
|
SetMusicPitch(music, pitch);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_setMusicPan(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Music* music_ptr = (Music*)JS_GetOpaque2(ctx, argv[0], js_Music_class_id);
|
|
|
|
if(music_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Music music = *music_ptr;
|
|
|
|
double _double_pan;
|
|
|
|
JS_ToFloat64(ctx, &_double_pan, argv[1]);
|
|
|
|
float pan = (float)_double_pan;
|
|
|
|
SetMusicPan(music, pan);
|
|
|
|
return JS_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMusicTimeLength(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Music* music_ptr = (Music*)JS_GetOpaque2(ctx, argv[0], js_Music_class_id);
|
|
|
|
if(music_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Music music = *music_ptr;
|
|
|
|
float returnVal = GetMusicTimeLength(music);
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, returnVal);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValue js_getMusicTimePlayed(JSContext * ctx, JSValueConst this_val, int argc, JSValueConst * argv) {
|
|
|
|
Music* music_ptr = (Music*)JS_GetOpaque2(ctx, argv[0], js_Music_class_id);
|
|
|
|
if(music_ptr == NULL) return JS_EXCEPTION;
|
|
|
|
Music music = *music_ptr;
|
|
|
|
float returnVal = GetMusicTimePlayed(music);
|
|
|
|
JSValue ret = JS_NewFloat64(ctx, returnVal);
|
2023-05-13 12:49:05 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-05-04 21:54:03 +00:00
|
|
|
static const JSCFunctionListEntry js_raylib_core_funcs[] = {
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_CFUNC_DEF("initWindow",3,js_initWindow),
|
|
|
|
JS_CFUNC_DEF("windowShouldClose",0,js_windowShouldClose),
|
|
|
|
JS_CFUNC_DEF("closeWindow",0,js_closeWindow),
|
|
|
|
JS_CFUNC_DEF("isWindowReady",0,js_isWindowReady),
|
|
|
|
JS_CFUNC_DEF("isWindowFullscreen",0,js_isWindowFullscreen),
|
|
|
|
JS_CFUNC_DEF("isWindowHidden",0,js_isWindowHidden),
|
|
|
|
JS_CFUNC_DEF("isWindowMinimized",0,js_isWindowMinimized),
|
|
|
|
JS_CFUNC_DEF("isWindowMaximized",0,js_isWindowMaximized),
|
|
|
|
JS_CFUNC_DEF("isWindowFocused",0,js_isWindowFocused),
|
|
|
|
JS_CFUNC_DEF("isWindowResized",0,js_isWindowResized),
|
|
|
|
JS_CFUNC_DEF("isWindowState",1,js_isWindowState),
|
|
|
|
JS_CFUNC_DEF("setWindowState",1,js_setWindowState),
|
|
|
|
JS_CFUNC_DEF("clearWindowState",1,js_clearWindowState),
|
|
|
|
JS_CFUNC_DEF("toggleFullscreen",0,js_toggleFullscreen),
|
|
|
|
JS_CFUNC_DEF("maximizeWindow",0,js_maximizeWindow),
|
|
|
|
JS_CFUNC_DEF("minimizeWindow",0,js_minimizeWindow),
|
|
|
|
JS_CFUNC_DEF("restoreWindow",0,js_restoreWindow),
|
2023-05-06 21:43:40 +00:00
|
|
|
JS_CFUNC_DEF("setWindowTitle",1,js_setWindowTitle),
|
|
|
|
JS_CFUNC_DEF("setWindowPosition",2,js_setWindowPosition),
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_CFUNC_DEF("setWindowMonitor",1,js_setWindowMonitor),
|
|
|
|
JS_CFUNC_DEF("setWindowMinSize",2,js_setWindowMinSize),
|
|
|
|
JS_CFUNC_DEF("setWindowSize",2,js_setWindowSize),
|
|
|
|
JS_CFUNC_DEF("setWindowOpacity",1,js_setWindowOpacity),
|
|
|
|
JS_CFUNC_DEF("getScreenWidth",0,js_getScreenWidth),
|
|
|
|
JS_CFUNC_DEF("getScreenHeight",0,js_getScreenHeight),
|
|
|
|
JS_CFUNC_DEF("getRenderWidth",0,js_getRenderWidth),
|
|
|
|
JS_CFUNC_DEF("getRenderHeight",0,js_getRenderHeight),
|
|
|
|
JS_CFUNC_DEF("getMonitorCount",0,js_getMonitorCount),
|
|
|
|
JS_CFUNC_DEF("getCurrentMonitor",0,js_getCurrentMonitor),
|
|
|
|
JS_CFUNC_DEF("getMonitorPosition",1,js_getMonitorPosition),
|
|
|
|
JS_CFUNC_DEF("getMonitorWidth",1,js_getMonitorWidth),
|
|
|
|
JS_CFUNC_DEF("getMonitorHeight",1,js_getMonitorHeight),
|
|
|
|
JS_CFUNC_DEF("getMonitorPhysicalWidth",1,js_getMonitorPhysicalWidth),
|
|
|
|
JS_CFUNC_DEF("getMonitorPhysicalHeight",1,js_getMonitorPhysicalHeight),
|
|
|
|
JS_CFUNC_DEF("getMonitorRefreshRate",1,js_getMonitorRefreshRate),
|
|
|
|
JS_CFUNC_DEF("getWindowPosition",0,js_getWindowPosition),
|
|
|
|
JS_CFUNC_DEF("getWindowScaleDPI",0,js_getWindowScaleDPI),
|
|
|
|
JS_CFUNC_DEF("getMonitorName",1,js_getMonitorName),
|
|
|
|
JS_CFUNC_DEF("setClipboardText",1,js_setClipboardText),
|
|
|
|
JS_CFUNC_DEF("getClipboardText",0,js_getClipboardText),
|
|
|
|
JS_CFUNC_DEF("enableEventWaiting",0,js_enableEventWaiting),
|
|
|
|
JS_CFUNC_DEF("disableEventWaiting",0,js_disableEventWaiting),
|
|
|
|
JS_CFUNC_DEF("showCursor",0,js_showCursor),
|
|
|
|
JS_CFUNC_DEF("hideCursor",0,js_hideCursor),
|
|
|
|
JS_CFUNC_DEF("isCursorHidden",0,js_isCursorHidden),
|
|
|
|
JS_CFUNC_DEF("enableCursor",0,js_enableCursor),
|
|
|
|
JS_CFUNC_DEF("disableCursor",0,js_disableCursor),
|
|
|
|
JS_CFUNC_DEF("isCursorOnScreen",0,js_isCursorOnScreen),
|
|
|
|
JS_CFUNC_DEF("clearBackground",1,js_clearBackground),
|
2023-05-06 21:43:40 +00:00
|
|
|
JS_CFUNC_DEF("beginDrawing",0,js_beginDrawing),
|
|
|
|
JS_CFUNC_DEF("endDrawing",0,js_endDrawing),
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_CFUNC_DEF("beginMode2D",1,js_beginMode2D),
|
|
|
|
JS_CFUNC_DEF("endMode2D",0,js_endMode2D),
|
2023-05-14 20:19:47 +00:00
|
|
|
JS_CFUNC_DEF("beginMode3D",1,js_beginMode3D),
|
|
|
|
JS_CFUNC_DEF("endMode3D",0,js_endMode3D),
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_CFUNC_DEF("beginBlendMode",1,js_beginBlendMode),
|
|
|
|
JS_CFUNC_DEF("endBlendMode",0,js_endBlendMode),
|
|
|
|
JS_CFUNC_DEF("beginScissorMode",4,js_beginScissorMode),
|
|
|
|
JS_CFUNC_DEF("endScissorMode",0,js_endScissorMode),
|
|
|
|
JS_CFUNC_DEF("getCameraMatrix2D",1,js_getCameraMatrix2D),
|
|
|
|
JS_CFUNC_DEF("getScreenToWorld2D",2,js_getScreenToWorld2D),
|
|
|
|
JS_CFUNC_DEF("getWorldToScreen2D",2,js_getWorldToScreen2D),
|
2023-05-10 21:26:53 +00:00
|
|
|
JS_CFUNC_DEF("setTargetFPS",1,js_setTargetFPS),
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_CFUNC_DEF("getFPS",0,js_getFPS),
|
|
|
|
JS_CFUNC_DEF("getFrameTime",0,js_getFrameTime),
|
|
|
|
JS_CFUNC_DEF("getTime",0,js_getTime),
|
|
|
|
JS_CFUNC_DEF("getRandomValue",2,js_getRandomValue),
|
|
|
|
JS_CFUNC_DEF("setRandomSeed",1,js_setRandomSeed),
|
|
|
|
JS_CFUNC_DEF("takeScreenshot",1,js_takeScreenshot),
|
|
|
|
JS_CFUNC_DEF("setConfigFlags",1,js_setConfigFlags),
|
|
|
|
JS_CFUNC_DEF("traceLog",2,js_traceLog),
|
|
|
|
JS_CFUNC_DEF("setTraceLogLevel",1,js_setTraceLogLevel),
|
|
|
|
JS_CFUNC_DEF("openURL",1,js_openURL),
|
|
|
|
JS_CFUNC_DEF("loadFileText",1,js_loadFileText),
|
|
|
|
JS_CFUNC_DEF("saveFileText",2,js_saveFileText),
|
|
|
|
JS_CFUNC_DEF("fileExists",1,js_fileExists),
|
|
|
|
JS_CFUNC_DEF("directoryExists",1,js_directoryExists),
|
|
|
|
JS_CFUNC_DEF("isFileExtension",2,js_isFileExtension),
|
|
|
|
JS_CFUNC_DEF("getFileLength",1,js_getFileLength),
|
|
|
|
JS_CFUNC_DEF("getFileExtension",1,js_getFileExtension),
|
|
|
|
JS_CFUNC_DEF("getFileName",1,js_getFileName),
|
|
|
|
JS_CFUNC_DEF("getFileNameWithoutExt",1,js_getFileNameWithoutExt),
|
|
|
|
JS_CFUNC_DEF("getDirectoryPath",1,js_getDirectoryPath),
|
|
|
|
JS_CFUNC_DEF("getPrevDirectoryPath",1,js_getPrevDirectoryPath),
|
|
|
|
JS_CFUNC_DEF("getWorkingDirectory",0,js_getWorkingDirectory),
|
|
|
|
JS_CFUNC_DEF("getApplicationDirectory",0,js_getApplicationDirectory),
|
|
|
|
JS_CFUNC_DEF("changeDirectory",1,js_changeDirectory),
|
|
|
|
JS_CFUNC_DEF("isPathFile",1,js_isPathFile),
|
|
|
|
JS_CFUNC_DEF("isFileDropped",0,js_isFileDropped),
|
|
|
|
JS_CFUNC_DEF("getFileModTime",1,js_getFileModTime),
|
2023-05-13 14:31:12 +00:00
|
|
|
JS_CFUNC_DEF("isKeyPressed",1,js_isKeyPressed),
|
|
|
|
JS_CFUNC_DEF("isKeyDown",1,js_isKeyDown),
|
|
|
|
JS_CFUNC_DEF("isKeyReleased",1,js_isKeyReleased),
|
|
|
|
JS_CFUNC_DEF("isKeyUp",1,js_isKeyUp),
|
|
|
|
JS_CFUNC_DEF("setExitKey",1,js_setExitKey),
|
|
|
|
JS_CFUNC_DEF("getKeyPressed",0,js_getKeyPressed),
|
|
|
|
JS_CFUNC_DEF("getCharPressed",0,js_getCharPressed),
|
|
|
|
JS_CFUNC_DEF("isGamepadAvailable",1,js_isGamepadAvailable),
|
|
|
|
JS_CFUNC_DEF("getGamepadName",1,js_getGamepadName),
|
|
|
|
JS_CFUNC_DEF("isGamepadButtonPressed",2,js_isGamepadButtonPressed),
|
|
|
|
JS_CFUNC_DEF("isGamepadButtonDown",2,js_isGamepadButtonDown),
|
|
|
|
JS_CFUNC_DEF("isGamepadButtonReleased",2,js_isGamepadButtonReleased),
|
|
|
|
JS_CFUNC_DEF("isGamepadButtonUp",2,js_isGamepadButtonUp),
|
|
|
|
JS_CFUNC_DEF("getGamepadButtonPressed",0,js_getGamepadButtonPressed),
|
|
|
|
JS_CFUNC_DEF("getGamepadAxisCount",1,js_getGamepadAxisCount),
|
|
|
|
JS_CFUNC_DEF("getGamepadAxisMovement",2,js_getGamepadAxisMovement),
|
|
|
|
JS_CFUNC_DEF("setGamepadMappings",1,js_setGamepadMappings),
|
2023-05-11 20:10:40 +00:00
|
|
|
JS_CFUNC_DEF("isMouseButtonPressed",1,js_isMouseButtonPressed),
|
2023-05-14 20:19:47 +00:00
|
|
|
JS_CFUNC_DEF("isMouseButtonDown",1,js_isMouseButtonDown),
|
|
|
|
JS_CFUNC_DEF("isMouseButtonReleased",1,js_isMouseButtonReleased),
|
|
|
|
JS_CFUNC_DEF("isMouseButtonUp",1,js_isMouseButtonUp),
|
|
|
|
JS_CFUNC_DEF("getMouseX",0,js_getMouseX),
|
|
|
|
JS_CFUNC_DEF("getMouseY",0,js_getMouseY),
|
|
|
|
JS_CFUNC_DEF("getMousePosition",0,js_getMousePosition),
|
|
|
|
JS_CFUNC_DEF("getMouseDelta",0,js_getMouseDelta),
|
|
|
|
JS_CFUNC_DEF("setMousePosition",2,js_setMousePosition),
|
|
|
|
JS_CFUNC_DEF("setMouseOffset",2,js_setMouseOffset),
|
|
|
|
JS_CFUNC_DEF("setMouseScale",2,js_setMouseScale),
|
2023-05-11 20:10:40 +00:00
|
|
|
JS_CFUNC_DEF("getMouseWheelMove",0,js_getMouseWheelMove),
|
2023-05-14 20:19:47 +00:00
|
|
|
JS_CFUNC_DEF("getMouseWheelMoveV",0,js_getMouseWheelMoveV),
|
|
|
|
JS_CFUNC_DEF("setMouseCursor",1,js_setMouseCursor),
|
|
|
|
JS_CFUNC_DEF("getTouchX",0,js_getTouchX),
|
|
|
|
JS_CFUNC_DEF("getTouchY",0,js_getTouchY),
|
|
|
|
JS_CFUNC_DEF("getTouchPosition",1,js_getTouchPosition),
|
|
|
|
JS_CFUNC_DEF("getTouchPointId",1,js_getTouchPointId),
|
|
|
|
JS_CFUNC_DEF("getTouchPointCount",0,js_getTouchPointCount),
|
|
|
|
JS_CFUNC_DEF("setGesturesEnabled",1,js_setGesturesEnabled),
|
|
|
|
JS_CFUNC_DEF("isGestureDetected",1,js_isGestureDetected),
|
|
|
|
JS_CFUNC_DEF("getGestureDetected",0,js_getGestureDetected),
|
|
|
|
JS_CFUNC_DEF("getGestureHoldDuration",0,js_getGestureHoldDuration),
|
|
|
|
JS_CFUNC_DEF("getGestureDragVector",0,js_getGestureDragVector),
|
|
|
|
JS_CFUNC_DEF("getGestureDragAngle",0,js_getGestureDragAngle),
|
|
|
|
JS_CFUNC_DEF("getGesturePinchVector",0,js_getGesturePinchVector),
|
|
|
|
JS_CFUNC_DEF("getGesturePinchAngle",0,js_getGesturePinchAngle),
|
|
|
|
JS_CFUNC_DEF("drawPixel",3,js_drawPixel),
|
|
|
|
JS_CFUNC_DEF("drawPixelV",2,js_drawPixelV),
|
|
|
|
JS_CFUNC_DEF("drawLine",5,js_drawLine),
|
|
|
|
JS_CFUNC_DEF("drawLineV",3,js_drawLineV),
|
|
|
|
JS_CFUNC_DEF("drawLineEx",4,js_drawLineEx),
|
|
|
|
JS_CFUNC_DEF("drawLineBezier",4,js_drawLineBezier),
|
|
|
|
JS_CFUNC_DEF("drawLineBezierQuad",5,js_drawLineBezierQuad),
|
|
|
|
JS_CFUNC_DEF("drawLineBezierCubic",6,js_drawLineBezierCubic),
|
|
|
|
JS_CFUNC_DEF("drawCircle",4,js_drawCircle),
|
|
|
|
JS_CFUNC_DEF("drawCircleSector",6,js_drawCircleSector),
|
|
|
|
JS_CFUNC_DEF("drawCircleSectorLines",6,js_drawCircleSectorLines),
|
|
|
|
JS_CFUNC_DEF("drawCircleGradient",5,js_drawCircleGradient),
|
|
|
|
JS_CFUNC_DEF("drawCircleV",3,js_drawCircleV),
|
|
|
|
JS_CFUNC_DEF("drawCircleLines",4,js_drawCircleLines),
|
|
|
|
JS_CFUNC_DEF("drawEllipse",5,js_drawEllipse),
|
|
|
|
JS_CFUNC_DEF("drawEllipseLines",5,js_drawEllipseLines),
|
|
|
|
JS_CFUNC_DEF("drawRing",7,js_drawRing),
|
|
|
|
JS_CFUNC_DEF("drawRingLines",7,js_drawRingLines),
|
2023-05-11 20:10:40 +00:00
|
|
|
JS_CFUNC_DEF("drawRectangle",5,js_drawRectangle),
|
2023-05-14 20:19:47 +00:00
|
|
|
JS_CFUNC_DEF("drawRectangleV",3,js_drawRectangleV),
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_CFUNC_DEF("drawRectangleRec",2,js_drawRectangleRec),
|
2023-05-14 20:19:47 +00:00
|
|
|
JS_CFUNC_DEF("drawRectanglePro",4,js_drawRectanglePro),
|
|
|
|
JS_CFUNC_DEF("drawRectangleGradientV",6,js_drawRectangleGradientV),
|
|
|
|
JS_CFUNC_DEF("drawRectangleGradientH",6,js_drawRectangleGradientH),
|
|
|
|
JS_CFUNC_DEF("drawRectangleGradientEx",5,js_drawRectangleGradientEx),
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_CFUNC_DEF("drawRectangleLines",5,js_drawRectangleLines),
|
2023-05-14 20:19:47 +00:00
|
|
|
JS_CFUNC_DEF("drawRectangleLinesEx",3,js_drawRectangleLinesEx),
|
|
|
|
JS_CFUNC_DEF("drawRectangleRounded",4,js_drawRectangleRounded),
|
|
|
|
JS_CFUNC_DEF("drawRectangleRoundedLines",5,js_drawRectangleRoundedLines),
|
|
|
|
JS_CFUNC_DEF("drawTriangle",4,js_drawTriangle),
|
|
|
|
JS_CFUNC_DEF("drawTriangleLines",4,js_drawTriangleLines),
|
|
|
|
JS_CFUNC_DEF("drawPoly",5,js_drawPoly),
|
|
|
|
JS_CFUNC_DEF("drawPolyLines",5,js_drawPolyLines),
|
|
|
|
JS_CFUNC_DEF("drawPolyLinesEx",6,js_drawPolyLinesEx),
|
|
|
|
JS_CFUNC_DEF("checkCollisionRecs",2,js_checkCollisionRecs),
|
|
|
|
JS_CFUNC_DEF("checkCollisionCircles",4,js_checkCollisionCircles),
|
|
|
|
JS_CFUNC_DEF("checkCollisionCircleRec",3,js_checkCollisionCircleRec),
|
|
|
|
JS_CFUNC_DEF("checkCollisionPointRec",2,js_checkCollisionPointRec),
|
|
|
|
JS_CFUNC_DEF("checkCollisionPointCircle",3,js_checkCollisionPointCircle),
|
|
|
|
JS_CFUNC_DEF("checkCollisionPointTriangle",4,js_checkCollisionPointTriangle),
|
|
|
|
JS_CFUNC_DEF("checkCollisionPointLine",4,js_checkCollisionPointLine),
|
|
|
|
JS_CFUNC_DEF("getCollisionRec",2,js_getCollisionRec),
|
|
|
|
JS_CFUNC_DEF("loadImage",1,js_loadImage),
|
|
|
|
JS_CFUNC_DEF("loadImageRaw",5,js_loadImageRaw),
|
|
|
|
JS_CFUNC_DEF("loadImageFromTexture",1,js_loadImageFromTexture),
|
|
|
|
JS_CFUNC_DEF("loadImageFromScreen",0,js_loadImageFromScreen),
|
|
|
|
JS_CFUNC_DEF("isImageReady",1,js_isImageReady),
|
|
|
|
JS_CFUNC_DEF("exportImage",2,js_exportImage),
|
|
|
|
JS_CFUNC_DEF("genImageColor",3,js_genImageColor),
|
|
|
|
JS_CFUNC_DEF("genImageGradientV",4,js_genImageGradientV),
|
|
|
|
JS_CFUNC_DEF("genImageGradientH",4,js_genImageGradientH),
|
|
|
|
JS_CFUNC_DEF("genImageGradientRadial",5,js_genImageGradientRadial),
|
|
|
|
JS_CFUNC_DEF("genImageChecked",6,js_genImageChecked),
|
|
|
|
JS_CFUNC_DEF("genImageWhiteNoise",3,js_genImageWhiteNoise),
|
|
|
|
JS_CFUNC_DEF("genImagePerlinNoise",5,js_genImagePerlinNoise),
|
|
|
|
JS_CFUNC_DEF("genImageCellular",3,js_genImageCellular),
|
|
|
|
JS_CFUNC_DEF("genImageText",3,js_genImageText),
|
|
|
|
JS_CFUNC_DEF("imageCopy",1,js_imageCopy),
|
|
|
|
JS_CFUNC_DEF("imageFromImage",2,js_imageFromImage),
|
|
|
|
JS_CFUNC_DEF("imageText",3,js_imageText),
|
|
|
|
JS_CFUNC_DEF("getImageAlphaBorder",2,js_getImageAlphaBorder),
|
|
|
|
JS_CFUNC_DEF("getImageColor",3,js_getImageColor),
|
|
|
|
JS_CFUNC_DEF("loadTexture",1,js_loadTexture),
|
|
|
|
JS_CFUNC_DEF("loadTextureFromImage",1,js_loadTextureFromImage),
|
|
|
|
JS_CFUNC_DEF("loadTextureCubemap",2,js_loadTextureCubemap),
|
|
|
|
JS_CFUNC_DEF("isTextureReady",1,js_isTextureReady),
|
|
|
|
JS_CFUNC_DEF("setTextureFilter",2,js_setTextureFilter),
|
|
|
|
JS_CFUNC_DEF("setTextureWrap",2,js_setTextureWrap),
|
|
|
|
JS_CFUNC_DEF("drawTexture",4,js_drawTexture),
|
|
|
|
JS_CFUNC_DEF("drawTextureV",3,js_drawTextureV),
|
|
|
|
JS_CFUNC_DEF("drawTextureEx",5,js_drawTextureEx),
|
|
|
|
JS_CFUNC_DEF("drawTextureRec",4,js_drawTextureRec),
|
|
|
|
JS_CFUNC_DEF("drawTexturePro",6,js_drawTexturePro),
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_CFUNC_DEF("fade",2,js_fade),
|
2023-05-14 20:19:47 +00:00
|
|
|
JS_CFUNC_DEF("colorToInt",1,js_colorToInt),
|
|
|
|
JS_CFUNC_DEF("colorNormalize",1,js_colorNormalize),
|
|
|
|
JS_CFUNC_DEF("colorFromNormalized",1,js_colorFromNormalized),
|
|
|
|
JS_CFUNC_DEF("colorToHSV",1,js_colorToHSV),
|
|
|
|
JS_CFUNC_DEF("colorFromHSV",3,js_colorFromHSV),
|
|
|
|
JS_CFUNC_DEF("colorTint",2,js_colorTint),
|
|
|
|
JS_CFUNC_DEF("colorBrightness",2,js_colorBrightness),
|
|
|
|
JS_CFUNC_DEF("colorContrast",2,js_colorContrast),
|
|
|
|
JS_CFUNC_DEF("colorAlpha",2,js_colorAlpha),
|
|
|
|
JS_CFUNC_DEF("colorAlphaBlend",3,js_colorAlphaBlend),
|
|
|
|
JS_CFUNC_DEF("getColor",1,js_getColor),
|
|
|
|
JS_CFUNC_DEF("getPixelDataSize",3,js_getPixelDataSize),
|
|
|
|
JS_CFUNC_DEF("getFontDefault",0,js_getFontDefault),
|
|
|
|
JS_CFUNC_DEF("loadFont",1,js_loadFont),
|
|
|
|
JS_CFUNC_DEF("loadFontFromImage",3,js_loadFontFromImage),
|
|
|
|
JS_CFUNC_DEF("isFontReady",1,js_isFontReady),
|
|
|
|
JS_CFUNC_DEF("drawFPS",2,js_drawFPS),
|
|
|
|
JS_CFUNC_DEF("drawText",5,js_drawText),
|
|
|
|
JS_CFUNC_DEF("drawTextEx",6,js_drawTextEx),
|
|
|
|
JS_CFUNC_DEF("drawTextPro",8,js_drawTextPro),
|
|
|
|
JS_CFUNC_DEF("drawTextCodepoint",5,js_drawTextCodepoint),
|
|
|
|
JS_CFUNC_DEF("measureText",2,js_measureText),
|
|
|
|
JS_CFUNC_DEF("measureTextEx",4,js_measureTextEx),
|
|
|
|
JS_CFUNC_DEF("getGlyphIndex",2,js_getGlyphIndex),
|
|
|
|
JS_CFUNC_DEF("getGlyphAtlasRec",2,js_getGlyphAtlasRec),
|
|
|
|
JS_CFUNC_DEF("drawLine3D",3,js_drawLine3D),
|
|
|
|
JS_CFUNC_DEF("drawPoint3D",2,js_drawPoint3D),
|
|
|
|
JS_CFUNC_DEF("drawCircle3D",5,js_drawCircle3D),
|
|
|
|
JS_CFUNC_DEF("drawTriangle3D",4,js_drawTriangle3D),
|
|
|
|
JS_CFUNC_DEF("drawCube",5,js_drawCube),
|
|
|
|
JS_CFUNC_DEF("drawCubeV",3,js_drawCubeV),
|
|
|
|
JS_CFUNC_DEF("drawCubeWires",5,js_drawCubeWires),
|
|
|
|
JS_CFUNC_DEF("drawCubeWiresV",3,js_drawCubeWiresV),
|
|
|
|
JS_CFUNC_DEF("drawSphere",3,js_drawSphere),
|
|
|
|
JS_CFUNC_DEF("drawSphereEx",5,js_drawSphereEx),
|
|
|
|
JS_CFUNC_DEF("drawSphereWires",5,js_drawSphereWires),
|
|
|
|
JS_CFUNC_DEF("drawCylinder",6,js_drawCylinder),
|
|
|
|
JS_CFUNC_DEF("drawCylinderEx",6,js_drawCylinderEx),
|
|
|
|
JS_CFUNC_DEF("drawCylinderWires",6,js_drawCylinderWires),
|
|
|
|
JS_CFUNC_DEF("drawCylinderWiresEx",6,js_drawCylinderWiresEx),
|
|
|
|
JS_CFUNC_DEF("drawCapsule",6,js_drawCapsule),
|
|
|
|
JS_CFUNC_DEF("drawCapsuleWires",6,js_drawCapsuleWires),
|
|
|
|
JS_CFUNC_DEF("drawPlane",3,js_drawPlane),
|
|
|
|
JS_CFUNC_DEF("drawRay",2,js_drawRay),
|
|
|
|
JS_CFUNC_DEF("drawGrid",2,js_drawGrid),
|
|
|
|
JS_CFUNC_DEF("loadModel",1,js_loadModel),
|
|
|
|
JS_CFUNC_DEF("loadModelFromMesh",1,js_loadModelFromMesh),
|
|
|
|
JS_CFUNC_DEF("isModelReady",1,js_isModelReady),
|
|
|
|
JS_CFUNC_DEF("getModelBoundingBox",1,js_getModelBoundingBox),
|
|
|
|
JS_CFUNC_DEF("drawModel",4,js_drawModel),
|
|
|
|
JS_CFUNC_DEF("drawModelEx",6,js_drawModelEx),
|
|
|
|
JS_CFUNC_DEF("drawModelWires",4,js_drawModelWires),
|
|
|
|
JS_CFUNC_DEF("drawModelWiresEx",6,js_drawModelWiresEx),
|
|
|
|
JS_CFUNC_DEF("drawBoundingBox",2,js_drawBoundingBox),
|
|
|
|
JS_CFUNC_DEF("drawBillboard",5,js_drawBillboard),
|
|
|
|
JS_CFUNC_DEF("drawBillboardRec",6,js_drawBillboardRec),
|
|
|
|
JS_CFUNC_DEF("drawBillboardPro",9,js_drawBillboardPro),
|
|
|
|
JS_CFUNC_DEF("exportMesh",2,js_exportMesh),
|
|
|
|
JS_CFUNC_DEF("getMeshBoundingBox",1,js_getMeshBoundingBox),
|
|
|
|
JS_CFUNC_DEF("genMeshPoly",2,js_genMeshPoly),
|
|
|
|
JS_CFUNC_DEF("genMeshPlane",4,js_genMeshPlane),
|
|
|
|
JS_CFUNC_DEF("genMeshCube",3,js_genMeshCube),
|
|
|
|
JS_CFUNC_DEF("genMeshSphere",3,js_genMeshSphere),
|
|
|
|
JS_CFUNC_DEF("genMeshHemiSphere",3,js_genMeshHemiSphere),
|
|
|
|
JS_CFUNC_DEF("genMeshCylinder",3,js_genMeshCylinder),
|
|
|
|
JS_CFUNC_DEF("genMeshCone",3,js_genMeshCone),
|
|
|
|
JS_CFUNC_DEF("genMeshTorus",4,js_genMeshTorus),
|
|
|
|
JS_CFUNC_DEF("genMeshKnot",4,js_genMeshKnot),
|
|
|
|
JS_CFUNC_DEF("genMeshHeightmap",2,js_genMeshHeightmap),
|
|
|
|
JS_CFUNC_DEF("genMeshCubicmap",2,js_genMeshCubicmap),
|
|
|
|
JS_CFUNC_DEF("checkCollisionSpheres",4,js_checkCollisionSpheres),
|
|
|
|
JS_CFUNC_DEF("checkCollisionBoxes",2,js_checkCollisionBoxes),
|
|
|
|
JS_CFUNC_DEF("checkCollisionBoxSphere",3,js_checkCollisionBoxSphere),
|
|
|
|
JS_CFUNC_DEF("getRayCollisionSphere",3,js_getRayCollisionSphere),
|
|
|
|
JS_CFUNC_DEF("getRayCollisionBox",2,js_getRayCollisionBox),
|
|
|
|
JS_CFUNC_DEF("getRayCollisionMesh",3,js_getRayCollisionMesh),
|
|
|
|
JS_CFUNC_DEF("getRayCollisionTriangle",4,js_getRayCollisionTriangle),
|
|
|
|
JS_CFUNC_DEF("getRayCollisionQuad",5,js_getRayCollisionQuad),
|
|
|
|
JS_CFUNC_DEF("initAudioDevice",0,js_initAudioDevice),
|
|
|
|
JS_CFUNC_DEF("closeAudioDevice",0,js_closeAudioDevice),
|
|
|
|
JS_CFUNC_DEF("isAudioDeviceReady",0,js_isAudioDeviceReady),
|
|
|
|
JS_CFUNC_DEF("setMasterVolume",1,js_setMasterVolume),
|
|
|
|
JS_CFUNC_DEF("loadWave",1,js_loadWave),
|
|
|
|
JS_CFUNC_DEF("isWaveReady",1,js_isWaveReady),
|
|
|
|
JS_CFUNC_DEF("loadSound",1,js_loadSound),
|
|
|
|
JS_CFUNC_DEF("loadSoundFromWave",1,js_loadSoundFromWave),
|
|
|
|
JS_CFUNC_DEF("isSoundReady",1,js_isSoundReady),
|
|
|
|
JS_CFUNC_DEF("exportWave",2,js_exportWave),
|
|
|
|
JS_CFUNC_DEF("playSound",1,js_playSound),
|
|
|
|
JS_CFUNC_DEF("stopSound",1,js_stopSound),
|
|
|
|
JS_CFUNC_DEF("pauseSound",1,js_pauseSound),
|
|
|
|
JS_CFUNC_DEF("resumeSound",1,js_resumeSound),
|
|
|
|
JS_CFUNC_DEF("isSoundPlaying",1,js_isSoundPlaying),
|
|
|
|
JS_CFUNC_DEF("setSoundVolume",2,js_setSoundVolume),
|
|
|
|
JS_CFUNC_DEF("setSoundPitch",2,js_setSoundPitch),
|
|
|
|
JS_CFUNC_DEF("setSoundPan",2,js_setSoundPan),
|
|
|
|
JS_CFUNC_DEF("waveCopy",1,js_waveCopy),
|
|
|
|
JS_CFUNC_DEF("loadMusicStream",1,js_loadMusicStream),
|
|
|
|
JS_CFUNC_DEF("isMusicReady",1,js_isMusicReady),
|
|
|
|
JS_CFUNC_DEF("playMusicStream",1,js_playMusicStream),
|
|
|
|
JS_CFUNC_DEF("isMusicStreamPlaying",1,js_isMusicStreamPlaying),
|
|
|
|
JS_CFUNC_DEF("updateMusicStream",1,js_updateMusicStream),
|
|
|
|
JS_CFUNC_DEF("stopMusicStream",1,js_stopMusicStream),
|
|
|
|
JS_CFUNC_DEF("pauseMusicStream",1,js_pauseMusicStream),
|
|
|
|
JS_CFUNC_DEF("resumeMusicStream",1,js_resumeMusicStream),
|
|
|
|
JS_CFUNC_DEF("seekMusicStream",2,js_seekMusicStream),
|
|
|
|
JS_CFUNC_DEF("setMusicVolume",2,js_setMusicVolume),
|
|
|
|
JS_CFUNC_DEF("setMusicPitch",2,js_setMusicPitch),
|
|
|
|
JS_CFUNC_DEF("setMusicPan",2,js_setMusicPan),
|
|
|
|
JS_CFUNC_DEF("getMusicTimeLength",1,js_getMusicTimeLength),
|
|
|
|
JS_CFUNC_DEF("getMusicTimePlayed",1,js_getMusicTimePlayed),
|
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));
|
2023-05-08 21:37:58 +00:00
|
|
|
js_declare_Color(ctx, m);
|
2023-05-09 21:25:28 +00:00
|
|
|
JSValue Color_constr = JS_NewCFunction2(ctx, js_Color_constructor,"Color)", 4, JS_CFUNC_constructor_or_func, 0);
|
|
|
|
JS_SetModuleExport(ctx, m, "Color", Color_constr);
|
2023-05-13 12:49:05 +00:00
|
|
|
js_declare_Rectangle(ctx, m);
|
|
|
|
JSValue Rectangle_constr = JS_NewCFunction2(ctx, js_Rectangle_constructor,"Rectangle)", 4, JS_CFUNC_constructor_or_func, 0);
|
|
|
|
JS_SetModuleExport(ctx, m, "Rectangle", Rectangle_constr);
|
2023-05-10 21:26:53 +00:00
|
|
|
js_declare_Vector2(ctx, m);
|
|
|
|
JSValue Vector2_constr = JS_NewCFunction2(ctx, js_Vector2_constructor,"Vector2)", 2, JS_CFUNC_constructor_or_func, 0);
|
|
|
|
JS_SetModuleExport(ctx, m, "Vector2", Vector2_constr);
|
2023-05-13 12:49:05 +00:00
|
|
|
js_declare_Vector3(ctx, m);
|
|
|
|
JSValue Vector3_constr = JS_NewCFunction2(ctx, js_Vector3_constructor,"Vector3)", 3, JS_CFUNC_constructor_or_func, 0);
|
|
|
|
JS_SetModuleExport(ctx, m, "Vector3", Vector3_constr);
|
2023-05-14 20:19:47 +00:00
|
|
|
js_declare_Vector4(ctx, m);
|
|
|
|
JSValue Vector4_constr = JS_NewCFunction2(ctx, js_Vector4_constructor,"Vector4)", 4, JS_CFUNC_constructor_or_func, 0);
|
|
|
|
JS_SetModuleExport(ctx, m, "Vector4", Vector4_constr);
|
2023-05-13 12:49:05 +00:00
|
|
|
js_declare_Ray(ctx, m);
|
|
|
|
JSValue Ray_constr = JS_NewCFunction2(ctx, js_Ray_constructor,"Ray)", 2, JS_CFUNC_constructor_or_func, 0);
|
|
|
|
JS_SetModuleExport(ctx, m, "Ray", Ray_constr);
|
2023-05-14 20:19:47 +00:00
|
|
|
js_declare_RayCollision(ctx, m);
|
2023-05-13 12:49:05 +00:00
|
|
|
js_declare_Camera2D(ctx, m);
|
|
|
|
JSValue Camera2D_constr = JS_NewCFunction2(ctx, js_Camera2D_constructor,"Camera2D)", 4, JS_CFUNC_constructor_or_func, 0);
|
|
|
|
JS_SetModuleExport(ctx, m, "Camera2D", Camera2D_constr);
|
2023-05-14 20:19:47 +00:00
|
|
|
js_declare_Camera3D(ctx, m);
|
|
|
|
JSValue Camera3D_constr = JS_NewCFunction2(ctx, js_Camera3D_constructor,"Camera3D)", 5, JS_CFUNC_constructor_or_func, 0);
|
|
|
|
JS_SetModuleExport(ctx, m, "Camera3D", Camera3D_constr);
|
|
|
|
js_declare_BoundingBox(ctx, m);
|
|
|
|
JSValue BoundingBox_constr = JS_NewCFunction2(ctx, js_BoundingBox_constructor,"BoundingBox)", 2, JS_CFUNC_constructor_or_func, 0);
|
|
|
|
JS_SetModuleExport(ctx, m, "BoundingBox", BoundingBox_constr);
|
2023-05-13 12:49:05 +00:00
|
|
|
js_declare_Matrix(ctx, m);
|
2023-05-14 20:19:47 +00:00
|
|
|
js_declare_Image(ctx, m);
|
|
|
|
js_declare_Wave(ctx, m);
|
|
|
|
js_declare_Sound(ctx, m);
|
|
|
|
js_declare_Music(ctx, m);
|
|
|
|
js_declare_Model(ctx, m);
|
|
|
|
js_declare_Mesh(ctx, m);
|
|
|
|
js_declare_Shader(ctx, m);
|
|
|
|
js_declare_Texture(ctx, m);
|
|
|
|
js_declare_Font(ctx, m);
|
2023-05-10 21:26:53 +00:00
|
|
|
Color LIGHTGRAY_struct = { 200, 200, 200, 255 };
|
|
|
|
Color* LIGHTGRAY_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*LIGHTGRAY_js_ptr = LIGHTGRAY_struct;
|
|
|
|
JSValue LIGHTGRAY_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(LIGHTGRAY_js, LIGHTGRAY_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "LIGHTGRAY", LIGHTGRAY_js);
|
|
|
|
Color GRAY_struct = { 130, 130, 130, 255 };
|
|
|
|
Color* GRAY_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*GRAY_js_ptr = GRAY_struct;
|
|
|
|
JSValue GRAY_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(GRAY_js, GRAY_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "GRAY", GRAY_js);
|
|
|
|
Color DARKGRAY_struct = { 80, 80, 80, 255 };
|
|
|
|
Color* DARKGRAY_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*DARKGRAY_js_ptr = DARKGRAY_struct;
|
|
|
|
JSValue DARKGRAY_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(DARKGRAY_js, DARKGRAY_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "DARKGRAY", DARKGRAY_js);
|
|
|
|
Color YELLOW_struct = { 253, 249, 0, 255 };
|
|
|
|
Color* YELLOW_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*YELLOW_js_ptr = YELLOW_struct;
|
|
|
|
JSValue YELLOW_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(YELLOW_js, YELLOW_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "YELLOW", YELLOW_js);
|
|
|
|
Color GOLD_struct = { 255, 203, 0, 255 };
|
|
|
|
Color* GOLD_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*GOLD_js_ptr = GOLD_struct;
|
|
|
|
JSValue GOLD_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(GOLD_js, GOLD_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "GOLD", GOLD_js);
|
|
|
|
Color ORANGE_struct = { 255, 161, 0, 255 };
|
|
|
|
Color* ORANGE_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*ORANGE_js_ptr = ORANGE_struct;
|
|
|
|
JSValue ORANGE_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(ORANGE_js, ORANGE_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "ORANGE", ORANGE_js);
|
|
|
|
Color PINK_struct = { 255, 109, 194, 255 };
|
|
|
|
Color* PINK_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*PINK_js_ptr = PINK_struct;
|
|
|
|
JSValue PINK_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(PINK_js, PINK_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "PINK", PINK_js);
|
|
|
|
Color RED_struct = { 230, 41, 55, 255 };
|
|
|
|
Color* RED_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*RED_js_ptr = RED_struct;
|
|
|
|
JSValue RED_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(RED_js, RED_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "RED", RED_js);
|
|
|
|
Color MAROON_struct = { 190, 33, 55, 255 };
|
|
|
|
Color* MAROON_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*MAROON_js_ptr = MAROON_struct;
|
|
|
|
JSValue MAROON_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(MAROON_js, MAROON_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "MAROON", MAROON_js);
|
|
|
|
Color GREEN_struct = { 0, 228, 48, 255 };
|
|
|
|
Color* GREEN_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*GREEN_js_ptr = GREEN_struct;
|
|
|
|
JSValue GREEN_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(GREEN_js, GREEN_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "GREEN", GREEN_js);
|
|
|
|
Color LIME_struct = { 0, 158, 47, 255 };
|
|
|
|
Color* LIME_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*LIME_js_ptr = LIME_struct;
|
|
|
|
JSValue LIME_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(LIME_js, LIME_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "LIME", LIME_js);
|
|
|
|
Color DARKGREEN_struct = { 0, 117, 44, 255 };
|
|
|
|
Color* DARKGREEN_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*DARKGREEN_js_ptr = DARKGREEN_struct;
|
|
|
|
JSValue DARKGREEN_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(DARKGREEN_js, DARKGREEN_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "DARKGREEN", DARKGREEN_js);
|
|
|
|
Color SKYBLUE_struct = { 102, 191, 255, 255 };
|
|
|
|
Color* SKYBLUE_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*SKYBLUE_js_ptr = SKYBLUE_struct;
|
|
|
|
JSValue SKYBLUE_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(SKYBLUE_js, SKYBLUE_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "SKYBLUE", SKYBLUE_js);
|
|
|
|
Color BLUE_struct = { 0, 121, 241, 255 };
|
|
|
|
Color* BLUE_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*BLUE_js_ptr = BLUE_struct;
|
|
|
|
JSValue BLUE_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(BLUE_js, BLUE_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "BLUE", BLUE_js);
|
|
|
|
Color DARKBLUE_struct = { 0, 82, 172, 255 };
|
|
|
|
Color* DARKBLUE_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*DARKBLUE_js_ptr = DARKBLUE_struct;
|
|
|
|
JSValue DARKBLUE_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(DARKBLUE_js, DARKBLUE_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "DARKBLUE", DARKBLUE_js);
|
|
|
|
Color PURPLE_struct = { 200, 122, 255, 255 };
|
|
|
|
Color* PURPLE_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*PURPLE_js_ptr = PURPLE_struct;
|
|
|
|
JSValue PURPLE_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(PURPLE_js, PURPLE_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "PURPLE", PURPLE_js);
|
|
|
|
Color VIOLET_struct = { 135, 60, 190, 255 };
|
|
|
|
Color* VIOLET_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*VIOLET_js_ptr = VIOLET_struct;
|
|
|
|
JSValue VIOLET_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(VIOLET_js, VIOLET_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "VIOLET", VIOLET_js);
|
|
|
|
Color DARKPURPLE_struct = { 112, 31, 126, 255 };
|
|
|
|
Color* DARKPURPLE_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*DARKPURPLE_js_ptr = DARKPURPLE_struct;
|
|
|
|
JSValue DARKPURPLE_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(DARKPURPLE_js, DARKPURPLE_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "DARKPURPLE", DARKPURPLE_js);
|
|
|
|
Color BEIGE_struct = { 211, 176, 131, 255 };
|
|
|
|
Color* BEIGE_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*BEIGE_js_ptr = BEIGE_struct;
|
|
|
|
JSValue BEIGE_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(BEIGE_js, BEIGE_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "BEIGE", BEIGE_js);
|
|
|
|
Color BROWN_struct = { 127, 106, 79, 255 };
|
|
|
|
Color* BROWN_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*BROWN_js_ptr = BROWN_struct;
|
|
|
|
JSValue BROWN_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(BROWN_js, BROWN_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "BROWN", BROWN_js);
|
|
|
|
Color DARKBROWN_struct = { 76, 63, 47, 255 };
|
|
|
|
Color* DARKBROWN_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*DARKBROWN_js_ptr = DARKBROWN_struct;
|
|
|
|
JSValue DARKBROWN_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(DARKBROWN_js, DARKBROWN_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "DARKBROWN", DARKBROWN_js);
|
|
|
|
Color WHITE_struct = { 255, 255, 255, 255 };
|
|
|
|
Color* WHITE_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*WHITE_js_ptr = WHITE_struct;
|
|
|
|
JSValue WHITE_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(WHITE_js, WHITE_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "WHITE", WHITE_js);
|
|
|
|
Color BLACK_struct = { 0, 0, 0, 255 };
|
|
|
|
Color* BLACK_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*BLACK_js_ptr = BLACK_struct;
|
|
|
|
JSValue BLACK_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(BLACK_js, BLACK_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "BLACK", BLACK_js);
|
|
|
|
Color BLANK_struct = { 0, 0, 0, 0 };
|
|
|
|
Color* BLANK_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*BLANK_js_ptr = BLANK_struct;
|
|
|
|
JSValue BLANK_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(BLANK_js, BLANK_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "BLANK", BLANK_js);
|
|
|
|
Color MAGENTA_struct = { 255, 0, 255, 255 };
|
|
|
|
Color* MAGENTA_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*MAGENTA_js_ptr = MAGENTA_struct;
|
|
|
|
JSValue MAGENTA_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(MAGENTA_js, MAGENTA_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "MAGENTA", MAGENTA_js);
|
|
|
|
Color RAYWHITE_struct = { 245, 245, 245, 255 };
|
|
|
|
Color* RAYWHITE_js_ptr = (Color*)js_malloc(ctx, sizeof(Color));
|
|
|
|
*RAYWHITE_js_ptr = RAYWHITE_struct;
|
|
|
|
JSValue RAYWHITE_js = JS_NewObjectClass(ctx, js_Color_class_id);
|
|
|
|
JS_SetOpaque(RAYWHITE_js, RAYWHITE_js_ptr);
|
|
|
|
JS_SetModuleExport(ctx, m, "RAYWHITE", RAYWHITE_js);
|
2023-05-11 18:54:49 +00:00
|
|
|
JS_SetModuleExport(ctx, m, "KEY_NULL", JS_NewInt32(ctx, KEY_NULL));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_APOSTROPHE", JS_NewInt32(ctx, KEY_APOSTROPHE));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_COMMA", JS_NewInt32(ctx, KEY_COMMA));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_MINUS", JS_NewInt32(ctx, KEY_MINUS));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_PERIOD", JS_NewInt32(ctx, KEY_PERIOD));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_SLASH", JS_NewInt32(ctx, KEY_SLASH));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_ZERO", JS_NewInt32(ctx, KEY_ZERO));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_ONE", JS_NewInt32(ctx, KEY_ONE));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_TWO", JS_NewInt32(ctx, KEY_TWO));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_THREE", JS_NewInt32(ctx, KEY_THREE));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_FOUR", JS_NewInt32(ctx, KEY_FOUR));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_FIVE", JS_NewInt32(ctx, KEY_FIVE));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_SIX", JS_NewInt32(ctx, KEY_SIX));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_SEVEN", JS_NewInt32(ctx, KEY_SEVEN));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_EIGHT", JS_NewInt32(ctx, KEY_EIGHT));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_NINE", JS_NewInt32(ctx, KEY_NINE));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_SEMICOLON", JS_NewInt32(ctx, KEY_SEMICOLON));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_EQUAL", JS_NewInt32(ctx, KEY_EQUAL));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_A", JS_NewInt32(ctx, KEY_A));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_B", JS_NewInt32(ctx, KEY_B));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_C", JS_NewInt32(ctx, KEY_C));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_D", JS_NewInt32(ctx, KEY_D));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_E", JS_NewInt32(ctx, KEY_E));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_F", JS_NewInt32(ctx, KEY_F));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_G", JS_NewInt32(ctx, KEY_G));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_H", JS_NewInt32(ctx, KEY_H));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_I", JS_NewInt32(ctx, KEY_I));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_J", JS_NewInt32(ctx, KEY_J));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_K", JS_NewInt32(ctx, KEY_K));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_L", JS_NewInt32(ctx, KEY_L));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_M", JS_NewInt32(ctx, KEY_M));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_N", JS_NewInt32(ctx, KEY_N));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_O", JS_NewInt32(ctx, KEY_O));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_P", JS_NewInt32(ctx, KEY_P));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_Q", JS_NewInt32(ctx, KEY_Q));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_R", JS_NewInt32(ctx, KEY_R));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_S", JS_NewInt32(ctx, KEY_S));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_T", JS_NewInt32(ctx, KEY_T));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_U", JS_NewInt32(ctx, KEY_U));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_V", JS_NewInt32(ctx, KEY_V));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_W", JS_NewInt32(ctx, KEY_W));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_X", JS_NewInt32(ctx, KEY_X));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_Y", JS_NewInt32(ctx, KEY_Y));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_Z", JS_NewInt32(ctx, KEY_Z));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_LEFT_BRACKET", JS_NewInt32(ctx, KEY_LEFT_BRACKET));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_BACKSLASH", JS_NewInt32(ctx, KEY_BACKSLASH));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_RIGHT_BRACKET", JS_NewInt32(ctx, KEY_RIGHT_BRACKET));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_GRAVE", JS_NewInt32(ctx, KEY_GRAVE));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_SPACE", JS_NewInt32(ctx, KEY_SPACE));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_ESCAPE", JS_NewInt32(ctx, KEY_ESCAPE));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_ENTER", JS_NewInt32(ctx, KEY_ENTER));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_TAB", JS_NewInt32(ctx, KEY_TAB));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_BACKSPACE", JS_NewInt32(ctx, KEY_BACKSPACE));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_INSERT", JS_NewInt32(ctx, KEY_INSERT));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_DELETE", JS_NewInt32(ctx, KEY_DELETE));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_RIGHT", JS_NewInt32(ctx, KEY_RIGHT));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_LEFT", JS_NewInt32(ctx, KEY_LEFT));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_DOWN", JS_NewInt32(ctx, KEY_DOWN));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_UP", JS_NewInt32(ctx, KEY_UP));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_PAGE_UP", JS_NewInt32(ctx, KEY_PAGE_UP));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_PAGE_DOWN", JS_NewInt32(ctx, KEY_PAGE_DOWN));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_HOME", JS_NewInt32(ctx, KEY_HOME));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_END", JS_NewInt32(ctx, KEY_END));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_CAPS_LOCK", JS_NewInt32(ctx, KEY_CAPS_LOCK));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_SCROLL_LOCK", JS_NewInt32(ctx, KEY_SCROLL_LOCK));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_NUM_LOCK", JS_NewInt32(ctx, KEY_NUM_LOCK));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_PRINT_SCREEN", JS_NewInt32(ctx, KEY_PRINT_SCREEN));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_PAUSE", JS_NewInt32(ctx, KEY_PAUSE));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_F1", JS_NewInt32(ctx, KEY_F1));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_F2", JS_NewInt32(ctx, KEY_F2));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_F3", JS_NewInt32(ctx, KEY_F3));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_F4", JS_NewInt32(ctx, KEY_F4));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_F5", JS_NewInt32(ctx, KEY_F5));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_F6", JS_NewInt32(ctx, KEY_F6));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_F7", JS_NewInt32(ctx, KEY_F7));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_F8", JS_NewInt32(ctx, KEY_F8));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_F9", JS_NewInt32(ctx, KEY_F9));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_F10", JS_NewInt32(ctx, KEY_F10));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_F11", JS_NewInt32(ctx, KEY_F11));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_F12", JS_NewInt32(ctx, KEY_F12));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_LEFT_SHIFT", JS_NewInt32(ctx, KEY_LEFT_SHIFT));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_LEFT_CONTROL", JS_NewInt32(ctx, KEY_LEFT_CONTROL));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_LEFT_ALT", JS_NewInt32(ctx, KEY_LEFT_ALT));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_LEFT_SUPER", JS_NewInt32(ctx, KEY_LEFT_SUPER));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_RIGHT_SHIFT", JS_NewInt32(ctx, KEY_RIGHT_SHIFT));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_RIGHT_CONTROL", JS_NewInt32(ctx, KEY_RIGHT_CONTROL));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_RIGHT_ALT", JS_NewInt32(ctx, KEY_RIGHT_ALT));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_RIGHT_SUPER", JS_NewInt32(ctx, KEY_RIGHT_SUPER));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KB_MENU", JS_NewInt32(ctx, KEY_KB_MENU));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_0", JS_NewInt32(ctx, KEY_KP_0));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_1", JS_NewInt32(ctx, KEY_KP_1));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_2", JS_NewInt32(ctx, KEY_KP_2));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_3", JS_NewInt32(ctx, KEY_KP_3));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_4", JS_NewInt32(ctx, KEY_KP_4));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_5", JS_NewInt32(ctx, KEY_KP_5));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_6", JS_NewInt32(ctx, KEY_KP_6));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_7", JS_NewInt32(ctx, KEY_KP_7));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_8", JS_NewInt32(ctx, KEY_KP_8));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_9", JS_NewInt32(ctx, KEY_KP_9));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_DECIMAL", JS_NewInt32(ctx, KEY_KP_DECIMAL));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_DIVIDE", JS_NewInt32(ctx, KEY_KP_DIVIDE));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_MULTIPLY", JS_NewInt32(ctx, KEY_KP_MULTIPLY));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_SUBTRACT", JS_NewInt32(ctx, KEY_KP_SUBTRACT));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_ADD", JS_NewInt32(ctx, KEY_KP_ADD));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_ENTER", JS_NewInt32(ctx, KEY_KP_ENTER));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_KP_EQUAL", JS_NewInt32(ctx, KEY_KP_EQUAL));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_BACK", JS_NewInt32(ctx, KEY_BACK));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_MENU", JS_NewInt32(ctx, KEY_MENU));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_VOLUME_UP", JS_NewInt32(ctx, KEY_VOLUME_UP));
|
|
|
|
JS_SetModuleExport(ctx, m, "KEY_VOLUME_DOWN", JS_NewInt32(ctx, KEY_VOLUME_DOWN));
|
2023-05-11 20:10:40 +00:00
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_BUTTON_LEFT", JS_NewInt32(ctx, MOUSE_BUTTON_LEFT));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_BUTTON_RIGHT", JS_NewInt32(ctx, MOUSE_BUTTON_RIGHT));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_BUTTON_MIDDLE", JS_NewInt32(ctx, MOUSE_BUTTON_MIDDLE));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_BUTTON_SIDE", JS_NewInt32(ctx, MOUSE_BUTTON_SIDE));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_BUTTON_EXTRA", JS_NewInt32(ctx, MOUSE_BUTTON_EXTRA));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_BUTTON_FORWARD", JS_NewInt32(ctx, MOUSE_BUTTON_FORWARD));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_BUTTON_BACK", JS_NewInt32(ctx, MOUSE_BUTTON_BACK));
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_VSYNC_HINT", JS_NewInt32(ctx, FLAG_VSYNC_HINT));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_FULLSCREEN_MODE", JS_NewInt32(ctx, FLAG_FULLSCREEN_MODE));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_WINDOW_RESIZABLE", JS_NewInt32(ctx, FLAG_WINDOW_RESIZABLE));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_WINDOW_UNDECORATED", JS_NewInt32(ctx, FLAG_WINDOW_UNDECORATED));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_WINDOW_HIDDEN", JS_NewInt32(ctx, FLAG_WINDOW_HIDDEN));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_WINDOW_MINIMIZED", JS_NewInt32(ctx, FLAG_WINDOW_MINIMIZED));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_WINDOW_MAXIMIZED", JS_NewInt32(ctx, FLAG_WINDOW_MAXIMIZED));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_WINDOW_UNFOCUSED", JS_NewInt32(ctx, FLAG_WINDOW_UNFOCUSED));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_WINDOW_TOPMOST", JS_NewInt32(ctx, FLAG_WINDOW_TOPMOST));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_WINDOW_ALWAYS_RUN", JS_NewInt32(ctx, FLAG_WINDOW_ALWAYS_RUN));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_WINDOW_TRANSPARENT", JS_NewInt32(ctx, FLAG_WINDOW_TRANSPARENT));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_WINDOW_HIGHDPI", JS_NewInt32(ctx, FLAG_WINDOW_HIGHDPI));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_WINDOW_MOUSE_PASSTHROUGH", JS_NewInt32(ctx, FLAG_WINDOW_MOUSE_PASSTHROUGH));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_MSAA_4X_HINT", JS_NewInt32(ctx, FLAG_MSAA_4X_HINT));
|
|
|
|
JS_SetModuleExport(ctx, m, "FLAG_INTERLACED_HINT", JS_NewInt32(ctx, FLAG_INTERLACED_HINT));
|
|
|
|
JS_SetModuleExport(ctx, m, "BLEND_ALPHA", JS_NewInt32(ctx, BLEND_ALPHA));
|
|
|
|
JS_SetModuleExport(ctx, m, "BLEND_ADDITIVE", JS_NewInt32(ctx, BLEND_ADDITIVE));
|
|
|
|
JS_SetModuleExport(ctx, m, "BLEND_MULTIPLIED", JS_NewInt32(ctx, BLEND_MULTIPLIED));
|
|
|
|
JS_SetModuleExport(ctx, m, "BLEND_ADD_COLORS", JS_NewInt32(ctx, BLEND_ADD_COLORS));
|
|
|
|
JS_SetModuleExport(ctx, m, "BLEND_SUBTRACT_COLORS", JS_NewInt32(ctx, BLEND_SUBTRACT_COLORS));
|
|
|
|
JS_SetModuleExport(ctx, m, "BLEND_ALPHA_PREMULTIPLY", JS_NewInt32(ctx, BLEND_ALPHA_PREMULTIPLY));
|
|
|
|
JS_SetModuleExport(ctx, m, "BLEND_CUSTOM", JS_NewInt32(ctx, BLEND_CUSTOM));
|
|
|
|
JS_SetModuleExport(ctx, m, "BLEND_CUSTOM_SEPARATE", JS_NewInt32(ctx, BLEND_CUSTOM_SEPARATE));
|
|
|
|
JS_SetModuleExport(ctx, m, "LOG_ALL", JS_NewInt32(ctx, LOG_ALL));
|
|
|
|
JS_SetModuleExport(ctx, m, "LOG_TRACE", JS_NewInt32(ctx, LOG_TRACE));
|
|
|
|
JS_SetModuleExport(ctx, m, "LOG_DEBUG", JS_NewInt32(ctx, LOG_DEBUG));
|
|
|
|
JS_SetModuleExport(ctx, m, "LOG_INFO", JS_NewInt32(ctx, LOG_INFO));
|
|
|
|
JS_SetModuleExport(ctx, m, "LOG_WARNING", JS_NewInt32(ctx, LOG_WARNING));
|
|
|
|
JS_SetModuleExport(ctx, m, "LOG_ERROR", JS_NewInt32(ctx, LOG_ERROR));
|
|
|
|
JS_SetModuleExport(ctx, m, "LOG_FATAL", JS_NewInt32(ctx, LOG_FATAL));
|
|
|
|
JS_SetModuleExport(ctx, m, "LOG_NONE", JS_NewInt32(ctx, LOG_NONE));
|
2023-05-14 20:19:47 +00:00
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_CURSOR_DEFAULT", JS_NewInt32(ctx, MOUSE_CURSOR_DEFAULT));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_CURSOR_ARROW", JS_NewInt32(ctx, MOUSE_CURSOR_ARROW));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_CURSOR_IBEAM", JS_NewInt32(ctx, MOUSE_CURSOR_IBEAM));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_CURSOR_CROSSHAIR", JS_NewInt32(ctx, MOUSE_CURSOR_CROSSHAIR));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_CURSOR_POINTING_HAND", JS_NewInt32(ctx, MOUSE_CURSOR_POINTING_HAND));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_CURSOR_RESIZE_EW", JS_NewInt32(ctx, MOUSE_CURSOR_RESIZE_EW));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_CURSOR_RESIZE_NS", JS_NewInt32(ctx, MOUSE_CURSOR_RESIZE_NS));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_CURSOR_RESIZE_NWSE", JS_NewInt32(ctx, MOUSE_CURSOR_RESIZE_NWSE));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_CURSOR_RESIZE_NESW", JS_NewInt32(ctx, MOUSE_CURSOR_RESIZE_NESW));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_CURSOR_RESIZE_ALL", JS_NewInt32(ctx, MOUSE_CURSOR_RESIZE_ALL));
|
|
|
|
JS_SetModuleExport(ctx, m, "MOUSE_CURSOR_NOT_ALLOWED", JS_NewInt32(ctx, MOUSE_CURSOR_NOT_ALLOWED));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_GRAYSCALE", JS_NewInt32(ctx, PIXELFORMAT_UNCOMPRESSED_GRAYSCALE));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA", JS_NewInt32(ctx, PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R5G6B5", JS_NewInt32(ctx, PIXELFORMAT_UNCOMPRESSED_R5G6B5));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R8G8B8", JS_NewInt32(ctx, PIXELFORMAT_UNCOMPRESSED_R8G8B8));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R5G5B5A1", JS_NewInt32(ctx, PIXELFORMAT_UNCOMPRESSED_R5G5B5A1));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R4G4B4A4", JS_NewInt32(ctx, PIXELFORMAT_UNCOMPRESSED_R4G4B4A4));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R8G8B8A8", JS_NewInt32(ctx, PIXELFORMAT_UNCOMPRESSED_R8G8B8A8));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R32", JS_NewInt32(ctx, PIXELFORMAT_UNCOMPRESSED_R32));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R32G32B32", JS_NewInt32(ctx, PIXELFORMAT_UNCOMPRESSED_R32G32B32));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R32G32B32A32", JS_NewInt32(ctx, PIXELFORMAT_UNCOMPRESSED_R32G32B32A32));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_DXT1_RGB", JS_NewInt32(ctx, PIXELFORMAT_COMPRESSED_DXT1_RGB));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_DXT1_RGBA", JS_NewInt32(ctx, PIXELFORMAT_COMPRESSED_DXT1_RGBA));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_DXT3_RGBA", JS_NewInt32(ctx, PIXELFORMAT_COMPRESSED_DXT3_RGBA));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_DXT5_RGBA", JS_NewInt32(ctx, PIXELFORMAT_COMPRESSED_DXT5_RGBA));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_ETC1_RGB", JS_NewInt32(ctx, PIXELFORMAT_COMPRESSED_ETC1_RGB));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_ETC2_RGB", JS_NewInt32(ctx, PIXELFORMAT_COMPRESSED_ETC2_RGB));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA", JS_NewInt32(ctx, PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_PVRT_RGB", JS_NewInt32(ctx, PIXELFORMAT_COMPRESSED_PVRT_RGB));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_PVRT_RGBA", JS_NewInt32(ctx, PIXELFORMAT_COMPRESSED_PVRT_RGBA));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA", JS_NewInt32(ctx, PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA));
|
|
|
|
JS_SetModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA", JS_NewInt32(ctx, PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA));
|
|
|
|
JS_SetModuleExport(ctx, m, "CAMERA_PERSPECTIVE", JS_NewInt32(ctx, CAMERA_PERSPECTIVE));
|
|
|
|
JS_SetModuleExport(ctx, m, "CAMERA_ORTHOGRAPHIC", JS_NewInt32(ctx, CAMERA_ORTHOGRAPHIC));
|
2023-05-06 21:43:40 +00:00
|
|
|
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-09 21:25:28 +00:00
|
|
|
JS_AddModuleExport(ctx, m, "Color");
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_AddModuleExport(ctx, m, "Rectangle");
|
2023-05-10 21:26:53 +00:00
|
|
|
JS_AddModuleExport(ctx, m, "Vector2");
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_AddModuleExport(ctx, m, "Vector3");
|
2023-05-14 20:19:47 +00:00
|
|
|
JS_AddModuleExport(ctx, m, "Vector4");
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_AddModuleExport(ctx, m, "Ray");
|
|
|
|
JS_AddModuleExport(ctx, m, "Camera2D");
|
2023-05-14 20:19:47 +00:00
|
|
|
JS_AddModuleExport(ctx, m, "Camera3D");
|
|
|
|
JS_AddModuleExport(ctx, m, "BoundingBox");
|
2023-05-10 21:26:53 +00:00
|
|
|
JS_AddModuleExport(ctx, m, "LIGHTGRAY");
|
|
|
|
JS_AddModuleExport(ctx, m, "GRAY");
|
|
|
|
JS_AddModuleExport(ctx, m, "DARKGRAY");
|
|
|
|
JS_AddModuleExport(ctx, m, "YELLOW");
|
|
|
|
JS_AddModuleExport(ctx, m, "GOLD");
|
|
|
|
JS_AddModuleExport(ctx, m, "ORANGE");
|
|
|
|
JS_AddModuleExport(ctx, m, "PINK");
|
|
|
|
JS_AddModuleExport(ctx, m, "RED");
|
|
|
|
JS_AddModuleExport(ctx, m, "MAROON");
|
|
|
|
JS_AddModuleExport(ctx, m, "GREEN");
|
|
|
|
JS_AddModuleExport(ctx, m, "LIME");
|
|
|
|
JS_AddModuleExport(ctx, m, "DARKGREEN");
|
|
|
|
JS_AddModuleExport(ctx, m, "SKYBLUE");
|
|
|
|
JS_AddModuleExport(ctx, m, "BLUE");
|
|
|
|
JS_AddModuleExport(ctx, m, "DARKBLUE");
|
|
|
|
JS_AddModuleExport(ctx, m, "PURPLE");
|
|
|
|
JS_AddModuleExport(ctx, m, "VIOLET");
|
|
|
|
JS_AddModuleExport(ctx, m, "DARKPURPLE");
|
|
|
|
JS_AddModuleExport(ctx, m, "BEIGE");
|
|
|
|
JS_AddModuleExport(ctx, m, "BROWN");
|
|
|
|
JS_AddModuleExport(ctx, m, "DARKBROWN");
|
|
|
|
JS_AddModuleExport(ctx, m, "WHITE");
|
|
|
|
JS_AddModuleExport(ctx, m, "BLACK");
|
|
|
|
JS_AddModuleExport(ctx, m, "BLANK");
|
|
|
|
JS_AddModuleExport(ctx, m, "MAGENTA");
|
|
|
|
JS_AddModuleExport(ctx, m, "RAYWHITE");
|
2023-05-11 18:54:49 +00:00
|
|
|
JS_AddModuleExport(ctx, m, "KEY_NULL");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_APOSTROPHE");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_COMMA");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_MINUS");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_PERIOD");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_SLASH");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_ZERO");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_ONE");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_TWO");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_THREE");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_FOUR");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_FIVE");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_SIX");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_SEVEN");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_EIGHT");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_NINE");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_SEMICOLON");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_EQUAL");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_A");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_B");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_C");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_D");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_E");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_F");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_G");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_H");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_I");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_J");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_K");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_L");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_M");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_N");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_O");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_P");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_Q");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_R");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_S");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_T");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_U");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_V");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_W");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_X");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_Y");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_Z");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_LEFT_BRACKET");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_BACKSLASH");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_RIGHT_BRACKET");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_GRAVE");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_SPACE");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_ESCAPE");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_ENTER");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_TAB");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_BACKSPACE");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_INSERT");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_DELETE");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_RIGHT");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_LEFT");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_DOWN");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_UP");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_PAGE_UP");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_PAGE_DOWN");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_HOME");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_END");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_CAPS_LOCK");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_SCROLL_LOCK");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_NUM_LOCK");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_PRINT_SCREEN");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_PAUSE");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_F1");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_F2");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_F3");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_F4");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_F5");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_F6");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_F7");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_F8");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_F9");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_F10");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_F11");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_F12");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_LEFT_SHIFT");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_LEFT_CONTROL");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_LEFT_ALT");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_LEFT_SUPER");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_RIGHT_SHIFT");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_RIGHT_CONTROL");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_RIGHT_ALT");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_RIGHT_SUPER");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KB_MENU");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_0");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_1");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_2");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_3");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_4");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_5");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_6");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_7");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_8");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_9");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_DECIMAL");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_DIVIDE");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_MULTIPLY");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_SUBTRACT");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_ADD");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_ENTER");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_KP_EQUAL");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_BACK");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_MENU");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_VOLUME_UP");
|
|
|
|
JS_AddModuleExport(ctx, m, "KEY_VOLUME_DOWN");
|
2023-05-11 20:10:40 +00:00
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_BUTTON_LEFT");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_BUTTON_RIGHT");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_BUTTON_MIDDLE");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_BUTTON_SIDE");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_BUTTON_EXTRA");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_BUTTON_FORWARD");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_BUTTON_BACK");
|
2023-05-13 12:49:05 +00:00
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_VSYNC_HINT");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_FULLSCREEN_MODE");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_WINDOW_RESIZABLE");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_WINDOW_UNDECORATED");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_WINDOW_HIDDEN");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_WINDOW_MINIMIZED");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_WINDOW_MAXIMIZED");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_WINDOW_UNFOCUSED");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_WINDOW_TOPMOST");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_WINDOW_ALWAYS_RUN");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_WINDOW_TRANSPARENT");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_WINDOW_HIGHDPI");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_WINDOW_MOUSE_PASSTHROUGH");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_MSAA_4X_HINT");
|
|
|
|
JS_AddModuleExport(ctx, m, "FLAG_INTERLACED_HINT");
|
|
|
|
JS_AddModuleExport(ctx, m, "BLEND_ALPHA");
|
|
|
|
JS_AddModuleExport(ctx, m, "BLEND_ADDITIVE");
|
|
|
|
JS_AddModuleExport(ctx, m, "BLEND_MULTIPLIED");
|
|
|
|
JS_AddModuleExport(ctx, m, "BLEND_ADD_COLORS");
|
|
|
|
JS_AddModuleExport(ctx, m, "BLEND_SUBTRACT_COLORS");
|
|
|
|
JS_AddModuleExport(ctx, m, "BLEND_ALPHA_PREMULTIPLY");
|
|
|
|
JS_AddModuleExport(ctx, m, "BLEND_CUSTOM");
|
|
|
|
JS_AddModuleExport(ctx, m, "BLEND_CUSTOM_SEPARATE");
|
|
|
|
JS_AddModuleExport(ctx, m, "LOG_ALL");
|
|
|
|
JS_AddModuleExport(ctx, m, "LOG_TRACE");
|
|
|
|
JS_AddModuleExport(ctx, m, "LOG_DEBUG");
|
|
|
|
JS_AddModuleExport(ctx, m, "LOG_INFO");
|
|
|
|
JS_AddModuleExport(ctx, m, "LOG_WARNING");
|
|
|
|
JS_AddModuleExport(ctx, m, "LOG_ERROR");
|
|
|
|
JS_AddModuleExport(ctx, m, "LOG_FATAL");
|
|
|
|
JS_AddModuleExport(ctx, m, "LOG_NONE");
|
2023-05-14 20:19:47 +00:00
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_CURSOR_DEFAULT");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_CURSOR_ARROW");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_CURSOR_IBEAM");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_CURSOR_CROSSHAIR");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_CURSOR_POINTING_HAND");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_CURSOR_RESIZE_EW");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_CURSOR_RESIZE_NS");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_CURSOR_RESIZE_NWSE");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_CURSOR_RESIZE_NESW");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_CURSOR_RESIZE_ALL");
|
|
|
|
JS_AddModuleExport(ctx, m, "MOUSE_CURSOR_NOT_ALLOWED");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_GRAYSCALE");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R5G6B5");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R8G8B8");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R5G5B5A1");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R4G4B4A4");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R8G8B8A8");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R32");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R32G32B32");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_UNCOMPRESSED_R32G32B32A32");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_DXT1_RGB");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_DXT1_RGBA");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_DXT3_RGBA");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_DXT5_RGBA");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_ETC1_RGB");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_ETC2_RGB");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_PVRT_RGB");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_PVRT_RGBA");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA");
|
|
|
|
JS_AddModuleExport(ctx, m, "PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA");
|
|
|
|
JS_AddModuleExport(ctx, m, "CAMERA_PERSPECTIVE");
|
|
|
|
JS_AddModuleExport(ctx, m, "CAMERA_ORTHOGRAPHIC");
|
2023-05-04 21:54:03 +00:00
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
2023-05-06 21:43:40 +00:00
|
|
|
#endif // JS_raylib_core_GUARD
|