2023-12-14 05:25:09 +00:00
|
|
|
use std::{any::{TypeId, Any}, ptr::NonNull, mem::size_of, alloc::Layout};
|
2023-05-25 04:11:16 +00:00
|
|
|
|
2023-12-09 16:40:41 +00:00
|
|
|
use crate::{component::Component, component_info::ComponentInfo, DynTypeId};
|
2023-05-25 04:11:16 +00:00
|
|
|
|
|
|
|
pub trait Bundle {
|
2023-11-26 05:56:30 +00:00
|
|
|
/// Get a list of type ids that this bundle is storing
|
2023-12-09 16:40:41 +00:00
|
|
|
fn type_ids(&self) -> Vec<DynTypeId>;
|
2023-11-25 23:43:11 +00:00
|
|
|
|
2023-11-26 05:56:30 +00:00
|
|
|
/// Get ComponentInfo's for the components in this bundle
|
2023-11-25 23:43:11 +00:00
|
|
|
fn info(&self) -> Vec<ComponentInfo>;
|
|
|
|
|
|
|
|
/// Take the bundle by calling the closure with pointers to each component, its type and size.
|
|
|
|
/// The closure is expected to take ownership of the pointer.
|
2023-12-09 16:40:41 +00:00
|
|
|
fn take(self, f: impl FnMut(NonNull<u8>, DynTypeId, usize));
|
2023-05-25 04:11:16 +00:00
|
|
|
}
|
|
|
|
|
2023-11-26 05:56:30 +00:00
|
|
|
// The macro below can implement this for us, but this is here for development
|
2023-11-25 23:43:11 +00:00
|
|
|
impl<C1: Component> Bundle for (C1,) {
|
2023-12-09 16:40:41 +00:00
|
|
|
fn type_ids(&self) -> Vec<DynTypeId> {
|
|
|
|
vec![DynTypeId::of::<C1>()]
|
2023-11-25 23:43:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn info(&self) -> Vec<ComponentInfo> {
|
|
|
|
vec![ComponentInfo::new::<C1>()]
|
|
|
|
}
|
|
|
|
|
2023-12-09 16:40:41 +00:00
|
|
|
fn take(self, mut f: impl FnMut(NonNull<u8>, DynTypeId, usize)) {
|
2023-11-25 23:43:11 +00:00
|
|
|
let (c1, ) = self;
|
|
|
|
|
2023-12-09 16:40:41 +00:00
|
|
|
f(NonNull::from(&c1).cast(), DynTypeId::of::<C1>(), size_of::<C1>());
|
2023-11-25 23:43:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-26 05:56:30 +00:00
|
|
|
macro_rules! impl_bundle_tuple {
|
|
|
|
( $($name: ident),+ ) => (
|
|
|
|
#[allow(non_snake_case)]
|
2023-05-26 02:59:27 +00:00
|
|
|
impl<$($name: Component),+> Bundle for ($($name,)+) {
|
2023-12-09 16:40:41 +00:00
|
|
|
fn type_ids(&self) -> Vec<DynTypeId> {
|
2023-11-26 05:56:30 +00:00
|
|
|
// these names wont follow rust convention, but its a macro so deal with it
|
2023-12-09 16:40:41 +00:00
|
|
|
vec![$(DynTypeId::of::<$name>()),+]
|
2023-05-25 04:11:16 +00:00
|
|
|
}
|
|
|
|
|
2023-11-26 05:56:30 +00:00
|
|
|
fn info(&self) -> Vec<ComponentInfo> {
|
|
|
|
vec![$(ComponentInfo::new::<$name>()),+]
|
2023-05-25 04:11:16 +00:00
|
|
|
}
|
2023-11-25 23:43:11 +00:00
|
|
|
|
2023-12-09 16:40:41 +00:00
|
|
|
fn take(self, mut f: impl FnMut(NonNull<u8>, DynTypeId, usize)) {
|
2023-11-26 05:56:30 +00:00
|
|
|
// these names wont follow rust convention, but its a macro so deal with it
|
|
|
|
let ($($name),+) = self;
|
2023-11-25 23:43:11 +00:00
|
|
|
|
2023-12-09 16:40:41 +00:00
|
|
|
$(f(NonNull::from(&$name).cast(), DynTypeId::of::<$name>(), size_of::<$name>());)+
|
2023-11-25 23:43:11 +00:00
|
|
|
}
|
2023-05-25 04:11:16 +00:00
|
|
|
}
|
|
|
|
);
|
2023-11-26 05:56:30 +00:00
|
|
|
}
|
2023-05-25 04:11:16 +00:00
|
|
|
|
|
|
|
// hopefully 16 components in a bundle is enough
|
2023-11-26 05:56:30 +00:00
|
|
|
impl_bundle_tuple! { C1, C2 }
|
|
|
|
impl_bundle_tuple! { C1, C2, C3 }
|
|
|
|
impl_bundle_tuple! { C1, C2, C3, C4 }
|
|
|
|
impl_bundle_tuple! { C1, C2, C3, C4, C5 }
|
|
|
|
impl_bundle_tuple! { C1, C2, C3, C4, C5, C6 }
|
|
|
|
impl_bundle_tuple! { C1, C2, C3, C4, C5, C6, C7 }
|
|
|
|
impl_bundle_tuple! { C1, C2, C3, C4, C5, C6, C7, C8 }
|
|
|
|
impl_bundle_tuple! { C1, C2, C3, C4, C5, C6, C7, C8, C9 }
|
|
|
|
impl_bundle_tuple! { C1, C2, C3, C4, C5, C6, C7, C8, C9, C10 }
|
|
|
|
impl_bundle_tuple! { C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11 }
|
|
|
|
impl_bundle_tuple! { C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12 }
|
|
|
|
impl_bundle_tuple! { C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13 }
|
|
|
|
impl_bundle_tuple! { C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14 }
|
|
|
|
impl_bundle_tuple! { C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14, C15 }
|
2023-12-09 17:23:10 +00:00
|
|
|
impl_bundle_tuple! { C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14, C15, C16 }
|
|
|
|
|
2023-12-14 05:25:09 +00:00
|
|
|
/// A bundle of a dynamic number of components. The types of the components may not be known to Rust.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
/// Do not drop this without inserting it into an archetype. It WILL cause a memory leak
|
|
|
|
#[derive(Default, Clone)]
|
2023-12-09 17:23:10 +00:00
|
|
|
pub struct DynamicBundle {
|
|
|
|
bundle: Vec<(NonNull<u8>, ComponentInfo)>,
|
|
|
|
}
|
|
|
|
|
2023-12-14 05:25:09 +00:00
|
|
|
// TODO: When a bundle is dropped without being inserted into an archetype, it WILL cause a memory leak. Find a way around that.
|
|
|
|
// maybe it can be done with Rc, or Weak, or a mixture of both.
|
2023-12-09 17:23:10 +00:00
|
|
|
impl DynamicBundle {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self::default()
|
|
|
|
}
|
|
|
|
|
2023-12-14 05:25:09 +00:00
|
|
|
pub fn len(&self) -> usize {
|
|
|
|
self.bundle.len()
|
|
|
|
}
|
|
|
|
|
2023-12-09 17:23:10 +00:00
|
|
|
/// Push a type known to rust to this bundle
|
|
|
|
pub fn push<C>(&mut self, comp: C)
|
|
|
|
where
|
|
|
|
C: Component
|
|
|
|
{
|
|
|
|
let info = ComponentInfo::new::<C>();
|
2023-12-14 05:25:09 +00:00
|
|
|
|
|
|
|
// an owned pointer must be created from the provided component since comp would drop
|
|
|
|
// out of scope and the data would become invalid
|
|
|
|
let ptr = unsafe {
|
|
|
|
let data = NonNull::from(&comp);
|
2023-12-09 17:23:10 +00:00
|
|
|
|
2023-12-14 05:25:09 +00:00
|
|
|
let layout = Layout::new::<C>();
|
|
|
|
let alloc_ptr = NonNull::new_unchecked(std::alloc::alloc(layout)).cast::<C>();
|
|
|
|
std::ptr::copy_nonoverlapping(data.as_ptr(), alloc_ptr.as_ptr(), 1);
|
|
|
|
|
|
|
|
alloc_ptr.cast()
|
|
|
|
};
|
|
|
|
|
|
|
|
self.bundle.push((ptr, info));
|
2023-12-09 17:23:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Push an unknown type to the bundle
|
|
|
|
pub fn push_unknown(&mut self, data: NonNull<u8>, info: ComponentInfo) {
|
|
|
|
self.bundle.push((data, info));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Bundle for DynamicBundle {
|
|
|
|
fn type_ids(&self) -> Vec<DynTypeId> {
|
|
|
|
self.bundle.iter().map(|b| b.1.type_id).collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn info(&self) -> Vec<ComponentInfo> {
|
|
|
|
self.bundle.iter().map(|b| b.1.clone()).collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn take(self, mut f: impl FnMut(NonNull<u8>, DynTypeId, usize)) {
|
|
|
|
for (data, info) in self.bundle.iter() {
|
|
|
|
f(data.clone(), info.type_id, info.layout.size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|