#include <robot_interaction.h>
|
typedef ::robot_interaction::EndEffectorInteraction | EndEffector |
|
enum | EndEffectorInteractionStyle {
EEF_POSITION_ARROWS = InteractionStyle::POSITION_ARROWS,
EEF_ORIENTATION_CIRCLES = InteractionStyle::ORIENTATION_CIRCLES,
EEF_POSITION_SPHERE = InteractionStyle::POSITION_SPHERE,
EEF_ORIENTATION_SPHERE = InteractionStyle::ORIENTATION_SPHERE,
EEF_POSITION_EEF = InteractionStyle::POSITION_EEF,
EEF_ORIENTATION_EEF = InteractionStyle::ORIENTATION_EEF,
EEF_FIXED = InteractionStyle::FIXED,
EEF_POSITION = InteractionStyle::POSITION,
EEF_ORIENTATION = InteractionStyle::ORIENTATION,
EEF_6DOF = InteractionStyle::SIX_DOF,
EEF_6DOF_SPHERE = InteractionStyle::SIX_DOF_SPHERE,
EEF_POSITION_NOSPHERE = InteractionStyle::POSITION_NOSPHERE,
EEF_ORIENTATION_NOSPHERE = InteractionStyle::ORIENTATION_NOSPHERE,
EEF_6DOF_NOSPHERE = InteractionStyle::SIX_DOF_NOSPHERE
} |
|
typedef ::robot_interaction::GenericInteraction | Generic |
|
typedef ::robot_interaction::InteractionHandler | InteractionHandler |
|
typedef ::robot_interaction::InteractionHandlerPtr | InteractionHandlerPtr |
|
typedef ::robot_interaction::JointInteraction | Joint |
|
|
static const std::string | INTERACTIVE_MARKER_TOPIC = "robot_interaction_interactive_marker_topic" |
| The topic name on which the internal Interactive Marker Server operates. More...
|
|
|
void | addEndEffectorMarkers (const ::robot_interaction::InteractionHandlerPtr &handler, const EndEffectorInteraction &eef, visualization_msgs::InteractiveMarker &im, bool position=true, bool orientation=true) |
|
void | addEndEffectorMarkers (const ::robot_interaction::InteractionHandlerPtr &handler, const EndEffectorInteraction &eef, const geometry_msgs::Pose &offset, visualization_msgs::InteractiveMarker &im, bool position=true, bool orientation=true) |
|
void | clearInteractiveMarkersUnsafe () |
|
double | computeGroupMarkerSize (const std::string &group) |
|
double | computeLinkMarkerSize (const std::string &link) |
|
void | computeMarkerPose (const ::robot_interaction::InteractionHandlerPtr &handler, const EndEffectorInteraction &eef, const robot_state::RobotState &robot_state, geometry_msgs::Pose &pose, geometry_msgs::Pose &control_to_eef_tf) const |
|
void | decideActiveEndEffectors (const std::string &group) |
|
void | decideActiveEndEffectors (const std::string &group, InteractionStyle::InteractionStyle style) |
|
void | decideActiveJoints (const std::string &group) |
|
void | moveInteractiveMarker (const std::string name, const geometry_msgs::PoseStampedConstPtr &msg) |
|
void | processingThread () |
|
void | processInteractiveMarkerFeedback (const visualization_msgs::InteractiveMarkerFeedbackConstPtr &feedback) |
|
void | registerMoveInteractiveMarkerTopic (const std::string marker_name, const std::string &name) |
|
void | subscribeMoveInteractiveMarker (const std::string marker_name, const std::string &name) |
|
Definition at line 74 of file robot_interaction.h.
robot_interaction::RobotInteraction::RobotInteraction |
( |
const robot_model::RobotModelConstPtr & |
kmodel, |
|
|
const std::string & |
ns = "" |
|
) |
| |
robot_interaction::RobotInteraction::~RobotInteraction |
( |
| ) |
|
|
virtual |
add an interaction. An interaction is a marker that can be used to manipulate the robot state. This function does not add any markers. To add markers for all active interactions call addInteractiveMarkers(). construct - a callback to construct the marker. See comment on InteractiveMarkerConstructorFn above. update - Called when the robot state changes. Updates the marker pose. Optional. See comment on InteractiveMarkerUpdateFn above. process - called when the marker moves. Updates the robot state. See comment on ProcessFeedbackFn above.
Definition at line 100 of file robot_interaction.cpp.
void robot_interaction::RobotInteraction::addEndEffectorMarkers |
( |
const ::robot_interaction::InteractionHandlerPtr & |
handler, |
|
|
const EndEffectorInteraction & |
eef, |
|
|
visualization_msgs::InteractiveMarker & |
im, |
|
|
bool |
position = true , |
|
|
bool |
orientation = true |
|
) |
| |
|
private |
void robot_interaction::RobotInteraction::addEndEffectorMarkers |
( |
const ::robot_interaction::InteractionHandlerPtr & |
handler, |
|
|
const EndEffectorInteraction & |
eef, |
|
|
const geometry_msgs::Pose & |
offset, |
|
|
visualization_msgs::InteractiveMarker & |
im, |
|
|
bool |
position = true , |
|
|
bool |
orientation = true |
|
) |
| |
|
private |
void robot_interaction::RobotInteraction::addInteractiveMarkers |
( |
const ::robot_interaction::InteractionHandlerPtr & |
handler, |
|
|
const double |
marker_scale = 0.0 |
|
) |
| |
Add interactive markers for all active interactions. This adds markers just to the one handler. If there are multiple handlers call this for each handler for which you want markers. The markers are not actually added until you call publishInteractiveMarkers().
Definition at line 451 of file robot_interaction.cpp.
void robot_interaction::RobotInteraction::clear |
( |
void |
| ) |
|
void robot_interaction::RobotInteraction::clearInteractiveMarkers |
( |
| ) |
|
void robot_interaction::RobotInteraction::clearInteractiveMarkersUnsafe |
( |
| ) |
|
|
private |
double robot_interaction::RobotInteraction::computeGroupMarkerSize |
( |
const std::string & |
group | ) |
|
|
private |
double robot_interaction::RobotInteraction::computeLinkMarkerSize |
( |
const std::string & |
link | ) |
|
|
private |
void robot_interaction::RobotInteraction::decideActiveComponents |
( |
const std::string & |
group | ) |
|
Adds an interaction for:
- each end effector in the group that can be controller by IK
- each floating joint
- each planar joint If no end effector exists in the robot then adds an interaction for the last link in the chain. This function does not add any markers. To add markers for all active interactions call addInteractiveMarkers().
Definition at line 85 of file robot_interaction.cpp.
void robot_interaction::RobotInteraction::decideActiveEndEffectors |
( |
const std::string & |
group | ) |
|
|
private |
void robot_interaction::RobotInteraction::decideActiveJoints |
( |
const std::string & |
group | ) |
|
|
private |
const std::vector<EndEffectorInteraction>& robot_interaction::RobotInteraction::getActiveEndEffectors |
( |
| ) |
const |
|
inline |
const std::vector<JointInteraction>& robot_interaction::RobotInteraction::getActiveJoints |
( |
| ) |
const |
|
inline |
KinematicOptionsMapPtr robot_interaction::RobotInteraction::getKinematicOptionsMap |
( |
| ) |
|
|
inline |
const robot_model::RobotModelConstPtr& robot_interaction::RobotInteraction::getRobotModel |
( |
| ) |
const |
|
inline |
const std::string& robot_interaction::RobotInteraction::getServerTopic |
( |
void |
| ) |
const |
|
inline |
void robot_interaction::RobotInteraction::moveInteractiveMarker |
( |
const std::string |
name, |
|
|
const geometry_msgs::PoseStampedConstPtr & |
msg |
|
) |
| |
|
private |
void robot_interaction::RobotInteraction::processingThread |
( |
| ) |
|
|
private |
void robot_interaction::RobotInteraction::processInteractiveMarkerFeedback |
( |
const visualization_msgs::InteractiveMarkerFeedbackConstPtr & |
feedback | ) |
|
|
private |
void robot_interaction::RobotInteraction::publishInteractiveMarkers |
( |
| ) |
|
void robot_interaction::RobotInteraction::registerMoveInteractiveMarkerTopic |
( |
const std::string |
marker_name, |
|
|
const std::string & |
name |
|
) |
| |
|
private |
bool robot_interaction::RobotInteraction::showingMarkers |
( |
const ::robot_interaction::InteractionHandlerPtr & |
handler | ) |
|
void robot_interaction::RobotInteraction::subscribeMoveInteractiveMarker |
( |
const std::string |
marker_name, |
|
|
const std::string & |
name |
|
) |
| |
|
private |
void robot_interaction::RobotInteraction::toggleMoveInteractiveMarkerTopic |
( |
bool |
enable | ) |
|
void robot_interaction::RobotInteraction::updateInteractiveMarkers |
( |
const ::robot_interaction::InteractionHandlerPtr & |
handler | ) |
|
std::map<std::string, visualization_msgs::InteractiveMarkerFeedbackConstPtr> robot_interaction::RobotInteraction::feedback_map_ |
|
private |
std::map<std::string, ::robot_interaction::InteractionHandlerPtr> robot_interaction::RobotInteraction::handlers_ |
|
private |
std::vector<ros::Subscriber> robot_interaction::RobotInteraction::int_marker_move_subscribers_ |
|
private |
std::vector<std::string> robot_interaction::RobotInteraction::int_marker_move_topics_ |
|
private |
std::vector<std::string> robot_interaction::RobotInteraction::int_marker_names_ |
|
private |
const std::string robot_interaction::RobotInteraction::INTERACTIVE_MARKER_TOPIC = "robot_interaction_interactive_marker_topic" |
|
static |
The topic name on which the internal Interactive Marker Server operates.
Definition at line 86 of file robot_interaction.h.
KinematicOptionsMapPtr robot_interaction::RobotInteraction::kinematic_options_map_ |
|
private |
boost::mutex robot_interaction::RobotInteraction::marker_access_lock_ |
|
private |
boost::condition_variable robot_interaction::RobotInteraction::new_feedback_condition_ |
|
private |
std::unique_ptr<boost::thread> robot_interaction::RobotInteraction::processing_thread_ |
|
private |
robot_model::RobotModelConstPtr robot_interaction::RobotInteraction::robot_model_ |
|
private |
bool robot_interaction::RobotInteraction::run_processing_thread_ |
|
private |
std::map<std::string, std::size_t> robot_interaction::RobotInteraction::shown_markers_ |
|
private |
std::string robot_interaction::RobotInteraction::topic_ |
|
private |
The documentation for this class was generated from the following files: