NTRT Simulator
v1.1
|
#include <pidTestRig.h>
Public Member Functions | |
pidTestRig (bool kinematic=true) | |
virtual | ~pidTestRig () |
virtual void | setup (tgWorld &world) |
virtual void | teardown () |
virtual void | step (double dt) |
virtual void | onVisit (tgModelVisitor &r) |
const std::vector < tgSpringCableActuator * > & | getAllMuscles () const |
double | getTotalTime () const |
void | attach (tgObserver< pidTestRig > *pObserver) |
void | notifyStep (double dt) |
void | notifySetup () |
void | notifyTeardown () |
virtual void | onVisit (const tgModelVisitor &r) const |
void | addChild (tgModel *pChild) |
virtual std::string | toString (std::string prefix="") const |
template<typename T > | |
std::vector< T * > | find (const tgTagSearch &tagSearch) |
template<typename T > | |
std::vector< T * > | find (const std::string &tagSearch) |
std::vector< tgModel * > | getDescendants () const |
const std::vector < abstractMarker > & | getMarkers () const |
void | addMarker (abstractMarker a) |
void | addTags (const std::string &space_separated_tags) |
void | addTags (const tgTags &tags) |
bool | hasTag (const std::string tag) const |
bool | hasAllTags (std::string tags) |
bool | hasAnyTags (const std::string tags) |
bool | hasNoTags () |
tgTags & | getTags () |
const tgTags & | getTags () const |
void | setTags (tgTags tags) |
std::string | getTagStr (std::string delim=" ") const |
A class that constructs a three bar tensegrity prism using the tools in tgcreator.
Definition at line 48 of file pidTestRig.h.
pidTestRig::pidTestRig | ( | bool | kinematic = true | ) |
The only constructor. Configuration parameters are within the .cpp file in this case, not passed in.
Definition at line 81 of file pidTestRig.cpp.
|
virtual |
Destructor. Deletes controllers, if any were added during setup. Teardown handles everything else.
Definition at line 88 of file pidTestRig.cpp.
|
inherited |
Add a sub-model to this model. The model takes ownership of the child sub-model and is responsible for deallocating it.
[in,out] | pChild | a pointer to a sub-model |
std::invalid_argument | is pChild is NULL, this object, or already a descendant |
Definition at line 124 of file tgModel.cpp.
|
inherited |
Attach an observer to the subject of the observer.
[in,out] | pObserver | a pointer to an observer for the subject; do nothing if the pointer is NULL |
|
inlineinherited |
Get a vector of descendants sorted by type and a tagsearch. Useful for pulling out muscle groups, or similar.
[in] | tagSearch,a | tagSearch that contains the desired tags |
Definition at line 125 of file tgModel.h.
|
inlineinherited |
Get a vector of descendants sorted by type and a tagsearch. Useful for pulling out muscle groups, or similar.
[in] | tagSearch,a | std::string& that contains the desired tags |
Definition at line 138 of file tgModel.h.
const std::vector< tgSpringCableActuator * > & pidTestRig::getAllMuscles | ( | ) | const |
Return a vector of all muscles for the controllers to work with.
Definition at line 247 of file pidTestRig.cpp.
|
inherited |
Return a std::vector of const pointers to all sub-models.
Definition at line 172 of file tgModel.cpp.
|
inline |
Ensuring we actually have a consistent runtime turing testing
Definition at line 104 of file pidTestRig.h.
|
inherited |
Call tgObserver<T>::onSetup() on all observers in the order in which they were attached.
|
inherited |
Call tgObserver<T>::onStep() on all observers in the order in which they were attached.
[in] | dt | the number of seconds since the previous call; do nothing if not positive |
|
inherited |
Call tgObserver<T>::onTeardown() on all observers in the order in which they were attached.
|
virtual |
Receives a tgModelVisitor and dispatches itself into the visitor's "render" function. This model will go to the default tgModel function, which does nothing.
[in] | r | - a tgModelVisitor which will pass this model back to itself |
Definition at line 241 of file pidTestRig.cpp.
|
virtualinherited |
Call tgModelVisitor::render() on self and all descendants.
[in,out] | r | a reference to a tgModelVisitor |
Reimplemented in ConnectorTestModel, BuildTestModel, tgKinematicActuator, tgSphere, tgBox, tgRod, MuscleNPCons, tgBasicActuator, hillyMuscleNP, simpleMuscleNP, tgBaseRigid, and tgGhostModel.
Definition at line 107 of file tgModel.cpp.
|
virtual |
Create the model. Place the rods and strings into the world that is passed into the simulation. This is triggered automatically when the model is added to the simulation, when tgModel::setup(world) is called (if this model is a child), and when reset is called. Also notifies controllers of setup.
[in] | world | - the world we're building into |
Reimplemented from tgModel.
Definition at line 153 of file pidTestRig.cpp.
|
virtual |
Step the model, its children. Notifies controllers of step.
[in] | dt,the | timestep. Must be positive. |
Reimplemented from tgModel.
Definition at line 217 of file pidTestRig.cpp.
|
virtual |
Undoes setup. Deletes child models. Called automatically on reset and end of simulation. Notifies controllers of teardown
Reimplemented from tgModel.
Definition at line 252 of file pidTestRig.cpp.
|
virtualinherited |
Returns the tag names of this model and its children
[in] | prefix | a string to append to |
Definition at line 154 of file tgModel.cpp.