Franky 0.12.0
A High-Level Motion API for Franka
Loading...
Searching...
No Matches
motion_generator.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <memory>
4#include <mutex>
5
6#include <franka/duration.h>
7#include <franka/robot_state.h>
8#include "ruckig/ruckig.hpp"
9
10#include "franky/types.hpp"
12
13namespace franky {
14
18struct ReactionRecursionException : public std::runtime_error {
19 using std::runtime_error::runtime_error;
20};
21
22class Robot;
23
24template<typename ControlSignalType>
25class Motion;
26
30template<typename ControlSignalType>
32 public:
37 static constexpr size_t REACTION_RECURSION_LIMIT = 16;
38
43 explicit MotionGenerator(Robot *robot, std::shared_ptr<Motion<ControlSignalType>> initial_motion);
44
51 ControlSignalType operator()(const RobotState &robot_state, franka::Duration period);
52
58 inline void
60 const std::function<void(
61 const RobotState &, franka::Duration, franka::Duration)> &callback) {
62 update_callbacks_.push_back(callback);
63 }
64
69 void updateMotion(std::shared_ptr<Motion<ControlSignalType>> new_motion);
70
74 bool has_new_motion();
75
79 void resetTimeUnsafe();
80
81 private:
82 std::shared_ptr<Motion<ControlSignalType>> initial_motion_;
83 std::shared_ptr<Motion<ControlSignalType>> current_motion_;
84 std::shared_ptr<Motion<ControlSignalType>> new_motion_;
85 std::vector<std::function<void(const RobotState &, franka::Duration, franka::Duration)>>
86 update_callbacks_;
87 std::mutex new_motion_mutex_;
88 std::optional<ControlSignalType> previous_command_;
89
90 franka::Duration abs_time_{0};
91 franka::Duration rel_time_offset_{0};
92 Robot *robot_;
93};
94
95} // namespace franky
Helper class for handling motions and reactions.
Definition motion_generator.hpp:31
static constexpr size_t REACTION_RECURSION_LIMIT
Maximum recursion limit for reactions. After more than this number of reactions are fired in a single...
Definition motion_generator.hpp:37
ControlSignalType operator()(const RobotState &robot_state, franka::Duration period)
Update the motion generator and get the next control signal.
Definition motion_generator.cpp:28
void registerUpdateCallback(const std::function< void(const RobotState &, franka::Duration, franka::Duration)> &callback)
Register a callback that is called in every step of the motion.
Definition motion_generator.hpp:59
void resetTimeUnsafe()
Reset the time of the motion generator without locking the mutex.
Definition motion_generator.cpp:90
bool has_new_motion()
Whether a new motion is available.
Definition motion_generator.cpp:85
void updateMotion(std::shared_ptr< Motion< ControlSignalType > > new_motion)
Update the current motion.
Definition motion_generator.cpp:79
Base class for motions.
Definition motion.hpp:23
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
Exception thrown when the reaction recursion limit (8) is reached.
Definition motion_generator.hpp:18
Full state of the robot.
Definition robot_state.hpp:20