Go to the documentation of this file.
35 addPlugin(_robotStateComponentPlugin, pre);
36 addPluginDependency(_robotStateComponentPlugin);
44 return *_debugDrawerHelper;
52 return *_debugDrawerHelper;
62 std::unique_lock<std::recursive_mutex>
66 return std::unique_lock{_debugDrawerHelperMutex};
84 if (!_debugDrawerTopic)
86 parent<Component>().offeringTopicFromProperty(_propertyName);
94 if (!_debugDrawerTopic)
96 parent<Component>().getTopicFromProperty(_debugDrawerTopic, _propertyName);
98 if (!_debugDrawerHelper)
100 const auto robotID = _pre +
"_DebugDrawerHelperComponentPlugin_" +
parent().
getName();
101 if (!_robotStateComponentPlugin->
hasRobot(robotID))
103 _robotStateComponentPlugin->
addRobot(robotID, VirtualRobot::RobotIO::eStructure);
106 const auto robot = _robotStateComponentPlugin->
getRobot(robotID);
109 _debugDrawerHelper = std::make_unique<DebugDrawerHelper>(
118 if (!_doNotClearLayersOnDisconnect)
122 _debugDrawerHelper->cyclicCleanup();
123 _debugDrawerHelper->cyclicCleanup();
124 _debugDrawerHelper->clearLayer();
130 _debugDrawerTopic =
nullptr;
138 if (!properties->hasDefinition(_propertyName))
140 properties->defineOptionalProperty<std::string>(
141 _propertyName,
"DebugDrawerUpdates",
"Name of the debug drawer topic");
149 return _debugDrawerHelper->getRobot();
173 const RobotStateConfig& state)
const
186 _doNotClearLayersOnDisconnect = !b;
195 addPlugin(_debugDrawerHelperComponentPlugin);
202 return *_debugDrawerHelperComponentPlugin;
209 return *_debugDrawerHelperComponentPlugin;
212 const DebugDrawerHelper&
233 std::unique_lock<std::recursive_mutex>
271 const RobotStateConfig& state)
const
std::unique_lock< std::recursive_mutex > getDebugDrawerHelperLock() const
std::string getDebugDrawerLayerName() const
const DebugDrawerInterfacePrx & getDebugDrawerTopic() const
void setClearLayersOnDisconnect(bool b)
DebugDrawerHelperComponentPlugin(ManagedIceObject &parent, std::string pre)
ManagedIceObject & parent()
void preOnInitComponent() override
std::string getDebugDrawerLayerName() const
#define ARMARX_CHECK_NOT_NULL(ptr)
This macro evaluates whether ptr is not null and if it turns out to be false it will throw an Express...
void preOnConnectComponent() override
PluginT * addPlugin(const std::string prefix="", ParamsT &&... params)
bool synchronizeDebugDrawerHelperRobot() const
DebugDrawerHelperComponentPluginUser()
bool hasRobot(const std::string &id) const
bool synchronizeLocalClone(const VirtualRobot::RobotPtr &robot) const
VirtualRobot::RobotPtr getDebugDrawerHelperRobot() const
const DebugDrawerHelper & getDebugDrawerHelper() const
VirtualRobot::RobotPtr getRobot(const std::string &id) const
This file is part of ArmarX.
bool synchronizeDebugDrawerHelperRobot() const
void postOnDisconnectComponent() override
const DebugDrawerHelperComponentPlugin & getDebugDrawerHelperPlugin() const
The DebugDrawerHelper class provides draw functions in a given frame (static matrix or robot node) an...
VirtualRobot::RobotPtr addRobot(const std::string &id, const VirtualRobot::RobotPtr &robot, const VirtualRobot::RobotNodeSetPtr &rns={}, const VirtualRobot::RobotNodePtr &node={})
const DebugDrawerHelper & getDebugDrawerHelper() const
const DebugDrawerInterfacePrx & getDebugDrawer() const
The ManagedIceObject is the base class for all ArmarX objects.
Brief description of class RobotAPIComponentPlugins.
const DebugDrawerInterfacePrx & getDebugDrawerTopic() const
std::string getName() const
Retrieve name of object.
std::unique_lock< std::recursive_mutex > getDebugDrawerHelperLock() const
::IceInternal::ProxyHandle<::IceProxy::armarx::DebugDrawerInterface > DebugDrawerInterfacePrx
void postCreatePropertyDefinitions(PropertyDefinitionsPtr &properties) override
VirtualRobot::RobotPtr getDebugDrawerHelperRobot() const
This file offers overloads of toIce() and fromIce() functions for STL container types.
std::shared_ptr< class Robot > RobotPtr