14template<
typename ControlSignalType>
22template<
typename ControlSignalType>
52 std::vector<std::shared_ptr<Reaction<ControlSignalType>>>
reactions();
68 Robot *
robot,
const RobotState &robot_state,
const std::optional<ControlSignalType> &previous_command);
82 franka::Duration time_step,
83 franka::Duration rel_time,
84 franka::Duration abs_time,
85 const std::optional<ControlSignalType> &previous_command);
94 std::shared_ptr<Motion<ControlSignalType>>
97 franka::Duration rel_time,
98 franka::Duration abs_time);
104 const RobotState &robot_state,
const std::optional<ControlSignalType> &previous_command) {}
109 franka::Duration time_step,
110 franka::Duration rel_time,
111 franka::Duration abs_time,
112 const std::optional<ControlSignalType> &previous_command) = 0;
119 std::mutex reaction_mutex_;
120 std::list<std::shared_ptr<Reaction<ControlSignalType>>> reactions_;
121 std::mutex callback_mutex_;
122 std::vector<CallbackType> callbacks_;
Base class for motions.
Definition motion.hpp:23
std::function< void(const RobotState &, franka::Duration, franka::Duration, franka::Duration, const ControlSignalType &)> CallbackType
Definition motion.hpp:31
void registerCallback(CallbackType callback)
Register a callback that is called in every step of the motion.
Definition motion.cpp:29
std::shared_ptr< Motion< ControlSignalType > > checkAndCallReactions(const RobotState &robot_state, franka::Duration rel_time, franka::Duration abs_time)
Check and call reactions.
Definition motion.cpp:79
void init(Robot *robot, const RobotState &robot_state, const std::optional< ControlSignalType > &previous_command)
Initialize the motion.
Definition motion.cpp:57
Robot * robot() const
Definition motion.hpp:114
void addReaction(std::shared_ptr< Reaction< ControlSignalType > > reaction)
Add a reaction to the motion.
Definition motion.cpp:35
void addReactionFront(std::shared_ptr< Reaction< ControlSignalType > > reaction)
Add a reaction to the front of the reaction list.
Definition motion.cpp:43
virtual ~Motion()=default
Motion()
Definition motion.cpp:23
ControlSignalType nextCommand(const RobotState &robot_state, franka::Duration time_step, franka::Duration rel_time, franka::Duration abs_time, const std::optional< ControlSignalType > &previous_command)
Get the next command of the motion.
Definition motion.cpp:65
virtual void initImpl(const RobotState &robot_state, const std::optional< ControlSignalType > &previous_command)
Definition motion.hpp:103
virtual ControlSignalType nextCommandImpl(const RobotState &robot_state, franka::Duration time_step, franka::Duration rel_time, franka::Duration abs_time, const std::optional< ControlSignalType > &previous_command)=0
std::vector< std::shared_ptr< Reaction< ControlSignalType > > > reactions()
Currently registered reactions of the motion.
Definition motion.cpp:51
A reaction that can be attached to a motion.
Definition reaction.hpp:25
A class representing a Franka robot.
Definition robot.hpp:47
Definition dynamics_limit.cpp:8
ControlSignalType
Type of control signal.
Definition control_signal_type.hpp:8
Full state of the robot.
Definition robot_state.hpp:20