1
raylib-ffi/build/wrap/raylib_api.rs
2023-04-13 11:37:32 -04:00

58 lines
1.3 KiB
Rust

use std::error::Error;
use serde_json::Value;
#[derive(Debug, Clone, serde::Deserialize)]
pub struct Definition {
pub name: String,
#[serde(rename = "type")]
pub kind: String,
pub value: Value,
pub description: String,
}
#[derive(Debug, Clone, serde::Deserialize)]
pub struct EnumVariant {
pub name: String,
pub description: String,
pub value: u32,
}
#[derive(Debug, Clone, serde::Deserialize)]
pub struct StructureMember {
pub name: String,
#[serde(rename = "type")]
pub kind: String,
pub description: String,
}
#[derive(Debug, Clone, serde::Deserialize)]
pub struct Structure {
pub name: String,
pub description: String,
pub fields: Vec<StructureMember>,
}
#[derive(Debug, Clone, serde::Deserialize)]
pub struct Enum {
pub name: String,
pub description: String,
pub values: Vec<EnumVariant>,
}
#[derive(Debug, Clone, serde::Deserialize)]
pub struct RayLibApiDefinition {
pub defines: Vec<Definition>,
pub enums: Vec<Enum>,
pub structs: Vec<Structure>,
}
impl RayLibApiDefinition {
pub fn load(file_path: &str) -> Result<Self, Box<dyn Error>> {
let file = std::fs::File::open(file_path)?;
let reader = std::io::BufReader::new(file);
let api = serde_json::from_reader(reader)?;
Ok(api)
}
}