Struct EntityIdAccessor

Source
pub struct EntityIdAccessor { /* private fields */ }

Implementations§

Source§

impl EntityIdAccessor

Source

pub fn new() -> Self

Source

pub fn borrow_ids<T: 'static + Component>( &mut self, manager: &EntityManager, ) -> Option<&Vec<usize>>

Source

pub fn borrow_ids_for_pair<T1: 'static + Component, T2: 'static + Component>( &mut self, manager: &EntityManager, ) -> Option<&Vec<usize>>

Examples found in repository?
examples/move/main.rs (line 52)
51	fn update(&mut self, manager: &mut EntityManager, accessor: &mut EntityIdAccessor) {
52		let entity_ids = accessor.borrow_ids_for_pair::<Velocity, Position>(manager).unwrap();
53		for id in entity_ids.iter() {
54			let (velocity, mut position) = manager.borrow_component_pair_mut::<Velocity, Position>(*id).unwrap();
55			position.x += velocity.x;
56			position.y += velocity.y;
57		}
58	}
59}
60
61impl System for PrintPositionSystem {
62	fn update(&mut self, manager: &mut EntityManager, accessor: &mut EntityIdAccessor) {
63		let entity_ids = accessor.borrow_ids_for_pair::<Namable, Position>(manager).unwrap();
64		for id in entity_ids.iter() {
65			let name = manager.borrow_component::<Namable>(*id).unwrap();
66			let position = manager.borrow_component::<Position>(*id).unwrap();
67			println!("{} is at ({}, {})", name.name, position.x, position.y);
68		}
69	}
Source

pub fn borrow_ids_for_triple<T1: 'static + Component, T2: 'static + Component, T3: 'static + Component>( &mut self, manager: &EntityManager, ) -> Option<&Vec<usize>>

Source

pub fn borrow_ids_for_quad<T1: 'static + Component, T2: 'static + Component, T3: 'static + Component, T4: 'static + Component>( &mut self, manager: &EntityManager, ) -> Option<&Vec<usize>>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.