PickHandler.hpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. #pragma once
  2. // Include modules
  3. #include "MainWindow.hpp"
  4. #include "OSGWidget.hpp"
  5. #include "PointShape.hpp"
  6. // Include dependencies
  7. #include <osgGA/GUIEventHandler>
  8. class PickHandler: public osgGA::GUIEventHandler {
  9. public:
  10. PickHandler(OSGWidget* osgWidget, osg::ref_ptr<osg::Group> root);
  11. osg::Node* getPickerRoot();
  12. virtual bool handle(const osgGA::GUIEventAdapter& ea, osgGA::GUIActionAdapter& aa);
  13. void setSelection(bool addNewPoints);
  14. void updateRenderer();
  15. private:
  16. osg::ref_ptr<osg::Switch> _selectionSwitch;
  17. osg::ref_ptr<osg::MatrixTransform> _selectionTranslateGroup;
  18. osg::ref_ptr<osg::MatrixTransform> _selectionRotateGroup;
  19. osg::ref_ptr<osg::MatrixTransform> _selectionMoveToEndGroup;
  20. bool _addNewPoints = true;
  21. bool _clickStartedOnElement = false;
  22. OSGWidget* _osgWidget;
  23. double _optiTrackSteamVRLength;
  24. int _selectedPoint = -1;
  25. void moveTo(osg::Vec3f position);
  26. void rotateToNormalVector(osg::Vec3f normal);
  27. void removeAllShapes();
  28. void setVisibility(bool mode);
  29. void addPoint(osg::Vec3 point, osg::Vec3 normal);
  30. void invalidateTrackPointColors();
  31. };