refactor: fine-grained interior mutability for scenegraph
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
use crate::core::client::Client;
|
||||
use crate::nodes::spatial::Spatial;
|
||||
use anyhow::{anyhow, ensure, Result};
|
||||
use rccell::{RcCell, WeakCell};
|
||||
use anyhow::{anyhow, Result};
|
||||
use std::rc::{Rc, Weak};
|
||||
use std::{collections::HashMap, vec::Vec};
|
||||
|
||||
pub type Signal<'a> = Box<dyn Fn(RcCell<Client>, &[u8]) -> Result<()> + 'a>;
|
||||
pub type Method<'a> = Box<dyn Fn(RcCell<Client>, &[u8]) -> Result<Vec<u8>> + 'a>;
|
||||
pub type Signal<'a> = Box<dyn Fn(Rc<Client>, &[u8]) -> Result<()> + 'a>;
|
||||
pub type Method<'a> = Box<dyn Fn(Rc<Client>, &[u8]) -> Result<Vec<u8>> + 'a>;
|
||||
|
||||
pub struct Node<'a> {
|
||||
client: WeakCell<Client<'a>>,
|
||||
client: Weak<Client<'a>>,
|
||||
path: String,
|
||||
trailing_slash_pos: usize,
|
||||
local_signals: HashMap<String, Signal<'a>>,
|
||||
@@ -19,7 +19,7 @@ pub struct Node<'a> {
|
||||
}
|
||||
|
||||
impl<'a> Node<'a> {
|
||||
pub fn get_client(&self) -> Option<RcCell<Client<'a>>> {
|
||||
pub fn get_client(&self) -> Option<Rc<Client<'a>>> {
|
||||
self.client.clone().upgrade()
|
||||
}
|
||||
pub fn get_name(&self) -> &str {
|
||||
@@ -29,18 +29,13 @@ impl<'a> Node<'a> {
|
||||
self.path.as_str()
|
||||
}
|
||||
|
||||
pub fn create(
|
||||
client: WeakCell<Client<'a>>,
|
||||
parent: &str,
|
||||
name: &str,
|
||||
destroyable: bool,
|
||||
) -> Self {
|
||||
pub fn create(client: Weak<Client<'a>>, parent: &str, name: &str, destroyable: bool) -> Self {
|
||||
let mut path = parent.to_string();
|
||||
path.push('/');
|
||||
path.push_str(name);
|
||||
Node {
|
||||
client,
|
||||
path: path,
|
||||
path,
|
||||
trailing_slash_pos: parent.len(),
|
||||
local_signals: HashMap::new(),
|
||||
local_methods: HashMap::new(),
|
||||
@@ -55,7 +50,7 @@ impl<'a> Node<'a> {
|
||||
|
||||
pub fn send_local_signal(
|
||||
&self,
|
||||
calling_client: RcCell<Client>,
|
||||
calling_client: Rc<Client>,
|
||||
method: &str,
|
||||
data: &[u8],
|
||||
) -> Result<()> {
|
||||
@@ -67,7 +62,7 @@ impl<'a> Node<'a> {
|
||||
}
|
||||
pub fn execute_local_method(
|
||||
&self,
|
||||
calling_client: RcCell<Client>,
|
||||
calling_client: Rc<Client>,
|
||||
method: &str,
|
||||
data: &[u8],
|
||||
) -> Result<Vec<u8>> {
|
||||
@@ -77,8 +72,7 @@ impl<'a> Node<'a> {
|
||||
}
|
||||
pub fn send_remote_signal(&self, method: &str, data: &[u8]) -> Result<()> {
|
||||
self.get_client()
|
||||
.ok_or(anyhow!("Node has no client, can't send remote signal!"))?
|
||||
.borrow()
|
||||
.ok_or_else(|| anyhow!("Node has no client, can't send remote signal!"))?
|
||||
.get_messenger()
|
||||
.send_remote_signal(self.path.as_str(), method, data)
|
||||
.map_err(|_| anyhow!("Unable to write in messenger"))
|
||||
@@ -90,8 +84,7 @@ impl<'a> Node<'a> {
|
||||
callback: Box<dyn Fn(&[u8]) + 'a>,
|
||||
) -> Result<()> {
|
||||
self.get_client()
|
||||
.ok_or(anyhow!("Node has no client, can't send remote signal!"))?
|
||||
.borrow()
|
||||
.ok_or_else(|| anyhow!("Node has no client, can't send remote signal!"))?
|
||||
.get_messenger()
|
||||
.execute_remote_method(self.path.as_str(), method, data, callback)
|
||||
.map_err(|_| anyhow!("Unable to write in messenger"))
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
use super::core::Node;
|
||||
use crate::core::client::Client;
|
||||
use anyhow::{anyhow, bail, ensure, Result};
|
||||
use glam::{Mat4, Quat, Vec3};
|
||||
use glam::Mat4;
|
||||
use libstardustxr::{flex_to_quat, flex_to_vec3};
|
||||
use rccell::{RcCell, WeakCell};
|
||||
use std::rc::Rc;
|
||||
|
||||
pub struct Spatial<'a> {
|
||||
node: WeakCell<Node<'a>>,
|
||||
@@ -34,14 +35,11 @@ impl<'a> Spatial<'a> {
|
||||
let client = node_captured
|
||||
.borrow()
|
||||
.get_client()
|
||||
.ok_or(anyhow!("Node somehow has no client!"))?;
|
||||
.ok_or_else(|| anyhow!("Node somehow has no client"))?;
|
||||
let other_spatial = calling_client
|
||||
.borrow()
|
||||
.get_scenegraph()
|
||||
.nodes
|
||||
.get(flex_vec.idx(0).as_str())
|
||||
.ok_or(anyhow!("Spatial node not found"))?
|
||||
.clone();
|
||||
.get_node(flex_vec.idx(0).as_str())
|
||||
.ok_or_else(|| anyhow!("Other spatial node not found"))?;
|
||||
ensure!(
|
||||
other_spatial.borrow().spatial.is_some(),
|
||||
"Node is not a Spatial!"
|
||||
@@ -54,7 +52,7 @@ impl<'a> Spatial<'a> {
|
||||
.spatial
|
||||
.as_mut()
|
||||
.unwrap()
|
||||
.set_transform_components(client, other_spatial, pos.into(), rot, scl);
|
||||
.set_transform_components(client, other_spatial, pos, rot, scl);
|
||||
Ok(())
|
||||
}),
|
||||
);
|
||||
@@ -76,7 +74,7 @@ impl<'a> Spatial<'a> {
|
||||
|
||||
pub fn set_transform_components(
|
||||
&mut self,
|
||||
calling_client: RcCell<Client>,
|
||||
calling_client: Rc<Client>,
|
||||
relative_space: RcCell<Node>,
|
||||
pos: Option<mint::Vector3<f32>>,
|
||||
rot: Option<mint::Quaternion<f32>>,
|
||||
@@ -88,15 +86,15 @@ impl<'a> Spatial<'a> {
|
||||
// pub fn relative_transform(&self, space: WeakCell<Spatial>) {}
|
||||
}
|
||||
|
||||
pub fn create_interface(client: RcCell<Client>) {
|
||||
let mut node = Node::create(client.downgrade(), "", "spatial", false);
|
||||
pub fn create_interface(client: Rc<Client>) {
|
||||
let mut node = Node::create(Rc::downgrade(&client), "", "spatial", false);
|
||||
node.add_local_signal(
|
||||
"createSpatial",
|
||||
Box::new(move |calling_client, data| {
|
||||
let root = flexbuffers::Reader::get_root(data)?;
|
||||
let flex_vec = root.get_vector()?;
|
||||
let node = Node::create(
|
||||
calling_client.downgrade(),
|
||||
Rc::downgrade(&calling_client),
|
||||
"/spatial",
|
||||
flex_vec.idx(0).get_str()?,
|
||||
true,
|
||||
@@ -112,13 +110,10 @@ pub fn create_interface(client: RcCell<Client>) {
|
||||
.ok_or_else(|| anyhow!("Position not found"))?
|
||||
.into(),
|
||||
);
|
||||
let node_rc = calling_client
|
||||
.borrow_mut()
|
||||
.get_scenegraph_mut()
|
||||
.add_node(node);
|
||||
let node_rc = calling_client.get_scenegraph().add_node(node);
|
||||
Spatial::add_to(node_rc, WeakCell::new(), transform)?;
|
||||
Ok(())
|
||||
}),
|
||||
);
|
||||
client.borrow_mut().get_scenegraph_mut().add_node(node);
|
||||
client.get_scenegraph().add_node(node);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user