|
YARP
Yet Another Robot Platform
|
|
Go to the documentation of this file.
9 #ifndef YARP_DEV_INAVIGATION2D_H
10 #define YARP_DEV_INAVIGATION2D_H
27 class INavigation2DTargetActions;
28 class INavigation2DControlActions;
57 namespace INavigation2DHelpers
154 virtual bool suspendNavigation(
const double time_s= std::numeric_limits<double>::infinity()) = 0;
245 virtual bool checkNearToLocation(std::string location_name,
double linear_tolerance,
double angular_tolerance = std::numeric_limits<double>::infinity()) = 0;
314 #endif // YARP_DEV_INAVIGATION2D_H
virtual bool clearAllLocations()=0
Delete all stored locations.
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.
contains the definition of a map type
constexpr yarp::conf::vocab32_t createVocab(char a, char b=0, char c=0, char d=0)
@ navigation_status_thinking
contains the definition of a Map2DArea type
virtual bool applyVelocityCommand(double x_vel, double y_vel, double theta_vel, double timeout=0.1)=0
Apply a velocity command.
virtual bool gotoTargetByLocationName(std::string location_or_area_name)=0
Ask the robot to reach a previously stored location/area.
virtual bool storeLocation(std::string location_name, Nav2D::Map2DLocation loc)=0
Store a location specified by the user in the world reference frame.
constexpr yarp::conf::vocab32_t VOCAB_NAV_SUSPEND
virtual bool resumeNavigation()=0
Resume a previously suspended navigation task.
ILocalization2D interface.
An interface to control the navigation of a mobile robot in a 2D environment.
constexpr yarp::conf::vocab32_t VOCAB_NAV_GET_CURRENT_WAYPOINT
virtual bool checkInsideArea(Nav2D::Map2DArea area)=0
Check if the robot is currently inside the specified area.
virtual bool getAbsoluteLocationOfCurrentTarget(yarp::dev::Nav2D::Map2DLocation &loc)=0
Gets the last navigation target in the world reference frame.
virtual bool stopNavigation()=0
Terminates the current navigation task.
@ navigation_status_paused
constexpr yarp::conf::vocab32_t VOCAB_NAV_GET_NAVIGATION_WAYPOINTS
constexpr yarp::conf::vocab32_t VOCAB_NAV_GET_NAV_MAP
virtual ~INavigation2D()
Destructor.
virtual bool gotoTargetByRelativeLocation(double x, double y)=0
Ask the robot to reach a position defined in the robot reference frame.
virtual bool getNavigationStatus(NavigationStatusEnum &status)=0
Gets the current status of the navigation task.
virtual bool storeCurrentPosition(std::string location_name)=0
Store the current location of the robot.
virtual ~INavigation2DTargetActions()
Destructor.
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 gotoTargetByRelativeLocation(double x, double y, double theta)=0
Ask the robot to reach a position defined in the robot reference frame.
contains the definition of a Map2DLocation type
NavigationStatusEnum stringToStatus(std::string s)
@ navigation_status_moving
@ navigation_status_failing
@ navigation_status_goal_reached
@ navigation_status_aborted
virtual bool gotoTargetByAbsoluteLocation(yarp::dev::Nav2D::Map2DLocation loc)=0
Ask the robot to reach a position defined in the world reference frame.
virtual bool getNameOfCurrentTarget(std::string &location_name)=0
Gets the name of the current target, if available (set by gotoTargetByLocationName)
contains the definition of a Map2DPath type
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.
@ navigation_status_waiting_obstacle
constexpr yarp::conf::vocab32_t VOCAB_NAV_RESUME
virtual bool getLocationsList(std::vector< std::string > &locations)=0
Get a list of all stored locations.
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.
std::string statusToString(NavigationStatusEnum status)
constexpr yarp::conf::vocab32_t VOCAB_NAV_STOP
virtual bool getRelativeLocationOfCurrentTarget(double &x, double &y, double &theta)=0
Gets the last navigation target in the robot reference frame.
virtual bool checkInsideArea(std::string area_name)=0
Check if the robot is currently inside the specified area.
The main, catch-all namespace for YARP.
virtual bool getCurrentNavigationWaypoint(yarp::dev::Nav2D::Map2DLocation &curr_waypoint)=0
Returns the current waypoint pursued by the navigation algorithm.
@ navigation_status_error
virtual bool recomputeCurrentNavigationPath()=0
Forces the navigation system to recompute the path from the current robot position to the current goa...
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 deleteLocation(std::string location_name)=0
Delete a location.
virtual bool getLocation(std::string location_name, Nav2D::Map2DLocation &loc)=0
Retrieves a location previously stored by the user.
virtual ~INavigation2DControlActions()
Destructor.
@ navigation_status_preparing_before_move
virtual bool getArea(std::string area_name, Nav2D::Map2DArea &area)=0
Retrieves an area previously stored by the user.