lyra-engine/lyra-ecs/src/query/resource.rs

223 lines
5.7 KiB
Rust
Raw Normal View History

2023-12-06 04:22:48 +00:00
use std::{marker::PhantomData, any::TypeId, ptr::NonNull, cell::{Ref, RefMut}};
use crate::{world::World, resource::ResourceObject};
2023-12-04 04:14:27 +00:00
use super::{Query, Fetch, AsQuery};
pub struct FetchResource<'a, T> {
world: Option<&'a World>,
_phantom: PhantomData<T>,
}
impl<'a, T: 'a + 'static> Fetch<'a> for FetchResource<'a, T> {
type Item = Ref<'a, T>;
fn dangling() -> Self {
Self {
world: None,
_phantom: PhantomData,
}
}
fn can_visit_item(&mut self, _entity: crate::world::ArchetypeEntityId) -> bool {
true
}
unsafe fn get_item(&mut self, _entity: crate::world::ArchetypeEntityId) -> Self::Item {
let w = self.world.unwrap();
w.get_resource::<T>()
}
}
2023-12-06 04:22:48 +00:00
/// A query type for borrowing Resources.
2023-12-04 04:14:27 +00:00
pub struct QueryResource<T: ResourceObject> {
_phantom: PhantomData<T>
}
2023-12-06 04:22:48 +00:00
pub type Resource<T> = QueryResource<T>;
2023-12-04 04:14:27 +00:00
impl<T: ResourceObject> Copy for QueryResource<T> {}
impl<T: ResourceObject> Clone for QueryResource<T> {
fn clone(&self) -> Self {
*self
}
}
impl<T: ResourceObject + 'static> Query for QueryResource<T> {
type Item<'a> = Ref<'a, T>;
type Fetch<'a> = FetchResource<'a, T>;
const ALWAYS_FETCHES: bool = true;
2023-12-04 04:14:27 +00:00
fn new() -> Self {
QueryResource::<T> {
_phantom: PhantomData
}
}
fn can_visit_archetype(&self, _archetype: &crate::archetype::Archetype) -> bool {
true
}
unsafe fn fetch<'a>(&self, world: &'a World, _arch_id: crate::archetype::ArchetypeId, _archetype: &'a crate::archetype::Archetype) -> Self::Fetch<'a> {
self.fetch_world(world).unwrap()
}
unsafe fn fetch_world<'a>(&self, world: &'a World) -> Option<Self::Fetch<'a>> {
Some(FetchResource {
world: Some(world),
_phantom: PhantomData,
})
}
}
impl<R: ResourceObject> AsQuery for QueryResource<R> {
type Query = QueryResource<R>;
}
2023-12-06 04:22:48 +00:00
pub struct FetchResourceMut<'a, T> {
world: Option<&'a World>,
_phantom: PhantomData<T>,
}
impl<'a, T: 'a + 'static> Fetch<'a> for FetchResourceMut<'a, T> {
type Item = RefMut<'a, T>;
fn dangling() -> Self {
Self {
world: None,
_phantom: PhantomData,
}
}
fn can_visit_item(&mut self, _entity: crate::world::ArchetypeEntityId) -> bool {
true
}
unsafe fn get_item(&mut self, _entity: crate::world::ArchetypeEntityId) -> Self::Item {
let w = self.world.unwrap();
w.get_resource_mut::<T>()
}
}
/// A query type for borrowing Resources mutably.
pub struct QueryResourceMut<T: ResourceObject> {
_phantom: PhantomData<T>
}
pub type ResourceMut<T> = QueryResourceMut<T>;
impl<T: ResourceObject> Copy for QueryResourceMut<T> {}
impl<T: ResourceObject> Clone for QueryResourceMut<T> {
fn clone(&self) -> Self {
*self
}
}
impl<T: ResourceObject + 'static> Query for QueryResourceMut<T> {
type Item<'a> = RefMut<'a, T>;
type Fetch<'a> = FetchResourceMut<'a, T>;
const ALWAYS_FETCHES: bool = true;
fn new() -> Self {
QueryResourceMut::<T> {
_phantom: PhantomData
}
}
fn can_visit_archetype(&self, _archetype: &crate::archetype::Archetype) -> bool {
true
}
unsafe fn fetch<'a>(&self, world: &'a World, _arch_id: crate::archetype::ArchetypeId, _archetype: &'a crate::archetype::Archetype) -> Self::Fetch<'a> {
self.fetch_world(world).unwrap()
}
unsafe fn fetch_world<'a>(&self, world: &'a World) -> Option<Self::Fetch<'a>> {
Some(FetchResourceMut {
world: Some(world),
_phantom: PhantomData,
})
}
}
impl<R: ResourceObject> AsQuery for QueryResourceMut<R> {
type Query = QueryResourceMut<R>;
}
#[cfg(test)]
mod tests {
2023-12-06 04:22:48 +00:00
use crate::{world::World, tests::{Vec2, Vec3}, QueryResourceMut};
use super::QueryResource;
struct SomeCounter(u32);
#[test]
fn simple_query() {
let mut world = World::new();
{
let counter = SomeCounter(0);
world.add_resource(counter);
println!("Added resource");
}
let mut res_iter = world.view::<QueryResource<SomeCounter>>();
let res = res_iter.next().unwrap();
assert_eq!(res.0, 0);
}
#[test]
fn complex_query() {
let mut world = World::new();
{
let counter = SomeCounter(0);
world.spawn((Vec2::rand(),));
world.spawn((Vec2::rand(),));
world.spawn((Vec2::rand(),));
world.spawn((Vec3::rand(),));
world.add_resource(counter);
println!("Added resource");
}
let i = world.view::<(QueryResource<SomeCounter>, &Vec2)>();
assert_eq!(i.count(), 3);
let i = world.view::<(&Vec2, QueryResource<SomeCounter>)>();
assert_eq!(i.count(), 3);
for (res, e) in world.view::<(QueryResource<SomeCounter>, &Vec2)>() {
println!("Got res {}! and entity at {:?}", res.0, e);
}
let i = world.view::<QueryResource<SomeCounter>>();
assert_eq!(i.count(), 1);
}
2023-12-06 04:22:48 +00:00
#[test]
fn mutate_query() {
let mut world = World::new();
{
let counter = SomeCounter(0);
world.add_resource(counter);
println!("Added resource");
}
{
let mut resmut_iter = world.view::<QueryResourceMut<SomeCounter>>();
let mut resmut = resmut_iter.next().unwrap();
assert_eq!(resmut.0, 0);
resmut.0 += 20;
}
let mut res_iter = world.view::<QueryResource<SomeCounter>>();
let res = res_iter.next().unwrap();
assert_eq!(res.0, 20);
}
}