Basic graphics manager class which manages graphics components to provide a visualization of the scene to the user.
More...
|
| Manager () |
| Constructor.
|
|
virtual | ~Manager () |
| Destructor.
|
|
const std::vector< std::shared_ptr< Representation > > & | getRepresentations () const |
| Returns the representations assigned to the manager.
|
|
const std::unordered_map< std::string, std::shared_ptr< Group > > & | getGroups () const |
| Returns the groups assigned to the manager.
|
|
const std::vector< std::shared_ptr< View > > & | getViews () const |
| Returns the views assigned to the manager.
|
|
virtual void | dumpDebugInfo () const =0 |
| Generic unspecified debug handle, there are no requirements on this interface the manager implementation can decide what to do.
|
|
| ComponentManager (const std::string &name="Unknown Component Manager") |
|
bool | enqueueAddComponent (const std::shared_ptr< Component > &component) |
| Queues a component to be added later. More...
|
|
bool | enqueueRemoveComponent (const std::shared_ptr< Component > &component) |
| Queues a component to be removed. More...
|
|
std::shared_ptr< Runtime > | getRuntime () const |
|
void | setRuntime (std::shared_ptr< Runtime > val) |
|
| BasicThread (const std::string &name="Unknown Thread") |
|
virtual | ~BasicThread () noexcept(false) |
| C++11 introduced noexcept.
|
|
void | start (std::shared_ptr< Barrier > startupBarrier=nullptr, bool isSynchronous=false) |
| Live cycle functions, public implementation. More...
|
|
void | stop () |
| Stopping the execution, blocks until the running thread has actually stopped,. More...
|
|
void | setIdle (bool isIdle) |
| Set/Unset the thread in an idle state (doUpdate() called or not in the update() method) More...
|
|
bool | isIdle () |
| Query if this thread is in idle state or not. More...
|
|
bool | isInitialized () |
| Query if this object is initialized. More...
|
|
bool | isRunning () const |
| Query if this object is running. More...
|
|
void | operator() () |
| This is what boost::thread executes on thread creation.
|
|
boost::thread & | getThread () |
|
std::string | getName () const |
|
void | setRate (double val) |
| Set the update rate of the thread. More...
|
|
bool | setSynchronous (bool val) |
| Sets the thread to synchronized execution in concert with the startup barrier, the startup barrier has to exist for this call to succeed. More...
|
|
bool | isSynchronous () |
| Query if this object is synchronized. More...
|
|
double | getCpuTime () const |
|
size_t | getUpdateCount () const |
|
void | resetCpuTimeAndUpdateCount () |
| Reset the cpu time and the update count to 0.
|
|
bool | ignoresExceptions () const |
|
void | setIgnoreExceptions (bool val) |
|
|
virtual bool | executeAdditions (const std::shared_ptr< SurgSim::Framework::Component > &component) |
| Adds a component. More...
|
|
virtual bool | executeRemovals (const std::shared_ptr< SurgSim::Framework::Component > &component) |
| Removes a component. More...
|
|
virtual bool | addRepresentation (std::shared_ptr< Representation > representation) |
| Adds an representation to the manager. More...
|
|
virtual bool | addView (std::shared_ptr< View > view) |
| Adds a view to the manager. More...
|
|
virtual bool | removeRepresentation (std::shared_ptr< Representation > representation) |
| Removes an representation from the manager. More...
|
|
virtual bool | removeView (std::shared_ptr< View > view) |
| Removes a view from the manager. More...
|
|
virtual bool | doUpdate (double dt) |
| Performs an update for a single timestep. More...
|
|
int | getType () const override |
| Overrides ComponentManager::getType()
|
|
virtual std::shared_ptr< Group > | getOrCreateGroup (const std::string &name)=0 |
| Fetch a group with a given name, if the group does not exist, create it. More...
|
|
virtual void | addGroup (std::shared_ptr< Group > group) |
| Adds a group to the manager, override for manager specific behavior when adding. More...
|
|
void | doBeforeStop () override |
| Prepares the thread for its execution to be stopped. More...
|
|
template<class T > |
std::shared_ptr< T > | tryAddComponent (std::shared_ptr< SurgSim::Framework::Component > component, std::vector< std::shared_ptr< T >> *container) |
| Template version of the addComponent method. More...
|
|
template<class T > |
bool | tryRemoveComponent (std::shared_ptr< SurgSim::Framework::Component > component, std::vector< std::shared_ptr< T >> *container) |
| Template version of the removeComponent method. More...
|
|
void | processComponents () |
| Processes all the components that are scheduled for addition or removal, this needs to be called inside the doUpdate() function. More...
|
|
void | processBehaviors (const double dt) |
| Processes behaviors This needs to be called inside doUpdate() function in each 'sub' manager. More...
|
|
void | copyScheduledComponents (std::vector< std::shared_ptr< Component >> *inflightAdditions, std::vector< std::shared_ptr< Component >> *inflightRemovals, std::vector< std::shared_ptr< SceneElement >> *inflightElements) |
| Helper, blocks access to the additions and removal queue and copies the components from there to the intermediate inflight queues, after this call, the incoming queues will be empty. More...
|
|
std::shared_ptr< SurgSim::Framework::Logger > | getLogger () const |
| Returns this manager's logger.
|
|
template<class T > |
void | retireComponents (const std::vector< std::shared_ptr< T >> &container) |
|
bool | initialize () |
| Trigger the initialization of this object, this will be called before all other threads doStartup() are called. More...
|
|
bool | startUp () |
| Trigger the startup of this object, this will be called after all other threads doInit() was called the thread will only enter the run loop triggering upated() if all threads doInit() and doStartup() returned true. More...
|
|
bool | waitForBarrier (bool success) |
|
Basic graphics manager class which manages graphics components to provide a visualization of the scene to the user.
Graphics::Manager manages Graphics::Representation, Graphics::Group, and Graphics::View components.