shipyard/or.rs
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 85 86 87 88 89 90 91 92 93 94 95
use crate::{
component::Component,
iter::IntoAbstract,
tracking::{Inserted, Tracking},
views::{View, ViewMut},
};
use core::ops::BitOr;
/// Yield the entities that have a component or another.
///
/// # Example
///
/// ```rust
/// use shipyard::{track, Component, IntoIter, OneOfTwo, View, ViewMut, World};
///
/// #[derive(Component, PartialEq, Eq, Debug)]
/// struct A(u32);
///
/// #[derive(Component, PartialEq, Eq, Debug)]
/// struct B(u32);
///
/// let mut world = World::new();
///
/// world.track_all::<(A, B)>();
///
/// world.add_entity((A(0),));
/// world.add_entity((A(1), B(10)));
/// world.borrow::<ViewMut<A, track::All>>().unwrap().clear_all_inserted();
/// world.add_entity((B(20),));
/// world.add_entity((A(3),));
///
/// let (a, b) = world.borrow::<(View<A, track::All>, View<B, track::All>)>().unwrap();
///
/// assert_eq!(
/// (a.inserted() | b.inserted()).iter().collect::<Vec<_>>(),
/// vec![
/// OneOfTwo::One(&A(3)),
/// OneOfTwo::Two(&B(10)),
/// OneOfTwo::Two(&B(20))
/// ]
/// );
/// ```
#[derive(Copy, Clone)]
pub struct Or<T>(pub(crate) T);
impl<'a, T: Component, Track: Tracking, U: IntoAbstract> BitOr<U> for &'a View<'a, T, Track> {
type Output = Or<(Self, U)>;
fn bitor(self, rhs: U) -> Self::Output {
Or((self, rhs))
}
}
impl<'a, T: Component, Track: Tracking, U: IntoAbstract> BitOr<U>
for Inserted<&'a View<'a, T, Track>>
{
type Output = Or<(Self, U)>;
fn bitor(self, rhs: U) -> Self::Output {
Or((self, rhs))
}
}
impl<'a, T: Component, Track: Tracking, U: IntoAbstract> BitOr<U> for &'a ViewMut<'a, T, Track> {
type Output = Or<(Self, U)>;
fn bitor(self, rhs: U) -> Self::Output {
Or((self, rhs))
}
}
impl<'a, T: Component, Track: Tracking, U: IntoAbstract> BitOr<U>
for &'a mut ViewMut<'a, T, Track>
{
type Output = Or<(Self, U)>;
fn bitor(self, rhs: U) -> Self::Output {
Or((self, rhs))
}
}
/// Returned when iterating with [`Or`](crate::Or) filter.
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Debug)]
pub enum OneOfTwo<T, U> {
#[allow(missing_docs)]
One(T),
#[allow(missing_docs)]
Two(U),
}
impl From<usize> for OneOfTwo<usize, usize> {
fn from(_: usize) -> Self {
unreachable!()
}
}