SMACC2
Loading...
Searching...
No Matches
cl_nav2z Namespace Reference

Namespaces

namespace  components
 
namespace  odom_tracker
 

Classes

class  CbAbortNavigation
 
class  CbAbsoluteRotate
 
struct  CbActiveStop
 
struct  CbLoadWaypointsFile
 
class  CbNav2ZClientBehaviorBase
 
class  CbNavigateBackwards
 
class  CbNavigateForward
 
struct  CbNavigateForwardOptions
 
class  CbNavigateGlobalPosition
 
struct  CbNavigateGlobalPositionOptions
 
class  CbNavigateNamedWaypoint
 
class  CbNavigateNextWaypoint
 
class  CbNavigateNextWaypointFree
 
class  CbNavigateNextWaypointUntilReached
 
class  CbPauseSlam
 
struct  CbPositionControlFreeSpace
 
struct  CbPureSpinning
 
class  CbResumeSlam
 
class  CbRetry
 
class  CbRotate
 
class  CbRotateLookAt
 
struct  CbSaveSlamMap
 
class  CbSeekWaypoint
 
struct  CbSpiralMotion
 
struct  CbSpiralMotionOptions
 
class  CbStopNavigation
 
struct  CbTrackPathOdometry
 
struct  CbTrackPathSLAM
 
class  CbUndoPathBackwards
 
struct  CbUndoPathBackwardsOptions
 
class  CbWaitNav2Nodes
 
class  CbWaitPose
 
class  CbWaitTransform
 
class  ClNav2Z
 
class  CpAmcl
 
class  CpCostmapProxy
 
class  CpCostmapSwitch
 
class  CpGoalCheckerSwitcher
 
class  CpPlannerSwitcher
 
class  CpPose
 
class  CpSlamToolbox
 
class  CpWaypointNavigator
 
class  CpWaypointNavigatorBase
 
class  CpWaypointsVisualizer
 
struct  EvGoalWaypointReached
 
struct  EvWaypointFinal
 
struct  NavigateNextWaypointOptions
 
struct  Pose2D
 

Typedefs

template<typename TService >
using CbServiceCall = smacc2::client_behaviors::CbServiceCall<TService>
 

Enumerations

enum class  SpinningPlanner { Default , PureSpinning , Forward }
 
enum class  Nav2Nodes {
  PlannerServer , ControllerServer , RecoveriesServer , BtNavigator ,
  MapServer , None
}
 
enum class  WaitPoseStandardReferenceFrame { Map , Odometry }
 
enum class  StandardReferenceFrames { Map , Odometry }
 

Functions

std::string toString (Nav2Nodes value)
 
Nav2Nodes fromString (std::string str)
 
std::string referenceFrameToString (StandardReferenceFrames referenceFrame)
 

Variables

const std::string frameid = "map"
 

Typedef Documentation

◆ CbServiceCall

template<typename TService >
using cl_nav2z::CbServiceCall = smacc2::client_behaviors::CbServiceCall<TService>

Definition at line 33 of file cb_save_slam_map.hpp.

Enumeration Type Documentation

◆ Nav2Nodes

enum class cl_nav2z::Nav2Nodes
strong
Enumerator
PlannerServer 
ControllerServer 
RecoveriesServer 
BtNavigator 
MapServer 
None 

Definition at line 29 of file cb_wait_nav2_nodes.hpp.

◆ SpinningPlanner

enum class cl_nav2z::SpinningPlanner
strong
Enumerator
Default 
PureSpinning 
Forward 

Definition at line 120 of file cb_nav2z_client_behavior_base.hpp.

◆ StandardReferenceFrames

Enumerator
Map 
Odometry 

Definition at line 37 of file cp_pose.hpp.

◆ WaitPoseStandardReferenceFrame

Enumerator
Map 
Odometry 

Definition at line 28 of file cb_wait_pose.hpp.

29{
30 Map,
32};

Function Documentation

◆ fromString()

Nav2Nodes cl_nav2z::fromString ( std::string str)

Definition at line 117 of file cb_wait_nav2_nodes.cpp.

118{
119 if (id == "planner_server")
120 return Nav2Nodes::PlannerServer;
121 else if (id == "controller_server")
122 return Nav2Nodes::ControllerServer;
123 else if (id == "behavior_server")
124 return Nav2Nodes::RecoveriesServer;
125 else if (id == "bt_navigator")
126 return Nav2Nodes::BtNavigator;
127 else if (id == "map_server")
128 return Nav2Nodes::MapServer;
129 else
130 return Nav2Nodes::None;
131}

References BtNavigator, ControllerServer, MapServer, None, PlannerServer, and RecoveriesServer.

Referenced by cl_nav2z::CbWaitNav2Nodes::onMessageReceived().

Here is the caller graph for this function:

◆ referenceFrameToString()

std::string cl_nav2z::referenceFrameToString ( StandardReferenceFrames referenceFrame)

Definition at line 42 of file cp_pose.cpp.

43{
44 switch (referenceFrame)
45 {
46 case StandardReferenceFrames::Map:
47 return "map";
48 case StandardReferenceFrames::Odometry:
49 return "odom";
50 default:
51 return "odom";
52 }
53}

References Map, and Odometry.

◆ toString()

std::string cl_nav2z::toString ( Nav2Nodes value)

Definition at line 98 of file cb_wait_nav2_nodes.cpp.

99{
100 switch (value)
101 {
102 case Nav2Nodes::PlannerServer:
103 return "planner_server";
104 case Nav2Nodes::ControllerServer:
105 return "controller_server";
106 case Nav2Nodes::RecoveriesServer:
107 return "behavior_server";
108 case Nav2Nodes::BtNavigator:
109 return "bt_navigator";
110 case Nav2Nodes::MapServer:
111 return "map_server";
112 default:
113 return "";
114 }
115}

References BtNavigator, ControllerServer, MapServer, PlannerServer, and RecoveriesServer.

Referenced by cl_nav2z::CbWaitNav2Nodes::onEntry(), and cl_nav2z::CbWaitNav2Nodes::onMessageReceived().

Here is the caller graph for this function:

Variable Documentation

◆ frameid

const std::string cl_nav2z::frameid = "map"