SMACC2
Loading...
Searching...
No Matches
cl_px4_mr::CbLoiter Class Reference

#include <cb_loiter.hpp>

Inheritance diagram for cl_px4_mr::CbLoiter:
Inheritance graph
Collaboration diagram for cl_px4_mr::CbLoiter:
Collaboration graph

Public Member Functions

 CbLoiter (FlightPatternLoiterParams params={}, PathFollowerParams follower={})
 
 CbLoiter (int count, float radius=5.0f)
 
void setParams (const FlightPatternLoiterParams &params)
 
const FlightPatternLoiterParams & params () const
 
void setCenter (float x, float y)
 
- Public Member Functions inherited from cl_px4_mr::CbPx4PathFollowerBase
 CbPx4PathFollowerBase (PathFollowerParams params={})
 
virtual ~CbPx4PathFollowerBase ()
 
void setFollowerParams (const PathFollowerParams &params)
 
const PathFollowerParams & followerParams () const
 
void onEntry () override
 
void onExit () override
 
void update () override
 
- Public Member Functions inherited from cl_px4_mr::CbPx4ClientBehaviorBase
template<typename TOrthogonal , typename TSourceObject >
void onStateOrthogonalAllocation ()
 
virtual ~CbPx4ClientBehaviorBase ()
 
void setTimeout (std::chrono::milliseconds timeout)
 
bool hasTimeout () const
 
- Public Member Functions inherited from smacc2::SmaccAsyncClientBehavior
template<typename TOrthogonal , typename TSourceObject >
void onStateOrthogonalAllocation ()
 
virtual ~SmaccAsyncClientBehavior ()
 
template<typename TCallback , typename T >
smacc2::SmaccSignalConnection onSuccess (TCallback callback, T *object)
 
template<typename TCallback , typename T >
smacc2::SmaccSignalConnection onFinished (TCallback callback, T *object)
 
template<typename TCallback , typename T >
smacc2::SmaccSignalConnection onFailure (TCallback callback, T *object)
 
void requestForceFinish ()
 
void executeOnEntry () override
 
void executeOnExit () override
 
void waitOnEntryThread (bool requestFinish)
 
template<typename TCallbackMethod , typename T >
smacc2::SmaccSignalConnection onSuccess (TCallbackMethod callback, T *object)
 
template<typename TCallbackMethod , typename T >
smacc2::SmaccSignalConnection onFinished (TCallbackMethod callback, T *object)
 
template<typename TCallbackMethod , typename T >
smacc2::SmaccSignalConnection onFailure (TCallbackMethod callback, T *object)
 
- Public Member Functions inherited from smacc2::ISmaccClientBehavior
 ISmaccClientBehavior ()
 
virtual ~ISmaccClientBehavior ()
 
ISmaccStateMachine * getStateMachine ()
 
std::string getName () const
 
template<typename SmaccClientType >
void requiresClient (SmaccClientType *&storage)
 
template<typename SmaccComponentType >
void requiresComponent (SmaccComponentType *&storage, ComponentRequirement requirementType=ComponentRequirement::SOFT)
 
template<typename SmaccComponentType >
void requiresComponent (std::string name, SmaccComponentType *&storage, ComponentRequirement requirementType=ComponentRequirement::SOFT)
 
- Public Member Functions inherited from smacc2::ISmaccUpdatable
 ISmaccUpdatable ()
 
 ISmaccUpdatable (rclcpp::Duration duration)
 
void executeUpdate (rclcpp::Node::SharedPtr node)
 
void setUpdatePeriod (rclcpp::Duration duration)
 

Protected Member Functions

std::vector< NedPoint > buildPath (const NedPoint &current) override
 
const char * behaviorName () const override
 
- Protected Member Functions inherited from cl_px4_mr::CbPx4PathFollowerBase
virtual void onPathStarted (const std::vector< NedPoint > &)
 
virtual void onPathCompleted ()
 
float totalLength () const
 
float progressFraction () const
 
- Protected Member Functions inherited from cl_px4_mr::CbPx4ClientBehaviorBase
virtual void wireCompletionSignals ()
 
void postPx4Success ()
 
void postPx4Failure ()
 
- Protected Member Functions inherited from smacc2::SmaccAsyncClientBehavior
void postSuccessEvent ()
 
void postFailureEvent ()
 
virtual void dispose () override
 
bool isShutdownRequested ()
 onEntry is executed in a new thread. However the current state cannot be left until the onEntry thread finishes. This flag can be checked from the onEntry thread to force finishing the thread.
 
- Protected Member Functions inherited from smacc2::ISmaccClientBehavior
virtual void runtimeConfigure ()
 
template<typename EventType >
void postEvent (const EventType &ev)
 
template<typename EventType >
void postEvent ()
 
ISmaccState * getCurrentState ()
 
virtual rclcpp::Node::SharedPtr getNode () const
 
virtual rclcpp::Logger getLogger () const
 
- Protected Member Functions inherited from smacc2::ISmaccUpdatable

Private Attributes

FlightPatternLoiterParams params_
 

Additional Inherited Members

- Protected Attributes inherited from cl_px4_mr::CbPx4PathFollowerBase
PathFollowerParams followerParams_
 
- Protected Attributes inherited from cl_px4_mr::CbPx4ClientBehaviorBase
CpVehicleCommand * vehicleCommand_ = nullptr
 
CpVehicleStatus * vehicleStatus_ = nullptr
 
CpTrajectorySetpoint * trajectorySetpoint_ = nullptr
 
CpGoalChecker * goalChecker_ = nullptr
 
CpVehicleLocalPosition * localPosition_ = nullptr
 
CpOffboardKeepAlive * offboardKeepAlive_ = nullptr
 

Detailed Description

Definition at line 32 of file cb_loiter.hpp.

Constructor & Destructor Documentation

◆ CbLoiter() [1/2]

cl_px4_mr::CbLoiter::CbLoiter ( FlightPatternLoiterParams params = {},
PathFollowerParams follower = {} )
explicit

Definition at line 26 of file cb_loiter.cpp.

28{
29}
FlightPatternLoiterParams params_
Definition cb_loiter.hpp:51
const FlightPatternLoiterParams & params() const
Definition cb_loiter.hpp:39
CbPx4PathFollowerBase(PathFollowerParams params={})

◆ CbLoiter() [2/2]

cl_px4_mr::CbLoiter::CbLoiter ( int count,
float radius = 5.0f )
explicit

Member Function Documentation

◆ behaviorName()

const char * cl_px4_mr::CbLoiter::behaviorName ( ) const
inlineoverrideprotectedvirtual

Reimplemented from cl_px4_mr::CbPx4PathFollowerBase.

Definition at line 48 of file cb_loiter.hpp.

48{ return "CbLoiter"; }

◆ buildPath()

std::vector< NedPoint > cl_px4_mr::CbLoiter::buildPath ( const NedPoint & current)
overrideprotectedvirtual

Implements cl_px4_mr::CbPx4PathFollowerBase.

Definition at line 37 of file cb_loiter.cpp.

38{
40 RCLCPP_INFO(
41 getLogger(), "CbLoiter: %d x %s circle(s), r=%.1f m, centre (%.1f, %.1f)", params_.count,
43 std::isnan(params_.centerX) ? current.x : params_.centerX,
44 std::isnan(params_.centerY) ? current.y : params_.centerY);
45 return generateFlightPatternLoiter(params_, current);
46}
virtual rclcpp::Logger getLogger() const
std::vector< NedPoint > generateFlightPatternLoiter(const FlightPatternLoiterParams &p, const NedPoint &current)
const char * turnName(Turn t)

References cl_px4_mr::FlightPatternLoiterParams::centerX, cl_px4_mr::FlightPatternLoiterParams::centerY, cl_px4_mr::FlightPatternLoiterParams::count, cl_px4_mr::FlightPatternLoiterParams::direction, cl_px4_mr::FlightPatternLoiterParams::faceCenter, cl_px4_mr::CbPx4PathFollowerBase::followerParams_, cl_px4_mr::generateFlightPatternLoiter(), smacc2::ISmaccClientBehavior::getLogger(), params_, cl_px4_mr::PER_VERTEX, cl_px4_mr::FlightPatternLoiterParams::radius, cl_px4_mr::TANGENT, cl_px4_mr::turnName(), cl_px4_mr::NedPoint::x, cl_px4_mr::NedPoint::y, and cl_px4_mr::PathFollowerParams::yawMode.

Here is the call graph for this function:

◆ params()

const FlightPatternLoiterParams & cl_px4_mr::CbLoiter::params ( ) const
inline

Definition at line 39 of file cb_loiter.hpp.

39{ return params_; }

References params_.

Referenced by setParams().

Here is the caller graph for this function:

◆ setCenter()

void cl_px4_mr::CbLoiter::setCenter ( float x,
float y )
inline

◆ setParams()

void cl_px4_mr::CbLoiter::setParams ( const FlightPatternLoiterParams & params)
inline

Definition at line 38 of file cb_loiter.hpp.

38{ params_ = params; }

References params(), and params_.

Here is the call graph for this function:

Member Data Documentation

◆ params_

FlightPatternLoiterParams cl_px4_mr::CbLoiter::params_
private

Definition at line 51 of file cb_loiter.hpp.

Referenced by buildPath(), CbLoiter(), params(), setCenter(), and setParams().


The documentation for this class was generated from the following files: