Add shared-data and bundle invalidation signals, and have handles publish them automatically for SAB and graph mutations. Document the raw core worker protocol in a dedicated VitePress site and simplify the glTF import and picking example. Amp-Thread-ID: https://ampcode.com/threads/T-01a01ff8-b91f-724f-8952-f07c6b5042fd Co-authored-by: Heaust Azure <heaust.azure@gmail.com>
229 lines
6.5 KiB
Rust
229 lines
6.5 KiB
Rust
use std::cell::RefCell;
|
|
use std::rc::Rc;
|
|
|
|
use serde::Deserialize;
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
#[path = "render_graph/compiler.rs"]
|
|
mod compiler;
|
|
#[path = "renderer/wgpu.rs"]
|
|
mod gpu;
|
|
#[path = "render_graph/gpu_resource.rs"]
|
|
mod gpu_resource;
|
|
#[path = "render_graph/render_graph.rs"]
|
|
mod graph;
|
|
#[path = "renderer/render.rs"]
|
|
mod render;
|
|
mod render_data;
|
|
#[path = "render_graph/store.rs"]
|
|
mod store;
|
|
|
|
use gpu::Wgpu;
|
|
use render::RenderLoop;
|
|
use render_data::RenderData;
|
|
use store::Store;
|
|
|
|
#[derive(Deserialize)]
|
|
struct RowRequest {
|
|
name: String,
|
|
rows: u32,
|
|
stride: u32,
|
|
format: String,
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub struct Core {
|
|
data: Rc<RefCell<RenderData>>,
|
|
gpu: Rc<RefCell<Option<Wgpu>>>,
|
|
store: Rc<RefCell<Store>>,
|
|
render: Rc<RenderLoop>,
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
impl Core {
|
|
#[wasm_bindgen(constructor)]
|
|
pub fn new(arena_bytes: u32) -> Result<Self, JsError> {
|
|
Ok(Self {
|
|
data: Rc::new(RefCell::new(
|
|
RenderData::new(arena_bytes).map_err(JsError::new)?,
|
|
)),
|
|
gpu: Rc::new(RefCell::new(None)),
|
|
store: Rc::new(RefCell::new(Store::default())),
|
|
render: Rc::new(RenderLoop::new()),
|
|
})
|
|
}
|
|
|
|
pub async fn initialize(&self, canvas: web_sys::OffscreenCanvas) -> Result<(), JsError> {
|
|
let gpu = Wgpu::new(canvas)
|
|
.await
|
|
.map_err(|error| JsError::new(&error))?;
|
|
*self.gpu.borrow_mut() = Some(gpu);
|
|
self.render
|
|
.start(self.gpu.clone(), self.store.clone(), self.data.clone());
|
|
Ok(())
|
|
}
|
|
|
|
pub fn rows(&self) -> String {
|
|
serde_json::to_string(&self.data.borrow().descriptors()).unwrap()
|
|
}
|
|
|
|
pub fn create_rows(
|
|
&self,
|
|
name: String,
|
|
rows: u32,
|
|
stride: u32,
|
|
format: String,
|
|
) -> Result<String, JsError> {
|
|
let rows = self
|
|
.data
|
|
.borrow_mut()
|
|
.create_rows(name, rows, stride, format)
|
|
.map_err(JsError::new)?;
|
|
if let Some(gpu) = self.gpu.borrow().as_ref() {
|
|
self.store
|
|
.borrow_mut()
|
|
.refresh_rows(&rows.name, gpu, &self.data.borrow())
|
|
.map_err(|error| JsError::new(&error))?;
|
|
}
|
|
Ok(serde_json::to_string(&rows).unwrap())
|
|
}
|
|
|
|
pub fn create_rows_batch(&self, source: &str) -> Result<String, JsError> {
|
|
let requests: Vec<RowRequest> =
|
|
serde_json::from_str(source).map_err(|_| JsError::new("ROWS"))?;
|
|
if requests.is_empty() {
|
|
return Err(JsError::new("ROWS"));
|
|
}
|
|
let refresh = requests
|
|
.iter()
|
|
.any(|request| self.store.borrow().uses_rows(&request.name));
|
|
let descriptors = {
|
|
let mut data = self.data.borrow_mut();
|
|
requests
|
|
.into_iter()
|
|
.map(|request| {
|
|
data.create_rows(request.name, request.rows, request.stride, request.format)
|
|
.map_err(JsError::new)
|
|
})
|
|
.collect::<Result<Vec<_>, _>>()?
|
|
};
|
|
if refresh {
|
|
if let Some(gpu) = self.gpu.borrow().as_ref() {
|
|
self.store
|
|
.borrow_mut()
|
|
.refresh(gpu, &self.data.borrow())
|
|
.map_err(|error| JsError::new(&error))?;
|
|
}
|
|
}
|
|
Ok(serde_json::to_string(&descriptors).unwrap())
|
|
}
|
|
|
|
pub fn delete_rows(&self, name: String) -> Result<(), JsError> {
|
|
if self.store.borrow().uses_rows(&name) {
|
|
return Err(JsError::new("ROWS_ACTIVE"));
|
|
}
|
|
self.data
|
|
.borrow_mut()
|
|
.delete_rows(&name)
|
|
.map_err(JsError::new)
|
|
}
|
|
|
|
pub fn allocate_object(&self, name: &str) -> Result<String, JsError> {
|
|
let (id, grew) = self
|
|
.data
|
|
.borrow_mut()
|
|
.allocate_object(name)
|
|
.map_err(JsError::new)?;
|
|
let rows = self
|
|
.data
|
|
.borrow()
|
|
.rows(name)
|
|
.ok_or_else(|| JsError::new("ROWS_UNKNOWN"))?
|
|
.clone();
|
|
if grew {
|
|
if let Some(gpu) = self.gpu.borrow().as_ref() {
|
|
self.store
|
|
.borrow_mut()
|
|
.refresh_rows(name, gpu, &self.data.borrow())
|
|
.map_err(|error| JsError::new(&error))?;
|
|
}
|
|
}
|
|
Ok(serde_json::json!({ "id": id, "rows": rows }).to_string())
|
|
}
|
|
|
|
pub fn delete_object(&self, name: &str, id: u32) -> Result<(), JsError> {
|
|
self.data
|
|
.borrow_mut()
|
|
.delete_object(name, id)
|
|
.map_err(JsError::new)?;
|
|
self.data.borrow_mut().mark_dirty();
|
|
Ok(())
|
|
}
|
|
|
|
pub fn compile_graph(&self, source: &str) -> Result<String, JsError> {
|
|
let graph = compiler::compile(source).map_err(JsError::new)?;
|
|
Ok(self.store.borrow_mut().save(graph))
|
|
}
|
|
|
|
pub fn switch_loadout(&self, id: &str) -> Result<(), JsError> {
|
|
let gpu = self.gpu.borrow();
|
|
let gpu = gpu
|
|
.as_ref()
|
|
.ok_or_else(|| JsError::new("WEBGPU_UNINITIALIZED"))?;
|
|
self.store
|
|
.borrow_mut()
|
|
.switch(id, gpu, &self.data.borrow())
|
|
.map_err(|error| JsError::new(&error))?;
|
|
self.data.borrow_mut().loadout_ready();
|
|
Ok(())
|
|
}
|
|
|
|
pub fn upload_texture(
|
|
&self,
|
|
name: String,
|
|
mip_level: u32,
|
|
image: web_sys::ImageBitmap,
|
|
) -> Result<(), JsError> {
|
|
let gpu = self.gpu.borrow();
|
|
let gpu = gpu
|
|
.as_ref()
|
|
.ok_or_else(|| JsError::new("WEBGPU_UNINITIALIZED"))?;
|
|
self.store
|
|
.borrow_mut()
|
|
.upload_texture(name, mip_level, image, gpu)
|
|
.map_err(|error| JsError::new(&error))?;
|
|
self.data.borrow_mut().mark_dirty();
|
|
Ok(())
|
|
}
|
|
|
|
pub fn delete_texture(&self, name: &str) {
|
|
self.store.borrow_mut().delete_texture(name);
|
|
}
|
|
|
|
pub fn play(&self) {
|
|
self.render.play();
|
|
}
|
|
|
|
pub fn pause(&self) {
|
|
self.render.pause();
|
|
}
|
|
|
|
pub fn set_fps(&self, fps: u32) -> Result<(), JsError> {
|
|
self.render.set_fps(fps).map_err(JsError::new)
|
|
}
|
|
|
|
pub fn set_profiler(&self, enabled: bool) -> bool {
|
|
let supported = self
|
|
.gpu
|
|
.borrow()
|
|
.as_ref()
|
|
.is_some_and(|gpu| gpu.timestamp_queries);
|
|
self.render.set_profiling(enabled && supported);
|
|
supported
|
|
}
|
|
|
|
pub fn take_profile(&self) -> Option<String> {
|
|
self.render.take_profile()
|
|
}
|
|
}
|