| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | |
|---|
| 19 | #include <osgUtil/Optimizer> |
|---|
| 20 | #include <osgDB/ReadFile> |
|---|
| 21 | |
|---|
| 22 | #include <osg/Material> |
|---|
| 23 | #include <osg/Geode> |
|---|
| 24 | #include <osg/BlendFunc> |
|---|
| 25 | #include <osg/Depth> |
|---|
| 26 | #include <osg/Projection> |
|---|
| 27 | #include <osg/PolygonOffset> |
|---|
| 28 | #include <osg/MatrixTransform> |
|---|
| 29 | #include <osg/Camera> |
|---|
| 30 | #include <osg/FrontFace> |
|---|
| 31 | |
|---|
| 32 | #include <osgText/Text> |
|---|
| 33 | |
|---|
| 34 | #include <osgGA/TrackballManipulator> |
|---|
| 35 | #include <osgGA/FlightManipulator> |
|---|
| 36 | #include <osgGA/StateSetManipulator> |
|---|
| 37 | #include <osgViewer/ViewerEventHandlers> |
|---|
| 38 | |
|---|
| 39 | #include <osgViewer/CompositeViewer> |
|---|
| 40 | |
|---|
| 41 | #include <osgFX/Scribe> |
|---|
| 42 | |
|---|
| 43 | #include <osg/io_utils> |
|---|
| 44 | |
|---|
| 45 | |
|---|
| 46 | class PickHandler : public osgGA::GUIEventHandler { |
|---|
| 47 | public: |
|---|
| 48 | |
|---|
| 49 | PickHandler(): |
|---|
| 50 | _mx(0.0f), |
|---|
| 51 | _my(0.0f) {} |
|---|
| 52 | |
|---|
| 53 | ~PickHandler() {} |
|---|
| 54 | |
|---|
| 55 | bool handle(const osgGA::GUIEventAdapter& ea,osgGA::GUIActionAdapter& aa) |
|---|
| 56 | { |
|---|
| 57 | osgViewer::View* view = dynamic_cast<osgViewer::View*>(&aa); |
|---|
| 58 | if (!view) return false; |
|---|
| 59 | |
|---|
| 60 | switch(ea.getEventType()) |
|---|
| 61 | { |
|---|
| 62 | case(osgGA::GUIEventAdapter::PUSH): |
|---|
| 63 | { |
|---|
| 64 | _mx = ea.getX(); |
|---|
| 65 | _my = ea.getY(); |
|---|
| 66 | break; |
|---|
| 67 | } |
|---|
| 68 | case(osgGA::GUIEventAdapter::RELEASE): |
|---|
| 69 | { |
|---|
| 70 | if (_mx==ea.getX() && _my==ea.getY()) |
|---|
| 71 | { |
|---|
| 72 | pick(view, ea.getX(), ea.getY()); |
|---|
| 73 | } |
|---|
| 74 | break; |
|---|
| 75 | } |
|---|
| 76 | default: |
|---|
| 77 | break; |
|---|
| 78 | } |
|---|
| 79 | return false; |
|---|
| 80 | } |
|---|
| 81 | |
|---|
| 82 | void pick(osgViewer::View* view, float x, float y) |
|---|
| 83 | { |
|---|
| 84 | osg::Node* node = 0; |
|---|
| 85 | osg::Group* parent = 0; |
|---|
| 86 | |
|---|
| 87 | osgUtil::LineSegmentIntersector::Intersections intersections; |
|---|
| 88 | if (view->computeIntersections(x, y, intersections)) |
|---|
| 89 | { |
|---|
| 90 | osgUtil::LineSegmentIntersector::Intersection intersection = *intersections.begin(); |
|---|
| 91 | osg::NodePath& nodePath = intersection.nodePath; |
|---|
| 92 | node = (nodePath.size()>=1)?nodePath[nodePath.size()-1]:0; |
|---|
| 93 | parent = (nodePath.size()>=2)?dynamic_cast<osg::Group*>(nodePath[nodePath.size()-2]):0; |
|---|
| 94 | } |
|---|
| 95 | |
|---|
| 96 | |
|---|
| 97 | if (parent && node) |
|---|
| 98 | { |
|---|
| 99 | |
|---|
| 100 | osgFX::Scribe* parentAsScribe = dynamic_cast<osgFX::Scribe*>(parent); |
|---|
| 101 | if (!parentAsScribe) |
|---|
| 102 | { |
|---|
| 103 | |
|---|
| 104 | osgFX::Scribe* scribe = new osgFX::Scribe(); |
|---|
| 105 | scribe->addChild(node); |
|---|
| 106 | parent->replaceChild(node,scribe); |
|---|
| 107 | } |
|---|
| 108 | else |
|---|
| 109 | { |
|---|
| 110 | |
|---|
| 111 | osg::Node::ParentList parentList = parentAsScribe->getParents(); |
|---|
| 112 | for(osg::Node::ParentList::iterator itr=parentList.begin(); |
|---|
| 113 | itr!=parentList.end(); |
|---|
| 114 | ++itr) |
|---|
| 115 | { |
|---|
| 116 | (*itr)->replaceChild(parentAsScribe,node); |
|---|
| 117 | } |
|---|
| 118 | } |
|---|
| 119 | } |
|---|
| 120 | |
|---|
| 121 | } |
|---|
| 122 | |
|---|
| 123 | float _mx, _my; |
|---|
| 124 | |
|---|
| 125 | }; |
|---|
| 126 | |
|---|
| 127 | |
|---|
| 128 | int main( int argc, char **argv ) |
|---|
| 129 | { |
|---|
| 130 | |
|---|
| 131 | |
|---|
| 132 | osg::ArgumentParser arguments(&argc,argv); |
|---|
| 133 | |
|---|
| 134 | |
|---|
| 135 | osg::ref_ptr<osg::Node> scene = osgDB::readNodeFiles(arguments); |
|---|
| 136 | |
|---|
| 137 | if (!scene) return 1; |
|---|
| 138 | |
|---|
| 139 | |
|---|
| 140 | osgViewer::CompositeViewer viewer(arguments); |
|---|
| 141 | |
|---|
| 142 | |
|---|
| 143 | |
|---|
| 144 | |
|---|
| 145 | if (arguments.read("-1")) |
|---|
| 146 | { |
|---|
| 147 | { |
|---|
| 148 | osgViewer::View* view = new osgViewer::View; |
|---|
| 149 | view->setName("Single view"); |
|---|
| 150 | view->setSceneData(osgDB::readNodeFile("fountain.osg")); |
|---|
| 151 | |
|---|
| 152 | view->addEventHandler( new osgViewer::StatsHandler ); |
|---|
| 153 | |
|---|
| 154 | view->setUpViewAcrossAllScreens(); |
|---|
| 155 | view->setCameraManipulator(new osgGA::TrackballManipulator); |
|---|
| 156 | viewer.addView(view); |
|---|
| 157 | } |
|---|
| 158 | } |
|---|
| 159 | |
|---|
| 160 | if (arguments.read("-2")) |
|---|
| 161 | { |
|---|
| 162 | |
|---|
| 163 | |
|---|
| 164 | { |
|---|
| 165 | osgViewer::View* view = new osgViewer::View; |
|---|
| 166 | viewer.addView(view); |
|---|
| 167 | |
|---|
| 168 | view->setUpViewOnSingleScreen(0); |
|---|
| 169 | view->setSceneData(scene.get()); |
|---|
| 170 | view->setCameraManipulator(new osgGA::TrackballManipulator); |
|---|
| 171 | |
|---|
| 172 | |
|---|
| 173 | osg::ref_ptr<osgGA::StateSetManipulator> statesetManipulator = new osgGA::StateSetManipulator; |
|---|
| 174 | statesetManipulator->setStateSet(view->getCamera()->getOrCreateStateSet()); |
|---|
| 175 | |
|---|
| 176 | view->addEventHandler( statesetManipulator.get() ); |
|---|
| 177 | } |
|---|
| 178 | |
|---|
| 179 | |
|---|
| 180 | { |
|---|
| 181 | osgViewer::View* view = new osgViewer::View; |
|---|
| 182 | viewer.addView(view); |
|---|
| 183 | |
|---|
| 184 | view->setUpViewOnSingleScreen(1); |
|---|
| 185 | view->setSceneData(scene.get()); |
|---|
| 186 | view->setCameraManipulator(new osgGA::TrackballManipulator); |
|---|
| 187 | |
|---|
| 188 | view->addEventHandler( new osgViewer::StatsHandler ); |
|---|
| 189 | |
|---|
| 190 | |
|---|
| 191 | |
|---|
| 192 | view->addEventHandler(new PickHandler()); |
|---|
| 193 | } |
|---|
| 194 | } |
|---|
| 195 | |
|---|
| 196 | |
|---|
| 197 | if (arguments.read("-3") || viewer.getNumViews()==0) |
|---|
| 198 | { |
|---|
| 199 | |
|---|
| 200 | osg::GraphicsContext::WindowingSystemInterface* wsi = osg::GraphicsContext::getWindowingSystemInterface(); |
|---|
| 201 | if (!wsi) |
|---|
| 202 | { |
|---|
| 203 | osg::notify(osg::NOTICE)<<"Error, no WindowSystemInterface available, cannot create windows."<<std::endl; |
|---|
| 204 | return 1; |
|---|
| 205 | } |
|---|
| 206 | |
|---|
| 207 | unsigned int width, height; |
|---|
| 208 | wsi->getScreenResolution(osg::GraphicsContext::ScreenIdentifier(0), width, height); |
|---|
| 209 | |
|---|
| 210 | osg::ref_ptr<osg::GraphicsContext::Traits> traits = new osg::GraphicsContext::Traits; |
|---|
| 211 | traits->x = 100; |
|---|
| 212 | traits->y = 100; |
|---|
| 213 | traits->width = 1000; |
|---|
| 214 | traits->height = 800; |
|---|
| 215 | traits->windowDecoration = true; |
|---|
| 216 | traits->doubleBuffer = true; |
|---|
| 217 | traits->sharedContext = 0; |
|---|
| 218 | |
|---|
| 219 | osg::ref_ptr<osg::GraphicsContext> gc = osg::GraphicsContext::createGraphicsContext(traits.get()); |
|---|
| 220 | if (gc.valid()) |
|---|
| 221 | { |
|---|
| 222 | osg::notify(osg::INFO)<<" GraphicsWindow has been created successfully."<<std::endl; |
|---|
| 223 | |
|---|
| 224 | |
|---|
| 225 | |
|---|
| 226 | gc->setClearColor(osg::Vec4f(0.2f,0.2f,0.6f,1.0f)); |
|---|
| 227 | gc->setClearMask(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); |
|---|
| 228 | } |
|---|
| 229 | else |
|---|
| 230 | { |
|---|
| 231 | osg::notify(osg::NOTICE)<<" GraphicsWindow has not been created successfully."<<std::endl; |
|---|
| 232 | } |
|---|
| 233 | |
|---|
| 234 | |
|---|
| 235 | { |
|---|
| 236 | osgViewer::View* view = new osgViewer::View; |
|---|
| 237 | viewer.addView(view); |
|---|
| 238 | |
|---|
| 239 | view->setSceneData(scene.get()); |
|---|
| 240 | view->getCamera()->setViewport(new osg::Viewport(0,0, traits->width/2, traits->height/2)); |
|---|
| 241 | view->getCamera()->setGraphicsContext(gc.get()); |
|---|
| 242 | view->setCameraManipulator(new osgGA::TrackballManipulator); |
|---|
| 243 | |
|---|
| 244 | |
|---|
| 245 | osg::ref_ptr<osgGA::StateSetManipulator> statesetManipulator = new osgGA::StateSetManipulator; |
|---|
| 246 | statesetManipulator->setStateSet(view->getCamera()->getOrCreateStateSet()); |
|---|
| 247 | |
|---|
| 248 | view->addEventHandler( statesetManipulator.get() ); |
|---|
| 249 | |
|---|
| 250 | view->addEventHandler( new osgViewer::StatsHandler ); |
|---|
| 251 | view->addEventHandler( new osgViewer::HelpHandler ); |
|---|
| 252 | view->addEventHandler( new osgViewer::WindowSizeHandler ); |
|---|
| 253 | view->addEventHandler( new osgViewer::ThreadingHandler ); |
|---|
| 254 | view->addEventHandler( new osgViewer::RecordCameraPathHandler ); |
|---|
| 255 | } |
|---|
| 256 | |
|---|
| 257 | |
|---|
| 258 | { |
|---|
| 259 | osgViewer::View* view = new osgViewer::View; |
|---|
| 260 | viewer.addView(view); |
|---|
| 261 | |
|---|
| 262 | view->setSceneData(scene.get()); |
|---|
| 263 | view->getCamera()->setViewport(new osg::Viewport(traits->width/2,0, traits->width/2, traits->height/2)); |
|---|
| 264 | view->getCamera()->setGraphicsContext(gc.get()); |
|---|
| 265 | view->setCameraManipulator(new osgGA::TrackballManipulator); |
|---|
| 266 | |
|---|
| 267 | |
|---|
| 268 | view->addEventHandler(new PickHandler()); |
|---|
| 269 | |
|---|
| 270 | } |
|---|
| 271 | |
|---|
| 272 | |
|---|
| 273 | { |
|---|
| 274 | osgViewer::View* view = new osgViewer::View; |
|---|
| 275 | viewer.addView(view); |
|---|
| 276 | |
|---|
| 277 | view->setSceneData(osgDB::readNodeFile("cessnafire.osg")); |
|---|
| 278 | |
|---|
| 279 | view->getCamera()->setProjectionMatrixAsPerspective(30.0, double(traits->width) / double(traits->height/2), 1.0, 1000.0); |
|---|
| 280 | view->getCamera()->setViewport(new osg::Viewport(0, traits->height/2, traits->width, traits->height/2)); |
|---|
| 281 | view->getCamera()->setGraphicsContext(gc.get()); |
|---|
| 282 | view->setCameraManipulator(new osgGA::TrackballManipulator); |
|---|
| 283 | } |
|---|
| 284 | |
|---|
| 285 | } |
|---|
| 286 | |
|---|
| 287 | |
|---|
| 288 | while (arguments.read("-s")) { viewer.setThreadingModel(osgViewer::CompositeViewer::SingleThreaded); } |
|---|
| 289 | while (arguments.read("-g")) { viewer.setThreadingModel(osgViewer::CompositeViewer::CullDrawThreadPerContext); } |
|---|
| 290 | while (arguments.read("-c")) { viewer.setThreadingModel(osgViewer::CompositeViewer::CullThreadPerCameraDrawThreadPerContext); } |
|---|
| 291 | |
|---|
| 292 | |
|---|
| 293 | return viewer.run(); |
|---|
| 294 | } |
|---|