YARP
Yet Another Robot Platform
INavigation2D.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2006-2020 Istituto Italiano di Tecnologia (IIT)
3  * All rights reserved.
4  *
5  * This software may be modified and distributed under the terms of the
6  * BSD-3-Clause license. See the accompanying LICENSE file for details.
7  */
8 
9 #ifndef YARP_DEV_INAVIGATION2D_H
10 #define YARP_DEV_INAVIGATION2D_H
11 
12 #include <yarp/os/Vocab.h>
13 #include <yarp/dev/api.h>
15 #include <yarp/dev/Map2DLocation.h>
16 #include <yarp/dev/Map2DPath.h>
17 #include <yarp/dev/Map2DArea.h>
18 #include <yarp/dev/MapGrid2D.h>
19 #include <vector>
20 #include <limits>
21 #include <string>
22 
23 namespace yarp {
24  namespace dev {
25  namespace Nav2D
26  {
27  class INavigation2DTargetActions;
28  class INavigation2DControlActions;
29  class INavigation2D;
30 
32  {
43  };
44 
46  {
47  global_map = yarp::os::createVocab('g', 'l', 'o', 'b'),
48  local_map = yarp::os::createVocab('l', 'o', 'c', 'a')
49  };
50 
52  {
54  local_trajectory = yarp::os::createVocab('l', 'o', 'c', 'a')
55  };
56 
57  namespace INavigation2DHelpers
58  {
59  //converts a string to a NavigationStatusEnum.
60  //navigation_status_error is returned if the string is not recognized.
62 
63  //converts a NavigationStatusEnum to a string.
65  }
66  }
67  }
68 }
69 
71 {
72 public:
77 
84 
91 
98  virtual bool gotoTargetByRelativeLocation(double x, double y) = 0;
99 
107  virtual bool gotoTargetByRelativeLocation(double x, double y, double theta) = 0;
108 
116  virtual bool getRelativeLocationOfCurrentTarget(double& x, double& y, double& theta) = 0;
117 
126  virtual bool applyVelocityCommand(double x_vel, double y_vel, double theta_vel, double timeout = 0.1) = 0;
127 };
128 
130 {
131 public:
136 
141  virtual bool getNavigationStatus(NavigationStatusEnum& status) = 0;
142 
147  virtual bool stopNavigation() = 0;
148 
154  virtual bool suspendNavigation(const double time_s= std::numeric_limits<double>::infinity()) = 0;
155 
160  virtual bool resumeNavigation() = 0;
161 
167  virtual bool recomputeCurrentNavigationPath() = 0;
168 
176 
183 
191 };
192 
201 {
202 public:
206  virtual ~INavigation2D() {}
207 
213  virtual bool gotoTargetByLocationName(std::string location_or_area_name) = 0;
214 
220  virtual bool checkInsideArea(std::string area_name) = 0;
221 
227  virtual bool checkInsideArea (Nav2D::Map2DArea area) = 0;
228 
236  virtual bool checkNearToLocation(Nav2D::Map2DLocation loc, double linear_tolerance, double angular_tolerance = std::numeric_limits<double>::infinity()) = 0;
237 
245  virtual bool checkNearToLocation(std::string location_name, double linear_tolerance, double angular_tolerance = std::numeric_limits<double>::infinity()) = 0;
246 
252  virtual bool getNameOfCurrentTarget(std::string& location_name) = 0;
253 
259  virtual bool storeCurrentPosition(std::string location_name) = 0;
260 
267  virtual bool storeLocation(std::string location_name, Nav2D::Map2DLocation loc) = 0;
268 
275  virtual bool getLocation(std::string location_name, Nav2D::Map2DLocation& loc) = 0;
276 
277 
284  virtual bool getArea(std::string area_name, Nav2D::Map2DArea& area) = 0;
285 
291  virtual bool getLocationsList(std::vector<std::string>& locations) = 0;
292 
298  virtual bool deleteLocation(std::string location_name) = 0;
299 
304  virtual bool clearAllLocations() = 0;
305 };
306 
313 
314 #endif // YARP_DEV_INAVIGATION2D_H
constexpr yarp::conf::vocab32_t VOCAB_NAV_RESUME
constexpr yarp::conf::vocab32_t VOCAB_NAV_GET_CURRENT_WAYPOINT
constexpr yarp::conf::vocab32_t VOCAB_NAV_GET_NAVIGATION_WAYPOINTS
constexpr yarp::conf::vocab32_t VOCAB_NAV_GET_NAV_MAP
constexpr yarp::conf::vocab32_t VOCAB_NAV_STOP
constexpr yarp::conf::vocab32_t VOCAB_NAV_SUSPEND
contains the definition of a Map2DArea type
contains the definition of a Map2DLocation type
contains the definition of a Map2DPath type
contains the definition of a map type
ILocalization2D interface.
virtual bool recomputeCurrentNavigationPath()=0
Forces the navigation system to recompute the path from the current robot position to the current goa...
virtual bool getAllNavigationWaypoints(yarp::dev::Nav2D::TrajectoryTypeEnum trajectory_type, yarp::dev::Nav2D::Map2DPath &waypoints)=0
Returns the list of waypoints generated by the navigation algorithm.
virtual bool getCurrentNavigationWaypoint(yarp::dev::Nav2D::Map2DLocation &curr_waypoint)=0
Returns the current waypoint pursued by the navigation algorithm.
virtual bool resumeNavigation()=0
Resume a previously suspended navigation task.
virtual bool getNavigationStatus(NavigationStatusEnum &status)=0
Gets the current status of the navigation task.
virtual bool stopNavigation()=0
Terminates the current navigation task.
virtual bool suspendNavigation(const double time_s=std::numeric_limits< double >::infinity())=0
Ask to the robot to suspend the current navigation task for a defined amount of time.
virtual bool getCurrentNavigationMap(yarp::dev::Nav2D::NavigationMapTypeEnum map_type, yarp::dev::Nav2D::MapGrid2D &map)=0
Returns the current navigation map processed by the navigation algorithm.
virtual bool gotoTargetByRelativeLocation(double x, double y)=0
Ask the robot to reach a position defined in the robot reference frame.
virtual bool gotoTargetByAbsoluteLocation(yarp::dev::Nav2D::Map2DLocation loc)=0
Ask the robot to reach a position defined in the world reference frame.
virtual bool getAbsoluteLocationOfCurrentTarget(yarp::dev::Nav2D::Map2DLocation &loc)=0
Gets the last navigation target in the world reference frame.
virtual bool applyVelocityCommand(double x_vel, double y_vel, double theta_vel, double timeout=0.1)=0
Apply a velocity command.
virtual bool gotoTargetByRelativeLocation(double x, double y, double theta)=0
Ask the robot to reach a position defined in the robot reference frame.
virtual bool getRelativeLocationOfCurrentTarget(double &x, double &y, double &theta)=0
Gets the last navigation target in the robot reference frame.
An interface to control the navigation of a mobile robot in a 2D environment.
virtual bool checkNearToLocation(Nav2D::Map2DLocation loc, double linear_tolerance, double angular_tolerance=std::numeric_limits< double >::infinity())=0
Check if the robot is currently near to the specified area.
virtual bool getLocation(std::string location_name, Nav2D::Map2DLocation &loc)=0
Retrieves a location previously stored by the user.
virtual bool storeCurrentPosition(std::string location_name)=0
Store the current location of the robot.
virtual ~INavigation2D()
Destructor.
virtual bool getNameOfCurrentTarget(std::string &location_name)=0
Gets the name of the current target, if available (set by gotoTargetByLocationName)
virtual bool gotoTargetByLocationName(std::string location_or_area_name)=0
Ask the robot to reach a previously stored location/area.
virtual bool checkInsideArea(Nav2D::Map2DArea area)=0
Check if the robot is currently inside the specified area.
virtual bool deleteLocation(std::string location_name)=0
Delete a location.
virtual bool getLocationsList(std::vector< std::string > &locations)=0
Get a list of all stored locations.
virtual bool clearAllLocations()=0
Delete all stored locations.
virtual bool storeLocation(std::string location_name, Nav2D::Map2DLocation loc)=0
Store a location specified by the user in the world reference frame.
virtual bool checkNearToLocation(std::string location_name, double linear_tolerance, double angular_tolerance=std::numeric_limits< double >::infinity())=0
Check if the robot is currently near to the specified area.
virtual bool getArea(std::string area_name, Nav2D::Map2DArea &area)=0
Retrieves an area previously stored by the user.
virtual bool checkInsideArea(std::string area_name)=0
Check if the robot is currently inside the specified area.
std::int32_t vocab32_t
Definition: numeric.h:52
std::string statusToString(NavigationStatusEnum status)
NavigationStatusEnum stringToStatus(std::string s)
@ navigation_status_preparing_before_move
Definition: INavigation2D.h:34
@ navigation_status_goal_reached
Definition: INavigation2D.h:37
@ navigation_status_waiting_obstacle
Definition: INavigation2D.h:36
constexpr yarp::conf::vocab32_t createVocab(char a, char b=0, char c=0, char d=0)
Definition: Vocab.h:22
The main, catch-all namespace for YARP.
Definition: environment.h:18
#define YARP_dev_API
Definition: api.h:19