rayjs/bindings/src/index.ts

545 lines
20 KiB
TypeScript
Raw Normal View History

2023-05-06 21:43:40 +00:00
import { readFileSync, writeFileSync } from "fs";
2023-06-02 09:52:33 +00:00
import { RayLibApi, RayLibFunction, RayLibStruct } from "./interfaces";
2023-05-08 14:43:50 +00:00
import { RayLibHeader } from "./raylib-header";
2023-05-26 20:09:53 +00:00
import { HeaderParser } from "./header-parser";
2023-06-02 09:52:33 +00:00
import { RayLibAlias } from "./interfaces";
2023-06-02 16:58:53 +00:00
import { QuickJsGenerator } from "./quickjs";
let api: RayLibApi
2023-06-02 09:52:33 +00:00
function getFunction(funList: RayLibFunction[], name: string){
return funList.find(x => x.name === name)
}
function getStruct(strList: RayLibStruct[], name: string){
return strList.find(x => x.name === name)
}
function getAliases(aliasList: RayLibAlias[], name: string) {
return aliasList.filter(x => x.type === name).map(x => x.name)
}
2023-05-06 21:43:40 +00:00
2023-06-02 16:58:53 +00:00
function ignore(name: string){
getFunction(api.functions, name)!.binding = { ignore: true }
}
2023-05-06 21:43:40 +00:00
function main(){
// Load the pre-generated raylib api
2023-06-02 16:58:53 +00:00
api = <RayLibApi>JSON.parse(readFileSync("thirdparty/raylib/parser/output/raylib_api.json", 'utf8'))
2023-05-26 20:09:53 +00:00
const parser = new HeaderParser()
2023-05-26 22:47:44 +00:00
2023-05-26 20:09:53 +00:00
const rmathHeader = readFileSync("thirdparty/raylib/src/raymath.h","utf8");
2023-05-26 22:47:44 +00:00
const mathApi = parser.parseFunctions(rmathHeader)
2023-05-15 15:44:28 +00:00
mathApi.forEach(x => api.functions.push(x))
2023-05-26 20:09:53 +00:00
const rcameraHeader = readFileSync("thirdparty/raylib/src/rcamera.h","utf8");
2023-05-26 22:47:44 +00:00
const cameraApi = parser.parseFunctionDefinitions(rcameraHeader);
cameraApi.forEach(x => api.functions.push(x))
2023-05-26 22:47:44 +00:00
2023-06-02 06:03:36 +00:00
const rguiHeader = readFileSync("thirdparty/raygui/src/raygui.h","utf8");
2023-05-26 22:47:44 +00:00
const rguiFunctions = parser.parseFunctionDefinitions(rguiHeader);
2023-06-02 06:03:36 +00:00
const rguiEnums = parser.parseEnums(rguiHeader);
2023-05-26 22:47:44 +00:00
//rguiApi.forEach(x => console.log(`core.addApiFunctionByName("${x.name}")`))
rguiFunctions.forEach(x => api.functions.push(x))
2023-06-02 06:03:36 +00:00
rguiEnums.forEach(x => api.enums.push(x))
2023-05-26 22:47:44 +00:00
2023-06-02 06:03:36 +00:00
const rlightsHeader = readFileSync("include/rlights.h","utf8");
2023-05-26 22:47:44 +00:00
const rlightsFunctions = parser.parseFunctions(rlightsHeader, true);
api.functions.push(rlightsFunctions[0])
api.functions.push(rlightsFunctions[1])
2023-06-02 06:03:36 +00:00
const reasingsHeader = readFileSync("include/reasings.h","utf8");
2023-05-26 22:47:44 +00:00
const reasingsFunctions = parser.parseFunctions(reasingsHeader);
reasingsFunctions.forEach(x => api.functions.push(x))
2023-05-15 15:44:28 +00:00
2023-06-02 09:52:33 +00:00
// Custom Rayjs functions
api.functions.push({
name: "SetModelMaterial",
description: "Replace material in slot materialIndex",
returnType: "void",
params: [{type: "Model *",name:"model"},{type:"int",name:"materialIndex"},{type:"Material",name:"material"}]
})
2023-06-02 09:52:33 +00:00
// Define a new header
const core = new RayLibHeader("raylib_core")
core.includes.include("raymath.h")
core.includes.include("rcamera.h")
2023-05-26 22:47:44 +00:00
core.includes.line("#define RAYGUI_IMPLEMENTATION")
core.includes.include("raygui.h")
core.includes.line("#define RLIGHTS_IMPLEMENTATION")
core.includes.include("rlights.h")
core.includes.include("reasings.h")
2023-06-02 09:52:33 +00:00
getStruct(api.structs, "Color")!.binding = {
2023-05-08 21:37:58 +00:00
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-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Rectangle")!.binding = {
2023-05-11 20:10:40 +00:00
properties: {
x: { get: true, set: true },
y: { get: true, set: true },
width: { get: true, set: true },
height: { get: true, set: true },
},
createConstructor: true
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Vector2")!.binding = {
2023-05-10 21:26:53 +00:00
properties: {
x: { get: true, set: true },
y: { get: true, set: true },
},
createConstructor: true
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Vector3")!.binding = {
2023-05-13 12:49:05 +00:00
properties: {
x: { get: true, set: true },
y: { get: true, set: true },
z: { get: true, set: true },
},
createConstructor: true
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Vector4")!.binding = {
2023-05-14 20:19:47 +00:00
properties: {
x: { get: true, set: true },
y: { get: true, set: true },
z: { get: true, set: true },
w: { get: true, set: true },
},
2023-06-02 09:52:33 +00:00
createConstructor: true,
aliases: getAliases(api.aliases, "Vector4")
}
getStruct(api.structs, "Ray")!.binding = {
2023-05-13 12:49:05 +00:00
properties: {
position: { get: false, set: true },
direction: { get: false, set: true },
},
createConstructor: true
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "RayCollision")!.binding = {
2023-05-14 20:19:47 +00:00
properties: {
hit: { get: true, set: false },
distance: { get: true, set: false },
2023-05-24 20:47:17 +00:00
point: { get: true, set: false },
normal: { get: true, set: false },
2023-05-14 20:19:47 +00:00
},
createConstructor: false
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Camera2D")!.binding = {
2023-05-13 12:49:05 +00:00
properties: {
2023-05-24 20:47:17 +00:00
offset: { get: true, set: true },
target: { get: true, set: true },
2023-05-13 12:49:05 +00:00
rotation: { get: true, set: true },
zoom: { get: true, set: true },
},
createConstructor: true
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Camera3D")!.binding = {
2023-05-14 20:19:47 +00:00
properties: {
2023-05-16 06:28:30 +00:00
position: { get: true, set: true },
target: { get: true, set: true },
2023-05-14 20:19:47 +00:00
up: { get: false, set: true },
fovy: { get: true, set: true },
projection: { get: true, set: true },
},
2023-06-02 09:52:33 +00:00
createConstructor: true,
aliases: getAliases(api.aliases, "Camera3D")
}
getStruct(api.structs, "BoundingBox")!.binding = {
2023-05-24 20:47:17 +00:00
properties: {
min: { get: true, set: true },
max: { get: true, set: true },
},
2023-05-14 20:19:47 +00:00
createConstructor: true
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Matrix")!.binding = {
2023-05-13 12:49:05 +00:00
properties: {},
createConstructor: false
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "NPatchInfo")!.binding = {
properties: {
source: { get: true, set: true },
left: { get: true, set: true },
top: { get: true, set: true },
right: { get: true, set: true },
bottom: { get: true, set: true },
layout: { get: true, set: true },
},
createConstructor: true
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Image")!.binding = {
2023-05-14 20:19:47 +00:00
properties: {
2023-05-24 20:47:17 +00:00
//data: { set: true },
2023-05-14 20:19:47 +00:00
width: { get: true },
height: { get: true },
mipmaps: { get: true },
format: { get: true }
},
//destructor: "UnloadImage"
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Wave")!.binding = {
2023-05-14 20:19:47 +00:00
properties: {
frameCount: { get: true },
sampleRate: { get: true },
sampleSize: { get: true },
channels: { get: true }
},
//destructor: "UnloadWave"
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Sound")!.binding = {
2023-05-14 20:19:47 +00:00
properties: {
frameCount: { get: true }
},
//destructor: "UnloadSound"
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Music")!.binding = {
2023-05-14 20:19:47 +00:00
properties: {
frameCount: { get: true },
2023-05-24 20:47:17 +00:00
looping: { get: true, set: true },
ctxType: { get: true },
2023-05-14 20:19:47 +00:00
},
//destructor: "UnloadMusicStream"
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Model")!.binding = {
2023-05-24 20:47:17 +00:00
properties: {
transform: { get: true, set: true },
meshCount: { get: true },
materialCount: { get: true },
boneCount: { get: true },
},
//destructor: "UnloadModel"
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Mesh")!.binding = {
properties: {
vertexCount: { get: true, set: true },
triangleCount: { get: true, set: true },
// TODO: Free previous pointers before overwriting
vertices: { set: true },
texcoords: { set: true },
texcoords2: { set: true },
normals: { set: true },
tangents: { set: true },
colors: { set: true },
indices: { set: true },
animVertices: { set: true },
animNormals: { set: true },
boneIds: { set: true },
boneWeights: { set: true },
},
createEmptyConstructor: true
//destructor: "UnloadMesh"
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Shader")!.binding = {
2023-05-24 20:47:17 +00:00
properties: {
id: { get: true }
},
//destructor: "UnloadShader"
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Texture")!.binding = {
2023-05-14 20:19:47 +00:00
properties: {
width: { get: true },
2023-05-24 20:47:17 +00:00
height: { get: true },
mipmaps: { get: true },
format: { get: true },
2023-05-14 20:19:47 +00:00
},
2023-06-02 09:52:33 +00:00
aliases: getAliases(api.aliases, "Texture")
//destructor: "UnloadTexture"
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Font")!.binding = {
2023-05-14 20:19:47 +00:00
properties: {
2023-05-24 20:47:17 +00:00
baseSize: { get: true },
glyphCount: { get: true },
glyphPadding: { get: true },
2023-05-14 20:19:47 +00:00
},
//destructor: "UnloadFont"
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "RenderTexture")!.binding = {
2023-05-24 20:47:17 +00:00
properties: {
id: { get: true }
},
2023-06-02 09:52:33 +00:00
aliases: getAliases(api.aliases, "RenderTexture")
//destructor: "UnloadRenderTexture"
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "MaterialMap")!.binding = {
properties: {
texture: { set: true },
color: { set: true, get: true },
value: { get: true, set: true }
},
//destructor: "UnloadMaterialMap"
2023-06-02 09:52:33 +00:00
}
getStruct(api.structs, "Material")!.binding = {
properties: {
shader: { set: true }
},
//destructor: "UnloadMaterial"
2023-06-02 09:52:33 +00:00
}
2023-05-14 20:19:47 +00:00
2023-06-02 16:58:53 +00:00
ignore("SetWindowIcons")
ignore("GetWindowHandle")
2023-05-13 12:49:05 +00:00
// Custom frame control functions
// NOT SUPPORTED BECAUSE NEEDS COMPILER FLAG
2023-06-02 16:58:53 +00:00
ignore("SwapScreenBuffer")
ignore("PollInputEvents")
ignore("WaitTime")
2023-05-13 12:49:05 +00:00
2023-06-02 16:58:53 +00:00
ignore("BeginVrStereoMode")
ignore("EndVrStereoMode")
ignore("LoadVrStereoConfig")
ignore("UnloadVrStereoConfig")
2023-06-02 09:52:33 +00:00
getFunction(api.functions, "SetShaderValue")!.binding = { body: (gen) => {
2023-05-16 06:28:30 +00:00
gen.jsToC("Shader","shader","argv[0]", core.structLookup)
gen.jsToC("int","locIndex","argv[1]", core.structLookup)
gen.declare("value","void *", false, "NULL")
2023-05-16 09:59:29 +00:00
gen.declare("valueFloat", "float")
gen.declare("valueInt", "int")
2023-05-16 06:28:30 +00:00
gen.jsToC("int","uniformType","argv[3]", core.structLookup)
const sw = gen.switch("uniformType")
let b = sw.caseBreak("SHADER_UNIFORM_FLOAT")
2023-05-16 09:59:29 +00:00
b.jsToC("float", "valueFloat", "argv[2]", core.structLookup, true)
2023-05-16 06:28:30 +00:00
b.statement("value = (void *)&valueFloat")
b = sw.caseBreak("SHADER_UNIFORM_VEC2")
b.jsToC("Vector2 *", "valueV2", "argv[2]", core.structLookup)
b.statement("value = (void*)valueV2")
b = sw.caseBreak("SHADER_UNIFORM_VEC3")
b.jsToC("Vector3 *", "valueV3", "argv[2]", core.structLookup)
b.statement("value = (void*)valueV3")
b = sw.caseBreak("SHADER_UNIFORM_VEC4")
b.jsToC("Vector4 *", "valueV4", "argv[2]", core.structLookup)
b.statement("value = (void*)valueV4")
b = sw.caseBreak("SHADER_UNIFORM_INT")
2023-05-16 09:59:29 +00:00
b.jsToC("int", "valueInt", "argv[2]", core.structLookup, true)
2023-05-16 06:28:30 +00:00
b.statement("value = (void*)&valueInt")
b = sw.defaultBreak()
b.returnExp("JS_EXCEPTION")
gen.call("SetShaderValue", ["shader","locIndex","value","uniformType"])
gen.returnExp("JS_UNDEFINED")
2023-06-02 09:52:33 +00:00
}}
2023-06-02 16:58:53 +00:00
ignore("SetShaderValueV")
2023-05-13 12:49:05 +00:00
2023-06-02 16:58:53 +00:00
const traceLog = getFunction(api.functions, "TraceLog")!
traceLog.params?.pop()
2023-05-13 12:49:05 +00:00
2023-06-02 16:58:53 +00:00
// Memory functions not supported on JS, just use ArrayBuffer
ignore("MemAlloc")
ignore("MemRealloc")
ignore("MemFree")
2023-05-13 12:49:05 +00:00
// Callbacks not supported on JS
2023-06-02 16:58:53 +00:00
ignore("SetTraceLogCallback")
ignore("SetLoadFileDataCallback")
ignore("SetSaveFileDataCallback")
ignore("SetLoadFileTextCallback")
ignore("SetSaveFileTextCallback")
2023-05-13 12:49:05 +00:00
// Files management functions
2023-06-02 16:58:53 +00:00
const lfd = getFunction(api.functions, "LoadFileData")!
lfd.params![lfd.params!.length-1].binding = { ignore: true }
lfd.binding = {
2023-06-02 06:03:36 +00:00
body: gen => {
2023-06-02 16:58:53 +00:00
gen.jsToC("const char *", "fileName", "argv[0]")
gen.declare("bytesRead", "unsigned int")
gen.call("LoadFileData", ["fileName", "&bytesRead"], { type: "unsigned char *", name: "retVal" })
gen.statement("JSValue buffer = JS_NewArrayBufferCopy(ctx, (const uint8_t*)retVal, bytesRead)")
gen.call("UnloadFileData", ["retVal"])
gen.jsCleanUpParameter("const char*","fileName")
gen.returnExp("buffer")
}
}
ignore("UnloadFileData")
// TODO: SaveFileData works but unnecessary makes copy of memory
getFunction(api.functions, "SaveFileData")!.binding = { }
ignore("ExportDataAsCode")
getFunction(api.functions, "LoadFileText")!.binding = { after: gen => gen.call("UnloadFileText", ["returnVal"]) }
2023-06-03 07:15:38 +00:00
getFunction(api.functions, "SaveFileText")!.params![1].binding = { typeAlias: "const char *" }
2023-06-02 16:58:53 +00:00
ignore("UnloadFileText")
const createFileList = (gen: QuickJsGenerator, loadName: string, unloadName: string, args: string[]) => {
gen.call(loadName, args, { type: "FilePathList", name: "files" })
gen.call("JS_NewArray", ["ctx"], { type: "JSValue", name:"ret"})
const f = gen.for("i", "files.count")
f.call("JS_SetPropertyUint32", ["ctx","ret", "i", "JS_NewString(ctx,files.paths[i])"])
gen.call(unloadName, ["files"])
}
getFunction(api.functions, "LoadDirectoryFiles")!.binding = {
jsReturns: "string[]",
body: gen => {
gen.jsToC("const char *", "dirPath", "argv[0]")
createFileList(gen, "LoadDirectoryFiles", "UnloadDirectoryFiles", ["dirPath"])
gen.jsCleanUpParameter("const char *", "dirPath")
2023-06-02 06:03:36 +00:00
gen.returnExp("ret")
}
2023-06-02 16:58:53 +00:00
}
getFunction(api.functions, "LoadDirectoryFilesEx")!.binding = {
jsReturns: "string[]",
body: gen => {
gen.jsToC("const char *", "basePath", "argv[0]")
gen.jsToC("const char *", "filter", "argv[1]")
gen.jsToC("bool", "scanSubdirs", "argv[2]")
createFileList(gen, "LoadDirectoryFilesEx", "UnloadDirectoryFiles", ["basePath", "filter", "scanSubdirs"])
gen.jsCleanUpParameter("const char *", "basePath")
gen.jsCleanUpParameter("const char *", "filter")
gen.returnExp("ret")
}
}
ignore("UnloadDirectoryFiles")
getFunction(api.functions, "LoadDroppedFiles")!.binding = {
jsReturns: "string[]",
body: gen => {
createFileList(gen, "LoadDroppedFiles", "UnloadDroppedFiles", [])
gen.returnExp("ret")
}
}
ignore("UnloadDroppedFiles")
2023-05-13 12:49:05 +00:00
2023-05-24 20:47:17 +00:00
// Compression/encoding functionality
2023-06-02 16:58:53 +00:00
ignore("CompressData")
ignore("DecompressData")
ignore("EncodeDataBase64")
ignore("DecodeDataBase64")
ignore("DrawLineStrip")
ignore("DrawTriangleFan")
ignore("DrawTriangleStrip")
ignore("CheckCollisionPointPoly")
ignore("CheckCollisionLines")
ignore("LoadImageAnim")
ignore("ExportImageAsCode")
getFunction(api.functions, "LoadImageColors")!.binding = {
jsReturns: "ArrayBuffer",
body: gen => {
gen.jsToC("Image","image","argv[0]", core.structLookup)
gen.call("LoadImageColors", ["image"], {name:"colors",type:"Color *"})
gen.statement("JSValue retVal = JS_NewArrayBufferCopy(ctx, (const uint8_t*)colors, image.width*image.height*sizeof(Color))")
gen.call("UnloadImageColors", ["colors"])
gen.returnExp("retVal")
}
}
2023-05-14 20:19:47 +00:00
2023-06-02 16:58:53 +00:00
ignore("LoadImagePalette")
ignore("UnloadImageColors")
ignore("UnloadImagePalette")
ignore("GetPixelColor")
ignore("SetPixelColor")
const lfx = getFunction(api.functions, "LoadFontEx")!
lfx.params![2].binding = { ignore: true }
lfx.params![3].binding = { ignore: true }
lfx.binding = { customizeCall: "Font returnVal = LoadFontEx(fileName, fontSize, NULL, 0);" }
ignore("LoadFontFromMemory")
ignore("LoadFontData")
ignore("GenImageFontAtlas")
ignore("UnloadFontData")
ignore("ExportFontAsCode")
ignore("DrawTextCodepoints")
ignore("GetGlyphInfo")
ignore("LoadUTF8")
ignore("UnloadUTF8")
ignore("LoadCodepoints")
ignore("UnloadCodepoints")
ignore("GetCodepointCount")
ignore("GetCodepoint")
ignore("GetCodepointNext")
ignore("GetCodepointPrevious")
ignore("CodepointToUTF8")
2023-05-14 20:19:47 +00:00
2023-05-15 21:02:41 +00:00
// Not supported, use JS Stdlib instead
2023-06-02 16:58:53 +00:00
api.functions.filter(x => x.name.startsWith("Text")).forEach(x => ignore(x.name))
2023-05-14 20:19:47 +00:00
2023-06-02 16:58:53 +00:00
ignore("DrawTriangleStrip3D")
ignore("LoadMaterials")
ignore("LoadModelAnimations")
ignore("UpdateModelAnimation")
ignore("UnloadModelAnimation")
ignore("UnloadModelAnimations")
ignore("IsModelAnimationValid")
ignore("ExportWaveAsCode")
2023-05-14 20:19:47 +00:00
// Wave/Sound management functions
2023-06-02 16:58:53 +00:00
ignore("LoadWaveSamples")
ignore("UnloadWaveSamples")
ignore("LoadMusicStreamFromMemory")
ignore("LoadAudioStream")
ignore("IsAudioStreamReady")
ignore("UnloadAudioStream")
ignore("UpdateAudioStream")
ignore("IsAudioStreamProcessed")
ignore("PlayAudioStream")
ignore("PauseAudioStream")
ignore("ResumeAudioStream")
ignore("IsAudioStreamPlaying")
ignore("StopAudioStream")
ignore("SetAudioStreamVolume")
ignore("SetAudioStreamPitch")
ignore("SetAudioStreamPan")
ignore("SetAudioStreamBufferSizeDefault")
ignore("SetAudioStreamCallback")
ignore("AttachAudioStreamProcessor")
ignore("DetachAudioStreamProcessor")
ignore("AttachAudioMixedProcessor")
ignore("DetachAudioMixedProcessor")
ignore("Vector3OrthoNormalize")
ignore("Vector3ToFloatV")
ignore("MatrixToFloatV")
ignore("QuaternionToAxisAngle")
core.exportGlobalConstant("DEG2RAD", "(PI/180.0)")
core.exportGlobalConstant("RAD2DEG", "(180.0/PI)")
2023-06-03 07:15:38 +00:00
const setOutParam = (fun: RayLibFunction, index: number) => {
const param = fun!.params![index]
param.binding = {
jsType: `{ ${param.name}: number }`,
customConverter: gen => {
gen.declare(param.name+"_out", param.type.replace(" *",""))
gen.declare(param.name, param.type, false, "&"+param.name+"_out")
},
customCleanup: gen => {
gen.call("JS_SetPropertyStr", ["ctx", "argv["+index+"]", `"${param.name}"`, "JS_NewInt32(ctx,"+param.name+"_out)"])
}
}
}
setOutParam(getFunction(api.functions, "GuiDropdownBox")!, 2)
setOutParam(getFunction(api.functions, "GuiSpinner")!, 2)
setOutParam(getFunction(api.functions, "GuiValueBox")!, 2)
setOutParam(getFunction(api.functions, "GuiListView")!, 2)
2023-06-02 16:58:53 +00:00
ignore("GuiListViewEx")
2023-06-03 07:15:38 +00:00
ignore("GuiTextBox")
2023-06-02 16:58:53 +00:00
ignore("GuiTextInputBox")
2023-06-03 07:15:38 +00:00
//setOutParam(getFunction(api.functions, "GuiTextInputBox")!, 6)
2023-06-02 16:58:53 +00:00
ignore("GuiTabBar")
2023-06-03 07:15:38 +00:00
ignore("GuiGetIcons")
2023-06-02 16:58:53 +00:00
ignore("GuiLoadIcons")
2023-05-26 22:47:44 +00:00
// TODO: Parse and support light struct
2023-06-02 16:58:53 +00:00
ignore("CreateLight")
ignore("UpdateLightValues")
2023-05-26 22:47:44 +00:00
2023-06-02 16:58:53 +00:00
api.structs.forEach(x => core.addApiStruct(x))
api.functions.forEach(x => core.addApiFunction(x))
2023-05-14 20:19:47 +00:00
api.defines.filter(x => x.type === "COLOR").map(x => ({ name: x.name, description: x.description, values: (x.value.match(/\{([^}]+)\}/) || "")[1].split(',').map(x => x.trim()) })).forEach(x => {
core.exportGlobalStruct("Color", x.name, x.values, x.description)
2023-05-08 21:37:58 +00:00
})
2023-06-02 16:58:53 +00:00
api.enums.forEach(x => core.addEnum(x))
core.exportGlobalConstant("MATERIAL_MAP_DIFFUSE", "Albedo material (same as: MATERIAL_MAP_DIFFUSE")
core.exportGlobalConstant("MATERIAL_MAP_SPECULAR", "Metalness material (same as: MATERIAL_MAP_SPECULAR)")
2023-05-14 20:19:47 +00:00
core.writeTo("src/bindings/js_raylib_core.h")
core.typings.writeTo("examples/lib.raylib.d.ts")
2023-06-02 16:58:53 +00:00
const ignored = api.functions.filter(x => x.binding?.ignore).length
console.log(`Converted ${api.functions.length-ignored} function. ${ignored} ignored`)
console.log("Success!")
2023-05-06 21:43:40 +00:00
}
main()