A conditional that evaluates true after a certain time (in seconds) has passed, given by a DataSource. More...
#include <rtt/ConditionDSDuration.hpp>
Public Member Functions | |
ConditionDSDuration (DataSource< double >::shared_ptr ds, bool invert=false) | |
Create a condition that changes after ds->get() seconds. | |
virtual bool | evaluate () |
Evaluate the Condition and return the outcome. | |
virtual void | reset () |
Some conditions need to be reset at some points. | |
ConditionInterface * | clone () const |
The Clone Software Pattern. | |
virtual ConditionInterface * | copy (std::map< const DataSourceBase *, DataSourceBase * > &alreadyCloned) const |
When copying an Orocos program, we want identical DataSource's to be mapped to identical DataSources, in order for the program to work correctly. |
A conditional that evaluates true after a certain time (in seconds) has passed, given by a DataSource.
The behaviour can be inverted upon construction.
Definition at line 54 of file ConditionDSDuration.hpp.
RTT::ConditionDSDuration::ConditionDSDuration | ( | DataSource< double >::shared_ptr | ds, | |
bool | invert = false | |||
) |
Create a condition that changes after ds->get() seconds.
ds | A DataSource containing the period of time starting from reset() | |
invert | If false (default) then the condition will raise to true after ds->get() seconds. If true then the condition will fall to false after ds->get() seconds. |
virtual ConditionInterface* RTT::ConditionDSDuration::copy | ( | std::map< const DataSourceBase *, DataSourceBase * > & | alreadyCloned | ) | const [virtual] |
When copying an Orocos program, we want identical DataSource's to be mapped to identical DataSources, in order for the program to work correctly.
This is different from the clone function, where we simply want a new Command that can replace the old one directly.
This function takes a map that maps the old DataSource's onto their new replacements. This way, it is possible to check before cloning a DataSource, whether it has already been copied, and if so, reuse the existing copy.
To keep old source working, the standard implementation of this function simply calls the clone function. If your ConditionInterface uses a DataSource, it is important that you reimplement this function correctly though.
Reimplemented from RTT::ConditionInterface.
virtual bool RTT::ConditionDSDuration::evaluate | ( | ) | [virtual] |
Evaluate the Condition and return the outcome.
Implements RTT::ConditionInterface.
virtual void RTT::ConditionDSDuration::reset | ( | ) | [virtual] |
Some conditions need to be reset at some points.
E.g. a ConditionDuration counts the time since the first time a Command was executed, and if this time exceeds a certain preset time, returns true. Therefore, it needs to be reset, i.e. it needs to start counting, when the command is first executed.. ConditionOnce has a similar need. This function is called at such times.
Reimplemented from RTT::ConditionInterface.