marti_nav_path_plugin.h
Go to the documentation of this file.
1 // *****************************************************************************
2 //
3 // Copyright (c) 2021, Southwest Research Institute® (SwRI®)
4 // All rights reserved.
5 //
6 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions are met:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of Southwest Research Institute® (SwRI®) nor the
14 // names of its contributors may be used to endorse or promote products
15 // derived from this software without specific prior written permission.
16 //
17 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 // ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
21 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 //
28 // *****************************************************************************
29 
30 #ifndef MAPVIZ_PLUGINS_MARTI_NAV_PATH_PLUGIN_H_
31 #define MAPVIZ_PLUGINS_MARTI_NAV_PATH_PLUGIN_H_
32 
33 #include <string>
34 
35 #include <boost/circular_buffer.hpp>
36 
37 #include <mapviz/mapviz_plugin.h>
38 
39 #include <QObject>
40 #include <QGLWidget>
41 #include <QColor>
42 
43 #include <ros/subscriber.h>
44 
45 #include <mapviz/mapviz_plugin.h>
46 
47 #include <marti_nav_msgs/Path.h>
48 
50 
51 #include "ui_marti_nav_path_config.h"
52 
53 namespace mapviz_plugins
54 {
56 {
57  Q_OBJECT
58 
59  Ui::marti_nav_path_config ui_;
60  QWidget* config_widget_;
61  std::string topic_;
62 
64 
65  boost::circular_buffer<marti_nav_msgs::Path> items_;
66 
67 public:
68 
70 
71  bool Initialize(QGLWidget* canvas);
72  void Shutdown();
73  void Draw(double x, double y, double scale);
74  void Transform();
75 
76  void LoadConfig(const YAML::Node& node, const std::string& path);
77  void SaveConfig(YAML::Emitter& emitter, const std::string& path);
78 
79  QWidget* GetConfigWidget(QWidget* parent);
80 
81 protected:
82 
83  void PrintInfo(const std::string& message);
84  void PrintWarning(const std::string& message);
85  void PrintError(const std::string& message);
86 
87  void setColorForDirection(const bool in_reverse);
88 
89  // Callbacks and helpers for them
91  void handlePath(const marti_nav_msgs::Path& path);
92  void handlePathPoint(const marti_nav_msgs::PathPoint& pt);
93 
94 protected Q_SLOTS: // NOLINT - Qt SLOTS
95 
96  void selectTopic();
97  void topicEdited();
98  void historyChanged();
99 }; // class MartiNavPathPlugin
100 } // namespace mapviz_plugins
101 #endif // MAPVIZ_PLUGINS_MARTI_NAV_PATH_PLUGIN_H_
mapviz_plugins::MartiNavPathPlugin::SaveConfig
void SaveConfig(YAML::Emitter &emitter, const std::string &path)
Definition: marti_nav_path_plugin.cpp:283
mapviz_plugins::MartiNavPathPlugin::config_widget_
QWidget * config_widget_
Definition: marti_nav_path_plugin.h:60
mapviz_plugins::MartiNavPathPlugin::Draw
void Draw(double x, double y, double scale)
Definition: marti_nav_path_plugin.cpp:130
mapviz_plugins::MartiNavPathPlugin::Shutdown
void Shutdown()
Definition: marti_nav_path_plugin.cpp:89
boost::shared_ptr< ShapeShifter const >
mapviz_plugins::MartiNavPathPlugin::historyChanged
void historyChanged()
Definition: marti_nav_path_plugin.cpp:93
mapviz_plugins::MartiNavPathPlugin::PrintError
void PrintError(const std::string &message)
Definition: marti_nav_path_plugin.cpp:344
mapviz_plugins::MartiNavPathPlugin::selectTopic
void selectTopic()
Definition: marti_nav_path_plugin.cpp:358
mapviz_plugins::MartiNavPathPlugin::setColorForDirection
void setColorForDirection(const bool in_reverse)
Definition: marti_nav_path_plugin.cpp:98
mapviz_plugins::MartiNavPathPlugin::handlePath
void handlePath(const marti_nav_msgs::Path &path)
Definition: marti_nav_path_plugin.cpp:415
mapviz_plugins::MartiNavPathPlugin::handlePathPoint
void handlePathPoint(const marti_nav_msgs::PathPoint &pt)
Definition: marti_nav_path_plugin.cpp:421
mapviz_plugins::MartiNavPathPlugin::topicEdited
void topicEdited()
Definition: marti_nav_path_plugin.cpp:373
mapviz_plugins::MartiNavPathPlugin::topic_
std::string topic_
Definition: marti_nav_path_plugin.h:61
mapviz_plugins::MartiNavPathPlugin::PrintWarning
void PrintWarning(const std::string &message)
Definition: marti_nav_path_plugin.cpp:330
mapviz_plugins::MartiNavPathPlugin::PrintInfo
void PrintInfo(const std::string &message)
Definition: marti_nav_path_plugin.cpp:316
subscriber.h
mapviz_plugins::MartiNavPathPlugin::messageCallback
void messageCallback(const topic_tools::ShapeShifter::ConstPtr &msg)
Definition: marti_nav_path_plugin.cpp:389
mapviz_plugins::MartiNavPathPlugin::ui_
Ui::marti_nav_path_config ui_
Definition: marti_nav_path_plugin.h:59
mapviz_plugins::MartiNavPathPlugin::LoadConfig
void LoadConfig(const YAML::Node &node, const std::string &path)
Definition: marti_nav_path_plugin.cpp:217
mapviz_plugins::MartiNavPathPlugin::subscriber_
ros::Subscriber subscriber_
Definition: marti_nav_path_plugin.h:63
mapviz_plugins::MartiNavPathPlugin::GetConfigWidget
QWidget * GetConfigWidget(QWidget *parent)
Definition: marti_nav_path_plugin.cpp:309
mapviz_plugins::MartiNavPathPlugin::Initialize
bool Initialize(QGLWidget *canvas)
Definition: marti_nav_path_plugin.cpp:83
shape_shifter.h
mapviz_plugins::MartiNavPathPlugin::Transform
void Transform()
Definition: marti_nav_path_plugin.cpp:213
mapviz_plugins::MartiNavPathPlugin::MartiNavPathPlugin
MartiNavPathPlugin()
Definition: marti_nav_path_plugin.cpp:52
mapviz::MapvizPlugin
mapviz_plugins
Definition: attitude_indicator_plugin.h:61
mapviz_plugins::MartiNavPathPlugin
Definition: marti_nav_path_plugin.h:55
mapviz_plugins::MartiNavPathPlugin::items_
boost::circular_buffer< marti_nav_msgs::Path > items_
Definition: marti_nav_path_plugin.h:65
ros::Subscriber
mapviz_plugin.h


mapviz_plugins
Author(s): Marc Alban
autogenerated on Wed Jan 17 2024 03:27:49