|
C++ YASMIN (Yet Another State MachINe)
|
Represents a state that executes a callback function. More...
#include <cb_state.hpp>


Public Member Functions | |
| CbState (const std::set< std::string > &outcomes, std::function< std::string(std::shared_ptr< blackboard::Blackboard >)> callback) | |
| Constructs a CbState object. | |
| std::string | execute (std::shared_ptr< blackboard::Blackboard > blackboard) override |
| Executes the callback function. | |
Public Member Functions inherited from yasmin::State | |
| State (const std::set< std::string > &outcomes) | |
| Constructs a State with a set of possible outcomes. | |
| StateStatus | get_status () const |
| Gets the current status of the state. | |
| bool | is_idle () const |
| Checks if the state is idle. | |
| bool | is_running () const |
| Checks if the state is currently running. | |
| bool | is_canceled () const |
| Checks if the state has been canceled. | |
| bool | is_completed () const |
| Checks if the state has completed execution. | |
| std::string | operator() (std::shared_ptr< blackboard::Blackboard > blackboard) |
| Executes the state and returns the outcome. | |
| virtual void | cancel_state () |
| Cancels the current state execution. | |
| std::set< std::string > const & | get_outcomes () |
| Gets the set of possible outcomes for this state. | |
| virtual std::string | to_string () |
| Converts the state to a string representation. | |
Private Attributes | |
| std::function< std::string(std::shared_ptr< blackboard::Blackboard >)> | callback |
| Pointer to the callback function to be executed. | |
Additional Inherited Members | |
Protected Attributes inherited from yasmin::State | |
| std::set< std::string > | outcomes |
| The possible outcomes of this state. | |
Represents a state that executes a callback function.
The CbState class inherits from the State class and is designed to execute a user-defined callback function, utilizing a shared pointer to a Blackboard object to obtain necessary data.
| yasmin::CbState::CbState | ( | const std::set< std::string > & | outcomes, |
| std::function< std::string(std::shared_ptr< blackboard::Blackboard >)> | callback ) |
Constructs a CbState object.
| outcomes | A set of possible outcomes for this state. |
| callback | A function pointer to the callback function that will be executed when this state is activated. |
| std::invalid_argument | If the outcomes set is empty. |
|
overridevirtual |
Executes the callback function.
This function is called to execute the callback and retrieve the result. It may use the provided Blackboard for additional data.
| blackboard | A shared pointer to the Blackboard object used during execution. |
| std::runtime_error | If the callback execution fails. |
Reimplemented from yasmin::State.
|
private |
Pointer to the callback function to be executed.