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

148 lines
4.0 KiB
Rust
Raw Normal View History

2023-11-25 23:43:11 +00:00
use std::ops::Range;
2023-12-26 19:12:53 +00:00
use crate::{archetype::{Archetype, ArchetypeId}, world::{ArchetypeEntityId, World}, EntityId, TickTracker, Tick};
2023-11-25 23:43:11 +00:00
use super::{Query, Fetch};
pub struct View<'a, Q: Query> {
2023-11-30 04:21:27 +00:00
world: &'a World,
2023-11-25 23:43:11 +00:00
query: Q,
archetypes: Vec<&'a Archetype>,
}
impl<'a, Q> View<'a, Q>
where
Q: Query,
{
2023-11-30 04:21:27 +00:00
pub fn new(world: &'a World, query: Q, archetypes: Vec<&'a Archetype>) -> Self {
2023-11-25 23:43:11 +00:00
Self {
2023-11-30 04:21:27 +00:00
world,
2023-11-25 23:43:11 +00:00
query,
archetypes,
}
}
}
impl<'a, Q> IntoIterator for View<'a, Q>
where
Q: Query,
{
type Item = Q::Item<'a>;
type IntoIter = ViewIter<'a, Q>;
fn into_iter(self) -> Self::IntoIter {
2023-12-26 19:12:53 +00:00
let tick = self.world.tick_tracker().tick_when(Q::MUTATES);
2023-11-25 23:43:11 +00:00
ViewIter {
2023-11-30 04:21:27 +00:00
world: self.world,
2023-12-26 19:12:53 +00:00
tick,
2023-11-25 23:43:11 +00:00
query: self.query,
fetcher: None,
2023-11-25 23:43:11 +00:00
archetypes: self.archetypes,
next_archetype: 0,
component_indices: 0..0,
}
}
}
pub struct ViewIter<'a, Q: Query> {
2023-11-30 04:21:27 +00:00
world: &'a World,
2023-12-26 19:12:53 +00:00
tick: Tick,
2023-11-25 23:43:11 +00:00
query: Q,
fetcher: Option<Q::Fetch<'a>>,
2023-11-25 23:43:11 +00:00
archetypes: Vec<&'a Archetype>,
next_archetype: usize,
component_indices: Range<u64>,
}
impl<'a, Q> Iterator for ViewIter<'a, Q>
where
Q: Query,
{
type Item = Q::Item<'a>;
fn next(&mut self) -> Option<Self::Item> {
loop {
if Q::ALWAYS_FETCHES {
// only fetch this query once.
// fetcher gets set to Some after this `next` call.
if self.fetcher.is_none() {
if let Some(mut fetch) = unsafe { self.query.fetch_world(self.world) } {
let res = unsafe { Some(fetch.get_item(ArchetypeEntityId(0))) };
self.fetcher = Some(fetch);
return res;
}
} else {
return None;
}
}
2023-11-25 23:43:11 +00:00
if let Some(entity_index) = self.component_indices.next() {
let fetcher = self.fetcher.as_mut().unwrap();
2023-11-25 23:43:11 +00:00
let entity_index = ArchetypeEntityId(entity_index);
if !fetcher.can_visit_item(entity_index) {
2023-11-25 23:43:11 +00:00
continue;
} else {
let i = unsafe { fetcher.get_item(entity_index) };
2023-11-25 23:43:11 +00:00
return Some(i);
}
} else {
if self.next_archetype >= self.archetypes.len() {
return None; // ran out of archetypes to go through
}
let arch_id = self.next_archetype;
self.next_archetype += 1;
let arch = unsafe { self.archetypes.get_unchecked(arch_id) };
if arch.entities.len() == 0 {
continue;
}
if !self.query.can_visit_archetype(arch) {
continue;
}
2023-12-26 19:12:53 +00:00
self.fetcher = unsafe { Some(self.query.fetch(self.world, arch, self.tick)) };
2023-11-25 23:43:11 +00:00
self.component_indices = 0..arch.entities.len() as u64;
}
}
}
}
pub struct ViewOne<'a, Q: Query> {
world: &'a World,
2023-12-26 19:12:53 +00:00
tick: Tick,
entity: EntityId,
query: Q,
}
impl<'a, Q: Query> ViewOne<'a, Q> {
pub fn new(world: &'a World, entity: EntityId, query: Q) -> Self {
2023-12-26 19:12:53 +00:00
let tick = world.tick_tracker().tick_when(Q::MUTATES);
Self {
world,
2023-12-26 19:12:53 +00:00
tick,
entity,
query
}
}
pub fn get(&self) -> Option<Q::Item<'a>> {
if let Some(record) = self.world.entity_index.get(&self.entity) {
let arch = self.world.archetypes.get(&record.id)
.expect("An invalid record was specified for an entity");
if self.query.can_visit_archetype(arch) {
2023-12-26 19:12:53 +00:00
let mut fetch = unsafe { self.query.fetch(self.world, arch, self.tick) };
if fetch.can_visit_item(record.index) {
return Some(unsafe { fetch.get_item(record.index) });
}
}
}
None
}
2023-11-25 23:43:11 +00:00
}