]> git.mxchange.org Git - flightgear.git/blob - src/Scenery/tilemgr.cxx
Adding some debugs for Thorsten Renk’s issue.
[flightgear.git] / src / Scenery / tilemgr.cxx
1 // tilemgr.cxx -- routines to handle dynamic management of scenery tiles
2 //
3 // Written by Curtis Olson, started January 1998.
4 //
5 // Copyright (C) 1997  Curtis L. Olson  - http://www.flightgear.org/~curt
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23
24 #ifdef HAVE_CONFIG_H
25 #  include <config.h>
26 #endif
27
28 #include <algorithm>
29 #include <functional>
30
31 #include <osgViewer/Viewer>
32 #include <osgDB/Registry>
33
34 #include <simgear/constants.h>
35 #include <simgear/debug/logstream.hxx>
36 #include <simgear/structure/exception.hxx>
37 #include <simgear/scene/model/modellib.hxx>
38 #include <simgear/scene/util/SGReaderWriterOptions.hxx>
39 #include <simgear/scene/tsync/terrasync.hxx>
40 #include <simgear/misc/strutils.hxx>
41 #include <simgear/scene/material/matlib.hxx>
42
43 #include <Main/globals.hxx>
44 #include <Main/fg_props.hxx>
45 #include <Viewer/renderer.hxx>
46 #include <Viewer/splash.hxx>
47 #include <Scripting/NasalSys.hxx>
48 #include <Scripting/NasalModelData.hxx>
49
50 #include "scenery.hxx"
51 #include "SceneryPager.hxx"
52 #include "tilemgr.hxx"
53
54 using flightgear::SceneryPager;
55
56 class FGTileMgr::TileManagerListener : public SGPropertyChangeListener
57 {
58 public:
59     TileManagerListener(FGTileMgr* manager) :
60         _manager(manager),
61         _useVBOsProp(fgGetNode("/sim/rendering/use-vbos", true)),
62         _enableCacheProp(fgGetNode("/sim/tile-cache/enable", true)),
63         _pagedLODMaximumProp(fgGetNode("/sim/rendering/max-paged-lod", true))
64     {
65         _useVBOsProp->addChangeListener(this, true);
66       
67         _enableCacheProp->addChangeListener(this, true);
68         if (_enableCacheProp->getType() == simgear::props::NONE) {
69             _enableCacheProp->setBoolValue(true);
70         }
71       
72         if (_pagedLODMaximumProp->getType() == simgear::props::NONE) {
73             // not set, use OSG default / environment value variable
74             osg::ref_ptr<osgViewer::Viewer> viewer(globals->get_renderer()->getViewer());
75             int current = viewer->getDatabasePager()->getTargetMaximumNumberOfPageLOD();
76             _pagedLODMaximumProp->setIntValue(current);
77         }
78         _pagedLODMaximumProp->addChangeListener(this, true);
79     }
80     
81     ~TileManagerListener()
82     {
83         _useVBOsProp->removeChangeListener(this);
84         _enableCacheProp->removeChangeListener(this);
85         _pagedLODMaximumProp->removeChangeListener(this);
86     }
87     
88     virtual void valueChanged(SGPropertyNode* prop)
89     {
90         if (prop == _useVBOsProp) {
91             bool useVBOs = prop->getBoolValue();
92             _manager->_options->setPluginStringData("SimGear::USE_VBOS",
93                                                 useVBOs ? "ON" : "OFF");
94         } else if (prop == _enableCacheProp) {
95             _manager->_enableCache = prop->getBoolValue();
96         } else if (prop == _pagedLODMaximumProp) {
97           int v = prop->getIntValue();
98           osg::ref_ptr<osgViewer::Viewer> viewer(globals->get_renderer()->getViewer());
99           viewer->getDatabasePager()->setTargetMaximumNumberOfPageLOD(v);
100         }
101     }
102     
103 private:
104     FGTileMgr* _manager;
105     SGPropertyNode_ptr _useVBOsProp,
106       _enableCacheProp,
107       _pagedLODMaximumProp;
108 };
109
110 FGTileMgr::FGTileMgr():
111     state( Start ),
112     last_state( Running ),
113     scheduled_visibility(100.0),
114     _terra_sync(NULL),
115     _listener(NULL),
116     _visibilityMeters(fgGetNode("/environment/visibility-m", true)),
117     _maxTileRangeM(fgGetNode("/sim/rendering/static-lod/bare", true)),
118     _disableNasalHooks(fgGetNode("/sim/temp/disable-scenery-nasal", true)),
119     _scenery_loaded(fgGetNode("/sim/sceneryloaded", true)),
120     _scenery_override(fgGetNode("/sim/sceneryloaded-override", true)),
121     _pager(FGScenery::getPagerSingleton()),
122     _enableCache(true)
123 {
124 }
125
126
127 FGTileMgr::~FGTileMgr()
128 {
129     delete _listener;
130     
131     // remove all nodes we might have left behind
132     osg::Group* group = globals->get_scenery()->get_terrain_branch();
133     group->removeChildren(0, group->getNumChildren());
134     // clear OSG cache
135     osgDB::Registry::instance()->clearObjectCache();
136 }
137
138
139 // Initialize the Tile Manager subsystem
140 void FGTileMgr::init()
141 {
142     reinit();
143 }
144
145 void FGTileMgr::reinit()
146 {
147     SG_LOG( SG_TERRAIN, SG_INFO, "Initializing Tile Manager subsystem." );
148     _terra_sync = static_cast<simgear::SGTerraSync*> (globals->get_subsystem("terrasync"));
149
150   // drops the previous options reference
151     _options = new simgear::SGReaderWriterOptions;
152     _listener = new TileManagerListener(this);
153     
154     materialLibChanged();
155     _options->setPropertyNode(globals->get_props());
156     
157     osgDB::FilePathList &fp = _options->getDatabasePathList();
158     const string_list &sc = globals->get_fg_scenery();
159     fp.clear();
160     std::copy(sc.begin(), sc.end(), back_inserter(fp));
161     _options->setPluginStringData("SimGear::FG_ROOT", globals->get_fg_root());
162     
163     if (_terra_sync) {
164       _options->setPluginStringData("SimGear::TERRASYNC_ROOT", fgGetString("/sim/terrasync/scenery-dir"));
165     }
166     
167     if (!_disableNasalHooks->getBoolValue())
168       _options->setModelData(new FGNasalModelDataProxy);
169   
170   
171     if (state != Start)
172     {
173       // protect against multiple scenery reloads and properly reset flags,
174       // otherwise aircraft fall through the ground while reloading scenery
175       if (_scenery_loaded->getBoolValue() == false) {
176         SG_LOG( SG_TERRAIN, SG_INFO, "/sim/sceneryloaded already false, avoiding duplicate re-init of tile manager" );
177         return;
178       }
179     }
180   
181     _scenery_loaded->setBoolValue(false);
182     fgSetDouble("/sim/startup/splash-alpha", 1.0);
183     
184     materialLibChanged();
185
186     // remove all old scenery nodes from scenegraph and clear cache
187     osg::Group* group = globals->get_scenery()->get_terrain_branch();
188     group->removeChildren(0, group->getNumChildren());
189     tile_cache.init();
190     
191     // clear OSG cache, except on initial start-up
192     if (state != Start)
193     {
194         osgDB::Registry::instance()->clearObjectCache();
195     }
196     
197     state = Inited;
198     
199     previous_bucket.make_bad();
200     current_bucket.make_bad();
201     scheduled_visibility = 100.0;
202
203     // force an update now
204     update(0.0);
205 }
206
207 void FGTileMgr::materialLibChanged()
208 {
209     _options->setMaterialLib(globals->get_matlib());
210 }
211
212 /* schedule a tile for loading, keep request for given amount of time.
213  * Returns true if tile is already loaded. */
214 bool FGTileMgr::sched_tile( const SGBucket& b, double priority, bool current_view, double duration)
215 {
216     // see if tile already exists in the cache
217     TileEntry *t = tile_cache.get_tile( b );
218     if (!t)
219     {
220         // create a new entry
221         t = new TileEntry( b );
222         // insert the tile into the cache, update will generate load request
223         if ( tile_cache.insert_tile( t ) )
224         {
225             // Attach to scene graph
226
227             t->addToSceneGraph(globals->get_scenery()->get_terrain_branch());
228         } else
229         {
230             // insert failed (cache full with no available entries to
231             // delete.)  Try again later
232             delete t;
233             return false;
234         }
235
236         SG_LOG( SG_TERRAIN, SG_DEBUG, "  New tile cache size " << (int)tile_cache.get_size() );
237     }
238
239     // update tile's properties
240     tile_cache.request_tile(t,priority,current_view,duration);
241
242     return t->is_loaded();
243 }
244
245 /* schedule needed buckets for the current view position for loading,
246  * keep request for given amount of time */
247 void FGTileMgr::schedule_needed(const SGBucket& curr_bucket, double vis)
248 {
249     // sanity check (unfortunately needed!)
250     if (!curr_bucket.isValid() )
251     {
252         SG_LOG( SG_TERRAIN, SG_ALERT,
253                 "Attempting to schedule tiles for invalid bucket" );
254         return;
255     }
256
257     double tile_width = curr_bucket.get_width_m();
258     double tile_height = curr_bucket.get_height_m();
259     SG_LOG( SG_TERRAIN, SG_INFO,
260             "scheduling needed tiles for " << curr_bucket
261            << ", tile-width-m:" << tile_width << ", tile-height-m:" << tile_height);
262
263     
264     // cout << "tile width = " << tile_width << "  tile_height = "
265     //      << tile_height << endl;
266
267     double tileRangeM = std::min(vis,_maxTileRangeM->getDoubleValue());
268     int xrange = (int)(tileRangeM / tile_width) + 1;
269     int yrange = (int)(tileRangeM / tile_height) + 1;
270     if ( xrange < 1 ) { xrange = 1; }
271     if ( yrange < 1 ) { yrange = 1; }
272
273     // make the cache twice as large to avoid losing terrain when switching
274     // between aircraft and tower views
275     tile_cache.set_max_cache_size( (2*xrange + 2) * (2*yrange + 2) * 2 );
276     // cout << "xrange = " << xrange << "  yrange = " << yrange << endl;
277     // cout << "max cache size = " << tile_cache.get_max_cache_size()
278     //      << " current cache size = " << tile_cache.get_size() << endl;
279
280     // clear flags of all tiles belonging to the previous view set 
281     tile_cache.clear_current_view();
282
283     // update timestamps, so all tiles scheduled now are *newer* than any tile previously loaded
284     osg::FrameStamp* framestamp
285             = globals->get_renderer()->getViewer()->getFrameStamp();
286     tile_cache.set_current_time(framestamp->getReferenceTime());
287
288     SGBucket b;
289
290     int x, y;
291
292     /* schedule all tiles, use distance-based loading priority,
293      * so tiles are loaded in innermost-to-outermost sequence. */
294     for ( x = -xrange; x <= xrange; ++x )
295     {
296         for ( y = -yrange; y <= yrange; ++y )
297         {
298             SGBucket b = curr_bucket.sibling(x, y);
299             if (!b.isValid()) {
300                 continue;
301             }
302             
303             float priority = (-1.0) * (x*x+y*y);
304             sched_tile( b, priority, true, 0.0 );
305             
306             if (_terra_sync) {
307                 _terra_sync->scheduleTile(b);
308             }
309         }
310     }
311 }
312
313 /**
314  * Update the various queues maintained by the tilemgr (private
315  * internal function, do not call directly.)
316  */
317 void FGTileMgr::update_queues(bool& isDownloadingScenery)
318 {
319     osg::FrameStamp* framestamp
320         = globals->get_renderer()->getViewer()->getFrameStamp();
321     double current_time = framestamp->getReferenceTime();
322     double vis = _visibilityMeters->getDoubleValue();
323     TileEntry *e;
324     int loading=0;
325     int sz=0;
326     
327     tile_cache.set_current_time( current_time );
328     tile_cache.reset_traversal();
329
330     while ( ! tile_cache.at_end() )
331     {
332         e = tile_cache.get_current();
333         if ( e )
334         {
335             // Prepare the ssg nodes corresponding to each tile.
336             // Set the ssg transform and update it's range selector
337             // based on current visibilty
338             e->prep_ssg_node(vis);
339             
340             if (!e->is_loaded()) {
341                 bool nonExpiredOrCurrent = !e->is_expired(current_time) || e->is_current_view();
342                 bool downloading = isTileDirSyncing(e->tileFileName);
343                 isDownloadingScenery |= downloading;
344                 if ( !downloading && nonExpiredOrCurrent) {
345                     // schedule tile for loading with osg pager
346                     _pager->queueRequest(e->tileFileName,
347                                          e->getNode(),
348                                          e->get_priority(),
349                                          framestamp,
350                                          e->getDatabaseRequest(),
351                                          _options.get());
352                     loading++;
353                 }
354             } // of tile not loaded case
355         } else {
356             SG_LOG(SG_TERRAIN, SG_ALERT, "Warning: empty tile in cache!");
357         }
358         tile_cache.next();
359         sz++;
360     }
361
362     int drop_count = sz - tile_cache.get_max_cache_size();
363     bool dropTiles = false;
364     if (_enableCache) {
365       dropTiles = ( drop_count > 0 ) && ((loading==0)||(drop_count > 10));
366     } else {
367       dropTiles = true;
368       drop_count = sz; // no limit on tiles to drop
369     }
370   
371     if (dropTiles)
372     {
373         long drop_index = _enableCache ? tile_cache.get_drop_tile() :
374                                          tile_cache.get_first_expired_tile();
375         while ( drop_index > -1 )
376         {
377             // schedule tile for deletion with osg pager
378             TileEntry* old = tile_cache.get_tile(drop_index);
379             SG_LOG(SG_TERRAIN, SG_DEBUG, "Dropping:" << old->get_tile_bucket());
380
381             tile_cache.clear_entry(drop_index);
382             
383             osg::ref_ptr<osg::Object> subgraph = old->getNode();
384             old->removeFromSceneGraph();
385             delete old;
386             // zeros out subgraph ref_ptr, so subgraph is owned by
387             // the pager and will be deleted in the pager thread.
388             _pager->queueDeleteRequest(subgraph);
389           
390             if (!_enableCache)
391                 drop_index = tile_cache.get_first_expired_tile();
392             // limit tiles dropped to drop_count
393             else if (--drop_count > 0)
394                 drop_index = tile_cache.get_drop_tile();
395             else
396                drop_index = -1;
397         }
398     } // of dropping tiles loop
399 }
400
401 // given the current lon/lat (in degrees), fill in the array of local
402 // chunks.  If the chunk isn't already in the cache, then read it from
403 // disk.
404 void FGTileMgr::update(double)
405 {
406     double vis = _visibilityMeters->getDoubleValue();
407     schedule_tiles_at(globals->get_view_position(), vis);
408
409     bool waitingOnTerrasync = false;
410     update_queues(waitingOnTerrasync);
411
412     // scenery loading check, triggers after each sim (tile manager) reinit
413     if (!_scenery_loaded->getBoolValue())
414     {
415         bool fdmInited = fgGetBool("sim/fdm-initialized");
416         bool positionFinalized = fgGetBool("sim/position-finalized");
417         bool sceneryOverride = _scenery_override->getBoolValue();
418         
419         
420     // we are done if final position is set and the scenery & FDM are done.
421     // scenery-override can ignore the last two, but not position finalization.
422         if (positionFinalized && (sceneryOverride || (isSceneryLoaded() && fdmInited)))
423         {
424             _scenery_loaded->setBoolValue(true);
425             fgSplashProgress("");
426         }
427         else
428         {
429             if (!positionFinalized) {
430                 fgSplashProgress("finalize-position");
431             } else if (waitingOnTerrasync) {
432                 fgSplashProgress("downloading-scenery");
433             } else {
434                 fgSplashProgress("loading-scenery");
435             }
436             
437             // be nice to loader threads while waiting for initial scenery, reduce to 20fps
438             SGTimeStamp::sleepForMSec(50);
439         }
440     }
441 }
442
443 // schedule tiles for the viewer bucket
444 // (FDM/AI/groundcache/... should use "schedule_scenery" instead)
445 void FGTileMgr::schedule_tiles_at(const SGGeod& location, double range_m)
446 {
447     // SG_LOG( SG_TERRAIN, SG_DEBUG, "FGTileMgr::update() for "
448     //         << longitude << " " << latitude );
449
450     current_bucket = SGBucket( location );
451
452     // schedule more tiles when visibility increased considerably
453     // TODO Calculate tile size - instead of using fixed value (5000m)
454     if (range_m - scheduled_visibility > 5000.0)
455         previous_bucket.make_bad();
456
457     // SG_LOG( SG_TERRAIN, SG_DEBUG, "Updating tile list for "
458     //         << current_bucket );
459     fgSetInt( "/environment/current-tile-id", current_bucket.gen_index() );
460
461     // do tile load scheduling.
462     // Note that we need keep track of both viewer buckets and fdm buckets.
463     if ( state == Running ) {
464         if (last_state != state)
465         {
466             SG_LOG( SG_TERRAIN, SG_DEBUG, "State == Running" );
467         }
468         if (current_bucket != previous_bucket) {
469             // We've moved to a new bucket, we need to schedule any
470             // needed tiles for loading.
471             SG_LOG( SG_TERRAIN, SG_INFO, "FGTileMgr: at " << location << ", scheduling needed for:" << current_bucket
472                    << ", visbility=" << range_m);
473             scheduled_visibility = range_m;
474             schedule_needed(current_bucket, range_m);
475         }
476         
477         // save bucket
478         previous_bucket = current_bucket;
479     } else if ( state == Start || state == Inited ) {
480         SG_LOG( SG_TERRAIN, SG_DEBUG, "State == Start || Inited" );
481         // do not update bucket yet (position not valid in initial loop)
482         state = Running;
483         previous_bucket.make_bad();
484     }
485     last_state = state;
486 }
487
488 /** Schedules scenery for given position. Load request remains valid for given duration
489  * (duration=0.0 => nothing is loaded).
490  * Used for FDM/AI/groundcache/... requests. Viewer uses "schedule_tiles_at" instead.
491  * Returns true when all tiles for the given position are already loaded, false otherwise.
492  */
493 bool FGTileMgr::schedule_scenery(const SGGeod& position, double range_m, double duration)
494 {
495     // sanity check (unfortunately needed!)
496     if (!position.isValid())
497         return false;
498     const float priority = 0.0;
499     bool available = true;
500
501     SGBucket bucket(position);
502     available = sched_tile( bucket, priority, false, duration );
503   
504     if ((!available)&&(duration==0.0)) {
505         SG_LOG( SG_TERRAIN, SG_DEBUG, "schedule_scenery: Scheduling tile at bucket:" << bucket << " return false" );
506         return false;
507     }
508
509     SGVec3d cartPos = SGVec3d::fromGeod(position);
510
511     // Traverse all tiles required to be there for the given visibility.
512     double tile_width = bucket.get_width_m();
513     double tile_height = bucket.get_height_m();
514     double tile_r = 0.5*sqrt(tile_width*tile_width + tile_height*tile_height);
515     double max_dist = tile_r + range_m;
516     double max_dist2 = max_dist*max_dist;
517     
518     int xrange = (int)fabs(range_m / tile_width) + 1;
519     int yrange = (int)fabs(range_m / tile_height) + 1;
520
521     for ( int x = -xrange; x <= xrange; ++x )
522     {
523         for ( int y = -yrange; y <= yrange; ++y )
524         {
525             // We have already checked for the center tile.
526             if ( x != 0 || y != 0 )
527             {
528                 SGBucket b = bucket.sibling(x, y );
529                 if (!b.isValid()) {
530                     continue;
531                 }
532                 
533                 double distance2 = distSqr(cartPos, SGVec3d::fromGeod(b.get_center()));
534                 // Do not ask if it is just the next tile but way out of range.
535                 if (distance2 <= max_dist2)
536                 {
537                     available &= sched_tile( b, priority, false, duration );
538                     if ((!available)&&(duration==0.0))
539                         return false;
540                 }
541             }
542         }
543     }
544
545     return available;
546 }
547
548 // Returns true if tiles around current view position have been loaded
549 bool FGTileMgr::isSceneryLoaded()
550 {
551     double range_m = 100.0;
552     if (scheduled_visibility < range_m)
553         range_m = scheduled_visibility;
554
555     return schedule_scenery(globals->get_view_position(), range_m, 0.0);
556 }
557
558 bool FGTileMgr::isTileDirSyncing(const std::string& tileFileName) const
559 {
560     if (!_terra_sync) {
561         return false;
562     }
563     
564     std::string nameWithoutExtension = tileFileName.substr(0, tileFileName.size() - 4);
565     long int bucketIndex = simgear::strutils::to_int(nameWithoutExtension);
566     SGBucket bucket(bucketIndex);
567     
568     return _terra_sync->isTileDirPending(bucket.gen_base_path());
569 }
570