AGX Dynamics 2.42.1.1
Loading...
Searching...
No Matches
agxSensor::Odometer Class Reference

Odometer instance class defined by an attachment constraint and a model. More...

#include <Odometer.h>

+ Inheritance diagram for agxSensor::Odometer:

Public Member Functions

 Odometer (agx::CylindricalJoint *cylindrical, OdometerModel *model)
 Construct this odometer with the given model and attached to the given cylindrical joint constraint.
 
 Odometer (agx::Hinge *hinge, OdometerModel *model)
 Construct this odometer with the given model and attached to the given hinge constraint.
 
 Odometer (agx::SlackCylindricalJoint *cylindrical, OdometerModel *model)
 Construct this odometer with the given model and attached to the given slack cylindrical joint constraint.
 
 Odometer (agx::SlackHingeJoint *hinge, OdometerModel *model)
 Construct this odometer with the given model and attached to the given slack hinge constraint.
 
 Odometer (agx::SplineJoint *spline, OdometerModel *model)
 Construct this odometer with the given model and attached to the given spline constraint.
 
 Odometer (agxVehicle::WheelJoint *wheel, OdometerModel *model)
 Construct this odometer with the given model and attached to the given wheel joint constraint.
 
virtual agx::ConstraintgetConstraint () const override
 
OdometerModelgetModel () const
 
OdometerOutputHandlergetOutputHandler () const
 
virtual ISensorOutputHandlergetOutputHandlerBase () const override
 
void setConstraint (agx::CylindricalJoint *cylindrical)
 Assign a new parent cylindrical joint to attach this odometer to.
 
void setConstraint (agx::Hinge *hinge)
 Assign a new parent hinge joint to attach this odometer to.
 
void setConstraint (agx::SlackCylindricalJoint *cylindrical)
 Assign a new parent slack cylindrical joint to attach this odometer to.
 
void setConstraint (agx::SlackHingeJoint *hinge)
 Assign a new parent slack hinge joint to attach this odometer to.
 
void setConstraint (agx::SplineJoint *spline)
 Assign a new parent spline joint to attach this odometer to.
 
void setConstraint (agxVehicle::WheelJoint *wheel)
 Assign a new parent wheel joint to attach this odometer to.
 
- Public Member Functions inherited from agxSensor::ConstraintAttachedSensor
 ConstraintAttachedSensor ()=default
 Default constructor.
 
virtual agx::ConstraintgetConstraint () const =0
 
virtual void setConstraint (agx::Constraint *constraint)=0
 Assign a new parent constraint to attach this sensor to.
 
- Public Member Functions inherited from agxSensor::Sensor
 Sensor ()=default
 Default constructor.
 
ISensorOutputHandlergetOutputHandler () const
 
virtual ISensorOutputHandlergetOutputHandlerBase () const =0
 
- Public Member Functions inherited from agxSensor::SystemNode
 SystemNode (const SystemNode &)=delete
 Disallow direct copying of nodes.
 
virtual ~SystemNode ()=default
 
bool addChild (SystemNode *child)
 Add unique child to this node.
 
virtual bool addNotification ()
 Called when this system node has been added to a sensor environment.
 
bool appendChild (SystemNode *child)
 Append child to vector of children, silently.
 
virtual void cleanup ()=0
 The sensor environment is being put down, clean everything.
 
virtual void complete ()
 Complete the execution of this system, finishing the integration forward in time.
 
bool detachChild (SystemNode *child)
 Detach/erase child from vector of children, silently.
 
virtual bool eraseAndConnect ()
 Erase this node from the tree and connect its children to the current parent of this node.
 
virtual void execute (const CallbackData &data)
 Execute this system, integrating it data.dt forward in time.
 
template<typename T >
T * findChild (bool recurse=true) const
 Find child of given type.
 
template<typename PredicateT >
SystemNodefindChild (PredicateT pred, bool recurse=true) const
 Find child given predicate pred.
 
template<typename T >
T * findParent () const
 
template<typename PredicateT >
SystemNodefindParent (PredicateT pred) const
 Find parent given predicate.
 
template<typename T >
T * getChild () const
 Searches children for a node of given type.
 
SystemNodegetChild (size_t index) const
 
bool getEnable () const
 
EnvironmentgetEnvironment () const
 
const agx::NamegetName () const
 
size_t getNumChildren () const
 
SystemNodegetParent () const
 
SystemNodegetRoot () const
 
bool hasChild (const SystemNode *child, bool recurse=true) const
 
virtual bool insertParent (SystemNode &parent)
 Inserts new parent to this node.
 
virtual bool onAdd (agx::Referenced &instance)
 Called when an object has been added to the sensor environment.
 
virtual void onChildAdded (SystemNode &child)
 Called when child has been added to this parent.
 
virtual void onChildRemoved (SystemNode &child)
 Called when child has been removed from this parent.
 
virtual bool onRemove (agx::Referenced &instance)
 Called when an object has been removed from the sensor environment.
 
bool removeChild (SystemNode *child)
 Remove child from this node.
 
virtual void removeNotification ()
 Called when this system node is being removed from a sensor environment.
 
virtual void result (const CallbackData &data)
 If necessary assemble, and fetch results related to this system node after a step by data.dt has been completed.
 
void setEnable (bool enable)
 Enable/disable this node.
 
void setName (const agx::Name &name)
 Assign name to this node.
 
virtual void synchronize (const CallbackData &data)
 Synchronization from the main thread.
 
virtual void synchronizeGraphics (const agxRender::RenderManager &renderManager)
 At the very end of a step, synchronize any graphics related aspects of the system node.
 
template<typename VisitorT >
SystemNodevisitBf (VisitorT visitor) const
 Visit the tree from, including, this node until callback returns true - using breadth first traversal.
 
template<typename VisitorT >
void visitChildren (VisitorT visitor, bool recurse=true) const
 Visit all children with func as void( const SystemNode& child ).
 
template<typename VisitorT >
SystemNodevisitChildrenBf (VisitorT visitor) const
 Visit the tree from the children of this node until callback returns true - using breadth first traversal.
 
template<typename VisitorT >
SystemNodevisitChildrenDf (VisitorT visitor) const
 Visit the tree from the children of this node until callback returns true - using depth first traversal.
 
template<typename T , typename VisitorT >
void visitChildrenOfType (VisitorT visitor, bool recurse=true) const
 Visit all children with func as void( const T& child ).
 
template<typename VisitorT >
SystemNodevisitDf (VisitorT visitor) const
 Visit the tree from, including, this node until callback returns true - using depth first traversal.
 
- Public Member Functions inherited from agx::Referenced
 Referenced ()
 Default constructor.
 
 Referenced (const Referenced &)
 
template<typename T >
T * as ()
 Subclass casting.
 
template<typename T >
const T * as () const
 
template<typename T >
T * asSafe ()
 Safe subclass casting, return nullptr if template type does not match.
 
template<typename T >
const T * asSafe () const
 
int getReferenceCount () const
 
template<typename T >
bool is () const
 Subclass test.
 
Referencedoperator= (const Referenced &)
 Assignment operator. Will increment the number of references to the referenced object.
 
void reference (void *ptr=nullptr) const
 Explicitly increment the reference count by one, indicating that this object has another pointer which is referencing it.
 
void unreference (void *ptr=nullptr) const
 Decrement the reference count by one, indicating that a pointer to this object is referencing it.
 
void unreference_nodelete () const
 Decrement the reference count by one, indicating that a pointer to this object is referencing it.
 
- Public Member Functions inherited from agxStream::Serializable
virtual ~Serializable ()
 Destructor for normal C++ use but hidden from SWIG bindings.
 
virtual const char * getClassName () const
 
bool getEnableSerialization () const
 
bool getEnableUuidGeneration ()
 
agx::UInt32 getIndex () const
 This index is given at creation of this object.
 
virtual StorageAgent * getStorageAgent () const =0
 
agx::Uuid getUuid () const
 
bool isFinished () const
 
void setEnableSerialization (bool flag)
 Set to false to disable serialization of this object.
 
void setFinished ()
 Tells this class that it is restored correctly and should not be deleted during destruction of an Archive.
 
void setUuid (const agx::Uuid &uuid)
 Explicitly set a Uuid on a serializable object.
 

Static Public Member Functions

static Odometerfind (const agxSDK::Simulation *simulation, const agx::Name &name)
 Find odometer given name.
 
static Odometerfind (const Environment *environment, const agx::Name &name)
 Find odometer given name.
 
static OdometerPtrVector findAll (const agxSDK::Simulation *simulation)
 Find all odometers.
 
static OdometerPtrVector findAll (const agxSDK::Simulation *simulation, const agx::Name &name)
 Find all odometers, given name.
 
static OdometerPtrVector findAll (const Environment *environment)
 Find all odometers.
 
static OdometerPtrVector findAll (const Environment *environment, const agx::Name &name)
 Find all odometers, given name.
 
- Static Public Member Functions inherited from agx::Referenced
template<typename T >
static bool ValidateCast (const Referenced *object)
 
- Static Public Member Functions inherited from agxStream::Serializable
static void setEnableUuidGeneration (bool flag)
 Specify if there should be UUID:s generated for each new Serializable object. By default it is enabled.
 

Additional Inherited Members

- Protected Member Functions inherited from agx::Referenced
virtual ~Referenced ()
 Destructor.
 
void allocateObserverVector () const
 
void deleteUsingDeleteHandler () const
 
- Protected Member Functions inherited from agxStream::Serializable
 Serializable ()
 Default constructor.
 
 Serializable (const Serializable &other)
 Copy constructor.
 
void generateUuid ()
 
- Static Protected Member Functions inherited from agx::Referenced
static DeleteHandlergetDeleteHandler ()
 
static void setDeleteHandler (DeleteHandler *handler)
 Internal: Set a DeleteHandler to which deletion of all referenced counted objects will be delegated to.
 
- Protected Attributes inherited from agx::Referenced
Mutex m_mutex
 
ObserverContainer m_observers
 
AtomicValue m_refCount
 

Detailed Description

Odometer instance class defined by an attachment constraint and a model.

Any output is accessed through the OdometerOutputHandler.

Note
This odometer represents a regular, wheel encoder-based odometer.

Definition at line 42 of file Odometer.h.

Constructor & Destructor Documentation

◆ Odometer() [1/6]

agxSensor::Odometer::Odometer ( agx::CylindricalJoint cylindrical,
OdometerModel model 
)

Construct this odometer with the given model and attached to the given cylindrical joint constraint.

Note
This odometer instance is invalid if the given model is nullptr.
This odometer instance only samples the rotational DoF of the cylindrical joint.
Parameters
cylindrical- cylindrical constraint to attach to and sample from
model- model defining the parameters of this odometer instance, invalid if nullptr

◆ Odometer() [2/6]

agxSensor::Odometer::Odometer ( agx::Hinge hinge,
OdometerModel model 
)

Construct this odometer with the given model and attached to the given hinge constraint.

Note
This odometer instance is invalid if the given model is nullptr.
Parameters
hinge- hinge constraint to attach to and sample from
model- model defining the parameters of this odometer instance, invalid if nullptr

◆ Odometer() [3/6]

agxSensor::Odometer::Odometer ( agx::SplineJoint spline,
OdometerModel model 
)

Construct this odometer with the given model and attached to the given spline constraint.

Note
This odometer instance is invalid if the given model is nullptr.
This odometer instance only samples the rotational DoF of the spline joint.
Parameters
spline- spline constraint to attach to and sample from
model- model defining the parameters of this odometer instance, invalid if nullptr

◆ Odometer() [4/6]

agxSensor::Odometer::Odometer ( agx::SlackCylindricalJoint cylindrical,
OdometerModel model 
)

Construct this odometer with the given model and attached to the given slack cylindrical joint constraint.

Note
This odometer instance is invalid if the given model is nullptr.
This odometer instance only samples the rotational DoF of the slack cylindrical joint.
Parameters
cylindrical- slack cylindrical constraint to attach to and sample from
model- model defining the parameters of this odometer instance, invalid if nullptr

◆ Odometer() [5/6]

agxSensor::Odometer::Odometer ( agx::SlackHingeJoint hinge,
OdometerModel model 
)

Construct this odometer with the given model and attached to the given slack hinge constraint.

Note
This odometer instance is invalid if the given model is nullptr.
Parameters
hinge- slack hinge constraint to attach to and sample from
model- model defining the parameters of this odometer instance, invalid if nullptr

◆ Odometer() [6/6]

agxSensor::Odometer::Odometer ( agxVehicle::WheelJoint wheel,
OdometerModel model 
)

Construct this odometer with the given model and attached to the given wheel joint constraint.

Note
This odometer instance is invalid if the given model is nullptr.
This odometer instance only samples the wheel rotation of the wheel joint.
Parameters
wheel- wheel constraint to attach to and sample from
model- model defining the parameters of this odometer instance, invalid if nullptr

Member Function Documentation

◆ find() [1/2]

static Odometer * agxSensor::Odometer::find ( const agxSDK::Simulation simulation,
const agx::Name name 
)
static

Find odometer given name.

Parameters
simulation- simulation with a sensor environment
name- name of odometer instance to search for
Returns
first odometer instance with name name if found, otherwise nullptr

◆ find() [2/2]

static Odometer * agxSensor::Odometer::find ( const Environment environment,
const agx::Name name 
)
static

Find odometer given name.

Parameters
environment- sensor environment
name- name of odometer instance to search for
Returns
first odometer instance with name name if found, otherwise nullptr

◆ findAll() [1/4]

static OdometerPtrVector agxSensor::Odometer::findAll ( const agxSDK::Simulation simulation)
static

Find all odometers.

Parameters
simulation- simulation with a sensor environment
Returns
all odometer instances in the sensor environment

◆ findAll() [2/4]

static OdometerPtrVector agxSensor::Odometer::findAll ( const agxSDK::Simulation simulation,
const agx::Name name 
)
static

Find all odometers, given name.

Parameters
simulation- simulation with a sensor environment
name- name of odometer instance to search for
Returns
odometer instances with name name

◆ findAll() [3/4]

static OdometerPtrVector agxSensor::Odometer::findAll ( const Environment environment)
static

Find all odometers.

Parameters
environment- sensor environment
Returns
all odometer instances in the given sensor environment environment

◆ findAll() [4/4]

static OdometerPtrVector agxSensor::Odometer::findAll ( const Environment environment,
const agx::Name name 
)
static

Find all odometers, given name.

Parameters
environment- sensor environment
name- name of odometer instance to search for
Returns
odometer instances with name name

◆ getConstraint()

virtual agx::Constraint * agxSensor::Odometer::getConstraint ( ) const
overridevirtual
Returns
the constraint of this odometer, defining what the odometer is attached to

Implements agxSensor::ConstraintAttachedSensor.

◆ getModel()

OdometerModel * agxSensor::Odometer::getModel ( ) const
Returns
the model of this odometer

◆ getOutputHandler()

OdometerOutputHandler * agxSensor::Odometer::getOutputHandler ( ) const
Returns
the output handler managing the outputs from the odometer

◆ getOutputHandlerBase()

virtual ISensorOutputHandler * agxSensor::Odometer::getOutputHandlerBase ( ) const
overridevirtual
Returns
the output handler managing the outputs from the odometer

Implements agxSensor::Sensor.

◆ setConstraint() [1/6]

void agxSensor::Odometer::setConstraint ( agx::CylindricalJoint cylindrical)

Assign a new parent cylindrical joint to attach this odometer to.

The effects will take place the next time the environment is stepped.

Note
This odometer instance only samples the rotational DoF of the cylindrical joint.
Parameters
cylindrical- cylindrical constraint to attach to and sample from

◆ setConstraint() [2/6]

void agxSensor::Odometer::setConstraint ( agx::Hinge hinge)

Assign a new parent hinge joint to attach this odometer to.

The effects will take place the next time the environment is stepped.

Parameters
hinge- hinge constraint to attach to and sample from

◆ setConstraint() [3/6]

void agxSensor::Odometer::setConstraint ( agx::SlackCylindricalJoint cylindrical)

Assign a new parent slack cylindrical joint to attach this odometer to.

The effects will take place the next time the environment is stepped.

Note
This odometer instance only samples the rotational DoF of the slack cylindrical joint.
Parameters
cylindrical- slack cylindrical constraint to attach to and sample from

◆ setConstraint() [4/6]

void agxSensor::Odometer::setConstraint ( agx::SlackHingeJoint hinge)

Assign a new parent slack hinge joint to attach this odometer to.

The effects will take place the next time the environment is stepped.

Parameters
hinge- slack hinge constraint to attach to and sample from

◆ setConstraint() [5/6]

void agxSensor::Odometer::setConstraint ( agx::SplineJoint spline)

Assign a new parent spline joint to attach this odometer to.

The effects will take place the next time the environment is stepped.

Note
This odometer instance only samples the rotational DoF of the spline joint.
Parameters
spline- spline constraint to attach to and sample from

◆ setConstraint() [6/6]

void agxSensor::Odometer::setConstraint ( agxVehicle::WheelJoint wheel)

Assign a new parent wheel joint to attach this odometer to.

The effects will take place the next time the environment is stepped.

Note
This odometer instance only samples the wheel rotation of the wheel joint.
Parameters
wheel- wheel constraint to attach to and sample from

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