rayjs/bindings/src/index.ts

58 lines
2.3 KiB
TypeScript
Raw Normal View History

2023-05-06 21:43:40 +00:00
import { readFileSync, writeFileSync } from "fs";
2023-05-10 21:26:53 +00:00
import { RayLibApi } from "./interfaces";
2023-05-06 21:43:40 +00:00
import { ApiDescription } from "./api";
2023-05-08 14:43:50 +00:00
import { RayLibHeader } from "./raylib-header";
2023-05-06 21:43:40 +00:00
function main(){
const api = <RayLibApi>JSON.parse(readFileSync("thirdparty/raylib/parser/output/raylib_api.json", 'utf8'))
const apiDesc = new ApiDescription(api)
2023-05-08 14:43:50 +00:00
const core_gen = new RayLibHeader("raylib_core", apiDesc)
2023-05-08 21:37:58 +00:00
core_gen.addApiStructByName("Color", {
properties: {
r: { get: true, set: true },
g: { get: true, set: true },
b: { get: true, set: true },
a: { get: true, set: true },
2023-05-09 21:25:28 +00:00
},
createConstructor: true
2023-05-08 21:37:58 +00:00
})
2023-05-10 21:26:53 +00:00
core_gen.addApiStructByName("Vector2", {
properties: {
x: { get: true, set: true },
y: { get: true, set: true },
},
createConstructor: true
})
2023-05-06 21:43:40 +00:00
core_gen.addApiFunctionByName("SetWindowTitle")
core_gen.addApiFunctionByName("SetWindowPosition")
core_gen.addApiFunctionByName("BeginDrawing")
core_gen.addApiFunctionByName("EndDrawing")
2023-05-10 21:26:53 +00:00
core_gen.addApiFunctionByName("InitWindow")
core_gen.addApiFunctionByName("SetTargetFPS")
core_gen.addApiFunctionByName("WindowShouldClose", null, { before: fun => fun.call("app_update_quickjs", []) })
2023-05-09 21:25:28 +00:00
core_gen.addApiFunctionByName("ClearBackground")
2023-05-10 21:26:53 +00:00
core_gen.addApiFunctionByName("CloseWindow")
2023-05-09 21:25:28 +00:00
core_gen.addApiFunctionByName("DrawText")
2023-05-10 21:26:53 +00:00
core_gen.addApiFunctionByName("DrawCircleV")
core_gen.addApiFunctionByName("IsKeyDown")
api.defines.filter(x => x.type === "COLOR").map(x => ({ name: x.name, values: (x.value.match(/\{([^}]+)\}/) || "")[1].split(',').map(x => x.trim()) })).forEach(x => {
core_gen.exportGlobalStruct("Color", x.name, x.values)
})
2023-05-11 18:54:49 +00:00
api.enums.find(x => x.name === "KeyboardKey")?.values.forEach(x => core_gen.exportGlobalConstant(x.name))
2023-05-08 14:43:50 +00:00
core_gen.writeTo("src/bindings/js_raylib_core.h")
2023-05-06 21:43:40 +00:00
2023-05-08 14:43:50 +00:00
const texture_gen = new RayLibHeader("raylib_texture", apiDesc)
2023-05-08 21:37:58 +00:00
texture_gen.addApiStructByName("Image", {
properties: {
width: { get: true },
height: { get: true }
},
destructor: "UnloadImage"
})
texture_gen.addApiFunctionByName("LoadImage")
2023-05-08 14:43:50 +00:00
texture_gen.writeTo("src/bindings/js_raylib_texture.h")
2023-05-06 21:43:40 +00:00
}
main()