pub struct Entities { /* private fields */ }
Expand description
A World
’s internal metadata store on all of its entities.
Contains metadata on:
- The generation of every entity.
- The alive/dead status of a particular entity. (i.e. “has entity 3 been despawned?”)
- The location of the entity’s components in memory (via
EntityLocation
)
Implementations§
source§impl Entities
impl Entities
sourcepub fn reserve_entities(&self, count: u32) -> ReserveEntitiesIterator<'_> ⓘ
pub fn reserve_entities(&self, count: u32) -> ReserveEntitiesIterator<'_> ⓘ
Reserve entity IDs concurrently.
Storage for entity generation and location is lazily allocated by calling flush
.
sourcepub fn reserve_entity(&self) -> Entity
pub fn reserve_entity(&self) -> Entity
Reserve one entity ID concurrently.
Equivalent to self.reserve_entities(1).next().unwrap()
, but more efficient.
sourcepub fn alloc_at(&mut self, entity: Entity) -> Option<EntityLocation>
pub fn alloc_at(&mut self, entity: Entity) -> Option<EntityLocation>
Allocate a specific entity ID, overwriting its generation.
Returns the location of the entity currently using the given ID, if any. Location should be written immediately.
sourcepub fn free(&mut self, entity: Entity) -> Option<EntityLocation>
pub fn free(&mut self, entity: Entity) -> Option<EntityLocation>
Destroy an entity, allowing it to be reused.
Must not be called while reserved entities are awaiting flush()
.
sourcepub fn reserve(&mut self, additional: u32)
pub fn reserve(&mut self, additional: u32)
Ensure at least n
allocations can succeed without reallocating.
sourcepub fn get(&self, entity: Entity) -> Option<EntityLocation>
pub fn get(&self, entity: Entity) -> Option<EntityLocation>
Returns the location of an Entity
.
Note: for pending entities, returns Some(EntityLocation::INVALID)
.
sourcepub fn resolve_from_id(&self, index: u32) -> Option<Entity>
pub fn resolve_from_id(&self, index: u32) -> Option<Entity>
Get the Entity
with a given id, if it exists in this Entities
collection
Returns None
if this Entity
is outside of the range of currently reserved Entities
Note: This method may return Entities
which are currently free
Note that contains
will correctly return false for freed
entities, since it checks the generation
sourcepub unsafe fn flush(&mut self, init: impl FnMut(Entity, &mut EntityLocation))
pub unsafe fn flush(&mut self, init: impl FnMut(Entity, &mut EntityLocation))
Allocates space for entities previously reserved with reserve_entity
or
reserve_entities
, then initializes each one using the supplied function.
§Safety
Flush must set the entity location to the correct ArchetypeId
for the given Entity
each time init is called. This can be ArchetypeId::INVALID
, provided the Entity
has not been assigned to an Archetype
.
Note: freshly-allocated entities (ones which don’t come from the pending list) are guaranteed to be initialized with the invalid archetype.
sourcepub fn flush_as_invalid(&mut self)
pub fn flush_as_invalid(&mut self)
Flushes all reserved entities to an “invalid” state. Attempting to retrieve them will return None
unless they are later populated with a valid archetype.
sourcepub unsafe fn flush_and_reserve_invalid_assuming_no_entities(
&mut self,
count: usize
)
pub unsafe fn flush_and_reserve_invalid_assuming_no_entities( &mut self, count: usize )
§Safety
This function is safe if and only if the world this Entities is on has no entities.
sourcepub fn total_count(&self) -> usize
pub fn total_count(&self) -> usize
The count of all entities in the World
that have ever been allocated
including the entities that are currently freed.
This does not include entities that have been reserved but have never been allocated yet.
Trait Implementations§
source§impl<'a> SystemParam for &'a Entities
impl<'a> SystemParam for &'a Entities
§type Item<'w, 's> = &'w Entities
type Item<'w, 's> = &'w Entities
Self
, instantiated with new lifetimes. Read moresource§fn init_state(_world: &mut World, _system_meta: &mut SystemMeta) -> Self::State
fn init_state(_world: &mut World, _system_meta: &mut SystemMeta) -> Self::State
World
access used by this SystemParam
and creates a new instance of this param’s State
.source§unsafe fn get_param<'w, 's>(
_state: &'s mut Self::State,
_system_meta: &SystemMeta,
world: UnsafeWorldCell<'w>,
_change_tick: Tick
) -> Self::Item<'w, 's>
unsafe fn get_param<'w, 's>( _state: &'s mut Self::State, _system_meta: &SystemMeta, world: UnsafeWorldCell<'w>, _change_tick: Tick ) -> Self::Item<'w, 's>
SystemParamFunction
. Read moresource§unsafe fn new_archetype(
state: &mut Self::State,
archetype: &Archetype,
system_meta: &mut SystemMeta
)
unsafe fn new_archetype( state: &mut Self::State, archetype: &Archetype, system_meta: &mut SystemMeta )
Archetype
, registers the components accessed by this SystemParam
(if applicable).a Read moresource§fn apply(state: &mut Self::State, system_meta: &SystemMeta, world: &mut World)
fn apply(state: &mut Self::State, system_meta: &SystemMeta, world: &mut World)
SystemParam
’s state.
This is used to apply Commands
during apply_deferred
.source§fn queue(
state: &mut Self::State,
system_meta: &SystemMeta,
world: DeferredWorld<'_>
)
fn queue( state: &mut Self::State, system_meta: &SystemMeta, world: DeferredWorld<'_> )
apply_deferred
.impl<'a> ReadOnlySystemParam for &'a Entities
Auto Trait Implementations§
impl !Freeze for Entities
impl RefUnwindSafe for Entities
impl Send for Entities
impl Sync for Entities
impl Unpin for Entities
impl UnwindSafe for Entities
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.