display_base.hpp
Go to the documentation of this file.
1 #ifndef RADIAL_MENU_RVIZ_DISPLAY_BASE_HPP
2 #define RADIAL_MENU_RVIZ_DISPLAY_BASE_HPP
3 
4 #include <memory>
5 
7 #include <radial_menu_msgs/State.h>
10 #include <ros/console.h>
11 #include <ros/exception.h>
12 #include <ros/subscriber.h>
13 #include <rviz/display.h>
14 
15 namespace radial_menu_rviz {
16 
17 // base implementation of display classes except Qt's signals and slots
18 // because template classes cannot have any slots and signals by Qt's limitation
19 template < typename DrawingProperty, class PropertyControl, class ImageDrawer >
20 class DisplayBase : public rviz::Display {
21 public:
23 
24  virtual ~DisplayBase() {}
25 
26 protected:
27  // called once on initialization
28  virtual void onInitialize() {
29  // allocate objects
30  prop_ctl_.reset(new PropertyControl(this));
31  model_.reset(new radial_menu_model::Model());
32  drawer_.reset(new ImageDrawer(model_, prop_ctl_->drawingProperty()));
33  overlay_.reset(new ImageOverlay());
34 
35  // apply the initial properties
36  // (except subscription. it will be executed in onEnable().)
37  updateDescription(prop_ctl_->descriptionProperty());
38  updateImage(prop_ctl_->drawingProperty());
39  updatePosition(prop_ctl_->positionProperty());
40  }
41 
42  // called when enabled
43  virtual void onEnable() {
44  updateSubscription(prop_ctl_->subscriptionProperty());
45  overlay_->show();
46  }
47 
48  // called when disabled
49  virtual void onDisable() {
50  overlay_->hide();
52  }
53 
55  const std::string param_name(prop.param_name.toStdString());
56  if (!param_name.empty() && model_->setDescriptionFromParam(param_name)) {
57  state_ = model_->exportState();
58  updateImage();
59  }
60  }
61 
63  // unsubscribe
65 
66  // destroy the last state from the previous session
67  model_->resetState();
68  state_ = model_->exportState();
69  updateImage();
70 
71  // subscribe the new topic
72  const std::string topic(prop.topic.toStdString());
73  try {
74  if (!topic.empty()) {
75  state_sub_ = ros::NodeHandle().subscribe(topic, 1, &DisplayBase::updateImage, this);
76  }
77  } catch (const ros::Exception &error) {
78  ROS_ERROR_STREAM(getName().toStdString()
79  << ": error on subscribing '" << topic << "': " << error.what());
80  }
81  }
82 
83  // update menu image based on the current configs
84  void updateImage() {
85  overlay_->setImage(drawer_->draw());
86  overlay_->update();
87  }
88 
89  // update menu image with the given menu state
90  void updateImage(const radial_menu_msgs::StateConstPtr &new_state) {
91  if (state_->is_enabled != new_state->is_enabled ||
92  state_->pointed_id != new_state->pointed_id ||
93  state_->selected_ids != new_state->selected_ids) {
94  model_->setState(*new_state);
95  state_ = new_state;
96  updateImage();
97  }
98  }
99 
100  // update menu image with the given drawing property
101  void updateImage(const DrawingProperty &prop) {
102  drawer_->setProperty(prop);
103  updateImage();
104  }
105 
106  void updatePosition(const PositionProperty &prop) {
107  overlay_->setOrigin(prop.origin);
108  overlay_->update();
109  }
110 
111 protected:
112  // property control via Rviz
113  std::unique_ptr< PropertyControl > prop_ctl_;
114  // menu tree model
116  // menu state subscriber
118  radial_menu_msgs::StateConstPtr state_;
119  // state drawer
120  std::unique_ptr< ImageDrawer > drawer_;
121  // overlay on Rviz
122  std::unique_ptr< ImageOverlay > overlay_;
123 };
124 } // namespace radial_menu_rviz
125 
126 #endif
void updateDescription(const DescriptionProperty &prop)
std::unique_ptr< ImageDrawer > drawer_
void updateImage(const radial_menu_msgs::StateConstPtr &new_state)
void updateImage(const DrawingProperty &prop)
void updatePosition(const PositionProperty &prop)
void updateSubscription(const SubscriptionProperty &prop)
virtual QString getName() const
std::shared_ptr< Model > ModelPtr
radial_menu_msgs::StateConstPtr state_
#define ROS_ERROR_STREAM(args)
std::unique_ptr< PropertyControl > prop_ctl_
radial_menu_model::ModelPtr model_
std::unique_ptr< ImageOverlay > overlay_


radial_menu_rviz
Author(s):
autogenerated on Mon Feb 28 2022 23:22:04