当前位置:   article > 正文

OSG拾取对应的实体_osg鼠标点击 提取实体位置点法线

osg鼠标点击 提取实体位置点法线


  1. #include "stdafx.h"  
  2. #include <osgDB/ReadFile>  
  3. #include <osgViewer/Viewer>  
  4. #include <osg/Node>  
  5. #include <osgFX/Scribe>  
  6. #include <osgGA/GUIEventHandler>  
  7. #include <osgUtil/LineSegmentIntersector>  
  8. class CPickHandler:public osgGA::GUIEventHandler  
  9. {  
  10. public:  
  11.     CPickHandler(osgViewer::Viewer *viewer):mViewer(viewer){}  
  12.     virtual bool handle(const osgGA::GUIEventAdapter &ea,osgGA::GUIActionAdapter &aa)  
  13.     {  
  14.         switch(ea.getEventType())  
  15.         {  
  16.         case osgGA::GUIEventAdapter::PUSH:  
  17.             if (ea.getButton()==1)  
  18.             {  
  19.                 Pick(ea.getX(),ea.getY());//可通过事件ea获得鼠标点击的坐标  
  20.             }  
  21.             return true;  
  22.         }  
  23.         return false;  
  24.     }  
  25. protected:  
  26.     void Pick(float x,float y)  
  27.     {  
  28.         osgUtil::LineSegmentIntersector::Intersections intersections;//声明一个相交测试的结果集  
  29.         if (mViewer->computeIntersections(x, y, intersections))//利用view的computerIntersection函数来测试屏幕与场景相交结果存入到结果集中  
  30.         {  
  31.             osgUtil::LineSegmentIntersector::Intersections::iterator hitr=intersections.begin();  
  32.             for (;hitr!=intersections.end();hitr++)  
  33.             {  
  34.                 if (!hitr->nodePath.empty()&&!(hitr->nodePath.back()->getName().empty()))  
  35.                 {  
  36.                     const osg::NodePath& np = hitr ->nodePath ;  
  37.                     for (int i=np.size()-1;i>=0;--i)  
  38.                     {  
  39.                         //将场景中的模型动态转换为Scribe类型,如果场景的模型中有Scribe节点则返回的是实际的模型Scribe对象  
  40.                         osgFX::Scribe *sc=dynamic_cast<osgFX::Scribe*>(np[i]);  
  41.                         if (sc!=NULL)//如果找到相应的sc,则隐藏起来  
  42.                         {  
  43.                             if (sc->getNodeMask()!=0)  
  44.                             {  
  45.                                 sc->setNodeMask(0);  
  46.                             }  
  47.                         }  
  48.                     }  
  49.                 }  
  50.             }  
  51.         }  
  52.     }  
  53.     osgViewer::Viewer *mViewer;  
  54. };  
  55. int _tmain(int argc, _TCHAR* argv[])  
  56. {  
  57.     osgViewer::Viewer viewer;  
  58.     osg::ref_ptr<osg::Group> root=new osg::Group();  
  59.     root->addChild(osgDB::readNodeFile("cessna.osg"));  
  60.     osg::ref_ptr<osg::Node> cow=osgDB::readNodeFile("cow.osg");  
  61.     osg::ref_ptr<osgFX::Scribe> sc=new osgFX::Scribe();//添加一个scribe节点,该节点下的模型会被加白描线高亮显示。  
  62.     sc->addChild(cow.get());//将模型牛加入到scribe节点中,那么加入之后,该牛就会有白边高亮显示  
  63.     root->addChild(sc.get());//将加白边的模型牛加入到默认的原点位置,默认为原点  
  64.     root->addChild(cow.get());//将模型牛加入到默认的原点位置,那么此时原模型牛和之前加入的白边牛就会重叠  
  65.     viewer.setSceneData(root.get());//将root节点加入到场景当中  
  66.     viewer.addEventHandler(new CPickHandler(&viewer));//为场景加入事件处理功能,并将场景本身传入到事件内部  
  67.     viewer.realize();  
  68.     return viewer.run();  
  69. }  

 

2、首先在添加模型时,要有一个标示,以便点击鼠标时,通过该标示知道点击的是否是这个模型,在此是加入白边的模型牛,白边对象为Scribe。

 

  1. osg::ref_ptr<osgFX::Scribe> sc=new osgFX::Scribe();//添加一个scribe节点,该节点下的模型会被加白描线高亮显示。  
  2. sc->addChild(cow.get());//将模型牛加入到scribe节点中,那么加入之后,该牛就会有白边高亮显示  
  3. root->addChild(sc.get());//将加白边的模型牛加入到默认的原点位置,默认为原点  

 

3、创建一个事件对象,并将该对象添加到场景中,那么在场景中就可以通过获取鼠标来做相应的动作。

 

  1. viewer.addEventHandler(new CPickHandler(&viewer));//为场景加入事件处理功能,并将场景本身传入到事件内部  

 

4、在事件对象中有一个虚函数handle,那么在此函数中将处理所有的事件,并在此事件中获取鼠标点击的坐标。

 

  1. virtual bool handle(const osgGA::GUIEventAdapter &ea,osgGA::GUIActionAdapter &aa)  

 

5、获取之后调用Pick函数,并将坐标传入到该函数内。

 

  1. Pick(ea.getX(),ea.getY());//可通过事件ea获得鼠标点击的坐标  

 

6、在该函数内通过computeIntersections函数,然后根据坐标来拾取该鼠标下的模型集合。

 

  1. mViewer->computeIntersections(x, y, intersections)  

 

7、定义一个迭代器。

 

  1. osgUtil::LineSegmentIntersector::Intersections::iterator hitr=intersections.begin();  

 

8、遍历该迭代器。

 

  1. for (;hitr!=intersections.end();hitr++)  

 

9、判断模型的路径以及名称是否为空。

 

  1. !hitr->nodePath.empty()&&!(hitr->nodePath.back()->getName().empty())  

 

10、如果不为空,则遍历该路径下的所有节点。

 

  1. const osg::NodePath& np = hitr ->nodePath ;  
  2. for (int i=np.size()-1;i>=0;--i)  
  3. {  
  4.     ............  
  5. }  

 

11、将节点动态转换为Scribe指针,如果在节点中存在Scribe对象,则返回的不为NULL,否则为NULL,有节点在第2步加入的,因此有一个模型时不为NULL

 

  1. //将场景中的模型动态转换为Scribe类型,如果场景的模型中有Scribe节点则返回的是实际的模型Scribe对象  
  2. osgFX::Scribe *sc=dynamic_cast<osgFX::Scribe*>(np[i]);  

 

12、如果找到了Scribe对象,则判断该对象是否已经隐藏,如果未隐藏,则将该节点隐藏起来。

 

  1. if (sc!=NULL)//如果找到相应的sc,则隐藏起来  
  2. {  
  3.     if (sc->getNodeMask()!=0)  
  4.     {  
  5.         sc->setNodeMask(0);  
  6.     }  
  7. }  
  1. #include "stdafx.h"  
  2. #include <osgDB/ReadFile>  
  3. #include <osgViewer/Viewer>  
  4. #include <osg/Node>  
  5. #include <osgFX/Scribe>  
  6. #include <osgGA/GUIEventHandler>  
  7. #include <osgUtil/LineSegmentIntersector>  
  8. class CPickHandler:public osgGA::GUIEventHandler  
  9. {  
  10. public:  
  11.     CPickHandler(osgViewer::Viewer *viewer):mViewer(viewer){}  
  12.     virtual bool handle(const osgGA::GUIEventAdapter &ea,osgGA::GUIActionAdapter &aa)  
  13.     {  
  14.         switch(ea.getEventType())  
  15.         {  
  16.         case osgGA::GUIEventAdapter::PUSH:  
  17.             if (ea.getButton()==1)  
  18.             {  
  19.                 Pick(ea.getX(),ea.getY());//可通过事件ea获得鼠标点击的坐标  
  20.             }  
  21.             return true;  
  22.         }  
  23.         return false;  
  24.     }  
  25. protected:  
  26.     void Pick(float x,float y)  
  27.     {  
  28.         osgUtil::LineSegmentIntersector::Intersections intersections;//声明一个相交测试的结果集  
  29.         if (mViewer->computeIntersections(x, y, intersections))//利用view的computerIntersection函数来测试屏幕与场景相交结果存入到结果集中  
  30.         {  
  31.             osgUtil::LineSegmentIntersector::Intersections::iterator hitr=intersections.begin();  
  32.             for (;hitr!=intersections.end();hitr++)  
  33.             {  
  34.                 if (!hitr->nodePath.empty()&&!(hitr->nodePath.back()->getName().empty()))  
  35.                 {  
  36.                     const osg::NodePath& np = hitr ->nodePath ;  
  37.                     for (int i=np.size()-1;i>=0;--i)  
  38.                     {  
  39.                         //将场景中的模型动态转换为Scribe类型,如果场景的模型中有Scribe节点则返回的是实际的模型Scribe对象  
  40.                         osgFX::Scribe *sc=dynamic_cast<osgFX::Scribe*>(np[i]);  
  41.                         if (sc!=NULL)//如果找到相应的sc,则隐藏起来  
  42.                         {  
  43.                             if (sc->getNodeMask()!=0)  
  44.                             {  
  45.                                 sc->setNodeMask(0);  
  46.                             }  
  47.                         }  
  48.                     }  
  49.                 }  
  50.             }  
  51.         }  
  52.     }  
  53.     osgViewer::Viewer *mViewer;  
  54. };  
  55. int _tmain(int argc, _TCHAR* argv[])  
  56. {  
  57.     osgViewer::Viewer viewer;  
  58.     osg::ref_ptr<osg::Group> root=new osg::Group();  
  59.     root->addChild(osgDB::readNodeFile("cessna.osg"));  
  60.     osg::ref_ptr<osg::Node> cow=osgDB::readNodeFile("cow.osg");  
  61.     osg::ref_ptr<osgFX::Scribe> sc=new osgFX::Scribe();//添加一个scribe节点,该节点下的模型会被加白描线高亮显示。  
  62.     sc->addChild(cow.get());//将模型牛加入到scribe节点中,那么加入之后,该牛就会有白边高亮显示  
  63.     root->addChild(sc.get());//将加白边的模型牛加入到默认的原点位置,默认为原点  
  64.     root->addChild(cow.get());//将模型牛加入到默认的原点位置,那么此时原模型牛和之前加入的白边牛就会重叠  
  65.     viewer.setSceneData(root.get());//将root节点加入到场景当中  
  66.     viewer.addEventHandler(new CPickHandler(&viewer));//为场景加入事件处理功能,并将场景本身传入到事件内部  
  67.     viewer.realize();  
  68.     return viewer.run();  
  69. }  

 

2、首先在添加模型时,要有一个标示,以便点击鼠标时,通过该标示知道点击的是否是这个模型,在此是加入白边的模型牛,白边对象为Scribe。

 

  1. osg::ref_ptr<osgFX::Scribe> sc=new osgFX::Scribe();//添加一个scribe节点,该节点下的模型会被加白描线高亮显示。  
  2. sc->addChild(cow.get());//将模型牛加入到scribe节点中,那么加入之后,该牛就会有白边高亮显示  
  3. root->addChild(sc.get());//将加白边的模型牛加入到默认的原点位置,默认为原点  

 

3、创建一个事件对象,并将该对象添加到场景中,那么在场景中就可以通过获取鼠标来做相应的动作。

 

  1. viewer.addEventHandler(new CPickHandler(&viewer));//为场景加入事件处理功能,并将场景本身传入到事件内部  

 

4、在事件对象中有一个虚函数handle,那么在此函数中将处理所有的事件,并在此事件中获取鼠标点击的坐标。

 

  1. virtual bool handle(const osgGA::GUIEventAdapter &ea,osgGA::GUIActionAdapter &aa)  

 

5、获取之后调用Pick函数,并将坐标传入到该函数内。

 

  1. Pick(ea.getX(),ea.getY());//可通过事件ea获得鼠标点击的坐标  

 

6、在该函数内通过computeIntersections函数,然后根据坐标来拾取该鼠标下的模型集合。

 

  1. mViewer->computeIntersections(x, y, intersections)  

 

7、定义一个迭代器。

 

  1. osgUtil::LineSegmentIntersector::Intersections::iterator hitr=intersections.begin();  

 

8、遍历该迭代器。

 

  1. for (;hitr!=intersections.end();hitr++)  

 

9、判断模型的路径以及名称是否为空。

 

  1. !hitr->nodePath.empty()&&!(hitr->nodePath.back()->getName().empty())  

 

10、如果不为空,则遍历该路径下的所有节点。

 

  1. const osg::NodePath& np = hitr ->nodePath ;  
  2. for (int i=np.size()-1;i>=0;--i)  
  3. {  
  4.     ............  
  5. }  

 

11、将节点动态转换为Scribe指针,如果在节点中存在Scribe对象,则返回的不为NULL,否则为NULL,有节点在第2步加入的,因此有一个模型时不为NULL

 

  1. //将场景中的模型动态转换为Scribe类型,如果场景的模型中有Scribe节点则返回的是实际的模型Scribe对象  
  2. osgFX::Scribe *sc=dynamic_cast<osgFX::Scribe*>(np[i]);  

 

12、如果找到了Scribe对象,则判断该对象是否已经隐藏,如果未隐藏,则将该节点隐藏起来。

 

  1. if (sc!=NULL)//如果找到相应的sc,则隐藏起来  
  2. {  
  3.     if (sc->getNodeMask()!=0)  
  4.     {  
  5.         sc->setNodeMask(0);  
  6.     }  
  7. }  


  1. #include <osgViewer/Viewer>
  2. #include <osgViewer/ViewerEventHandlers>
  3. #include <osg/Node>
  4. #include <osg/Geode>
  5. #include <osg/Group>
  6. #include <osgDB/ReadFile>
  7. #include <osgDB/WriteFile>
  8. #include <osgFX/Scribe>
  9. #include <osgGA/GUIEventHandler>
  10. #include <osgUtil/Optimizer>
  11. #include <iostream>
  12. //对象选取事件处理器
  13. class PickHandler : public osgGA::GUIEventHandler
  14. {
  15. public:
  16. PickHandler():
  17. _mx(0.0f),
  18. _my(0.0f)
  19. {
  20. //
  21. }
  22. ~PickHandler()
  23. {
  24. //
  25. }
  26. //事件处理函数
  27. bool handle(const osgGA::GUIEventAdapter& ea,osgGA::GUIActionAdapter& aa)
  28. {
  29. osg::ref_ptr<osgViewer::View> view = dynamic_cast<osgViewer::View*>(&aa);
  30. if (!view) return false;
  31. switch(ea.getEventType())
  32. {
  33. //鼠标按下
  34. case(osgGA::GUIEventAdapter::PUSH):
  35. {
  36. //更新鼠标位置
  37. _mx = ea.getX();
  38. _my = ea.getY();
  39. pick(view.get(), ea.getX(), ea.getY());
  40. break;
  41. }
  42. case(osgGA::GUIEventAdapter::RELEASE):
  43. {
  44. if (_mx==ea.getX() && _my==ea.getY())
  45. {
  46. //执行对象选取
  47. //pick(view.get(), ea.getX(), ea.getY());
  48. }
  49. break;
  50. }
  51. default:
  52. break;
  53. }
  54. return false;
  55. }
  56. //对象选取事件处理器
  57. void pick(osg::ref_ptr<osgViewer::View> view, float x, float y)
  58. {
  59. osg::ref_ptr<osg::Node> node = new osg::Node();
  60. osg::ref_ptr<osg::Group> parent = new osg::Group();
  61. //创建一个线段交集检测函数
  62. osgUtil::LineSegmentIntersector::Intersections intersections;
  63. if (view->computeIntersections(x, y, intersections))
  64. {
  65. osgUtil::LineSegmentIntersector::Intersection intersection = *intersections.begin();
  66. osg::NodePath& nodePath = intersection.nodePath;//直接获取相交模型点的节点
  67. //得到选择的物体
  68. node = (nodePath.size()>=1)?nodePath[nodePath.size()-1]:0;
  69. parent = (nodePath.size()>=2)?dynamic_cast<osg::Group*>(nodePath[nodePath.size()-2]):0;
  70. }
  71. //用一种高亮显示来显示物体已经被选中
  72. if (parent.get() && node.get())
  73. {
  74. osg::ref_ptr<osgFX::Scribe> parentAsScribe = dynamic_cast<osgFX::Scribe*>(parent.get());
  75. if (!parentAsScribe)
  76. {
  77. //如果对象选择到,高亮显示
  78. osg::ref_ptr<osgFX::Scribe> scribe = new osgFX::Scribe();
  79. scribe->addChild(node.get());
  80. parent->replaceChild(node.get(),scribe.get());
  81. }
  82. else
  83. {
  84. //如果没有没有选择到,则移除高亮显示的对象
  85. osg::Node::ParentList parentList = parentAsScribe->getParents();
  86. for(osg::Node::ParentList::iterator itr=parentList.begin();
  87. itr!=parentList.end();
  88. ++itr)
  89. {
  90. (*itr)->replaceChild(parentAsScribe.get(),node.get());
  91. }
  92. }
  93. }
  94. }
  95. public:
  96. //得到鼠标的位置
  97. float _mx ;
  98. float _my;
  99. };
  100. int main()
  101. {
  102. //创建Viewer对象,场景浏览器
  103. osg::ref_ptr<osgViewer::Viewer> viewer = new osgViewer::Viewer();
  104. viewer->addEventHandler(new PickHandler());
  105. //创建场景组节点
  106. osg::ref_ptr<osg::Group> root = new osg::Group();
  107. //创建一个节点,读取牛的模型
  108. osg::ref_ptr<osg::Node> node = osgDB::readNodeFile("cow.osg");
  109. //添加到场景
  110. root->addChild(node.get());
  111. //优化场景数据
  112. osgUtil::Optimizer optimizer ;
  113. optimizer.optimize(root.get()) ;
  114. viewer->setSceneData(root.get());
  115. viewer->realize();
  116. viewer->run();
  117. return 0 ;
  118. }










声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/314987
推荐阅读
相关标签
  

闽ICP备14008679号