moveit2
The MoveIt Motion Planning Framework for ROS 2.
|
#include <interaction_handler.h>
Public Member Functions | |
InteractionHandler (const RobotInteractionPtr &robot_interaction, const std::string &name, const moveit::core::RobotState &initial_robot_state, const std::shared_ptr< tf2_ros::Buffer > &tf_buffer=std::shared_ptr< tf2_ros::Buffer >()) | |
InteractionHandler (const RobotInteractionPtr &robot_interaction, const std::string &name, const std::shared_ptr< tf2_ros::Buffer > &tf_buffer=std::shared_ptr< tf2_ros::Buffer >()) | |
InteractionHandler (const std::string &name, const moveit::core::RobotState &initial_robot_state, const std::shared_ptr< tf2_ros::Buffer > &tf_buffer=std::shared_ptr< tf2_ros::Buffer >()) | |
InteractionHandler (const std::string &name, const moveit::core::RobotModelConstPtr &model, const std::shared_ptr< tf2_ros::Buffer > &tf_buffer=std::shared_ptr< tf2_ros::Buffer >()) | |
~InteractionHandler () override | |
const std::string & | getName () const |
void | setUpdateCallback (const InteractionHandlerCallbackFn &callback) |
const InteractionHandlerCallbackFn & | getUpdateCallback () const |
void | setMeshesVisible (bool visible) |
bool | getMeshesVisible () const |
void | setControlsVisible (bool visible) |
bool | getControlsVisible () const |
void | setPoseOffset (const EndEffectorInteraction &eef, const geometry_msgs::msg::Pose &m) |
Set the offset from EEF to its marker. More... | |
void | setPoseOffset (const JointInteraction &j, const geometry_msgs::msg::Pose &m) |
Set the offset from a joint to its marker. More... | |
bool | getPoseOffset (const EndEffectorInteraction &eef, geometry_msgs::msg::Pose &m) |
Get the offset from EEF to its marker. More... | |
bool | getPoseOffset (const JointInteraction &vj, geometry_msgs::msg::Pose &m) |
Get the offset from a joint to its marker. More... | |
void | clearPoseOffset (const EndEffectorInteraction &eef) |
Clear the interactive marker pose offset for the given end-effector. More... | |
void | clearPoseOffset (const JointInteraction &vj) |
Clear the interactive marker pose offset for the given joint. More... | |
void | clearPoseOffsets () |
Clear the pose offset for all end-effectors and virtual joints. More... | |
void | setMenuHandler (const std::shared_ptr< interactive_markers::MenuHandler > &mh) |
Set the menu handler that defines menus and callbacks for all interactive markers drawn by this interaction handler. More... | |
const std::shared_ptr< interactive_markers::MenuHandler > & | getMenuHandler () |
Get the menu handler that defines menus and callbacks for all interactive markers drawn by this interaction handler. More... | |
void | clearMenuHandler () |
Remove the menu handler for this interaction handler. More... | |
bool | getLastEndEffectorMarkerPose (const EndEffectorInteraction &eef, geometry_msgs::msg::PoseStamped &pose) |
Get the last interactive_marker command pose for an end-effector. More... | |
bool | getLastJointMarkerPose (const JointInteraction &vj, geometry_msgs::msg::PoseStamped &pose) |
Get the last interactive_marker command pose for a joint. More... | |
void | clearLastEndEffectorMarkerPose (const EndEffectorInteraction &eef) |
Clear the last interactive_marker command pose for the given end-effector. More... | |
void | clearLastJointMarkerPose (const JointInteraction &vj) |
Clear the last interactive_marker command pose for the given joint. More... | |
void | clearLastMarkerPoses () |
Clear the last interactive_marker command poses for all end-effectors and joints. More... | |
virtual void | handleEndEffector (const EndEffectorInteraction &eef, const visualization_msgs::msg::InteractiveMarkerFeedback::ConstSharedPtr &feedback) |
Update the internal state maintained by the handler using information from the received feedback message. More... | |
virtual void | handleJoint (const JointInteraction &vj, const visualization_msgs::msg::InteractiveMarkerFeedback::ConstSharedPtr &feedback) |
Update the internal state maintained by the handler using information from the received feedback message. More... | |
virtual void | handleGeneric (const GenericInteraction &g, const visualization_msgs::msg::InteractiveMarkerFeedback::ConstSharedPtr &feedback) |
Update the internal state maintained by the handler using information from the received feedback message. More... | |
virtual bool | inError (const EndEffectorInteraction &eef) const |
Check if the marker corresponding to this end-effector leads to an invalid state. More... | |
virtual bool | inError (const JointInteraction &vj) const |
Check if the marker corresponding to this joint leads to an invalid state. More... | |
virtual bool | inError (const GenericInteraction &g) const |
Check if the generic marker to an invalid state. More... | |
void | clearError () |
Clear any error settings. This makes the markers appear as if the state is no longer invalid. More... | |
moveit::core::RobotStateConstPtr | getState () const |
Get a copy of the RobotState maintained by this InteractionHandler. More... | |
void | setState (const moveit::core::RobotState &state) |
Set a new RobotState for this InteractionHandler. More... | |
Public Member Functions inherited from robot_interaction::LockedRobotState | |
LockedRobotState (const moveit::core::RobotState &state) | |
LockedRobotState (const moveit::core::RobotModelPtr &model) | |
virtual | ~LockedRobotState () |
moveit::core::RobotStateConstPtr | getState () const |
get read-only access to the state. More... | |
void | setState (const moveit::core::RobotState &state) |
Set the state to the new value. More... | |
void | modifyState (const ModifyStateFunction &modify) |
Protected Member Functions | |
bool | transformFeedbackPose (const visualization_msgs::msg::InteractiveMarkerFeedback::ConstSharedPtr &feedback, const geometry_msgs::msg::Pose &offset, geometry_msgs::msg::PoseStamped &tpose) |
Protected Member Functions inherited from robot_interaction::LockedRobotState | |
virtual void | robotStateChanged () |
Protected Attributes | |
const std::string | name_ |
const std::string | planning_frame_ |
std::shared_ptr< tf2_ros::Buffer > | tf_buffer_ |
Protected Attributes inherited from robot_interaction::LockedRobotState | |
std::mutex | state_lock_ |
Additional Inherited Members | |
Public Types inherited from robot_interaction::LockedRobotState | |
typedef std::function< void(moveit::core::RobotState *)> | ModifyStateFunction |
Manage interactive markers to control a RobotState.
Each instance maintains one or more interactive markers to control various joints in one group of one RobotState. The group being controlled is maintained by the RobotInteraction object that contains this InteractionHandler object. All InteractionHandler objects in the same RobotInteraction are controlling the same group.
Definition at line 76 of file interaction_handler.h.
robot_interaction::InteractionHandler::InteractionHandler | ( | const RobotInteractionPtr & | robot_interaction, |
const std::string & | name, | ||
const moveit::core::RobotState & | initial_robot_state, | ||
const std::shared_ptr< tf2_ros::Buffer > & | tf_buffer = std::shared_ptr<tf2_ros::Buffer>() |
||
) |
Definition at line 64 of file interaction_handler.cpp.
robot_interaction::InteractionHandler::InteractionHandler | ( | const RobotInteractionPtr & | robot_interaction, |
const std::string & | name, | ||
const std::shared_ptr< tf2_ros::Buffer > & | tf_buffer = std::shared_ptr<tf2_ros::Buffer>() |
||
) |
Definition at line 77 of file interaction_handler.cpp.
robot_interaction::InteractionHandler::InteractionHandler | ( | const std::string & | name, |
const moveit::core::RobotState & | initial_robot_state, | ||
const std::shared_ptr< tf2_ros::Buffer > & | tf_buffer = std::shared_ptr< tf2_ros::Buffer >() |
||
) |
robot_interaction::InteractionHandler::InteractionHandler | ( | const std::string & | name, |
const moveit::core::RobotModelConstPtr & | model, | ||
const std::shared_ptr< tf2_ros::Buffer > & | tf_buffer = std::shared_ptr< tf2_ros::Buffer >() |
||
) |
|
inlineoverride |
Definition at line 95 of file interaction_handler.h.
void robot_interaction::InteractionHandler::clearError | ( | ) |
Clear any error settings. This makes the markers appear as if the state is no longer invalid.
Definition at line 354 of file interaction_handler.cpp.
void robot_interaction::InteractionHandler::clearLastEndEffectorMarkerPose | ( | const EndEffectorInteraction & | eef | ) |
Clear the last interactive_marker command pose for the given end-effector.
The | target end-effector. |
Definition at line 174 of file interaction_handler.cpp.
void robot_interaction::InteractionHandler::clearLastJointMarkerPose | ( | const JointInteraction & | vj | ) |
Clear the last interactive_marker command pose for the given joint.
The | target joint. |
Definition at line 180 of file interaction_handler.cpp.
void robot_interaction::InteractionHandler::clearLastMarkerPoses | ( | ) |
Clear the last interactive_marker command poses for all end-effectors and joints.
Definition at line 186 of file interaction_handler.cpp.
void robot_interaction::InteractionHandler::clearMenuHandler | ( | ) |
Remove the menu handler for this interaction handler.
Definition at line 204 of file interaction_handler.cpp.
void robot_interaction::InteractionHandler::clearPoseOffset | ( | const EndEffectorInteraction & | eef | ) |
Clear the interactive marker pose offset for the given end-effector.
The | target end-effector. |
Definition at line 107 of file interaction_handler.cpp.
void robot_interaction::InteractionHandler::clearPoseOffset | ( | const JointInteraction & | vj | ) |
Clear the interactive marker pose offset for the given joint.
The | target joint. |
Definition at line 113 of file interaction_handler.cpp.
void robot_interaction::InteractionHandler::clearPoseOffsets | ( | ) |
Clear the pose offset for all end-effectors and virtual joints.
Definition at line 119 of file interaction_handler.cpp.
bool robot_interaction::InteractionHandler::getControlsVisible | ( | ) | const |
Definition at line 449 of file interaction_handler.cpp.
bool robot_interaction::InteractionHandler::getLastEndEffectorMarkerPose | ( | const EndEffectorInteraction & | eef, |
geometry_msgs::msg::PoseStamped & | pose | ||
) |
Get the last interactive_marker command pose for an end-effector.
The | end-effector in question. |
A | PoseStamped message containing the last (offset-removed) pose commanded for the end-effector. |
Definition at line 149 of file interaction_handler.cpp.
bool robot_interaction::InteractionHandler::getLastJointMarkerPose | ( | const JointInteraction & | vj, |
geometry_msgs::msg::PoseStamped & | pose | ||
) |
Get the last interactive_marker command pose for a joint.
The | joint in question. |
A | PoseStamped message containing the last (offset-removed) pose commanded for the joint. |
Definition at line 162 of file interaction_handler.cpp.
const std::shared_ptr< interactive_markers::MenuHandler > & robot_interaction::InteractionHandler::getMenuHandler | ( | ) |
Get the menu handler that defines menus and callbacks for all interactive markers drawn by this interaction handler.
Definition at line 198 of file interaction_handler.cpp.
bool robot_interaction::InteractionHandler::getMeshesVisible | ( | ) | const |
Definition at line 437 of file interaction_handler.cpp.
|
inline |
Definition at line 99 of file interaction_handler.h.
bool robot_interaction::InteractionHandler::getPoseOffset | ( | const EndEffectorInteraction & | eef, |
geometry_msgs::msg::Pose & | m | ||
) |
Get the offset from EEF to its marker.
The | target end-effector. |
The | pose offset (only valid if return value is true). |
Definition at line 125 of file interaction_handler.cpp.
bool robot_interaction::InteractionHandler::getPoseOffset | ( | const JointInteraction & | vj, |
geometry_msgs::msg::Pose & | m | ||
) |
Get the offset from a joint to its marker.
vj | The joint. |
m | The pose offset (only valid if return value is true). |
Definition at line 137 of file interaction_handler.cpp.
moveit::core::RobotStateConstPtr robot_interaction::LockedRobotState::getState |
Get a copy of the RobotState maintained by this InteractionHandler.
Definition at line 76 of file locked_robot_state.cpp.
const InteractionHandlerCallbackFn & robot_interaction::InteractionHandler::getUpdateCallback | ( | ) | const |
Definition at line 425 of file interaction_handler.cpp.
|
virtual |
Update the internal state maintained by the handler using information from the received feedback message.
Definition at line 227 of file interaction_handler.cpp.
|
virtual |
Update the internal state maintained by the handler using information from the received feedback message.
Definition at line 210 of file interaction_handler.cpp.
|
virtual |
Update the internal state maintained by the handler using information from the received feedback message.
Definition at line 260 of file interaction_handler.cpp.
|
virtual |
Check if the marker corresponding to this end-effector leads to an invalid state.
Definition at line 339 of file interaction_handler.cpp.
|
virtual |
Check if the generic marker to an invalid state.
Definition at line 344 of file interaction_handler.cpp.
|
virtual |
Check if the marker corresponding to this joint leads to an invalid state.
Definition at line 349 of file interaction_handler.cpp.
void robot_interaction::InteractionHandler::setControlsVisible | ( | bool | visible | ) |
Definition at line 443 of file interaction_handler.cpp.
void robot_interaction::InteractionHandler::setMenuHandler | ( | const std::shared_ptr< interactive_markers::MenuHandler > & | mh | ) |
Set the menu handler that defines menus and callbacks for all interactive markers drawn by this interaction handler.
A | menu handler. |
Definition at line 192 of file interaction_handler.cpp.
void robot_interaction::InteractionHandler::setMeshesVisible | ( | bool | visible | ) |
Definition at line 431 of file interaction_handler.cpp.
void robot_interaction::InteractionHandler::setPoseOffset | ( | const EndEffectorInteraction & | eef, |
const geometry_msgs::msg::Pose & | m | ||
) |
Set the offset from EEF to its marker.
eef | The target end-effector. |
m | The pose of the marker in the frame of the end-effector parent. |
Definition at line 95 of file interaction_handler.cpp.
void robot_interaction::InteractionHandler::setPoseOffset | ( | const JointInteraction & | j, |
const geometry_msgs::msg::Pose & | m | ||
) |
Set the offset from a joint to its marker.
j | The target joint. |
m | The pose of the marker in the frame of the joint parent. |
Definition at line 101 of file interaction_handler.cpp.
void robot_interaction::LockedRobotState::setState |
Set a new RobotState for this InteractionHandler.
Definition at line 79 of file locked_robot_state.cpp.
void robot_interaction::InteractionHandler::setUpdateCallback | ( | const InteractionHandlerCallbackFn & | callback | ) |
Definition at line 419 of file interaction_handler.cpp.
|
protected |
|
protected |
Definition at line 225 of file interaction_handler.h.
|
protected |
Definition at line 226 of file interaction_handler.h.
|
protected |
Definition at line 227 of file interaction_handler.h.