1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
use super::{
and::And, or::Or, passthrough::Passthrough, ActiveFilter, DynamicFilter, FilterResult,
GroupMatcher, LayoutFilter,
};
use crate::internals::{query::view::Fetch, storage::component::ComponentTypeId, world::WorldId};
#[derive(Debug, Clone, Default)]
pub struct Not<F> {
pub(super) filter: F,
}
impl<F> ActiveFilter for Not<F> {}
impl<F> GroupMatcher for Not<F> {
fn can_match_group() -> bool {
false
}
fn group_components() -> Vec<ComponentTypeId> {
vec![]
}
}
impl<F: LayoutFilter> LayoutFilter for Not<F> {
fn matches_layout(&self, components: &[ComponentTypeId]) -> FilterResult {
match self.filter.matches_layout(components) {
FilterResult::Match(success) => FilterResult::Match(!success),
FilterResult::Defer => FilterResult::Defer,
}
}
}
impl<F: DynamicFilter> DynamicFilter for Not<F> {
fn prepare(&mut self, world: WorldId) {
self.filter.prepare(world);
}
fn matches_archetype<T: Fetch>(&mut self, fetch: &T) -> FilterResult {
match self.filter.matches_archetype(fetch) {
FilterResult::Match(success) => FilterResult::Match(!success),
FilterResult::Defer => FilterResult::Defer,
}
}
}
impl<'a, F, Rhs: ActiveFilter> std::ops::BitAnd<Rhs> for Not<F> {
type Output = And<(Self, Rhs)>;
#[inline]
fn bitand(self, rhs: Rhs) -> Self::Output {
And {
filters: (self, rhs),
}
}
}
impl<'a, F> std::ops::BitAnd<Passthrough> for Not<F> {
type Output = Self;
#[inline]
fn bitand(self, _: Passthrough) -> Self::Output {
self
}
}
impl<'a, F, Rhs: ActiveFilter> std::ops::BitOr<Rhs> for Not<F> {
type Output = Or<(Self, Rhs)>;
#[inline]
fn bitor(self, rhs: Rhs) -> Self::Output {
Or {
filters: (self, rhs),
}
}
}
impl<'a, F> std::ops::BitOr<Passthrough> for Not<F> {
type Output = Self;
#[inline]
fn bitor(self, _: Passthrough) -> Self::Output {
self
}
}