Franky 0.12.0
A High-Level Motion API for Franka
Loading...
Searching...
No Matches
motion.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <mutex>
4#include <list>
5
6#include "reaction.hpp"
7#include "franky/robot.hpp"
9
10namespace franky {
11
12class Robot;
13
14template<typename ControlSignalType>
15class Reaction;
16
22template<typename ControlSignalType>
23class Motion {
24 public:
25 virtual ~Motion() = default;
26 using CallbackType = std::function<
27 void(const RobotState &,
28 franka::Duration,
29 franka::Duration,
30 franka::Duration,
31 const ControlSignalType &)>;
32
39 void addReaction(std::shared_ptr<Reaction<ControlSignalType>> reaction);
40
47 void addReactionFront(std::shared_ptr<Reaction<ControlSignalType>> reaction);
48
52 std::vector<std::shared_ptr<Reaction<ControlSignalType>>> reactions();
53
59 void registerCallback(CallbackType callback);
60
67 void init(
68 Robot *robot, const RobotState &robot_state, const std::optional<ControlSignalType> &previous_command);
69
81 const RobotState &robot_state,
82 franka::Duration time_step,
83 franka::Duration rel_time,
84 franka::Duration abs_time,
85 const std::optional<ControlSignalType> &previous_command);
86
94 std::shared_ptr<Motion<ControlSignalType>>
96 const RobotState &robot_state,
97 franka::Duration rel_time,
98 franka::Duration abs_time);
99
100 protected:
101 explicit Motion();
102
103 virtual void initImpl(
104 const RobotState &robot_state, const std::optional<ControlSignalType> &previous_command) {}
105
106 virtual ControlSignalType
108 const RobotState &robot_state,
109 franka::Duration time_step,
110 franka::Duration rel_time,
111 franka::Duration abs_time,
112 const std::optional<ControlSignalType> &previous_command) = 0;
113
114 [[nodiscard]] Robot *robot() const {
115 return robot_;
116 }
117
118 private:
119 std::mutex reaction_mutex_;
120 std::list<std::shared_ptr<Reaction<ControlSignalType>>> reactions_;
121 std::mutex callback_mutex_;
122 std::vector<CallbackType> callbacks_;
123 Robot *robot_;
124};
125
126} // namespace franky
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