// C++ source file - (C) 2003 Robert Osfield, released under the OSGPL. // // Simple example of use of osgViewer::GraphicsWindow + SimpleViewer // example that provides the user with control over view position with basic picking. #include #include #include #include #include #include #include #include #include #include #include #include #include #include class CreateModelToSaveVisitor : public osg::NodeVisitor { public: CreateModelToSaveVisitor(): osg::NodeVisitor(osg::NodeVisitor::TRAVERSE_ALL_CHILDREN) { _group = new osg::Group; _addToModel = false; } virtual void apply(osg::Node& node) { osgFX::Scribe* scribe = dynamic_cast(&node); if (scribe) { for(unsigned int i=0; igetNumChildren(); ++i) { _group->addChild(scribe->getChild(i)); } } else { traverse(node); } } osg::ref_ptr _group; bool _addToModel; }; class DeleteSelectedNodesVisitor : public osg::NodeVisitor { public: DeleteSelectedNodesVisitor(): osg::NodeVisitor(osg::NodeVisitor::TRAVERSE_ALL_CHILDREN) { } virtual void apply(osg::Node& node) { osgFX::Scribe* scribe = dynamic_cast(&node); if (scribe) { _selectedNodes.push_back(scribe); } else { traverse(node); } } void pruneSelectedNodes() { for(SelectedNodes::iterator itr = _selectedNodes.begin(); itr != _selectedNodes.end(); ++itr) { osg::Node* node = itr->get(); osg::Node::ParentList parents = node->getParents(); for(osg::Node::ParentList::iterator pitr = parents.begin(); pitr != parents.end(); ++pitr) { osg::Group* parent = *pitr; parent->removeChild(node); } } } typedef std::vector< osg::ref_ptr > SelectedNodes; SelectedNodes _selectedNodes; }; class ExitHandler : public osgGA::GUIEventHandler { public: ExitHandler(): _done(false) {} bool done() const { return _done; } bool handle(const osgGA::GUIEventAdapter& ea, osgGA::GUIActionAdapter&) { switch(ea.getEventType()) { case(osgGA::GUIEventAdapter::KEYUP): { if (ea.getKey()==osgGA::GUIEventAdapter::KEY_Escape) { _done = true; } return false; } case(osgGA::GUIEventAdapter::CLOSE_WINDOW): case(osgGA::GUIEventAdapter::QUIT_APPLICATION): { _done = true; } default: break; } return false; } bool _done; }; // class to handle events with a pick class PickHandler : public osgGA::GUIEventHandler { public: PickHandler(): _mx(0.0),_my(0.0) {} ~PickHandler() {} bool handle(const osgGA::GUIEventAdapter& ea, osgGA::GUIActionAdapter& aa) { osgViewer::SimpleViewer* viewer = dynamic_cast(&aa); if (!viewer) return false; switch(ea.getEventType()) { case(osgGA::GUIEventAdapter::KEYUP): { if (ea.getKey()=='s') { saveSelectedModel(viewer->getSceneData()); } else if (ea.getKey()=='o') { osg::notify(osg::NOTICE)<<"Saved model to file 'saved_model.osg'"<getSceneData()), "saved_model.osg"); } else if (ea.getKey()==osgGA::GUIEventAdapter::KEY_Delete || ea.getKey()==osgGA::GUIEventAdapter::KEY_BackSpace) { osg::notify(osg::NOTICE)<<"Delete"<getSceneData()->accept(dsnv); dsnv.pruneSelectedNodes(); } return false; } case(osgGA::GUIEventAdapter::PUSH): case(osgGA::GUIEventAdapter::MOVE): { _mx = ea.getX(); _my = ea.getY(); return false; } case(osgGA::GUIEventAdapter::RELEASE): { if (_mx == ea.getX() && _my == ea.getY()) { // only do a pick if the mouse hasn't moved pick(ea,viewer); } return true; } default: return false; } } void pick(const osgGA::GUIEventAdapter& ea, osgViewer::SimpleViewer* viewer) { osg::Node* scene = viewer->getSceneData(); if (!scene) return; osg::notify(osg::NOTICE)<getCamera()->getViewport(); double mx = viewport->x() + (int)((double )viewport->width()*(ea.getXnormalized()*0.5+0.5)); double my = viewport->y() + (int)((double )viewport->height()*(ea.getYnormalized()*0.5+0.5)); // half width, height. double w = 5.0f; double h = 5.0f; osgUtil::PolytopeIntersector* picker = new osgUtil::PolytopeIntersector( osgUtil::Intersector::WINDOW, mx-w, my-h, mx+w, my+h ); #else double mx = ea.getXnormalized(); double my = ea.getYnormalized(); double w = 0.05; double h = 0.05; osgUtil::PolytopeIntersector* picker = new osgUtil::PolytopeIntersector( osgUtil::Intersector::PROJECTION, mx-w, my-h, mx+w, my+h ); #endif osgUtil::IntersectionVisitor iv(picker); viewer->getCamera()->accept(iv); if (picker->containsIntersections()) { osgUtil::PolytopeIntersector::Intersection intersection = picker->getFirstIntersection(); osg::NodePath& nodePath = intersection.nodePath; node = (nodePath.size()>=1)?nodePath[nodePath.size()-1]:0; parent = (nodePath.size()>=2)?dynamic_cast(nodePath[nodePath.size()-2]):0; if (node) std::cout<<" Hits "<className()<<" nodePath size"<getCamera()->getViewport(); float mx = viewport->x() + (int)((float)viewport->width()*(ea.getXnormalized()*0.5f+0.5f)); float my = viewport->y() + (int)((float)viewport->height()*(ea.getYnormalized()*0.5f+0.5f)); osgUtil::LineSegmentIntersector* picker = new osgUtil::LineSegmentIntersector( osgUtil::Intersector::WINDOW, mx, my ); #endif osgUtil::IntersectionVisitor iv(picker); viewer->getCamera()->accept(iv); if (picker->containsIntersections()) { osgUtil::LineSegmentIntersector::Intersection intersection = picker->getFirstIntersection(); osg::notify(osg::NOTICE)<<"Picked "<=1)?nodePath[nodePath.size()-1]:0; parent = (nodePath.size()>=2)?dynamic_cast(nodePath[nodePath.size()-2]):0; if (node) std::cout<<" Hits "<className()<<" nodePath size"<className()<(parent); if (!parentAsScribe) { // node not already picked, so highlight it with an osgFX::Scribe osgFX::Scribe* scribe = new osgFX::Scribe(); scribe->addChild(node); parent->replaceChild(node,scribe); } else { // node already picked so we want to remove scribe to unpick it. osg::Node::ParentList parentList = parentAsScribe->getParents(); for(osg::Node::ParentList::iterator itr=parentList.begin(); itr!=parentList.end(); ++itr) { (*itr)->replaceChild(parentAsScribe,node); } } } } void saveSelectedModel(osg::Node* scene) { if (!scene) return; CreateModelToSaveVisitor cmtsv; scene->accept(cmtsv); if (cmtsv._group->getNumChildren()>0) { std::cout<<"Writing selected compoents to 'selected_model.osg'"< loadedModel = osgDB::readNodeFile(argv[1]); if (!loadedModel) { std::cout << argv[0] <<": No data loaded." << std::endl; return 1; } // create the window to draw to. osg::ref_ptr traits = new osg::GraphicsContext::Traits; traits->x = 200; traits->y = 200; traits->width = 800; traits->height = 600; traits->windowDecoration = true; traits->doubleBuffer = true; traits->sharedContext = 0; osg::ref_ptr gc = osg::GraphicsContext::createGraphicsContext(traits.get()); osgViewer::GraphicsWindow* gw = dynamic_cast(gc.get()); if (!gw) { osg::notify(osg::NOTICE)<<"Error: unable to create graphics window."<realize(); gw->makeCurrent(); // create the view of the scene. osgViewer::SimpleViewer viewer; viewer.setSceneData(loadedModel.get()); viewer.setEventQueue(gw->getEventQueue()); viewer.getEventQueue()->windowResize(traits->x,traits->y,traits->width,traits->height); // create a tracball manipulator to move the camera around in response to keyboard/mouse events viewer.setCameraManipulator( new osgGA::TrackballManipulator ); osg::ref_ptr statesetManipulator = new osgGA::StateSetManipulator; statesetManipulator->setStateSet(viewer.getSceneView()->getGlobalStateSet()); viewer.addEventHandler(statesetManipulator.get()); // add the pick handler viewer.addEventHandler(new PickHandler()); // add the exit handler' ExitHandler* exitHandler = new ExitHandler; viewer.addEventHandler(exitHandler); viewer.init(); // main loop (note, window toolkits which take control over the main loop will require a window redraw callback containing the code below.) while( gw->isRealized() && !exitHandler->done()) { gw->checkEvents(); viewer.frame(); // Swap Buffers gw->swapBuffers(); } return 0; }