| 1 | #include <osg/Group> |
|---|
| 2 | #include <osg/Notify> |
|---|
| 3 | #include <osg/Depth> |
|---|
| 4 | #include <osg/StateSet> |
|---|
| 5 | #include <osg/ClearNode> |
|---|
| 6 | #include <osg/Transform> |
|---|
| 7 | |
|---|
| 8 | #include <osgUtil/CullVisitor> |
|---|
| 9 | |
|---|
| 10 | #include <osgDB/Registry> |
|---|
| 11 | #include <osgDB/ReadFile> |
|---|
| 12 | |
|---|
| 13 | #include <osgGA/AnimationPathManipulator> |
|---|
| 14 | |
|---|
| 15 | #include <osgProducer/Viewer> |
|---|
| 16 | |
|---|
| 17 | #include "GliderManipulator.h" |
|---|
| 18 | |
|---|
| 19 | extern osg::Node *makeTerrain( void ); |
|---|
| 20 | extern osg::Node *makeTrees( void ); |
|---|
| 21 | extern osg::Node *makeTank( void ); |
|---|
| 22 | extern osg::Node *makeWindsocks( void ); |
|---|
| 23 | extern osg::Node *makeGliders( void ); |
|---|
| 24 | extern osg::Node *makeGlider( void ); |
|---|
| 25 | extern osg::Node *makeSky( void ); |
|---|
| 26 | extern osg::Node *makeBase( void ); |
|---|
| 27 | extern osg::Node *makeClouds( void ); |
|---|
| 28 | |
|---|
| 29 | class MoveEarthySkyWithEyePointTransform : public osg::Transform |
|---|
| 30 | { |
|---|
| 31 | public: |
|---|
| 32 | |
|---|
| 33 | virtual bool computeLocalToWorldMatrix(osg::Matrix& matrix,osg::NodeVisitor* nv) const |
|---|
| 34 | { |
|---|
| 35 | osgUtil::CullVisitor* cv = dynamic_cast<osgUtil::CullVisitor*>(nv); |
|---|
| 36 | if (cv) |
|---|
| 37 | { |
|---|
| 38 | osg::Vec3 eyePointLocal = cv->getEyeLocal(); |
|---|
| 39 | matrix.preMult(osg::Matrix::translate(eyePointLocal.x(),eyePointLocal.y(),0.0f)); |
|---|
| 40 | } |
|---|
| 41 | return true; |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | |
|---|
| 45 | virtual bool computeWorldToLocalMatrix(osg::Matrix& matrix,osg::NodeVisitor* nv) const |
|---|
| 46 | { |
|---|
| 47 | std::cout<<"computing transform"<<std::endl; |
|---|
| 48 | |
|---|
| 49 | osgUtil::CullVisitor* cv = dynamic_cast<osgUtil::CullVisitor*>(nv); |
|---|
| 50 | if (cv) |
|---|
| 51 | { |
|---|
| 52 | osg::Vec3 eyePointLocal = cv->getEyeLocal(); |
|---|
| 53 | matrix.postMult(osg::Matrix::translate(-eyePointLocal.x(),-eyePointLocal.y(),0.0f)); |
|---|
| 54 | } |
|---|
| 55 | return true; |
|---|
| 56 | } |
|---|
| 57 | }; |
|---|
| 58 | |
|---|
| 59 | osg::Group* createModel() |
|---|
| 60 | { |
|---|
| 61 | |
|---|
| 62 | osg::Group* group = new osg::Group; |
|---|
| 63 | |
|---|
| 64 | |
|---|
| 65 | |
|---|
| 66 | |
|---|
| 67 | |
|---|
| 68 | |
|---|
| 69 | osg::ClearNode* clearNode = new osg::ClearNode; |
|---|
| 70 | clearNode->setRequiresClear(false); |
|---|
| 71 | |
|---|
| 72 | |
|---|
| 73 | osg::Transform* transform = new MoveEarthySkyWithEyePointTransform; |
|---|
| 74 | |
|---|
| 75 | |
|---|
| 76 | |
|---|
| 77 | |
|---|
| 78 | |
|---|
| 79 | |
|---|
| 80 | transform->setCullingActive(false); |
|---|
| 81 | |
|---|
| 82 | |
|---|
| 83 | transform->addChild(makeSky()); |
|---|
| 84 | transform->addChild(makeBase()); |
|---|
| 85 | |
|---|
| 86 | |
|---|
| 87 | clearNode->addChild(transform); |
|---|
| 88 | |
|---|
| 89 | |
|---|
| 90 | group->addChild(clearNode); |
|---|
| 91 | |
|---|
| 92 | |
|---|
| 93 | group->addChild(makeTrees()); |
|---|
| 94 | group->addChild(makeTerrain()); |
|---|
| 95 | group->addChild(makeTank()); |
|---|
| 96 | |
|---|
| 97 | |
|---|
| 98 | |
|---|
| 99 | |
|---|
| 100 | return group; |
|---|
| 101 | } |
|---|
| 102 | |
|---|
| 103 | int main( int argc, char **argv ) |
|---|
| 104 | { |
|---|
| 105 | |
|---|
| 106 | |
|---|
| 107 | osg::ArgumentParser arguments(&argc,argv); |
|---|
| 108 | |
|---|
| 109 | |
|---|
| 110 | arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" is the example which demonstrates how to create a scene programatically, in this case a hang gliding flying site."); |
|---|
| 111 | arguments.getApplicationUsage()->setCommandLineUsage(arguments.getApplicationName()+" [options] filename ..."); |
|---|
| 112 | arguments.getApplicationUsage()->addCommandLineOption("-h or --help","Display this information"); |
|---|
| 113 | |
|---|
| 114 | |
|---|
| 115 | osgProducer::Viewer viewer(arguments); |
|---|
| 116 | |
|---|
| 117 | |
|---|
| 118 | viewer.setUpViewer(osgProducer::Viewer::STANDARD_SETTINGS); |
|---|
| 119 | |
|---|
| 120 | unsigned int pos = viewer.addCameraManipulator(new GliderManipulator()); |
|---|
| 121 | viewer.selectCameraManipulator(pos); |
|---|
| 122 | |
|---|
| 123 | |
|---|
| 124 | viewer.getUsage(*arguments.getApplicationUsage()); |
|---|
| 125 | |
|---|
| 126 | |
|---|
| 127 | if (arguments.read("-h") || arguments.read("--help")) |
|---|
| 128 | { |
|---|
| 129 | arguments.getApplicationUsage()->write(std::cout); |
|---|
| 130 | return 1; |
|---|
| 131 | } |
|---|
| 132 | |
|---|
| 133 | |
|---|
| 134 | arguments.reportRemainingOptionsAsUnrecognized(); |
|---|
| 135 | |
|---|
| 136 | |
|---|
| 137 | if (arguments.errors()) |
|---|
| 138 | { |
|---|
| 139 | arguments.writeErrorMessages(std::cout); |
|---|
| 140 | return 1; |
|---|
| 141 | } |
|---|
| 142 | |
|---|
| 143 | |
|---|
| 144 | osg::Node* rootnode = osgDB::readNodeFiles(arguments); |
|---|
| 145 | if (!rootnode) rootnode = createModel(); |
|---|
| 146 | |
|---|
| 147 | viewer.setSceneData( rootnode ); |
|---|
| 148 | |
|---|
| 149 | |
|---|
| 150 | viewer.realize(); |
|---|
| 151 | |
|---|
| 152 | while( !viewer.done() ) |
|---|
| 153 | { |
|---|
| 154 | |
|---|
| 155 | viewer.sync(); |
|---|
| 156 | |
|---|
| 157 | |
|---|
| 158 | |
|---|
| 159 | viewer.update(); |
|---|
| 160 | |
|---|
| 161 | |
|---|
| 162 | viewer.frame(); |
|---|
| 163 | |
|---|
| 164 | } |
|---|
| 165 | |
|---|
| 166 | |
|---|
| 167 | viewer.sync(); |
|---|
| 168 | |
|---|
| 169 | return 0; |
|---|
| 170 | } |
|---|