source: osgVisual/trunk/src/core/visual_core.cpp @ 195

Last change on this file since 195 was 195, checked in by Torben Dannhauer, 13 years ago
File size: 19.0 KB
Line 
1/* -*-c++-*- osgVisual - Copyright (C) 2009-2010 Torben Dannhauer
2 *
3 * This library is based on OpenSceneGraph, open source and may be redistributed and/or modified under
4 * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
5 * (at your option) any later version.  The full license is in LICENSE file
6 * included with this distribution, and on the openscenegraph.org website.
7 *
8 * osgVisual requires for some proprietary modules a license from the correspondig manufacturer.
9 * You have to aquire licenses for all used proprietary modules.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * OpenSceneGraph Public License for more details.
15*/
16
17
18#include <visual_core.h>
19
20using namespace osgVisual;
21
22visual_core::visual_core(osg::ArgumentParser& arguments_) : arguments(arguments_)
23{
24        OSG_NOTIFY( osg::ALWAYS ) << "visual_core instantiated." << std::endl;
25}
26
27visual_core::~visual_core(void)
28{
29        OSG_NOTIFY( osg::ALWAYS ) << "visual_core destroyed." << std::endl;
30}
31
32void visual_core::initialize()
33{
34        OSG_NOTIFY( osg::ALWAYS ) << "Initialize visual_core..." << std::endl;
35
36        // Check for config file to provide it to all modules during initialization.
37        if( arguments.read("-c", configFilename) || arguments.read("--config", configFilename) )
38        {
39                if( !osgDB::fileExists(configFilename) )
40                        configFilename = "";
41                else
42                        OSG_ALWAYS << "Using configuration file: " << configFilename << std::endl;
43        }
44
45        // Configure osg to use KdTrees
46        osgDB::Registry::instance()->setBuildKdTreesHint(osgDB::ReaderWriter::Options::BUILD_KDTREES);
47
48        // Setup pathes
49        osgDB::Registry::instance()->getDataFilePathList().push_back( "D:\\DA\\osgVisual\\models" );
50       
51        // Setup viewer
52        viewer = new osgViewer::Viewer(arguments);
53
54        // Setup coordinate system node
55        rootNode = new osg::CoordinateSystemNode;       // todo memleakf
56        rootNode->setEllipsoidModel(new osg::EllipsoidModel());
57
58        // Test memory leak (todo)
59        double* test = new double[1000];
60
61        #ifdef USE_SPACENAVIGATOR
62                mouse = NULL;
63        #endif
64
65        //osg::DisplaySettings::instance()->setNumOfDatabaseThreadsHint( 8 );
66
67        // Show model
68        viewer->setSceneData( rootNode );
69
70        osg::Group* distortedSceneGraph = NULL;
71#ifdef USE_DISTORTION
72        // Initialize distortion
73        distortion = new visual_distortion( viewer, arguments, configFilename );
74        distortedSceneGraph = distortion->initialize( rootNode, viewer->getCamera()->getClearColor() );
75#endif
76
77#ifdef USE_SKY_SILVERLINING
78        // Initialize sky
79        bool disabled = false;  // to ask if the skyp is disabled or enabled
80        sky = new visual_skySilverLining( viewer, configFilename, disabled );
81        if(disabled)
82                sky = NULL;
83        if(sky.valid())
84                sky->init(distortedSceneGraph, rootNode);       // Without distortion: distortedSceneGraph=NULL
85#endif
86
87        // Initialize DataIO interface
88        visual_dataIO::getInstance()->init(viewer, configFilename);
89
90        // Add manipulators for user interaction - after dataIO to be able to skip it in slaves rendering machines.
91        addManipulators();
92
93        // create the windows and run the threads.
94        viewer->realize();
95
96        loadTerrain(arguments);
97
98        // All modules are initialized - now check arguments for any unused parameter.
99        checkCommandlineArgumentsForFinalErrors();
100
101        // Run visual main loop
102        mainLoop();
103}
104
105void visual_core::mainLoop()
106{
107        int framestoScenerySetup = 5;
108        // run main loop
109        while( !viewer->done() )
110    {
111                // setup scenery
112                if(framestoScenerySetup-- == 0)
113                        setupScenery();
114
115                // next frame please....
116        viewer->advance();
117
118                /*double hat, hot, lat, lon, height;
119                util::getWGS84ofCamera( viewer->getCamera(), rootNode, lat, lon, height);
120                if (util::queryHeightOfTerrain( hot, rootNode, lat, lon) && util::queryHeightAboveTerrainInWGS84( hat, rootNode, lat, lon, height ) )
121                        OSG_NOTIFY( osg::ALWAYS ) << "HOT is: " << hot << ", HAT is: " << hat << std::endl;*/
122       
123                // perform all queued events
124                viewer->eventTraversal();
125
126                // update the scene by traversing it with the the update visitor which will
127        // call all node update callbacks and animations.
128        viewer->updateTraversal();
129               
130        // Render the Frame.
131        viewer->renderingTraversals();
132
133    }   // END WHILE
134}
135
136void visual_core::shutdown()
137{
138        OSG_NOTIFY( osg::ALWAYS ) << "Shutdown visual_core..." << std::endl;
139
140        // Shutdown Dbug HUD
141        if(hud.valid())
142                hud->shutdown();
143        // Unset scene data
144        viewer->setSceneData( NULL );
145
146#ifdef USE_SKY_SILVERLINING
147        // Shutdown sky
148        if( sky.valid() )
149                sky->shutdown();
150#endif
151
152#ifdef USE_DISTORTION
153        // Shutdown distortion
154        if( distortion.valid() )
155                distortion->shutdown();
156#endif
157
158        // Shutdown data
159        rootNode = NULL;
160
161        // Shutdown dataIO
162        visual_dataIO::getInstance()->shutdown();
163
164       
165#ifdef USE_SPACENAVIGATOR
166        //Delete SpaceMouse driver
167        if(mouse)
168        {
169                mouse->shutdown();
170                delete mouse;
171        }
172#endif
173
174        // Destroy osgViewer
175        viewer = NULL;
176}
177
178bool visual_core::loadTerrain(osg::ArgumentParser& arguments_)
179{
180        osg::ref_ptr<osg::Node> model = osgDB::readNodeFiles(util::getTerrainFromXMLConfig(configFilename));
181        if( model.valid() )
182        {
183        rootNode->addChild( model.get() );
184                return true;
185        }
186        else
187        {
188        OSG_NOTIFY( osg::FATAL ) << "Load terrain: No data loaded" << std::endl;
189        return false;
190    }   
191
192        return false;
193}
194
195void visual_core::addManipulators()
196{
197        if(!visual_dataIO::getInstance()->isSlave()) // set up the camera manipulators if not slave.
198    {
199        osg::ref_ptr<osgGA::KeySwitchMatrixManipulator> keyswitchManipulator = new osgGA::KeySwitchMatrixManipulator;
200
201        keyswitchManipulator->addMatrixManipulator( '1', "Trackball", new osgGA::TrackballManipulator() );
202        keyswitchManipulator->addMatrixManipulator( '2', "Flight", new osgGA::FlightManipulator() );
203        keyswitchManipulator->addMatrixManipulator( '3', "Terrain", new osgGA::TerrainManipulator() );
204                nt = new osgGA::NodeTrackerManipulator();
205                keyswitchManipulator->addMatrixManipulator( '4', "NodeTrackerManipulator", nt );
206               
207#ifdef USE_SPACENAVIGATOR
208                // SpaceNavigator manipulator
209                mouse = new SpaceMouse();
210                mouse->initialize();
211                mouseTrackerManip = new NodeTrackerSpaceMouse(mouse);
212                mouseTrackerManip->setTrackerMode(NodeTrackerSpaceMouse::NODE_CENTER);
213                mouseTrackerManip->setRotationMode(NodeTrackerSpaceMouse::ELEVATION_AZIM);
214                mouseTrackerManip->setAutoComputeHomePosition( true );
215                keyswitchManipulator->addMatrixManipulator( '5', "Spacemouse Node Tracker", mouseTrackerManip );
216                keyswitchManipulator->addMatrixManipulator( '6', "Spacemouse Free (Airplane)", new FreeManipulator(mouse) );
217#endif
218
219                // objectMounted Manipulator for Camera control by Nodes
220                objectMountedCameraManip = new objectMountedManipulator();
221                keyswitchManipulator->addMatrixManipulator( '7', "Object mounted Camera", objectMountedCameraManip );
222
223                // Animation path manipulator
224                std::string pathfile = util::getAnimationPathFromXMLConfig(configFilename);
225        char keyForAnimationPath = '8';
226                if( pathfile != "" )
227        {
228            osgGA::AnimationPathManipulator* apm = new osgGA::AnimationPathManipulator(pathfile);
229            if (apm || !apm->valid()) 
230            {
231                unsigned int num = keyswitchManipulator->getNumMatrixManipulators();
232                keyswitchManipulator->addMatrixManipulator( keyForAnimationPath, "Path", apm );
233                keyswitchManipulator->selectMatrixManipulator(num);
234                ++keyForAnimationPath;
235            }
236        }
237
238        viewer->setCameraManipulator( keyswitchManipulator.get() );
239    }   // If not Slave END
240
241    // add the state manipulator
242    viewer->addEventHandler( new osgGA::StateSetManipulator(rootNode->getOrCreateStateSet()) );
243   
244    // add the thread model handler
245    viewer->addEventHandler(new osgViewer::ThreadingHandler);
246
247    // add the window size toggle handler
248    viewer->addEventHandler(new osgViewer::WindowSizeHandler);
249       
250    // add the stats handler
251    viewer->addEventHandler(new osgViewer::StatsHandler);
252
253    // add the help handler
254    viewer->addEventHandler(new osgViewer::HelpHandler(arguments.getApplicationUsage()));
255
256    // add the record camera path handler
257    viewer->addEventHandler(new osgViewer::RecordCameraPathHandler);
258
259    // add the LOD Scale handler
260    viewer->addEventHandler(new osgViewer::LODScaleHandler);
261
262    // add the screen capture handler
263    viewer->addEventHandler(new osgViewer::ScreenCaptureHandler);
264}
265
266void visual_core::parseScenery(xmlNode* a_node)
267{
268        OSG_ALWAYS << "parseScenery()" << std::endl;
269
270        a_node = a_node->children;
271
272        for (xmlNode *cur_node = a_node; cur_node; cur_node = cur_node->next)
273        {
274                std::string node_name=reinterpret_cast<const char*>(cur_node->name);
275
276                // terrain is parsend seperately
277                // animationpath is parsend seperately
278
279                if(cur_node->type == XML_ELEMENT_NODE && node_name == "models")
280                {
281                        /*
282                        <models>
283                          <model filename="cessna" type="plain" label="TestText!" dynamic="yes">
284                                <position lat="47.12345" lon="11.234567" alt="1500.0"></position>
285                                <attitude rot_x="0.0" rot_y="0.0" rot_z="0.0"></attitude>
286                                <cameraoffset>
287                                  <translation trans_x="0.0" trans_y="0.0" trans_z="0.0"></translation>
288                                  <rotation rot_x="0.0" rot_y="0.0" rot_z="0.0"></rotation>
289                                </cameraoffset>
290                          </model>
291                        </models>
292                        */
293                }
294
295                if(cur_node->type == XML_ELEMENT_NODE && node_name == "datetime")
296                {
297                        int hour, minute;
298                        int day=0,month=0,year=0;
299
300                        xmlAttr  *attr = cur_node->properties;
301                        while ( attr ) 
302                        { 
303                                std::string attr_name=reinterpret_cast<const char*>(attr->name);
304                                std::string attr_value=reinterpret_cast<const char*>(attr->children->content);
305                                if( attr_name == "day" )
306                                {
307                                        std::stringstream sstr(attr_value);
308                                        sstr >> day;
309                                }
310                                if( attr_name == "month" )
311                                {
312                                        std::stringstream sstr(attr_value);
313                                        sstr >> month;
314                                }
315                                if( attr_name == "year" )
316                                {
317                                        std::stringstream sstr(attr_value);
318                                        sstr >> year;
319                                }
320                                if( attr_name == "hour" )
321                                {
322                                        std::stringstream sstr(attr_value);
323                                        sstr >> hour;
324                                }
325                                if( attr_name == "minute" )
326                                {
327                                        std::stringstream sstr(attr_value);
328                                        sstr >> minute;
329                                }
330                                attr = attr->next; 
331                        }
332                        if(sky.valid())
333                        {
334                                if(day!=0 && month!=0 && year!=0)
335                                        sky->setDate(year, month, day);
336                                sky->setTime(hour,minute,00);
337                        }
338
339                }
340
341                if(cur_node->type == XML_ELEMENT_NODE && node_name == "visibility")
342                {
343                        float range = 50000, turbidity=2.2;
344                        xmlAttr  *attr = cur_node->properties;
345                        while ( attr ) 
346                        { 
347                                std::string attr_name=reinterpret_cast<const char*>(attr->name);
348                                std::string attr_value=reinterpret_cast<const char*>(attr->children->content);
349                                if( attr_name == "range" )
350                                {
351                                        std::stringstream sstr(attr_value);
352                                        sstr >> range;
353                                }
354                                if( attr_name == "turbidity" )
355                                {
356                                        std::stringstream sstr(attr_value);
357                                        sstr >> turbidity;
358                                }
359                                attr = attr->next; 
360                        }
361                        if(sky.valid())
362                        {
363                                sky->setVisibility( range );
364                                sky->setTurbidity( turbidity );
365                        }
366                }
367
368                if(cur_node->type == XML_ELEMENT_NODE && node_name == "cloudlayer")
369                {
370                        /*
371                        <cloudlayer slot="1" type="cumulusCongestus" enabled="true" fadetime="15">
372                          <geometry baselength="50000" basewidth="50000" thickness="500" baseHeight="1700" density="0.3"></geometry>
373                          <precipitation rate_mmPerHour_rain="5.0" rate_mmPerHour_drySnow="7.0" rate_mmPerHour_wetSnow="10.0" rate_mmPerHour_sleet="0.0"></precipitation>
374                        </cloudlayer>
375                        */
376                }
377
378                if(cur_node->type == XML_ELEMENT_NODE && node_name == "windlayer")
379                {
380                        float bottom = 0.0, top=5000.0, speed=25.0, direction=0.0;
381                        xmlAttr  *attr = cur_node->properties;
382                        while ( attr ) 
383                        { 
384                                std::string attr_name=reinterpret_cast<const char*>(attr->name);
385                                std::string attr_value=reinterpret_cast<const char*>(attr->children->content);
386                                if( attr_name == "bottom" )
387                                {
388                                        std::stringstream sstr(attr_value);
389                                        sstr >> bottom;
390                                }
391                                if( attr_name == "top" )
392                                {
393                                        std::stringstream sstr(attr_value);
394                                        sstr >> top;
395                                }
396                                if( attr_name == "speed" )
397                                {
398                                        std::stringstream sstr(attr_value);
399                                        sstr >> speed;
400                                }
401                                if( attr_name == "direction" )
402                                {
403                                        std::stringstream sstr(attr_value);
404                                        sstr >> direction;
405                                }
406                                attr = attr->next; 
407                        }
408                        if(sky.valid())
409                        {
410                                sky->addWindVolume( bottom, top, speed, direction );
411                        }
412                }
413        }// FOR all nodes END
414
415}
416
417bool visual_core::checkCommandlineArgumentsForFinalErrors()
418{
419        // Setup Application Usage
420        arguments.getApplicationUsage()->setApplicationName(arguments.getApplicationName());
421        arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" is the new FSD visualization tool, written by Torben Dannhauer");
422    arguments.getApplicationUsage()->setCommandLineUsage(arguments.getApplicationName()+" [options] Terrain_filename");
423        arguments.getApplicationUsage()->addCommandLineOption("-h or --help","Display this information");
424
425    // if user request help write it out to cout.
426    if (arguments.read("-h") || arguments.read("--help"))
427    {
428        arguments.getApplicationUsage()->write(std::cout);
429                //cause the viewer to exit and shut down clean.
430        viewer->setDone(true);
431    }
432
433    // report any errors if they have occurred when parsing the program arguments.
434    if (arguments.errors())
435    {
436        arguments.writeErrorMessages(std::cout);
437                //cause the viewer to exit and shut down clean.
438        viewer->setDone(true);
439    }
440
441         // any option left unread are converted into errors to write out later.
442    arguments.reportRemainingOptionsAsUnrecognized();
443
444    // report any errors if they have occurred when parsing the program arguments.
445    if (arguments.errors())
446    {
447        arguments.writeErrorMessages(std::cout);
448        return false;
449    }
450        return true;
451}
452
453void visual_core::setupScenery()
454{
455        // Parse Scenery from Configuration file
456        xmlDoc* tmpDoc;
457        xmlNode* sceneryNode = util::getSceneryXMLConfig(configFilename, tmpDoc);
458        parseScenery(sceneryNode);
459        if(sceneryNode)
460        {
461                xmlFreeDoc(tmpDoc); xmlCleanupParser();
462        }
463
464
465
466        // Sky settings:
467        if(sky.valid())
468        {
469                //sky->addCloudLayer( 0, 20000, 20000, 600.0, 1000.0, 0.5, CUMULONIMBUS_CAPPILATUS );
470                //sky->addCloudLayer( 1, 5000000, 5000000, 600.0, 7351.0, 0.2, CIRRUS_FIBRATUS );
471                //sky->addCloudLayer( 2, 50000, 50000, 600.0, 7351.0, 0.2, CIRROCUMULUS );
472                ///sky->addCloudLayer( 2, 100000, 100000, 600.0, 2351.0, 0.75, STRATUS );
473                sky->addCloudLayer( 3, 50000, 50000, 1300.0, 700.0, 0.07, CUMULUS_CONGESTUS );
474                //sky->addCloudLayer( 1, 100000, 100000, 3500.0, 2000.0, 0.30, STRATOCUMULUS );
475
476                //sky->setSlotPrecipitation( 1, 0.0, 0.0, 0.0, 25.0 );
477        }
478
479
480        //testObj = new visual_object( rootNode, "testStab", objectMountedCameraManip );
481        //testObj->setNewPosition( osg::DegreesToRadians(47.7123), osg::DegreesToRadians(12.84088), 600 );
482        ///* using a huge cylinder to test position & orientation */
483        //testObj->setGeometry( util::getDemoCylinder(5000.0, 20.0 ) );
484        //testObj->addUpdater( new object_updater(testObj) );
485
486        //osg::ref_ptr<visual_object> testObj2 = new visual_object( rootNode, "neuschwanstein" );       // todo memleak
487        ////testObj2->setNewPosition( osg::DegreesToRadians(47.8123), osg::DegreesToRadians(12.94088), 600 );
488        //testObj2->setNewPosition( osg::DegreesToRadians(47.557523564234), osg::DegreesToRadians(10.749646398595), 950 );
489        //testObj2->loadGeometry( "../models/neuschwanstein.osgb" );
490        ////testObj2->addUpdater( new object_updater(testObj2) );       // todo memleak
491
492        osg::ref_ptr<visual_object> testObj3 = new visual_object( rootNode, "SAENGER1" );       // todo memleak
493        testObj3->setNewPosition( osg::DegreesToRadians(47.8123), osg::DegreesToRadians(12.94088), 600 );
494        testObj3->loadGeometry( "../models/saenger1.flt" );
495        testObj3->addUpdater( new object_updater(testObj3) );   // todo memleak
496       
497
498        osg::ref_ptr<visual_object> testObj4 = new visual_object( rootNode, "SAENGER2" );       // todo memleak
499        testObj4->setNewPosition( osg::DegreesToRadians(47.8123), osg::DegreesToRadians(12.94088), 650 );
500        testObj4->loadGeometry( "../models/saenger2.flt" );
501        testObj4->addUpdater( new object_updater(testObj4) );   // todo memleak
502        testObj4->addLabel("testLabel", "LabelTest!!\nnächste Zeile :)",osg::Vec4(1.0f,0.25f,1.0f,1.0f));
503
504        osg::ref_ptr<visual_object> testObj5 = new visual_object( rootNode, "SAENGER" );        // todo memleak
505        testObj5->setNewPosition( osg::DegreesToRadians(47.8123), osg::DegreesToRadians(12.94088), 550 );
506        testObj5->loadGeometry( "../models/saengerCombine.flt" );
507        //testObj5->setScale( 2 );
508        testObj5->addUpdater( new object_updater(testObj5) );   // todo memleak
509
510#ifdef USE_SPACENAVIGATOR
511        // Manipulatoren auf dieses Objekt binden (Primärobjekt)
512        if (objectMountedCameraManip.valid())
513                objectMountedCameraManip->setAttachedObject( testObj4 );
514        if (mouseTrackerManip.valid())
515        {
516                mouseTrackerManip->setTrackNode( testObj4->getGeometry() );
517                mouseTrackerManip->setMinimumDistance( 100 );
518        }
519#endif
520
521        if(nt.valid())
522        {
523                osgGA::NodeTrackerManipulator::TrackerMode trackerMode = osgGA::NodeTrackerManipulator::NODE_CENTER;
524                osgGA::NodeTrackerManipulator::RotationMode rotationMode = osgGA::NodeTrackerManipulator::ELEVATION_AZIM;
525                nt->setTrackerMode(trackerMode);
526                nt->setRotationMode(rotationMode);
527                //nt->setAutoComputeHomePosition( true );
528                nt->setMinimumDistance( 100 );
529                nt->setTrackNode(testObj4->getGeometry());
530                //nt->computeHomePosition();
531                nt->setAutoComputeHomePosition( true );
532                nt->setDistance( 250 );
533        }
534
535
536        // Load EDDF
537        //std::string filename = "D:\\DA\\EDDF_test\\eddf.ive";
538        //if( !osgDB::fileExists(filename) )
539        //{
540        //      OSG_NOTIFY(osg::ALWAYS) << "Warning: EDDF Model not loaded. File '" << filename << "' does not exist. Skipping.";
541        //}
542        //// read model
543        //osg::ref_ptr<osg::Node> tmpModel = osgDB::readNodeFile( filename );
544        //if (tmpModel.valid())
545        //      rootNode->addChild( tmpModel );
546       
547 
548        visual_draw2D::getInstance()->init( rootNode, viewer );
549        //osg::ref_ptr<visual_hud> hud = new visual_hud();
550        hud = new visual_debug_hud();
551        hud->init( viewer, rootNode );
552       
553       
554
555        //osg::ref_ptr<visual_draw3D> test = new visual_draw3D();
556        //test->init( rootNode, viewer );
557
558        //// Creating Testclasses
559        //osg::ref_ptr<osgVisual::dataIO_transportContainer> test = new osgVisual::dataIO_transportContainer();
560        //osg::ref_ptr<osgVisual::dataIO_executer> testEx = new osgVisual::dataIO_executer();
561        //osg::ref_ptr<osgVisual::dataIO_slot> testSlot = new osgVisual::dataIO_slot();
562        //test->setFrameID( 22 );
563        //test->setName("ugamoep");
564        //testEx->setexecuterID( osgVisual::dataIO_executer::IS_COLLISION );
565        //testSlot->setVariableName(std::string("HalloName"));
566        //testSlot->setdataDirection( osgVisual::dataIO_slot::TO_OBJ );
567        //testSlot->setvarType( osgVisual::dataIO_slot::DOUBLE );
568        //testSlot->setValue( 0.12345 );
569        //test->addExecuter( testEx );
570        //test->addSlot( testSlot );
571
572        visual_dataIO::getInstance()->setSlotData("TestSlot1", osgVisual::dataIO_slot::TO_OBJ, 0.12345);
573
574}
Note: See TracBrowser for help on using the repository browser.