Compare commits

..

2 commits

Author SHA1 Message Date
402508a595 Update Rust crate itertools to 0.14.0 2025-02-28 18:02:26 +00:00
2955e6aed5 Rework concept how scenes are called 2025-02-28 16:41:59 +01:00
5 changed files with 91 additions and 87 deletions

View file

@ -6,9 +6,11 @@ use std::{
use utilities::prelude::{remove_life_time, remove_life_time_mut};
type Untyped = dyn Any + Send + Sync;
#[derive(Default)]
pub struct Resources {
map: HashMap<TypeId, Box<dyn Any + Send + Sync>>,
map: HashMap<TypeId, Box<Untyped>>,
}
impl Resources {
@ -34,13 +36,23 @@ impl Resources {
self.get_opt::<T>().unwrap()
}
pub fn get_by_type_id<T: Any + Send + Sync>(&self, type_id: TypeId) -> &T {
self.get_opt_by_type_id(type_id).unwrap()
}
pub fn get_unchecked<'a, T: Any + Send + Sync>(&self) -> &'a T {
unsafe { remove_life_time(self.get::<T>()) }
}
pub fn get_opt<T: Any + Send + Sync>(&self) -> Option<&T> {
self.get_opt_by_type_id(TypeId::of::<T>())
}
pub fn get_opt_by_type_id<T: Any + Send + Sync>(&self, type_id: TypeId) -> Option<&T> {
debug_assert_eq!(type_id, TypeId::of::<T>());
self.map
.get(&TypeId::of::<T>())
.get(&type_id)
.map(|any| Self::downcast_ref_unchecked(any))
}
@ -48,16 +60,37 @@ impl Resources {
self.get_mut_opt::<T>().unwrap()
}
pub fn get_mut_by_type_id<T: Any + Send + Sync>(&mut self, type_id: TypeId) -> &mut T {
self.get_mut_opt_by_type_id(type_id).unwrap()
}
pub fn get_mut_by_type_id_untyped(&mut self, type_id: TypeId) -> &mut Untyped {
self.get_mut_opt_by_type_id_untyped(type_id).unwrap()
}
pub fn get_mut_unchecked<'a, T: Any + Send + Sync>(&mut self) -> &'a mut T {
unsafe { remove_life_time_mut(self.get_mut::<T>()) }
}
pub fn get_mut_opt<T: Any + Send + Sync>(&mut self) -> Option<&mut T> {
self.get_mut_opt_by_type_id(TypeId::of::<T>())
}
pub fn get_mut_opt_by_type_id<T: Any + Send + Sync>(
&mut self,
type_id: TypeId,
) -> Option<&mut T> {
debug_assert_eq!(type_id, TypeId::of::<T>());
self.map
.get_mut(&TypeId::of::<T>())
.get_mut(&type_id)
.map(|any| Self::downcast_mut_unchecked(any))
}
pub fn get_mut_opt_by_type_id_untyped(&mut self, type_id: TypeId) -> Option<&mut Untyped> {
self.map.get_mut(&type_id).map(|any| any.as_mut())
}
pub fn multi_mut(&mut self) -> ResourceMultiMut<'_> {
ResourceMultiMut::new(&mut self.map)
}
@ -69,11 +102,11 @@ impl Resources {
// helper
impl Resources {
fn downcast_unchecked<T: Any + Send + Sync>(boxed: Box<dyn Any + Send + Sync>) -> Box<T> {
fn downcast_unchecked<T: Any + Send + Sync>(boxed: Box<Untyped>) -> Box<T> {
unsafe { Box::from_raw(Box::into_raw(boxed) as *mut T) }
}
fn downcast_ref_unchecked<T: Any + Send + Sync>(boxed_ref: &Box<dyn Any + Send + Sync>) -> &T {
fn downcast_ref_unchecked<T: Any + Send + Sync>(boxed_ref: &Box<Untyped>) -> &T {
unsafe {
let ptr_to_ptr: *const *const T =
transmute(destructure_traitobject::data(boxed_ref as *const _));
@ -82,9 +115,7 @@ impl Resources {
}
}
fn downcast_mut_unchecked<T: Any + Send + Sync>(
boxed_ref: &mut Box<dyn Any + Send + Sync>,
) -> &mut T {
fn downcast_mut_unchecked<T: Any + Send + Sync>(boxed_ref: &mut Box<Untyped>) -> &mut T {
unsafe {
let ptr_to_ptr: *mut *mut T =
transmute(destructure_traitobject::data(boxed_ref as *mut _));

View file

@ -9,6 +9,7 @@ vulkan-rs = { workspace = true }
ui = { workspace = true }
sdl2 = { workspace = true }
anyhow = { workspace = true }
destructure_traitobject = { workspace = true }
openxr = { workspace = true, optional = true }
openvr = { workspace = true, optional = true }

View file

@ -6,7 +6,7 @@ use ecs::World;
use ui::prelude::*;
use vulkan_rs::prelude::*;
use std::marker::PhantomData;
use std::any::TypeId;
use std::ops::Deref;
use std::sync::{
Arc, Mutex, RwLock,
@ -49,7 +49,7 @@ impl Default for VRTransformations {
}
}
pub struct RenderBackend<S: TScene + 'static> {
pub struct RenderBackend {
device: Arc<Device>,
queue: Arc<Mutex<Queue>>,
@ -61,12 +61,10 @@ pub struct RenderBackend<S: TScene + 'static> {
command_buffer: Arc<CommandBuffer>,
post_processes: Mutex<Vec<Arc<dyn PostProcess>>>,
s: PhantomData<S>,
render_routines: Vec<(u32, TypeId)>,
}
impl<S: TScene + 'static> RenderBackend<S> {
impl RenderBackend {
pub fn new(
device: &Arc<Device>,
queue: &Arc<Mutex<Queue>>,
@ -94,9 +92,7 @@ impl<S: TScene + 'static> RenderBackend<S> {
command_buffer,
post_processes: Mutex::new(Vec::new()),
s: PhantomData,
render_routines: Vec::new(),
})
}
@ -105,7 +101,7 @@ impl<S: TScene + 'static> RenderBackend<S> {
}
}
impl<S: TScene + 'static> RenderBackend<S> {
impl RenderBackend {
pub fn device(&self) -> &Arc<Device> {
&self.device
}
@ -170,18 +166,23 @@ impl<S: TScene + 'static> RenderBackend<S> {
}
}
// make a call to the connected scene
world.resources.get_mut_unchecked::<S>().process(
// make a call to the connected scenes
self.render_routines
.iter_mut()
.try_for_each(|(_, type_id)| {
let scene: &mut dyn TScene = unsafe {
std::mem::transmute(destructure_traitobject::data_mut(
world.resources.get_mut_by_type_id_untyped(*type_id),
))
};
scene.process(
&mut buffer_recorder,
&*self.swapchain_images.lock().unwrap(),
&image_indices,
world,
)?;
// post processing
for post_process in self.post_processes.lock().unwrap().iter() {
post_process.process(&mut buffer_recorder, &image_indices)?;
}
})?;
Ok(&self.command_buffer)
}
@ -204,49 +205,37 @@ impl<S: TScene + 'static> RenderBackend<S> {
SeqCst,
);
world
.resources
.get_mut::<S>()
.resize(width as f32, height as f32, &images)?;
*self.swapchain_images.lock().unwrap() = images;
self.render_routines
.iter_mut()
.try_for_each(|(_, type_id)| {
let scene: &mut dyn TScene = unsafe {
std::mem::transmute(destructure_traitobject::data_mut(
world.resources.get_mut_by_type_id_untyped(*type_id),
))
};
for post_process in self.post_processes.lock().unwrap().iter() {
post_process.resize(width, height, &*self.swapchain_images.lock().unwrap())?;
}
scene.resize(width, height, &images)
})?;
Ok(())
}
pub fn add_post_processing_routine(&self, post_process: Arc<dyn PostProcess>) {
let mut post_processes = self.post_processes.lock().unwrap();
/// lower priority means it is more important
pub fn add_render_routine<T: TScene>(&mut self, priority: u32) {
self.render_routines.push((priority, TypeId::of::<T>()));
self.render_routines.sort_by_key(|(p, _)| *p);
}
// only add if it isn't present already
if post_processes
pub fn remove_render_routine<T: TScene>(&mut self) {
if let Some(index) = self
.render_routines
.iter()
.find(|p| Arc::ptr_eq(p, &post_process))
.is_none()
.find(|(_, type_id)| *type_id == TypeId::of::<T>())
{
post_processes.push(post_process);
post_processes.sort_by(|lhs, rhs| lhs.priority().cmp(&rhs.priority()));
self.render_routines.remove(index)
}
}
pub fn remove_post_processing_routine(&self, post_process: Arc<dyn PostProcess>) {
let mut post_processes = self.post_processes.lock().unwrap();
if let Some(index) = post_processes
.iter()
.position(|p| Arc::ptr_eq(p, &post_process))
{
post_processes.remove(index);
}
}
pub fn clear_post_processing_routines(&self) {
self.post_processes.lock().unwrap().clear();
}
// getter
pub fn image_count(&self) -> usize {
self.image_count.load(SeqCst)
@ -257,7 +246,7 @@ impl<S: TScene + 'static> RenderBackend<S> {
}
}
impl<S: TScene + 'static> RenderBackend<S> {
impl RenderBackend {
#[inline]
fn clear_image(
buffer_recorder: &mut CommandBufferRecorder<'_>,

View file

@ -8,7 +8,7 @@ use std::sync::Arc;
use crate::prelude::*;
pub trait TScene: Send + Sync {
pub trait TScene: Send + Sync + 'static {
fn process(
&mut self,
buffer_recorder: &mut CommandBufferRecorder<'_>,
@ -25,18 +25,6 @@ pub trait TScene: Send + Sync {
) -> Result<()>;
}
pub trait PostProcess: Send + Sync {
/// higher priority means, it is executed earlier
fn priority(&self) -> u32;
fn process(
&self,
buffer_recorder: &mut CommandBufferRecorder<'_>,
indices: &TargetMode<usize>,
) -> Result<()>;
fn resize(&self, width: u32, height: u32, images: &TargetMode<Vec<Arc<Image>>>) -> Result<()>;
}
pub trait RenderCore: std::fmt::Debug + Send + Sync {
fn next_frame(&mut self, world: &mut World) -> Result<bool>;
@ -47,12 +35,11 @@ pub trait RenderCore: std::fmt::Debug + Send + Sync {
VK_IMAGE_LAYOUT_PRESENT_SRC_KHR
}
fn set_clear_color(&self, color: [f32; 4]);
// render routines
fn add_render_routine<T: TScene>(&mut self, priority: u32);
fn remove_render_routine<T: TScene>(&mut self);
// post process handling
fn add_post_processing_routine(&self, post_process: Arc<dyn PostProcess>);
fn remove_post_processing_routine(&self, post_process: Arc<dyn PostProcess>);
fn clear_post_processing_routines(&self);
fn set_clear_color(&self, color: [f32; 4]);
// getter
fn image_count(&self) -> usize;

View file

@ -92,16 +92,12 @@ pub mod openvrrendercore {
}
// post process handling
fn add_post_processing_routine(&self, _post_process: Arc<dyn PostProcess>) {
unimplemented!()
fn add_render_routine<T: TScene>(&mut self, priority: u32) {
todo!()
}
fn remove_post_processing_routine(&self, _post_process: Arc<dyn PostProcess>) {
unimplemented!()
}
fn clear_post_processing_routines(&self) {
unimplemented!()
fn remove_render_routine<T: TScene>(&mut self) {
todo!()
}
// getter