bevy_ecs::schedule

Struct ScheduleGraph

Source
pub struct ScheduleGraph {
    pub systems: Vec<SystemNode>,
    pub system_conditions: Vec<Vec<BoxedCondition>>,
    pub ambiguous_with_all: HashSet<NodeId>,
    /* private fields */
}
Expand description

Metadata for a Schedule.

The order isn’t optimized; calling ScheduleGraph::build_schedule will return a SystemSchedule where the order is optimized for execution.

Fields§

§systems: Vec<SystemNode>

List of systems in the schedule

§system_conditions: Vec<Vec<BoxedCondition>>

List of conditions for each system, in the same order as systems

§ambiguous_with_all: HashSet<NodeId>

Nodes that are allowed to have ambiguous ordering relationship with any other systems.

Implementations§

Source§

impl ScheduleGraph

Source

pub fn new() -> Self

Creates an empty ScheduleGraph with default settings.

Source

pub fn get_system_at(&self, id: NodeId) -> Option<&ScheduleSystem>

Returns the system at the given NodeId, if it exists.

Source

pub fn contains_set(&self, set: impl SystemSet) -> bool

Returns true if the given system set is part of the graph. Otherwise, returns false.

Source

pub fn system_at(&self, id: NodeId) -> &ScheduleSystem

Returns the system at the given NodeId.

Panics if it doesn’t exist.

Source

pub fn get_set_at(&self, id: NodeId) -> Option<&dyn SystemSet>

Returns the set at the given NodeId, if it exists.

Source

pub fn set_at(&self, id: NodeId) -> &dyn SystemSet

Returns the set at the given NodeId.

Panics if it doesn’t exist.

Source

pub fn get_set_conditions_at(&self, id: NodeId) -> Option<&[BoxedCondition]>

Returns the conditions for the set at the given NodeId, if it exists.

Source

pub fn set_conditions_at(&self, id: NodeId) -> &[BoxedCondition]

Returns the conditions for the set at the given NodeId.

Panics if it doesn’t exist.

Source

pub fn systems( &self, ) -> impl Iterator<Item = (NodeId, &ScheduleSystem, &[BoxedCondition])>

Returns an iterator over all systems in this schedule, along with the conditions for each system.

Source

pub fn system_sets( &self, ) -> impl Iterator<Item = (NodeId, &dyn SystemSet, &[BoxedCondition])>

Returns an iterator over all system sets in this schedule, along with the conditions for each system set.

Source

pub fn hierarchy(&self) -> &Dag

Returns the Dag of the hierarchy.

The hierarchy is a directed acyclic graph of the systems and sets, where an edge denotes that a system or set is the child of another set.

Source

pub fn dependency(&self) -> &Dag

Returns the Dag of the dependencies in the schedule.

Nodes in this graph are systems and sets, and edges denote that a system or set has to run before another system or set.

Source

pub fn conflicting_systems(&self) -> &[(NodeId, NodeId, Vec<ComponentId>)]

Returns the list of systems that conflict with each other, i.e. have ambiguities in their access.

If the Vec<ComponentId> is empty, the systems conflict on World access. Must be called after ScheduleGraph::build_schedule to be non-empty.

Source

pub fn initialize(&mut self, world: &mut World)

Initializes any newly-added systems and conditions by calling System::initialize

Source

pub fn build_schedule( &mut self, world: &mut World, schedule_label: InternedScheduleLabel, ignored_ambiguities: &BTreeSet<ComponentId>, ) -> Result<SystemSchedule, ScheduleBuildError>

Build a SystemSchedule optimized for scheduler access from the ScheduleGraph.

This method also

  • checks for dependency or hierarchy cycles
  • checks for system access conflicts and reports ambiguities
Source§

impl ScheduleGraph

Source

pub fn topsort_graph( &self, graph: &DiGraph, report: ReportCycles, ) -> Result<Vec<NodeId>, ScheduleBuildError>

Tries to topologically sort graph.

If the graph is acyclic, returns Ok with the list of NodeId in a valid topological order. If the graph contains cycles, returns Err with the list of strongly-connected components that contain cycles (also in a valid topological order).

§Errors

If the graph contain cycles, then an error is returned.

Source

pub fn conflicts_to_string<'a>( &'a self, ambiguities: &'a [(NodeId, NodeId, Vec<ComponentId>)], components: &'a Components, ) -> impl Iterator<Item = (String, String, Vec<Cow<'a, str>>)> + 'a

convert conflicts to human readable format

Trait Implementations§

Source§

impl Default for ScheduleGraph

Source§

fn default() -> ScheduleGraph

Returns the “default value” for a type. Read more

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> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Converts Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Converts Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Converts &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)

Converts &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSend for T
where T: Any + Send,

Source§

fn into_any_send(self: Box<T>) -> Box<dyn Any + Send>

Converts Box<Trait> (where Trait: DowncastSend) to Box<dyn Any + Send>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromWorld for T
where T: Default,

Source§

fn from_world(_world: &mut World) -> T

Creates Self using default().

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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> ConditionalSend for T
where T: Send,