🎚️ Moonshine Behavior
Minimalistic state machine for Bevy entities.
Overview
This crates is designed to provide a simple, stack-based implementation of state machines for Bevy entities.
Features
- Simple: Minimal overhead for defining and setting up behaviors.
- Behaviors can be started, paused, resumed, and stopped.
- Event driven API which allows systems to react to behavior state change per entity.
- Multiple behaviors with different types may exist on the same entity to define complex state machines.
Usage
A behavior, typically implemented as an enum, is a Component which represents some state of its entity. Each behavior is associated with a Stack.
When a new behavior starts, the current state is removed from the entity and pushed onto the stack (if resumable) and paused.
When a behavior stops, the previous state is removed from the stack and inserted back into the entity.
Setup
1. Define your behavior data as a Component
use *;
Behaviors are often implemented as an enum since they represent a finite set of states. This is not a hard requirement. Any struct may be used to represent behavior data as well, such as:
# use *;
You may even use nested enums or structs to represent complex state machines:
use *;
2. Implement the Behavior trait:
This trait defines the possible transitions for your behavior.
In this example:
- a bird may sleep, fly, or chirp when idle
- a bird may chirp when flying
- a bird may not do anything else when sleeping or chirping
This trait has additional methods for more advanced usage. See Behavior trait documentation for full details.
3. Register the Behavior and its transition:
Add a BehaviorPlugin and the transition system to your App to trigger behavior transitions whenever you want.
app.add_plugins
.add_systems;
You may define your systems before or after the transition system.
Usually, systems that cause behavior change should run before transition while systems that handle behavior logic should run after transition. However, this is not a strict requirement. Just be mindful of frame delays!
4. Spawn
The first instance of T which is inserted into the entity is considered the Initial Behavior:
You may also spawn a bird with a Transition:
Or maybe even a TransitionSequence:
5. Query
To manage the behavior of an entity, you may use the BehaviorRef<T> and BehaviorMut<T> Query terms:
BehaviorRef<T> is a read-only reference to the current behavior and the entire stack.
BehaviorMut<T> extends BehaviorRef<T> and allows you to modify the behavior as well.
Transitions
When a transition is requested, it is not invoked immediately. Instead, it is invoked whenever the registered transition system is run.
You may register your systems before or after transition::<T> to perform any logic as required.
⚠️ WARNING In most cases, only one transition is allowed per entity, per cycle.
This is by design to allow each state to get at least one active frame.
The exception to this is during an interruption or a reset, where multiple behaviors may be stopped at once.
To invoke a transition, you may use the BehaviorMut<T>. There are several methods for invoking transitions:
startPauses the current behavior and starts a new one.try_startAttempts to start a new behavior if there is currently no pending transition and the current behavior allows it.interrupt_startStops all behaviors which yield to the new behavior, and then starts the new behavior.stopStops the current behavior and resumes the previous one.resetStops all behaviors and resets the entity to its initial state.
Regardless of the method used, all transition may fail if:
- The new behavior does not allow the new behavior to start at the exact time of
transition. Seefilter_next. - The current behavior is the initial behavior and a stop is requested. The initial behavior may never be stopped.
To completely stop the behavior, including the initial, you must remove the entire behavior from the entity.
To do this, use remove_with_require::<T>() to remove the initial behavior and the entire behavior stack.
Events
Any time a transition is invoked, a BehaviorEvent is sent. These events may be used by other systems to react to behavior changes.
See documentation for complete details and usage examples.
Hooks
In addition to events, you may also use hooks to perform immediate actions during a transition. Hooks are methods on the Behavior trait which may optionally be implemented by you:
These hook commands would be executed immediately after transition is invoked. They are mainly useful when trying to minimize frame delays between state changes.
Examples
See signal.rs for a complete example.
Support
Please post an issue for any bugs, questions, or suggestions.
You may also contact me on the official Bevy Discord server as @Zeenobit.