SMACC2
Loading...
Searching...
No Matches
Namespaces | Classes | Typedefs | Enumerations | Functions | Variables
cl_nitrosz Namespace Reference

Namespaces

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
 
class  CbStopNavigation
 
class  CbUndoPathBackwards
 
struct  CbUndoPathBackwardsOptions
 
class  CbWaitNav2Nodes
 
class  CbWaitPose
 
class  CbWaitTransform
 
class  ClNitrosZ
 
class  CpAmcl
 
class  CpCostmapProxy
 
class  CpCostmapSwitch
 
class  CpGoalCheckerSwitcher
 
class  CpPlannerSwitcher
 
class  CpSlamToolbox
 
class  CpWaypointNavigator
 
class  CpWaypointNavigatorBase
 
class  CpWaypointsVisualizer
 
struct  EvGoalWaypointReached
 
struct  EvWaypointFinal
 
struct  NavigateNextWaypointOptions
 
class  Pose
 
struct  Pose2D
 

Typedefs

template<typename TService >
using CbServiceCall = smacc2::client_behaviors::CbServiceCall< TService >
 
typedef smacc2::client_bases::SmaccActionClientBase< nav2_msgs::action::NavigateToPose > Base
 
typedef Base::WrappedResult WrappedResult
 

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

◆ Base

typedef smacc2::client_bases::SmaccActionClientBase<nav2_msgs::action::NavigateToPose> cl_nitrosz::Base

Definition at line 28 of file nitrosz_client.cpp.

◆ CbServiceCall

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

Definition at line 33 of file cb_save_slam_map.hpp.

◆ WrappedResult

Definition at line 29 of file nitrosz_client.cpp.

Enumeration Type Documentation

◆ Nav2Nodes

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

Definition at line 29 of file cb_wait_nitros_nodes.hpp.

30{
31 PlannerServer,
32 ControllerServer,
33 RecoveriesServer,
34 BtNavigator,
35 MapServer,
36 None
37};

◆ SpinningPlanner

enum class cl_nitrosz::SpinningPlanner
strong
Enumerator
Default 
PureSpinning 
Forward 

Definition at line 61 of file cb_nitrosz_client_behavior_base.hpp.

62{
63 Default,
64 PureSpinning,
65 Forward
66};

◆ StandardReferenceFrames

Enumerator
Map 
Odometry 

Definition at line 37 of file cp_pose.hpp.

38{
39 Map,
40 Odometry
41};

◆ WaitPoseStandardReferenceFrame

Enumerator
Map 
Odometry 

Definition at line 28 of file cb_wait_pose.hpp.

29{
30 Map,
31 Odometry
32};

Function Documentation

◆ fromString()

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

Definition at line 117 of file cb_wait_nitros_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_nitrosz::CbWaitNav2Nodes::onMessageReceived().

Here is the caller graph for this function:

◆ referenceFrameToString()

std::string cl_nitrosz::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_nitrosz::toString ( Nav2Nodes  value)

Definition at line 98 of file cb_wait_nitros_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_nitrosz::CbWaitNav2Nodes::onEntry(), and cl_nitrosz::CbWaitNav2Nodes::onMessageReceived().

Here is the caller graph for this function:

Variable Documentation

◆ frameid

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