1
0
Fork 0

Make a subtle change to tile loading/unloading policy in order to make the tile

paging system much more robust when position change is very rapid and sporadic.

Recall that we must load 3d models in the main render thread because model
loading can trigger opengl calls (i.e. with texture loading) and all opengl
calls *must* happen in the main render thread.

To accomplish this we load the base tile in the pager thread and build a work
queue of external models that need to be loaded.  We never allow a tile to be
paged out of the tile cache until all it's pending model loads are complete.

However, when changing position very rapidly, we can quickly create a huge
backlog of pending model loads because we are changing positions faster than we
can load the associated models for the existing tiles.  The end result is
that tiles that are long out of range can't be removed because there is still
a huge backlog of pending model load requests and memory blows up.

This change being committed allows the tile paging system to remove tiles
if they are out of range, even when there are pending models to load.  The
model loading code in the render thread can now check to see if the tile
exists and discard any model load request for tiles that no longer exist.

This situation should never occur in normal operation, but could occur in
"contrived" situations where an external script was rapidly changing
the simulator position to then be able to query FG terrain height, and doing
this for a large number of points that are distributed across a large area.
This commit is contained in:
curt 2004-09-15 15:52:05 +00:00
parent 5a8bb823ed
commit cc3d0221ea
4 changed files with 62 additions and 41 deletions

View file

@ -125,7 +125,8 @@ bool FGNewCache::make_space() {
for ( ; current != end; ++current ) { for ( ; current != end; ++current ) {
long index = current->first; long index = current->first;
FGTileEntry *e = current->second; FGTileEntry *e = current->second;
if ( e->is_loaded() && (e->get_pending_models() == 0) ) { // if ( e->is_loaded() && (e->get_pending_models() == 0) ) {
if ( e->is_loaded() ) {
timestamp = e->get_timestamp(); timestamp = e->get_timestamp();
if ( timestamp < min_time ) { if ( timestamp < min_time ) {

View file

@ -818,6 +818,7 @@ FGTileEntry::load( const string_list &path_list, bool is_base )
FGDeferredModel *dm FGDeferredModel *dm
= new FGDeferredModel( custom_path.str(), = new FGDeferredModel( custom_path.str(),
tile_path.str(), tile_path.str(),
tile_bucket,
this, obj_trans ); this, obj_trans );
FGTileMgr::model_ready( dm ); FGTileMgr::model_ready( dm );

View file

@ -70,21 +70,25 @@ private:
string texture_path; string texture_path;
FGTileEntry *tile; FGTileEntry *tile;
ssgTransform *obj_trans; ssgTransform *obj_trans;
SGBucket bucket;
public: public:
inline FGDeferredModel() { } inline FGDeferredModel() { }
inline FGDeferredModel( const string mp, const string tp, inline FGDeferredModel( const string mp, const string tp, SGBucket b,
FGTileEntry *t, ssgTransform *ot ) FGTileEntry *t, ssgTransform *ot )
{ {
model_path = mp; model_path = mp;
texture_path = tp; texture_path = tp;
bucket = b;
tile = t; tile = t;
obj_trans = ot; obj_trans = ot;
} }
inline ~FGDeferredModel() { } inline ~FGDeferredModel() { }
inline string get_model_path() const { return model_path; } inline string get_model_path() const { return model_path; }
inline string get_texture_path() const { return texture_path; } inline string get_texture_path() const { return texture_path; }
inline SGBucket get_bucket() const { return bucket; }
inline FGTileEntry *get_tile() const { return tile; } inline FGTileEntry *get_tile() const { return tile; }
inline ssgTransform *get_obj_trans() const { return obj_trans; } inline ssgTransform *get_obj_trans() const { return obj_trans; }
}; };

View file

@ -279,8 +279,20 @@ void FGTileMgr::update_queues()
{ {
// load the next model in the load queue. Currently this must // load the next model in the load queue. Currently this must
// happen in the render thread because model loading can trigger // happen in the render thread because model loading can trigger
// texture loading which involves use of the opengl api. // texture loading which involves use of the opengl api. Skip any
// models belonging to not loaded tiles (i.e. the tile was removed
// before we were able to load some of the associated models.)
if ( !model_queue.empty() ) { if ( !model_queue.empty() ) {
bool processed_one = false;
while ( model_queue.size() > 200 || processed_one == false ) {
processed_one = true;
if ( model_queue.size() > 200 ) {
SG_LOG( SG_TERRAIN, SG_INFO,
"Alert: catching up on model load queue" );
}
// cout << "loading next model ..." << endl; // cout << "loading next model ..." << endl;
// load the next tile in the queue // load the next tile in the queue
#if defined(ENABLE_THREADS) && ENABLE_THREADS #if defined(ENABLE_THREADS) && ENABLE_THREADS
@ -290,9 +302,12 @@ void FGTileMgr::update_queues()
model_queue.pop(); model_queue.pop();
#endif #endif
// only load the model if the tile still exists in the
// tile cache
FGTileEntry *t = tile_cache.get_tile( dm->get_bucket() );
if ( t != NULL ) {
ssgTexturePath( (char *)(dm->get_texture_path().c_str()) ); ssgTexturePath( (char *)(dm->get_texture_path().c_str()) );
try try {
{
ssgEntity *obj_model = ssgEntity *obj_model =
globals->get_model_lib()->load_model( ".", globals->get_model_lib()->load_model( ".",
dm->get_model_path(), dm->get_model_path(),
@ -301,15 +316,15 @@ void FGTileMgr::update_queues()
if ( obj_model != NULL ) { if ( obj_model != NULL ) {
dm->get_obj_trans()->addKid( obj_model ); dm->get_obj_trans()->addKid( obj_model );
} }
} } catch (const sg_exception& exc) {
catch (const sg_exception& exc)
{
SG_LOG( SG_ALL, SG_ALERT, exc.getMessage() ); SG_LOG( SG_ALL, SG_ALERT, exc.getMessage() );
} }
dm->get_tile()->dec_pending_models(); dm->get_tile()->dec_pending_models();
}
delete dm; delete dm;
} }
}
// cout << "current elevation (ssg) == " << scenery.get_cur_elev() << endl; // cout << "current elevation (ssg) == " << scenery.get_cur_elev() << endl;
@ -333,8 +348,12 @@ void FGTileMgr::update_queues()
if ( !delete_queue.empty() ) { if ( !delete_queue.empty() ) {
// cout << "delete queue = " << delete_queue.size() << endl; // cout << "delete queue = " << delete_queue.size() << endl;
bool processed_one = false;
while ( delete_queue.size() > 30 ) { while ( delete_queue.size() > 30 || processed_one == false ) {
processed_one = true;
if ( delete_queue.size() > 30 ) {
// uh oh, delete queue is blowing up, we aren't clearing // uh oh, delete queue is blowing up, we aren't clearing
// it fast enough. Let's just panic, well not panic, but // it fast enough. Let's just panic, well not panic, but
// get real serious and agressively free up some tiles so // get real serious and agressively free up some tiles so
@ -342,11 +361,6 @@ void FGTileMgr::update_queues()
SG_LOG( SG_TERRAIN, SG_ALERT, SG_LOG( SG_TERRAIN, SG_ALERT,
"Alert: catching up on tile delete queue" ); "Alert: catching up on tile delete queue" );
FGTileEntry* e = delete_queue.front();
while ( !e->free_tile() );
delete_queue.pop();
delete e;
} }
FGTileEntry* e = delete_queue.front(); FGTileEntry* e = delete_queue.front();
@ -355,6 +369,7 @@ void FGTileMgr::update_queues()
delete e; delete e;
} }
} }
}
} }