bevy-sequential-actions 0.15.0

A Bevy library for executing various actions in a sequence.
Documentation
use super::*;

impl ActionsProxy for World {
    fn actions(&mut self, agent: Entity) -> impl ManageActions {
        AgentActions {
            agent,
            config: AddConfig::default(),
            world: self,
        }
    }
}

/// Manage actions using [`World`].
pub struct AgentActions<'w> {
    agent: Entity,
    config: AddConfig,
    world: &'w mut World,
}

impl ManageActions for AgentActions<'_> {
    fn config(&mut self, config: AddConfig) -> &mut Self {
        self.config = config;
        self
    }

    fn start(&mut self, start: bool) -> &mut Self {
        self.config.start = start;
        self
    }

    fn order(&mut self, order: AddOrder) -> &mut Self {
        self.config.order = order;
        self
    }

    fn add(&mut self, actions: impl IntoBoxedActions) -> &mut Self {
        let mut actions = actions.into_boxed_actions();
        match actions.len() {
            0 => {}
            1 => {
                SequentialActionsPlugin::add_action(
                    self.agent,
                    self.config,
                    actions.next().unwrap(),
                    self.world,
                );
            }
            _ => {
                SequentialActionsPlugin::add_actions(self.agent, self.config, actions, self.world);
            }
        }
        self
    }

    fn execute(&mut self) -> &mut Self {
        SequentialActionsPlugin::execute_actions(self.agent, self.world);
        self
    }

    fn next(&mut self) -> &mut Self {
        SequentialActionsPlugin::stop_current_action(self.agent, StopReason::Canceled, self.world);
        SequentialActionsPlugin::start_next_action(self.agent, self.world);
        self
    }

    fn cancel(&mut self) -> &mut Self {
        SequentialActionsPlugin::stop_current_action(self.agent, StopReason::Canceled, self.world);
        self
    }

    fn pause(&mut self) -> &mut Self {
        SequentialActionsPlugin::stop_current_action(self.agent, StopReason::Paused, self.world);
        self
    }

    fn skip(&mut self, n: usize) -> &mut Self {
        SequentialActionsPlugin::skip_actions(self.agent, n, self.world);
        self
    }

    fn clear(&mut self) -> &mut Self {
        SequentialActionsPlugin::clear_actions(self.agent, self.world);
        self
    }
}