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

Last change on this file since 247 was 247, checked in by Torben Dannhauer, 13 years ago

typo fix, clean up

File size: 14.4 KB
Line 
1/* -*-c++-*- osgVisual - Copyright (C) 2009-2011 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        //osg::DisplaySettings::instance()->setNumOfDatabaseThreadsHint( 8 );
62
63        // Show model
64        viewer->setSceneData( rootNode );
65
66        osg::Group* distortedSceneGraph = NULL;
67#ifdef USE_DISTORTION
68        // Initialize distortion
69        distortion = new visual_distortion( viewer, arguments, configFilename );
70        distortedSceneGraph = distortion->initialize( rootNode, viewer->getCamera()->getClearColor() );
71#endif
72
73#ifdef USE_SKY_SILVERLINING
74        // Initialize sky
75        bool disabled = false;  // to ask if the skyp is disabled or enabled
76        sky = new visual_skySilverLining( viewer, configFilename, disabled );
77        if(disabled)
78                sky = NULL;
79        if(sky.valid())
80                sky->init(distortedSceneGraph, rootNode);       // Without distortion: distortedSceneGraph=NULL
81#endif
82
83        // Initialize DataIO interface
84        visual_dataIO::getInstance()->init(viewer, configFilename);
85
86        // Add manipulators for user interaction - after dataIO to be able to skip it in slaves rendering machines.
87        manipulators = new core_manipulator();
88        manipulators->init( viewer, arguments, configFilename, rootNode);
89
90        // create the windows and run the threads.
91        viewer->realize();
92
93        loadTerrain(arguments);
94
95        // All modules are initialized - now check arguments for any unused parameter.
96        checkCommandlineArgumentsForFinalErrors();
97
98        // Run visual main loop
99        mainLoop();
100}
101
102void visual_core::mainLoop()
103{
104        int framestoScenerySetup = 5;
105        // run main loop
106        while( !viewer->done() )
107    {
108                // setup scenery
109                if(framestoScenerySetup-- == 0)
110                        setupScenery();
111
112                // next frame please....
113        viewer->advance();
114
115                /*double hat, hot, lat, lon, height;
116                util::getWGS84ofCamera( viewer->getCamera(), rootNode, lat, lon, height);
117                if (util::queryHeightOfTerrain( hot, rootNode, lat, lon) && util::queryHeightAboveTerrainInWGS84( hat, rootNode, lat, lon, height ) )
118                        OSG_NOTIFY( osg::ALWAYS ) << "HOT is: " << hot << ", HAT is: " << hat << std::endl;*/
119       
120                // perform all queued events
121                viewer->eventTraversal();
122
123                // update the scene by traversing it with the the update visitor which will
124        // call all node update callbacks and animations.
125        viewer->updateTraversal();
126               
127        // Render the Frame.
128        viewer->renderingTraversals();
129
130    }   // END WHILE
131}
132
133void visual_core::shutdown()
134{
135        OSG_NOTIFY( osg::ALWAYS ) << "Shutdown visual_core..." << std::endl;
136
137        // Shutdown Dbug HUD
138        if(hud.valid())
139                hud->shutdown();
140        // Unset scene data
141        viewer->setSceneData( NULL );
142
143#ifdef USE_SKY_SILVERLINING
144        // Shutdown sky
145        if( sky.valid() )
146                sky->shutdown();
147#endif
148
149#ifdef USE_DISTORTION
150        // Shutdown distortion
151        if( distortion.valid() )
152                distortion->shutdown();
153#endif
154
155        // Shutdown data
156        rootNode = NULL;
157
158        // Shutdown dataIO
159        visual_dataIO::getInstance()->shutdown();
160
161        // Shutdown manipulators
162        if(manipulators.valid())
163                manipulators->shutdown();
164
165        // Destroy osgViewer
166        viewer = NULL;
167}
168
169bool visual_core::loadTerrain(osg::ArgumentParser& arguments_)
170{
171        osg::ref_ptr<osg::Node> model = osgDB::readNodeFiles(util::getTerrainFromXMLConfig(configFilename));
172        if( model.valid() )
173        {
174        rootNode->addChild( model.get() );
175                return true;
176        }
177        else
178        {
179        OSG_NOTIFY( osg::FATAL ) << "Load terrain: No data loaded" << std::endl;
180        return false;
181    }   
182
183        return false;
184}
185
186void visual_core::parseScenery(xmlNode* a_node)
187{
188        OSG_ALWAYS << "parseScenery()" << std::endl;
189
190        a_node = a_node->children;
191
192        for (xmlNode *cur_node = a_node; cur_node; cur_node = cur_node->next)
193        {
194                std::string node_name=reinterpret_cast<const char*>(cur_node->name);
195
196                // terrain is parsend seperately
197                // animationpath is parsend seperately
198
199                if(cur_node->type == XML_ELEMENT_NODE && node_name == "models")
200                {
201                        for (xmlNode *modelNode = cur_node->children; modelNode; modelNode = modelNode->next)
202                        {
203                                std::string name=reinterpret_cast<const char*>(modelNode->name);
204                                if(modelNode->type == XML_ELEMENT_NODE && name == "model")
205                                {
206                                        visual_object::createNodeFromXMLConfig(rootNode, modelNode);
207                                }
208                                if(modelNode->type == XML_ELEMENT_NODE && name == "trackmodel")
209                                {
210                                        // Extract track-ID and track the model
211                                        xmlAttr  *attr = modelNode->properties;
212                                        while ( attr ) 
213                                        { 
214                                                std::string attr_name=reinterpret_cast<const char*>(attr->name);
215                                                std::string attr_value=reinterpret_cast<const char*>(attr->children->content);
216                                                if( attr_name == "id" ) manipulators->trackNode( util::strToInt(attr_value) );
217                                                if( attr_name == "updater_slot" ) manipulators->setTrackingIdUpdaterSlot(attr_value);
218                                                attr = attr->next; 
219                                        }
220                                       
221                                }
222                        }
223                }
224
225#ifdef USE_SKY_SILVERLINING
226                if(cur_node->type == XML_ELEMENT_NODE && node_name == "datetime")
227                {
228                        int day=-1,month=1-,year=-1, hour=-1, minute=-1;
229
230                        xmlAttr  *attr = cur_node->properties;
231                        while ( attr ) 
232                        { 
233                                std::string attr_name=reinterpret_cast<const char*>(attr->name);
234                                std::string attr_value=reinterpret_cast<const char*>(attr->children->content);
235                                if( attr_name == "day" ) day = util::strToInt(attr_value);
236                                if( attr_name == "month" ) month = util::strToInt(attr_value);
237                                if( attr_name == "year" ) year = util::strToInt(attr_value);
238                                if( attr_name == "hour" ) hour = util::strToInt(attr_value);
239                                if( attr_name == "minute" ) minute = util::strToInt(attr_value);
240
241                                attr = attr->next; 
242                        }
243                        if(sky.valid())
244                        {
245                                if(day!=0 && month!=0 && year!=0)
246                                        sky->setDate(year, month, day);
247                                sky->setTime(hour,minute,00);
248                        }
249                }
250
251                if(cur_node->type == XML_ELEMENT_NODE && node_name == "visibility")
252                {
253                        float range = 50000, turbidity=2.2;
254                        xmlAttr  *attr = cur_node->properties;
255                        while ( attr ) 
256                        { 
257                                std::string attr_name=reinterpret_cast<const char*>(attr->name);
258                                std::string attr_value=reinterpret_cast<const char*>(attr->children->content);
259                                if( attr_name == "range" ) range = util::strToDouble(attr_value);
260                                if( attr_name == "turbidity" ) turbidity = util::strToDouble(attr_value);
261
262                                attr = attr->next; 
263                        }
264
265                        if(sky.valid())
266                        {
267                                sky->setVisibility( range );
268                                sky->setTurbidity( turbidity );
269                        }
270                }
271
272                if(cur_node->type == XML_ELEMENT_NODE && node_name == "clouds")
273                {
274                        if(sky.valid())
275                                sky->configureCloudlayerbyXML( cur_node );
276                }
277
278                if(cur_node->type == XML_ELEMENT_NODE && node_name == "windlayer")
279                {
280                        float bottom = 0.0, top=5000.0, speed=25.0, direction=0.0;
281                        xmlAttr  *attr = cur_node->properties;
282                        while ( attr ) 
283                        { 
284                                std::string attr_name=reinterpret_cast<const char*>(attr->name);
285                                std::string attr_value=reinterpret_cast<const char*>(attr->children->content);
286                                if( attr_name == "bottom" ) bottom = util::strToDouble(attr_value);
287                                if( attr_name == "top" ) top = util::strToDouble(attr_value);
288                                if( attr_name == "speed" ) speed = util::strToDouble(attr_value);
289                                if( attr_name == "direction" ) direction = util::strToDouble(attr_value);
290
291                                attr = attr->next; 
292                        }
293                        if(sky.valid())
294                        {
295                                sky->addWindVolume( bottom, top, speed, direction );
296                        }
297                }
298
299                // Track Node
300
301#endif
302        }// FOR all nodes END
303
304}
305
306bool visual_core::checkCommandlineArgumentsForFinalErrors()
307{
308        // Setup Application Usage
309        arguments.getApplicationUsage()->setApplicationName(arguments.getApplicationName());
310        arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" is the new FSD visualization tool, written by Torben Dannhauer");
311    arguments.getApplicationUsage()->setCommandLineUsage(arguments.getApplicationName()+" [OSG options] -c XML-Configurationfile");
312        arguments.getApplicationUsage()->addCommandLineOption("-h or --help","Display this information");
313        arguments.getApplicationUsage()->addCommandLineOption("-c or --config","XML configuration filename");
314
315
316    // if user request help write it out to cout.
317    if (arguments.read("-h") || arguments.read("--help"))
318    {
319        arguments.getApplicationUsage()->write(std::cout);
320                //cause the viewer to exit and shut down clean.
321        viewer->setDone(true);
322    }
323
324    // report any errors if they have occurred when parsing the program arguments.
325    if (arguments.errors())
326    {
327        arguments.writeErrorMessages(std::cout);
328                //cause the viewer to exit and shut down clean.
329        viewer->setDone(true);
330    }
331
332         // any option left unread are converted into errors to write out later.
333    arguments.reportRemainingOptionsAsUnrecognized();
334
335    // report any errors if they have occurred when parsing the program arguments.
336    if (arguments.errors())
337    {
338        arguments.writeErrorMessages(std::cout);
339        return false;
340    }
341        return true;
342}
343
344void visual_core::setupScenery()
345{
346        // Parse Scenery from Configuration file
347        xmlDoc* tmpDoc;
348        xmlNode* sceneryNode = util::getSceneryXMLConfig(configFilename, tmpDoc);
349        parseScenery(sceneryNode);
350        if(sceneryNode)
351        {
352                xmlFreeDoc(tmpDoc); xmlCleanupParser();
353        }
354
355
356        //testObj = new visual_object( rootNode, "testStab", objectMountedCameraManip );
357        //testObj->setNewPosition( osg::DegreesToRadians(47.7123), osg::DegreesToRadians(12.84088), 600 );
358        ///* using a huge cylinder to test position & orientation */
359        //testObj->setGeometry( util::getDemoCylinder(5000.0, 20.0 ) );
360        //testObj->addUpdater( new object_updater(testObj) );
361        //testObj->setTrackingId(2);
362
363        //osg::ref_ptr<visual_object> testObj2 = new visual_object( rootNode, "neuschwanstein" );       // todo memleak
364        ////testObj2->setNewPosition( osg::DegreesToRadians(47.8123), osg::DegreesToRadians(12.94088), 600 );
365        //testObj2->setNewPosition( osg::DegreesToRadians(47.557523564234), osg::DegreesToRadians(10.749646398595), 950 );
366        //testObj2->loadGeometry( "../models/neuschwanstein.osgb" );
367        ////testObj2->addUpdater( new object_updater(testObj2) );
368        //testObj2->setTrackingId(3);
369
370        //osg::ref_ptr<visual_object> testObj3 = new visual_object( rootNode, "SAENGER1" );     // todo memleak
371        //testObj3->setNewPosition( osg::DegreesToRadians(47.8123), osg::DegreesToRadians(12.94088), 600 );
372        //testObj3->loadGeometry( "../models/saenger1.flt" );
373        //testObj3->addUpdater( new object_updater(testObj3) );
374        //testObj3->setTrackingId(4);
375
376        osg::ref_ptr<visual_object> testObj4 = new visual_object( rootNode, "SAENGER2" );       // todo memleak
377        testObj4->setNewPosition( osg::DegreesToRadians(47.8123), osg::DegreesToRadians(12.94088), 650 );
378        testObj4->loadGeometry( "../models/saenger2.flt" );
379        testObj4->addUpdater( new object_updater(testObj4) );
380        testObj4->addLabel("testLabel", "Object4 :)",osg::Vec4(1.0f,0.25f,1.0f,1.0f));
381        testObj4->setTrackingId(2);
382
383        //osg::ref_ptr<visual_object> testObj5 = new visual_object( rootNode, "SAENGER" );      // todo memleak
384        //testObj5->setNewPosition( osg::DegreesToRadians(47.8123), osg::DegreesToRadians(12.94088), 550 );
385        //testObj5->loadGeometry( "../models/saengerCombine.flt" );
386        ////testObj5->setScale( 2 );
387        //testObj5->addUpdater( new object_updater(testObj5) );
388        //testObj5->setTrackingId(6);
389
390        manipulators->trackNode( testObj4 );
391
392        // Load EDDF
393        //std::string filename = "D:\\DA\\EDDF_test\\eddf.ive";
394        //if( !osgDB::fileExists(filename) )
395        //{
396        //      OSG_NOTIFY(osg::ALWAYS) << "Warning: EDDF Model not loaded. File '" << filename << "' does not exist. Skipping.";
397        //}
398        //// read model
399        //osg::ref_ptr<osg::Node> tmpModel = osgDB::readNodeFile( filename );
400        //if (tmpModel.valid())
401        //      rootNode->addChild( tmpModel );
402       
403 
404        visual_draw2D::getInstance()->init( rootNode, viewer );
405        //osg::ref_ptr<visual_hud> hud = new visual_hud();
406        hud = new visual_debug_hud();
407        hud->init( viewer, rootNode );
408       
409       
410
411        //osg::ref_ptr<visual_draw3D> test = new visual_draw3D();
412        //test->init( rootNode, viewer );
413
414        //// Creating Testclasses
415        //osg::ref_ptr<osgVisual::dataIO_transportContainer> test = new osgVisual::dataIO_transportContainer();
416        //osg::ref_ptr<osgVisual::dataIO_executer> testEx = new osgVisual::dataIO_executer();
417        //osg::ref_ptr<osgVisual::dataIO_slot> testSlot = new osgVisual::dataIO_slot();
418        //test->setFrameID( 22 );
419        //test->setName("ugamoep");
420        //testEx->setexecuterID( osgVisual::dataIO_executer::IS_COLLISION );
421        //testSlot->setVariableName(std::string("HalloName"));
422        //testSlot->setdataDirection( osgVisual::dataIO_slot::TO_OBJ );
423        //testSlot->setvarType( osgVisual::dataIO_slot::DOUBLE );
424        //testSlot->setValue( 0.12345 );
425        //test->addExecuter( testEx );
426        //test->addSlot( testSlot );
427
428        visual_dataIO::getInstance()->setSlotData("TestSlot1", osgVisual::dataIO_slot::TO_OBJ, 0.12345);
429
430}
Note: See TracBrowser for help on using the repository browser.