diff --git a/source/RobotAPI/components/DebugDrawer/DebugDrawerComponent.h b/source/RobotAPI/components/DebugDrawer/DebugDrawerComponent.h index fec48e6a448672f1c90af6971b8a7eabe987d574..8c059460ce1a4a3780011f128ce6d2629b420f88 100644 --- a/source/RobotAPI/components/DebugDrawer/DebugDrawerComponent.h +++ b/source/RobotAPI/components/DebugDrawer/DebugDrawerComponent.h @@ -31,10 +31,10 @@ #include <Inventor/sensors/SoTimerSensor.h> // ArmarX -#include <Core/core/Component.h> -#include <Core/core/logging/Logging.h> -#include <Core/core/services/tasks/RunningTask.h> -#include <Core/core/services/tasks/PeriodicTask.h> +#include <ArmarXCore/core/Component.h> +#include <ArmarXCore/core/logging/Logging.h> +#include <ArmarXCore/core/services/tasks/RunningTask.h> +#include <ArmarXCore/core/services/tasks/PeriodicTask.h> #include <RobotAPI/interface/visualization/DebugDrawerInterface.h> #include <RobotAPI/libraries/core/Pose.h> @@ -53,7 +53,7 @@ namespace armarx * \brief */ class DebugDrawerPropertyDefinitions: - public ComponentPropertyDefinitions + public ComponentPropertyDefinitions { public: DebugDrawerPropertyDefinitions(std::string prefix): @@ -102,8 +102,8 @@ namespace armarx * @ingroup Component-DebugDrawerComponent */ class DebugDrawerComponent : - virtual public armarx::DebugDrawerInterface, - virtual public Component + virtual public armarx::DebugDrawerInterface, + virtual public Component { public: @@ -136,12 +136,12 @@ namespace armarx virtual PropertyDefinitionsPtr createPropertyDefinitions() { return PropertyDefinitionsPtr(new DebugDrawerPropertyDefinitions( - getConfigIdentifier())); + getConfigIdentifier())); } /* Inherited from DebugDrawerInterface. */ virtual void exportScene(const std::string& filename, const ::Ice::Current& = ::Ice::Current()); - virtual void exportLayer(const std::string& filename, const std::string &layerName, const ::Ice::Current& = ::Ice::Current()); + virtual void exportLayer(const std::string& filename, const std::string& layerName, const ::Ice::Current& = ::Ice::Current()); virtual void setPoseVisu(const std::string& layerName, const std::string& poseName, const ::armarx::PoseBasePtr& globalPose, const ::Ice::Current& = ::Ice::Current()); virtual void setScaledPoseVisu(const std::string& layerName, const std::string& poseName, const ::armarx::PoseBasePtr& globalPose, const ::Ice::Float scale, const ::Ice::Current& = ::Ice::Current()); @@ -150,49 +150,49 @@ namespace armarx virtual void removePoseVisu(const std::string& layerName, const std::string& poseName, const ::Ice::Current& = ::Ice::Current()); virtual void removePoseDebugLayerVisu(const std::string& poseName, const ::Ice::Current& = ::Ice::Current()); - virtual void setLineVisu(const std::string& layerName, const std::string& lineName, const ::armarx::Vector3BasePtr& globalPosition1, const ::armarx::Vector3BasePtr& globalPosition2, float lineWidth, const ::armarx::DrawColor &color, const ::Ice::Current& = ::Ice::Current()); - virtual void setLineDebugLayerVisu(const std::string& lineName, const ::armarx::Vector3BasePtr& globalPosition1, const ::armarx::Vector3BasePtr& globalPosition2, float lineWidth, const ::armarx::DrawColor &color, const ::Ice::Current& = ::Ice::Current()); + virtual void setLineVisu(const std::string& layerName, const std::string& lineName, const ::armarx::Vector3BasePtr& globalPosition1, const ::armarx::Vector3BasePtr& globalPosition2, float lineWidth, const ::armarx::DrawColor& color, const ::Ice::Current& = ::Ice::Current()); + virtual void setLineDebugLayerVisu(const std::string& lineName, const ::armarx::Vector3BasePtr& globalPosition1, const ::armarx::Vector3BasePtr& globalPosition2, float lineWidth, const ::armarx::DrawColor& color, const ::Ice::Current& = ::Ice::Current()); virtual void removeLineVisu(const std::string& layerName, const std::string& lineName, const ::Ice::Current& = ::Ice::Current()); virtual void removeLineDebugLayerVisu(const std::string& lineName, const ::Ice::Current& = ::Ice::Current()); - virtual void setBoxVisu(const std::string &layerName, const std::string &boxName, const ::armarx::PoseBasePtr &globalPose, const ::armarx::Vector3BasePtr &dimensions, const DrawColor &color, const ::Ice::Current& = ::Ice::Current()); - virtual void setBoxDebugLayerVisu(const std::string &boxName, const ::armarx::PoseBasePtr &globalPose, const ::armarx::Vector3BasePtr &dimensions, const DrawColor &color, const ::Ice::Current& = ::Ice::Current()); - virtual void removeBoxVisu(const std::string &layerName, const std::string &boxName, const ::Ice::Current& = ::Ice::Current()); + virtual void setBoxVisu(const std::string& layerName, const std::string& boxName, const ::armarx::PoseBasePtr& globalPose, const ::armarx::Vector3BasePtr& dimensions, const DrawColor& color, const ::Ice::Current& = ::Ice::Current()); + virtual void setBoxDebugLayerVisu(const std::string& boxName, const ::armarx::PoseBasePtr& globalPose, const ::armarx::Vector3BasePtr& dimensions, const DrawColor& color, const ::Ice::Current& = ::Ice::Current()); + virtual void removeBoxVisu(const std::string& layerName, const std::string& boxName, const ::Ice::Current& = ::Ice::Current()); virtual void removeBoxDebugLayerVisu(const std::string& boxName, const ::Ice::Current& = ::Ice::Current()); - virtual void setTextVisu(const std::string &layerName, const std::string &textName, const std::string &text, const ::armarx::Vector3BasePtr &globalPosition, const DrawColor &color, int size, const ::Ice::Current& = ::Ice::Current()); - virtual void setTextDebugLayerVisu(const std::string &textName, const std::string &text, const ::armarx::Vector3BasePtr &globalPosition, const DrawColor &color, int size, const ::Ice::Current& = ::Ice::Current()); - virtual void removeTextVisu(const std::string &layerName, const std::string &textName, const ::Ice::Current& = ::Ice::Current()); + virtual void setTextVisu(const std::string& layerName, const std::string& textName, const std::string& text, const ::armarx::Vector3BasePtr& globalPosition, const DrawColor& color, int size, const ::Ice::Current& = ::Ice::Current()); + virtual void setTextDebugLayerVisu(const std::string& textName, const std::string& text, const ::armarx::Vector3BasePtr& globalPosition, const DrawColor& color, int size, const ::Ice::Current& = ::Ice::Current()); + virtual void removeTextVisu(const std::string& layerName, const std::string& textName, const ::Ice::Current& = ::Ice::Current()); virtual void removeTextDebugLayerVisu(const std::string& textName, const ::Ice::Current& = ::Ice::Current()); - virtual void setSphereVisu(const std::string &layerName, const std::string &sphereName, const ::armarx::Vector3BasePtr &globalPosition, const DrawColor &color, float radius, const ::Ice::Current& = ::Ice::Current()); - virtual void setSphereDebugLayerVisu(const std::string &sphereName, const ::armarx::Vector3BasePtr &globalPosition, const DrawColor &color, float radius, const ::Ice::Current& = ::Ice::Current()); - virtual void removeSphereVisu(const std::string &layerName, const std::string &sphereName, const ::Ice::Current& = ::Ice::Current()); + virtual void setSphereVisu(const std::string& layerName, const std::string& sphereName, const ::armarx::Vector3BasePtr& globalPosition, const DrawColor& color, float radius, const ::Ice::Current& = ::Ice::Current()); + virtual void setSphereDebugLayerVisu(const std::string& sphereName, const ::armarx::Vector3BasePtr& globalPosition, const DrawColor& color, float radius, const ::Ice::Current& = ::Ice::Current()); + virtual void removeSphereVisu(const std::string& layerName, const std::string& sphereName, const ::Ice::Current& = ::Ice::Current()); virtual void removeSphereDebugLayerVisu(const std::string& sphereName, const ::Ice::Current& = ::Ice::Current()); - virtual void setCylinderVisu(const std::string &layerName, const std::string &cylinderName, const ::armarx::Vector3BasePtr &globalPosition, const ::armarx::Vector3BasePtr &direction, float length, float radius, const DrawColor &color, const ::Ice::Current& = ::Ice::Current()); - virtual void setCylinderDebugLayerVisu(const std::string &cylinderName, const ::armarx::Vector3BasePtr &globalPosition, const ::armarx::Vector3BasePtr &direction, float length, float radius, const DrawColor &color, const ::Ice::Current& = ::Ice::Current()); - virtual void removeCylinderVisu(const std::string &layerName, const std::string &cylinderName, const ::Ice::Current& = ::Ice::Current()); + virtual void setCylinderVisu(const std::string& layerName, const std::string& cylinderName, const ::armarx::Vector3BasePtr& globalPosition, const ::armarx::Vector3BasePtr& direction, float length, float radius, const DrawColor& color, const ::Ice::Current& = ::Ice::Current()); + virtual void setCylinderDebugLayerVisu(const std::string& cylinderName, const ::armarx::Vector3BasePtr& globalPosition, const ::armarx::Vector3BasePtr& direction, float length, float radius, const DrawColor& color, const ::Ice::Current& = ::Ice::Current()); + virtual void removeCylinderVisu(const std::string& layerName, const std::string& cylinderName, const ::Ice::Current& = ::Ice::Current()); virtual void removeCylinderDebugLayerVisu(const std::string& cylinderName, const ::Ice::Current& = ::Ice::Current()); - virtual void setPointCloudVisu(const std::string &layerName, const std::string &pointCloudName, const DebugDrawerPointCloud &pointCloud, const ::Ice::Current& = ::Ice::Current()); - virtual void setPointCloudDebugLayerVisu(const std::string &pointCloudName, const DebugDrawerPointCloud &pointCloud, const ::Ice::Current& = ::Ice::Current()); - virtual void removePointCloudVisu(const std::string &layerName, const std::string &pointCloudName, const ::Ice::Current& = ::Ice::Current()); + virtual void setPointCloudVisu(const std::string& layerName, const std::string& pointCloudName, const DebugDrawerPointCloud& pointCloud, const ::Ice::Current& = ::Ice::Current()); + virtual void setPointCloudDebugLayerVisu(const std::string& pointCloudName, const DebugDrawerPointCloud& pointCloud, const ::Ice::Current& = ::Ice::Current()); + virtual void removePointCloudVisu(const std::string& layerName, const std::string& pointCloudName, const ::Ice::Current& = ::Ice::Current()); virtual void removePointCloudDebugLayerVisu(const std::string& pointCloudName, const ::Ice::Current& = ::Ice::Current()); - virtual void setColoredPointCloudDebugLayerVisu(const std::string &pointCloudName, const DebugDrawerColoredPointCloud &pointCloud, const ::Ice::Current& = ::Ice::Current()); - virtual void setColoredPointCloudVisu(const std::string &layerName, const std::string &pointCloudName, const DebugDrawerColoredPointCloud &pointCloud, const ::Ice::Current& = ::Ice::Current()); - virtual void removeColoredPointCloudVisu(const std::string &layerName, const std::string &pointCloudName, const ::Ice::Current& = ::Ice::Current()); - virtual void removeColoredPointCloudDebugLayerVisu(const std::string &pointCloudName, const ::Ice::Current& = ::Ice::Current()); + virtual void setColoredPointCloudDebugLayerVisu(const std::string& pointCloudName, const DebugDrawerColoredPointCloud& pointCloud, const ::Ice::Current& = ::Ice::Current()); + virtual void setColoredPointCloudVisu(const std::string& layerName, const std::string& pointCloudName, const DebugDrawerColoredPointCloud& pointCloud, const ::Ice::Current& = ::Ice::Current()); + virtual void removeColoredPointCloudVisu(const std::string& layerName, const std::string& pointCloudName, const ::Ice::Current& = ::Ice::Current()); + virtual void removeColoredPointCloudDebugLayerVisu(const std::string& pointCloudName, const ::Ice::Current& = ::Ice::Current()); - virtual void setPolygonVisu(const std::string &layerName, const std::string &polygonName, const std::vector< ::armarx::Vector3BasePtr > &polygonPoints, const DrawColor &colorInner, const DrawColor &colorBorder, float lineWidth, const ::Ice::Current& = ::Ice::Current()); - virtual void setPolygonDebugLayerVisu(const std::string &polygonName, const std::vector< ::armarx::Vector3BasePtr > &polygonPoints, const DrawColor &colorInner, const DrawColor &colorBorder, float lineWidth, const ::Ice::Current& = ::Ice::Current()); - virtual void removePolygonVisu(const std::string &layerName, const std::string &polygonName, const ::Ice::Current& = ::Ice::Current()); + virtual void setPolygonVisu(const std::string& layerName, const std::string& polygonName, const std::vector< ::armarx::Vector3BasePtr >& polygonPoints, const DrawColor& colorInner, const DrawColor& colorBorder, float lineWidth, const ::Ice::Current& = ::Ice::Current()); + virtual void setPolygonDebugLayerVisu(const std::string& polygonName, const std::vector< ::armarx::Vector3BasePtr >& polygonPoints, const DrawColor& colorInner, const DrawColor& colorBorder, float lineWidth, const ::Ice::Current& = ::Ice::Current()); + virtual void removePolygonVisu(const std::string& layerName, const std::string& polygonName, const ::Ice::Current& = ::Ice::Current()); virtual void removePolygonDebugLayerVisu(const std::string& polygonName, const ::Ice::Current& = ::Ice::Current()); - virtual void setArrowVisu(const std::string &layerName, const std::string &arrowName, const ::armarx::Vector3BasePtr &position, const ::armarx::Vector3BasePtr &direction, const DrawColor &color, float length, float width, const ::Ice::Current& = ::Ice::Current()); - virtual void setArrowDebugLayerVisu(const std::string &arrowName, const ::armarx::Vector3BasePtr &position, const ::armarx::Vector3BasePtr &direction, const DrawColor &color, float length, float width, const ::Ice::Current& = ::Ice::Current()); - virtual void removeArrowVisu(const std::string &layerName, const std::string &arrowName, const ::Ice::Current& = ::Ice::Current()); + virtual void setArrowVisu(const std::string& layerName, const std::string& arrowName, const ::armarx::Vector3BasePtr& position, const ::armarx::Vector3BasePtr& direction, const DrawColor& color, float length, float width, const ::Ice::Current& = ::Ice::Current()); + virtual void setArrowDebugLayerVisu(const std::string& arrowName, const ::armarx::Vector3BasePtr& position, const ::armarx::Vector3BasePtr& direction, const DrawColor& color, float length, float width, const ::Ice::Current& = ::Ice::Current()); + virtual void removeArrowVisu(const std::string& layerName, const std::string& arrowName, const ::Ice::Current& = ::Ice::Current()); virtual void removeArrowDebugLayerVisu(const std::string& arrowName, const ::Ice::Current& = ::Ice::Current()); /*! @@ -203,17 +203,17 @@ namespace armarx * \param DrawStyle Either FullModel ior CollisionModel. * \param armarxProject Additional armarx project that should be used to search the robot. Must be locally available and accessible through the armarx cmake search procedure. */ - virtual void setRobotVisu(const std::string &layerName, const std::string &robotName, const std::string &robotFile, const std::string &armarxProject, DrawStyle drawStyle, const ::Ice::Current& = ::Ice::Current()); - virtual void updateRobotPose(const std::string &layerName, const std::string &robotName, const ::armarx::PoseBasePtr &globalPose, const ::Ice::Current& = ::Ice::Current()); - virtual void updateRobotConfig(const std::string &layerName, const std::string &robotName, const std::map< std::string, float> &configuration, const ::Ice::Current& = ::Ice::Current()); + virtual void setRobotVisu(const std::string& layerName, const std::string& robotName, const std::string& robotFile, const std::string& armarxProject, DrawStyle drawStyle, const ::Ice::Current& = ::Ice::Current()); + virtual void updateRobotPose(const std::string& layerName, const std::string& robotName, const ::armarx::PoseBasePtr& globalPose, const ::Ice::Current& = ::Ice::Current()); + virtual void updateRobotConfig(const std::string& layerName, const std::string& robotName, const std::map< std::string, float>& configuration, const ::Ice::Current& = ::Ice::Current()); /*! * \brief updateRobotColor Colorizes the robot visualization * \param layerName The layer * \param robotName The robot identifyer * \param c The draw color, if all is set to 0, the colorization is disabled (i.e. the original vizaulization shows up) */ - virtual void updateRobotColor(const std::string &layerName, const std::string &robotName, const armarx::DrawColor &c, const ::Ice::Current& = ::Ice::Current()); - virtual void removeRobotVisu(const std::string &layerName, const std::string &robotName, const ::Ice::Current& = ::Ice::Current()); + virtual void updateRobotColor(const std::string& layerName, const std::string& robotName, const armarx::DrawColor& c, const ::Ice::Current& = ::Ice::Current()); + virtual void removeRobotVisu(const std::string& layerName, const std::string& robotName, const ::Ice::Current& = ::Ice::Current()); virtual void clearAll(const ::Ice::Current& = ::Ice::Current()); virtual void clearLayer(const std::string& layerName, const ::Ice::Current& = ::Ice::Current()); @@ -248,7 +248,7 @@ namespace armarx ~DebugDrawerComponent(); protected: - static void updateVisualizationCB(void *data, SoSensor *sensor); + static void updateVisualizationCB(void* data, SoSensor* sensor); // It turned out, that heavy data traffic (resulting in heavy mutex locking) somehow interferes with coin rendering: the // SoQt timers are misaligned at some point, could be a bug in SoQt, that results in a situation where the GL window is never updated @@ -378,34 +378,34 @@ namespace armarx /*! * \brief onUpdateVisualization derived methods can overwrite this method to update custom visualizations. */ - virtual void onUpdateVisualization(){} - virtual void onRemoveAccumulatedData(const std::string& layerName){} - - virtual void removeCustomVisu(const std::string& layerName, const std::string &name) {} - - void drawCoordSystem(const CoordData &d); - void drawLine(const LineData &d); - void drawBox(const BoxData &d); - void drawText(const TextData &d); - void drawSphere(const SphereData &d); - void drawCylinder(const CylinderData &d); - void drawPointCloud(const PointCloudData &d); - void drawColoredPointCloud(const ColoredPointCloudData &d); - void drawPolygon(const PolygonData &d); - void drawArrow(const ArrowData &d); - void drawRobot(const RobotData &d); - - void removeCoordSystem(const std::string& layerName, const std::string &name); - void removeLine(const std::string& layerName, const std::string &name); - void removeBox(const std::string& layerName, const std::string &name); - void removeText(const std::string& layerName, const std::string &name); - void removeSphere(const std::string& layerName, const std::string &name); - void removeCylinder(const std::string& layerName, const std::string &name); - void removePointCloud(const std::string& layerName, const std::string &name); - void removeColoredPointCloud(const std::string& layerName, const std::string &name); - void removePolygon(const std::string& layerName, const std::string &name); - void removeArrow(const std::string& layerName, const std::string &name); - void removeRobot(const std::string& layerName, const std::string &name); + virtual void onUpdateVisualization() {} + virtual void onRemoveAccumulatedData(const std::string& layerName) {} + + virtual void removeCustomVisu(const std::string& layerName, const std::string& name) {} + + void drawCoordSystem(const CoordData& d); + void drawLine(const LineData& d); + void drawBox(const BoxData& d); + void drawText(const TextData& d); + void drawSphere(const SphereData& d); + void drawCylinder(const CylinderData& d); + void drawPointCloud(const PointCloudData& d); + void drawColoredPointCloud(const ColoredPointCloudData& d); + void drawPolygon(const PolygonData& d); + void drawArrow(const ArrowData& d); + void drawRobot(const RobotData& d); + + void removeCoordSystem(const std::string& layerName, const std::string& name); + void removeLine(const std::string& layerName, const std::string& name); + void removeBox(const std::string& layerName, const std::string& name); + void removeText(const std::string& layerName, const std::string& name); + void removeSphere(const std::string& layerName, const std::string& name); + void removeCylinder(const std::string& layerName, const std::string& name); + void removePointCloud(const std::string& layerName, const std::string& name); + void removeColoredPointCloud(const std::string& layerName, const std::string& name); + void removePolygon(const std::string& layerName, const std::string& name); + void removeArrow(const std::string& layerName, const std::string& name); + void removeRobot(const std::string& layerName, const std::string& name); void setLayerVisibility(const std::string& layerName, bool visible); @@ -436,8 +436,8 @@ namespace armarx * \param layerName The layer. * \return The requested layer. */ - Layer &requestLayer(const std::string& layerName); - VirtualRobot::RobotPtr requestRobot(const RobotData &d); + Layer& requestLayer(const std::string& layerName); + VirtualRobot::RobotPtr requestRobot(const RobotData& d); std::map < std::string, VirtualRobot::RobotPtr > activeRobots; SoSeparator* coinVisu; @@ -464,8 +464,8 @@ namespace armarx float cycleTimeMS; //PeriodicTask<DebugDrawerComponent>::pointer_type execTaskVisuUpdates; - SoTimerSensor *timerSensor; - void removeAccumulatedData(const std::string &layerName); + SoTimerSensor* timerSensor; + void removeAccumulatedData(const std::string& layerName); }; typedef IceInternal::Handle<DebugDrawerComponent> DebugDrawerComponentPtr;