footstep_display.cpp
Go to the documentation of this file.
1 // -*- mode: c++ -*-
2 /*********************************************************************
3  * Software License Agreement (BSD License)
4  *
5  * Copyright (c) 2014, JSK Lab
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * * Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * * Redistributions in binary form must reproduce the above
15  * copyright notice, this list of conditions and the following
16  * disclaimer in the documentation and/or other materials provided
17  * with the distribution.
18  * * Neither the name of the JSK Lab nor the names of its
19  * contributors may be used to endorse or promote products derived
20  * from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33  * POSSIBILITY OF SUCH DAMAGE.
34  *********************************************************************/
35 
36 #include "footstep_display.h"
37 #include <rviz/validate_floats.h>
38 #include <jsk_topic_tools/color_utils.h>
39 
40 namespace jsk_rviz_plugins
41 {
43  {
44  alpha_property_ = new rviz::FloatProperty( "Alpha", 0.5,
45  "0 is fully transparent, 1.0 is fully opaque.",
46  this, SLOT( updateAlpha() ));
48  "Show Name", true,
49  "Show name of each footstep",
50  this, SLOT(updateShowName()));
52  "Use Group Coloring", false,
53  "Use footstep_group field to colorize footsteps",
54  this, SLOT(updateUseGroupColoring()));
56  "Width", 0.15,
57  "width of the footstep, it's not used if the dimensions is specified in Footstep message.",
58  this, SLOT( updateWidth() ));
60  "height", 0.01,
61  "height of the footstep, it's not used if the dimensions is specified in Footstep message.",
62  this, SLOT( updateHeight() ));
63 
65  "depth", 0.3,
66  "depth of the footstep, it's not used if the dimensions is specified in Footstep message.",
67  this, SLOT( updateDepth() ));
68  }
69 
71  {
72  delete alpha_property_;
73  delete width_property_;
75  delete depth_property_;
76  delete show_name_property_;
78  delete line_;
79  // remove all the nodes
80  for (size_t i = 0; i < text_nodes_.size(); i++) {
81  Ogre::SceneNode* node = text_nodes_[i];
82  node->removeAndDestroyAllChildren();
83  node->detachAllObjects();
84  scene_manager_->destroySceneNode(node);
85  }
86  }
87 
89  {
91  }
92 
94  {
96  }
97 
99  {
101  }
102 
104  {
106  }
107 
109  {
111  }
112 
114  {
116  }
117 
118 
120  {
121  MFDClass::reset();
122  shapes_.clear();
123  line_->clear();
124  allocateTexts(0);
125  }
126 
127  bool FootstepDisplay::validateFloats( const jsk_footstep_msgs::FootstepArray& msg )
128  {
129  for (std::vector<jsk_footstep_msgs::Footstep>::const_iterator it = msg.footsteps.begin();
130  it != msg.footsteps.end();
131  ++it) {
132  if (!rviz::validateFloats((*it).pose.position.x)
133  || !rviz::validateFloats((*it).pose.position.y)
134  || !rviz::validateFloats((*it).pose.position.z)
135  || !rviz::validateFloats((*it).pose.orientation.x)
136  || !rviz::validateFloats((*it).pose.orientation.y)
137  || !rviz::validateFloats((*it).pose.orientation.z)
138  || !rviz::validateFloats((*it).pose.orientation.w)
139  ) {
140  return false;
141  }
142  }
143  return true;
144  }
145 
147  {
149  scene_node_ = scene_manager_->getRootSceneNode()->createChildSceneNode();
152  updateWidth();
153  updateHeight();
154  updateDepth();
155  updateAlpha();
157  }
158 
160  if (num > shapes_.size()) {
161  // need to allocate
162  for (size_t i = shapes_.size(); i < num; i++) {
163  ShapePtr shape;
165  scene_node_));
166  shapes_.push_back(shape);
167  }
168  }
169  else if (num < shapes_.size()) {
170  // need to remove
171  shapes_.resize(num);
172  }
173  }
174 
175  void FootstepDisplay::allocateTexts(size_t num) {
176  if (num > texts_.size()) {
177  // need to allocate
178  for (size_t i = texts_.size(); i < num; i++) {
179  // create nodes
180  Ogre::SceneNode* node = scene_node_->createChildSceneNode();
182  = new rviz::MovableText("not initialized", "Liberation Sans", 0.05);
183  text->setVisible(false);
184  text->setTextAlignment(rviz::MovableText::H_CENTER,
186  node->attachObject(text);
187  texts_.push_back(text);
188  text_nodes_.push_back(node);
189  }
190  }
191  else if (num < texts_.size()) {
192  for (int i = texts_.size() - 1; i >= (int)num; i--) {
193  Ogre::SceneNode* node = text_nodes_[i];
194  node->detachAllObjects();
195  node->removeAndDestroyAllChildren();
196  scene_manager_->destroySceneNode(node);
197  }
198  text_nodes_.resize(num);
199  texts_.resize(num);
200 
201  }
202  }
203 
204  double FootstepDisplay::minNotZero(double a, double b) {
205  if (a == 0.0) {
206  return b;
207  }
208  else if (b == 0.0) {
209  return a;
210  }
211  else {
212  return std::min(a, b);
213  }
214  }
215 
216  void FootstepDisplay::update(float wall_dt, float ros_dt)
217  {
218  for (size_t i = 0; i < shapes_.size(); i++) {
219  ShapePtr shape = shapes_[i];
220  texts_[i]->setVisible(show_name_); // TODO
221  jsk_footstep_msgs::Footstep footstep = latest_footstep_->footsteps[i];
222  // color
223  if (use_group_coloring_) {
224  std_msgs::ColorRGBA color
225  = jsk_topic_tools::colorCategory20(footstep.footstep_group);
226  shape->setColor(color.r, color.g, color.b, alpha_);
227  }
228  else {
229  if (footstep.leg == jsk_footstep_msgs::Footstep::LLEG) {
230  shape->setColor(0, 1, 0, alpha_);
231  }
232  else if (footstep.leg == jsk_footstep_msgs::Footstep::RLEG) {
233  shape->setColor(1, 0, 0, alpha_);
234  }
235  else if (footstep.leg == jsk_footstep_msgs::Footstep::LARM) {
236  shape->setColor(0, 1, 1, alpha_);
237  }
238  else if (footstep.leg == jsk_footstep_msgs::Footstep::RARM) {
239  shape->setColor(1, 0, 1, alpha_);
240  }
241  else {
242  shape->setColor(1, 1, 1, alpha_);
243  }
244  }
245 
246  }
247  }
248 
250  const jsk_footstep_msgs::Footstep& footstep)
251  {
252  if (footstep.dimensions.x == 0 &&
253  footstep.dimensions.y == 0 &&
254  footstep.dimensions.z == 0) {
255  return std::max(minNotZero(minNotZero(footstep.dimensions.x,
256  footstep.dimensions.y),
257  footstep.dimensions.z),
258  0.1);
259  }
260  else {
261  return std::max(minNotZero(minNotZero(depth_property_->getFloat(),
264  0.1);
265 
266  }
267  }
268 
269 
270  void FootstepDisplay::processMessage(const jsk_footstep_msgs::FootstepArray::ConstPtr& msg)
271  {
272  if (!validateFloats(*msg)) {
273  setStatus(rviz::StatusProperty::Error, "Topic", "message contained invalid floating point values (nans or infs)");
274  return;
275  }
277  Ogre::Quaternion orientation;
278  Ogre::Vector3 position;
279  if(!context_->getFrameManager()->getTransform( msg->header.frame_id,
280  msg->header.stamp,
281  position, orientation)) {
282  std::ostringstream oss;
283  oss << "Error transforming pose";
284  oss << " from frame '" << msg->header.frame_id << "'";
285  oss << " to frame '" << qPrintable(fixed_frame_) << "'";
286  ROS_ERROR_STREAM(oss.str());
287  setStatus(rviz::StatusProperty::Error, "Transform", QString::fromStdString(oss.str()));
288  return;
289  }
290 
291  // check thhe length of the shapes_
292  allocateCubes(msg->footsteps.size());
293  allocateTexts(msg->footsteps.size());
294  line_->clear();
295  line_->setLineWidth(0.01);
296  line_->setNumLines(1);
297  line_->setMaxPointsPerLine(1024);
298 
299  for (size_t i = 0; i < msg->footsteps.size(); i++)
300  {
301  ShapePtr shape = shapes_[i];
303  Ogre::SceneNode* node = text_nodes_[i];
304  jsk_footstep_msgs::Footstep footstep = msg->footsteps[i];
305  Ogre::Vector3 step_position;
306  Ogre::Vector3 shape_position;
307  Ogre::Quaternion step_quaternion;
308  if( !context_->getFrameManager()->transform( msg->header, footstep.pose,
309  step_position,
310  step_quaternion ))
311  {
312  std::ostringstream oss;
313  oss << "Error transforming pose";
314  oss << " from frame '" << msg->header.frame_id << "'";
315  oss << " to frame '" << qPrintable(fixed_frame_) << "'";
316  ROS_ERROR_STREAM(oss.str());
317  setStatus(rviz::StatusProperty::Error, "Transform", QString::fromStdString(oss.str()));
318  return;
319  }
320  // add offset
321  Ogre::Vector3 step_offset (footstep.offset.x, footstep.offset.y, footstep.offset.z);
322  shape_position = step_position + (step_quaternion * step_offset);
323 
324  shape->setPosition(shape_position);
325  shape->setOrientation(step_quaternion);
326  // size of shape
327  Ogre::Vector3 scale;
328  if (footstep.dimensions.x == 0 &&
329  footstep.dimensions.y == 0 &&
330  footstep.dimensions.z == 0) {
331  scale[0] = depth_;
332  scale[1] = width_;
333  scale[2] = height_;
334  }
335  else {
336  scale[0] = footstep.dimensions.x;
337  scale[1] = footstep.dimensions.y;
338  scale[2] = footstep.dimensions.z;
339  }
340  shape->setScale(scale);
341  // update the size of text
342  if (footstep.leg == jsk_footstep_msgs::Footstep::LLEG) {
343  text->setCaption("LLEG");
344  }
345  else if (footstep.leg == jsk_footstep_msgs::Footstep::RLEG) {
346  text->setCaption("RLEG");
347  }
348  else if (footstep.leg == jsk_footstep_msgs::Footstep::LARM) {
349  text->setCaption("LARM");
350  }
351  else if (footstep.leg == jsk_footstep_msgs::Footstep::RARM) {
352  text->setCaption("RARM");
353  }
354  else {
355  text->setCaption("unknown");
356  }
357  text->setCharacterHeight(estimateTextSize(footstep));
358  node->setPosition(shape_position);
359  node->setOrientation(step_quaternion);
360  text->setVisible(show_name_); // TODO
361  line_->addPoint(step_position);
362 
363  }
364  //updateFootstepSize();
365  updateAlpha();
367  }
368 
369 }
370 
rviz::BillboardLine::clear
void clear()
jsk_rviz_plugins::FootstepDisplay::alpha_
double alpha_
Definition: footstep_display.h:153
rviz::BillboardLine
rviz::BoolProperty::getBool
virtual bool getBool() const
rviz::BillboardLine::setLineWidth
void setLineWidth(float width)
jsk_rviz_plugins::FootstepDisplay::line_
rviz::BillboardLine * line_
Definition: footstep_display.h:151
jsk_rviz_plugins::FootstepDisplay::depth_property_
rviz::FloatProperty * depth_property_
Definition: footstep_display.h:139
rviz::MessageFilterDisplay< MessageType >::reset
void reset() override
rviz::DisplayContext::queueRender
virtual void queueRender()=0
msg
msg
jsk_rviz_plugins::FootstepDisplay::updateHeight
void updateHeight()
Definition: footstep_display.cpp:125
ROS_ERROR_STREAM
#define ROS_ERROR_STREAM(args)
contact_state_marker.scale
scale
Definition: contact_state_marker.py:91
boost::shared_ptr
rviz::StatusProperty::Error
Error
jsk_rviz_plugins::FootstepDisplay::updateAlpha
void updateAlpha()
Definition: footstep_display.cpp:135
jsk_rviz_plugins::FootstepDisplay::height_
double height_
Definition: footstep_display.h:152
rviz::BoolProperty
jsk_rviz_plugins::FootstepDisplay::width_
double width_
Definition: footstep_display.h:152
jsk_rviz_plugins::FootstepDisplay::use_group_coloring_property_
rviz::BoolProperty * use_group_coloring_property_
Definition: footstep_display.h:141
jsk_rviz_plugins::FootstepDisplay::use_group_coloring_
bool use_group_coloring_
Definition: footstep_display.h:155
jsk_rviz_plugins::FootstepDisplay::text_nodes_
std::vector< Ogre::SceneNode * > text_nodes_
Definition: footstep_display.h:150
jsk_rviz_plugins::FootstepDisplay::updateDepth
void updateDepth()
Definition: footstep_display.cpp:130
validate_floats.h
jsk_rviz_plugins::FootstepDisplay::width_property_
rviz::FloatProperty * width_property_
Definition: footstep_display.h:137
rviz::Display::fixed_frame_
QString fixed_frame_
rviz::BillboardLine::setMaxPointsPerLine
void setMaxPointsPerLine(uint32_t max)
rviz::MovableText
rviz::validateFloats
bool validateFloats(const boost::array< T, N > &arr)
rviz::DisplayContext::getSceneManager
virtual Ogre::SceneManager * getSceneManager() const=0
rviz::MovableText::H_CENTER
H_CENTER
overlay_sample.text
text
Definition: overlay_sample.py:21
rviz::Display
jsk_rviz_plugins::FootstepDisplay::updateWidth
void updateWidth()
Definition: footstep_display.cpp:120
rviz::FloatProperty
class_list_macros.h
rviz::Display::setStatus
virtual void setStatus(StatusProperty::Level level, const QString &name, const QString &text)
jsk_rviz_plugins::FootstepDisplay::FootstepDisplay
FootstepDisplay()
Definition: footstep_display.cpp:74
overlay_menu_sample.b
b
Definition: overlay_menu_sample.py:20
footstep_display.h
rviz::FloatProperty::getFloat
virtual float getFloat() const
jsk_rviz_plugins::FootstepDisplay::~FootstepDisplay
virtual ~FootstepDisplay()
Definition: footstep_display.cpp:102
rviz::Display::scene_node_
Ogre::SceneNode * scene_node_
jsk_rviz_plugins::FootstepDisplay::minNotZero
virtual double minNotZero(double a, double b)
Definition: footstep_display.cpp:236
jsk_rviz_plugins::FootstepDisplay::estimateTextSize
virtual double estimateTextSize(const jsk_footstep_msgs::Footstep &footstep)
Definition: footstep_display.cpp:281
jsk_rviz_plugins::FootstepDisplay::allocateCubes
virtual void allocateCubes(size_t num)
Definition: footstep_display.cpp:191
rviz::Display::scene_manager_
Ogre::SceneManager * scene_manager_
rviz::BillboardLine::setNumLines
void setNumLines(uint32_t num)
rviz::DisplayContext::getFrameManager
virtual FrameManager * getFrameManager() const=0
jsk_rviz_plugins::FootstepDisplay::validateFloats
virtual bool validateFloats(const jsk_footstep_msgs::FootstepArray &msg)
Definition: footstep_display.cpp:159
jsk_rviz_plugins::FootstepDisplay::update
virtual void update(float wall_dt, float ros_dt)
Definition: footstep_display.cpp:248
jsk_rviz_plugins::FootstepDisplay::ShapePtr
boost::shared_ptr< rviz::Shape > ShapePtr
Definition: footstep_display.h:146
jsk_rviz_plugins::FootstepDisplay::alpha_property_
rviz::FloatProperty * alpha_property_
Definition: footstep_display.h:136
num
num
rviz::MessageFilterDisplay< MessageType >::onInitialize
void onInitialize() override
PLUGINLIB_EXPORT_CLASS
PLUGINLIB_EXPORT_CLASS(jsk_rviz_plugins::PictogramArrayDisplay, rviz::Display)
rviz::FrameManager::getTransform
bool getTransform(const Header &header, Ogre::Vector3 &position, Ogre::Quaternion &orientation)
jsk_rviz_plugins::FootstepDisplay::texts_
std::vector< rviz::MovableText * > texts_
Definition: footstep_display.h:149
jsk_rviz_plugins::FootstepDisplay::depth_
double depth_
Definition: footstep_display.h:152
rviz::Display::context_
DisplayContext * context_
jsk_rviz_plugins::FootstepDisplay::updateUseGroupColoring
void updateUseGroupColoring()
Definition: footstep_display.cpp:145
jsk_rviz_plugins::FootstepDisplay::shapes_
std::vector< ShapePtr > shapes_
Definition: footstep_display.h:148
jsk_rviz_plugins::FootstepDisplay::show_name_
bool show_name_
Definition: footstep_display.h:154
rviz::Shape
rviz::FrameManager::transform
bool transform(const Header &header, const geometry_msgs::Pose &pose, Ogre::Vector3 &position, Ogre::Quaternion &orientation)
jsk_rviz_plugins::FootstepDisplay
Definition: footstep_display.h:85
jsk_rviz_plugins::FootstepDisplay::processMessage
virtual void processMessage(const jsk_footstep_msgs::FootstepArray::ConstPtr &msg)
Definition: footstep_display.cpp:302
jsk_rviz_plugins::FootstepDisplay::reset
virtual void reset()
Definition: footstep_display.cpp:151
jsk_rviz_plugins::FootstepDisplay::height_property_
rviz::FloatProperty * height_property_
Definition: footstep_display.h:138
jsk_rviz_plugins::FootstepDisplay::show_name_property_
rviz::BoolProperty * show_name_property_
Definition: footstep_display.h:140
jsk_rviz_plugins::FootstepDisplay::updateShowName
void updateShowName()
Definition: footstep_display.cpp:140
jsk_rviz_plugins::FootstepDisplay::allocateTexts
virtual void allocateTexts(size_t num)
Definition: footstep_display.cpp:207
jsk_rviz_plugins
Definition: __init__.py:1
rviz::MovableText::V_ABOVE
V_ABOVE
jsk_rviz_plugins::FootstepDisplay::onInitialize
virtual void onInitialize()
Definition: footstep_display.cpp:178
jsk_rviz_plugins::FootstepDisplay::latest_footstep_
jsk_footstep_msgs::FootstepArray::ConstPtr latest_footstep_
Definition: footstep_display.h:142
rviz::Shape::Cube
Cube
rviz::BillboardLine::addPoint
void addPoint(const Ogre::Vector3 &point)


jsk_rviz_plugins
Author(s): Kei Okada , Yohei Kakiuchi , Shohei Fujii , Ryohei Ueda
autogenerated on Sat Jun 1 2024 02:47:15