2023-11-25 23:43:11 +00:00
|
|
|
use std::{marker::PhantomData, any::TypeId, ptr::NonNull};
|
|
|
|
|
2023-11-26 05:56:30 +00:00
|
|
|
use super::{Fetch, Query, AsQuery, DefaultQuery};
|
2023-11-25 23:43:11 +00:00
|
|
|
|
2023-11-27 02:05:35 +00:00
|
|
|
/// Fetcher for borrowing components from archetypes.
|
2023-11-25 23:43:11 +00:00
|
|
|
pub struct FetchBorrow<'a, T> {
|
|
|
|
ptr: NonNull<u8>,
|
|
|
|
size: usize,
|
|
|
|
_phantom: PhantomData<&'a T>
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, T> Fetch<'a> for FetchBorrow<'a, T>
|
|
|
|
where
|
|
|
|
T: 'a,
|
|
|
|
{
|
|
|
|
type Item = &'a T;
|
|
|
|
|
2023-11-26 05:56:30 +00:00
|
|
|
fn dangling() -> Self {
|
2023-11-25 23:43:11 +00:00
|
|
|
FetchBorrow {
|
|
|
|
ptr: NonNull::dangling(),
|
|
|
|
size: 0,
|
|
|
|
_phantom: PhantomData::default()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn get_item(&mut self, entity: crate::world::ArchetypeEntityId) -> Self::Item {
|
|
|
|
let ptr = NonNull::new_unchecked(self.ptr.as_ptr()
|
|
|
|
.add(entity.0 as usize * self.size))
|
|
|
|
.cast();
|
|
|
|
&*ptr.as_ptr()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-27 02:05:35 +00:00
|
|
|
/// A Query for borrowing components from archetypes.
|
|
|
|
///
|
|
|
|
/// Since [`AsQuery`] is implemented for `&T`, you can use this query like this:
|
|
|
|
/// ```rust
|
|
|
|
/// for ts in world.view::<&T>() {
|
|
|
|
/// println!("Got an &T!");
|
|
|
|
/// }
|
|
|
|
/// ```
|
2023-11-25 23:43:11 +00:00
|
|
|
pub struct QueryBorrow<T> {
|
|
|
|
type_id: TypeId,
|
|
|
|
_phantom: PhantomData<T>
|
|
|
|
}
|
|
|
|
|
2023-11-26 00:58:14 +00:00
|
|
|
impl<T: 'static> QueryBorrow<T> {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
type_id: TypeId::of::<T>(),
|
|
|
|
_phantom: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-25 23:43:11 +00:00
|
|
|
impl<T> Query for QueryBorrow<T>
|
|
|
|
where
|
|
|
|
T: 'static
|
|
|
|
{
|
|
|
|
type Item<'a> = &'a T;
|
|
|
|
|
|
|
|
type Fetch<'a> = FetchBorrow<'a, T>;
|
|
|
|
|
|
|
|
fn can_visit_archetype(&self, archetype: &crate::archetype::Archetype) -> bool {
|
|
|
|
archetype.columns.iter().any(|c| c.info.type_id == self.type_id)
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn fetch<'a>(&self, _arch_id: crate::archetype::ArchetypeId, archetype: &'a crate::archetype::Archetype) -> Self::Fetch<'a> {
|
|
|
|
let col = archetype.columns.iter().find(|c| c.info.type_id == self.type_id)
|
|
|
|
.expect("You ignored 'can_visit_archetype'!");
|
|
|
|
let col_data = col.data;
|
|
|
|
|
|
|
|
FetchBorrow {
|
|
|
|
ptr: NonNull::new_unchecked(col_data.as_ptr()),
|
|
|
|
size: col.info.layout.size(),
|
|
|
|
_phantom: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-26 00:58:14 +00:00
|
|
|
impl<T: 'static> AsQuery for QueryBorrow<T> {
|
|
|
|
type Query = Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: 'static> DefaultQuery for QueryBorrow<T> {
|
|
|
|
fn default_query() -> Self {
|
|
|
|
QueryBorrow::<T>::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: 'static> AsQuery for &T {
|
|
|
|
type Query = QueryBorrow<T>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: 'static> DefaultQuery for &T {
|
|
|
|
fn default_query() -> QueryBorrow<T> {
|
|
|
|
QueryBorrow::<T>::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-27 02:05:35 +00:00
|
|
|
/// A fetcher for mutably borrowing components from archetypes.
|
2023-11-25 23:43:11 +00:00
|
|
|
pub struct FetchBorrowMut<'a, T> {
|
|
|
|
ptr: NonNull<u8>,
|
|
|
|
size: usize,
|
|
|
|
_phantom: PhantomData<&'a T>
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, T> Fetch<'a> for FetchBorrowMut<'a, T>
|
|
|
|
where
|
|
|
|
T: 'a,
|
|
|
|
{
|
|
|
|
type Item = &'a mut T;
|
|
|
|
|
2023-11-26 05:56:30 +00:00
|
|
|
fn dangling() -> Self {
|
2023-11-25 23:43:11 +00:00
|
|
|
FetchBorrowMut {
|
|
|
|
ptr: NonNull::dangling(),
|
|
|
|
size: 0,
|
|
|
|
_phantom: PhantomData::default()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn get_item(&mut self, entity: crate::world::ArchetypeEntityId) -> Self::Item {
|
|
|
|
let ptr = NonNull::new_unchecked(self.ptr.as_ptr()
|
|
|
|
.add(entity.0 as usize * self.size))
|
|
|
|
.cast();
|
|
|
|
&mut *ptr.as_ptr()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-27 02:05:35 +00:00
|
|
|
/// A Query for mutably borrowing components from archetypes.
|
|
|
|
///
|
|
|
|
/// Since [`AsQuery`] is implemented for `&mut T`, you can use this query like this:
|
|
|
|
/// ```rust
|
|
|
|
/// for ts in world.view::<&mut T>() {
|
|
|
|
/// println!("Got an &T!");
|
|
|
|
/// }
|
|
|
|
/// ```
|
2023-11-25 23:43:11 +00:00
|
|
|
pub struct QueryBorrowMut<T> {
|
|
|
|
type_id: TypeId,
|
|
|
|
_phantom: PhantomData<T>
|
|
|
|
}
|
|
|
|
|
2023-11-26 00:58:14 +00:00
|
|
|
impl<T: 'static> QueryBorrowMut<T> {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
type_id: TypeId::of::<T>(),
|
|
|
|
_phantom: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-25 23:43:11 +00:00
|
|
|
impl<T> Query for QueryBorrowMut<T>
|
|
|
|
where
|
|
|
|
T: 'static
|
|
|
|
{
|
|
|
|
type Item<'a> = &'a mut T;
|
|
|
|
|
|
|
|
type Fetch<'a> = FetchBorrowMut<'a, T>;
|
|
|
|
|
|
|
|
fn can_visit_archetype(&self, archetype: &crate::archetype::Archetype) -> bool {
|
|
|
|
archetype.columns.iter().any(|c| c.info.type_id == self.type_id)
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn fetch<'a>(&self, _arch_id: crate::archetype::ArchetypeId, archetype: &'a crate::archetype::Archetype) -> Self::Fetch<'a> {
|
|
|
|
let col = archetype.columns.iter().find(|c| c.info.type_id == self.type_id)
|
|
|
|
.expect("You ignored 'can_visit_archetype'!");
|
|
|
|
let col_data = col.data;
|
|
|
|
|
|
|
|
FetchBorrowMut {
|
|
|
|
ptr: NonNull::new_unchecked(col_data.as_ptr()),
|
|
|
|
size: col.info.layout.size(),
|
|
|
|
_phantom: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-26 00:58:14 +00:00
|
|
|
impl<T: 'static> AsQuery for QueryBorrowMut<T> {
|
|
|
|
type Query = Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: 'static> DefaultQuery for QueryBorrowMut<T> {
|
|
|
|
fn default_query() -> Self {
|
|
|
|
QueryBorrowMut::<T>::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: 'static> AsQuery for &mut T {
|
|
|
|
type Query = QueryBorrowMut<T>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: 'static> DefaultQuery for &mut T {
|
|
|
|
fn default_query() -> QueryBorrowMut<T> {
|
|
|
|
QueryBorrowMut::<T>::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-25 23:43:11 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use std::any::TypeId;
|
|
|
|
|
2023-11-26 00:58:14 +00:00
|
|
|
use crate::{world::World, archetype::Archetype, query::View, tests::Vec2};
|
2023-11-25 23:43:11 +00:00
|
|
|
|
|
|
|
use super::{QueryBorrow, QueryBorrowMut};
|
|
|
|
|
|
|
|
/// Creates a world with two entities, one at Vec(10, 50) and
|
|
|
|
/// the other at Vec2(25, 30).
|
|
|
|
fn prepare_world() -> World {
|
|
|
|
let mut world = World::new();
|
|
|
|
|
|
|
|
world.spawn((Vec2::new(10.0, 50.0),));
|
|
|
|
world.spawn((Vec2::new(25.0, 30.0),));
|
|
|
|
world
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn borrow_query() {
|
|
|
|
let world = prepare_world();
|
|
|
|
|
|
|
|
let borrow = QueryBorrow::<Vec2> {
|
|
|
|
type_id: TypeId::of::<Vec2>(),
|
|
|
|
_phantom: std::marker::PhantomData,
|
|
|
|
};
|
|
|
|
let archetypes: Vec<&Archetype> = world.archetypes.values().collect();
|
|
|
|
let v = View::new(borrow, archetypes);
|
|
|
|
|
|
|
|
for e in v.into_iter() {
|
|
|
|
println!("Found entity at {:?}", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn borrow_mut_query() {
|
|
|
|
let world = prepare_world();
|
|
|
|
|
|
|
|
let borrow = QueryBorrowMut::<Vec2> {
|
|
|
|
type_id: TypeId::of::<Vec2>(),
|
|
|
|
_phantom: std::marker::PhantomData,
|
|
|
|
};
|
|
|
|
let archetypes: Vec<&Archetype> = world.archetypes.values().collect();
|
|
|
|
let v = View::new(borrow, archetypes);
|
|
|
|
|
|
|
|
let mut orig = vec![];
|
|
|
|
|
|
|
|
for v in v.into_iter() {
|
|
|
|
orig.push(v.clone());
|
|
|
|
v.x += 10.0;
|
|
|
|
v.y += 10.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now make sure the changes were actually made
|
|
|
|
|
|
|
|
let borrow = QueryBorrow::<Vec2> {
|
|
|
|
type_id: TypeId::of::<Vec2>(),
|
|
|
|
_phantom: std::marker::PhantomData,
|
|
|
|
};
|
|
|
|
let archetypes: Vec<&Archetype> = world.archetypes.values().collect();
|
|
|
|
let v = View::new(borrow, archetypes);
|
|
|
|
|
|
|
|
for (new, orig) in v.into_iter().zip(orig.iter()) {
|
|
|
|
assert!(new.x - orig.x == 10.0);
|
|
|
|
assert!(new.y - orig.y == 10.0);
|
|
|
|
}
|
|
|
|
println!("They were modified!");
|
|
|
|
}
|
|
|
|
}
|