// newcache.cxx -- routines to handle scenery tile caching // // Written by Curtis Olson, started December 2000. // // Copyright (C) 2000 Curtis L. Olson - curt@flightgear.org // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation; either version 2 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // // $Id$ #ifdef HAVE_CONFIG_H # include #endif #ifdef HAVE_WINDOWS_H # include #endif #include #include #include // plib include #include #include #include #include #include #include #include
#include #include #include #include // for scenery.center #include "newcache.hxx" #include "tileentry.hxx" #include "tilemgr.hxx" // temp, need to delete later FG_USING_NAMESPACE(std); // a cheesy hack (to be fixed later) extern ssgBranch *terrain; extern ssgBranch *ground; // the tile cache FGNewCache global_tile_cache; // Constructor FGNewCache::FGNewCache( void ) { tile_cache.clear(); } // Destructor FGNewCache::~FGNewCache( void ) { } // Free a tile cache entry void FGNewCache::entry_free( long cache_index ) { FG_LOG( FG_TERRAIN, FG_INFO, "FREEING CACHE ENTRY = " << cache_index ); FGTileEntry *e = tile_cache[cache_index]; e->free_tile(); delete( e ); tile_cache.erase( cache_index ); } // Initialize the tile cache subsystem void FGNewCache::init( void ) { FG_LOG( FG_TERRAIN, FG_INFO, "Initializing the tile cache." ); // expand cache if needed. For best results ... i.e. to avoid // tile load problems and blank areas: max_cache_size = 50; // a random number to start with FG_LOG( FG_TERRAIN, FG_INFO, " max cache size = " << max_cache_size ); FG_LOG( FG_TERRAIN, FG_INFO, " current cache size = " << tile_cache.size() ); tile_map_iterator current = tile_cache.begin(); tile_map_iterator end = tile_cache.end(); for ( ; current != end; ++current ) { long index = current->first; cout << "clearing " << index << endl; FGTileEntry *e = current->second; e->tile_bucket.make_bad(); entry_free(index); } // and ... just in case we missed something ... terrain->removeAllKids(); FG_LOG( FG_TERRAIN, FG_INFO, " done with init()" ); } // Search for the specified "bucket" in the cache bool FGNewCache::exists( const FGBucket& b ) { long tile_index = b.gen_index(); tile_map_iterator it = tile_cache.find( tile_index ); return ( it != tile_cache.end() ); } #if 0 static void print_refs( ssgSelector *sel, ssgTransform *trans, ssgRangeSelector *range) { cout << "selector -> " << sel->getRef() << " transform -> " << trans->getRef() << " range -> " << range->getRef() << endl; } #endif static ssgLeaf *gen_lights( const FGBucket &b ) { FGTileEntry *t = global_tile_cache.get_tile( b ); Point3D center = t->get_offset() + scenery.center; double lon, lat, elev; double w = b.get_width(); double h = b.get_height(); double area = b.get_width_m() * b.get_height_m(); int num = (int)(area / 1000000); // number of point lights to create cout << "generating " << num << " lights" << endl; if ( num <= 0 ) { return NULL; } // Allocate ssg structure ssgVertexArray *vl = new ssgVertexArray( num ); ssgNormalArray *nl = NULL; ssgTexCoordArray *tl = NULL; ssgColourArray *cl = new ssgColourArray( 1 ); // default to white lights for now sgVec4 color; sgSetVec4( color, 1.0, 1.0, 1.0, 1.0 ); cl->add( color ); for ( int i = 0; i < num; ++i ) { lon = b.get_center_lon() - w * 0.5 + sg_random() * w; lat = b.get_center_lat() - h * 0.5 + sg_random() * h; Point3D geod = Point3D( lon * DEG_TO_RAD, lat * DEG_TO_RAD, 0.0); Point3D tmp = sgGeodToCart( geod ); sgdVec3 cart; sgdSetVec3( cart, tmp.x(), tmp.y(), tmp.z() ); if ( ! global_tile_mgr.current_elev_ssg( cart, &elev ) ) { elev = 0.0; } // cout << " lon = " << lon << " lat = " << lat << " elev = " << elev // << endl; geod.setz( elev + 8.0 + sg_random() * 4); tmp = sgGeodToCart( geod ) - center; sgVec3 p; sgSetVec3( p, tmp.x(), tmp.y(), tmp.z() ); // cout << " x = " << cart[0] << " y = " << cart[1] // << " z = " << cart[2] << endl; vl->add( p ); } // create ssg leaf ssgLeaf *leaf = new ssgVtxTable ( GL_POINTS, vl, nl, tl, cl ); // assign state FGNewMat *newmat = material_lib.find( "LIGHTS" ); leaf->setState( newmat->get_state() ); return leaf; } // Fill in a tile cache entry with real data for the specified bucket void FGNewCache::fill_in( const FGBucket& b ) { FG_LOG( FG_TERRAIN, FG_INFO, "FILL IN CACHE ENTRY = " << b.gen_index() ); // clear out a distant entry in the cache if needed. make_space(); // create the entry FGTileEntry *e = new FGTileEntry; // register it in the cache long tile_index = b.gen_index(); tile_cache[tile_index] = e; // update the contents e->center = Point3D( 0.0 ); if ( e->vec3_ptrs.size() || e->vec2_ptrs.size() || e->index_ptrs.size() ) { FG_LOG( FG_TERRAIN, FG_ALERT, "Attempting to overwrite existing or" << " not properly freed leaf data." ); exit(-1); } e->terra_transform = new ssgTransform; e->terra_range = new ssgRangeSelector; e->lights_transform = new ssgTransform; e->lights_range = new ssgRangeSelector; e->tile_bucket = b; FGPath tile_path; if ( globals->get_options()->get_fg_scenery() != "" ) { tile_path.set( globals->get_options()->get_fg_scenery() ); } else { tile_path.set( globals->get_options()->get_fg_root() ); tile_path.append( "Scenery" ); } tile_path.append( b.gen_base_path() ); // Load the appropriate data file FGPath tile_base = tile_path; tile_base.append( b.gen_index_str() ); ssgBranch *new_tile = fgObjLoad( tile_base.str(), e, true ); if ( new_tile != NULL ) { e->terra_range->addKid( new_tile ); } // load custom objects cout << "CUSTOM OBJECTS" << endl; FGPath index_path = tile_path; index_path.append( b.gen_index_str() ); index_path.concat( ".ind" ); cout << "Looking in " << index_path.str() << endl; fg_gzifstream in( index_path.str() ); if ( in.is_open() ) { string token, name; while ( ! in.eof() ) { in >> token; in >> name; #if defined ( macintosh ) || defined ( _MSC_VER ) in >> ::skipws; #else in >> skipws; #endif cout << "token = " << token << " name = " << name << endl; FGPath custom_path = tile_path; custom_path.append( name ); ssgBranch *custom_obj = fgObjLoad( custom_path.str(), e, false ); if ( (new_tile != NULL) && (custom_obj != NULL) ) { new_tile -> addKid( custom_obj ); } } } e->terra_transform->addKid( e->terra_range ); // calculate initial tile offset e->SetOffset( scenery.center ); sgCoord sgcoord; sgSetCoord( &sgcoord, e->offset.x(), e->offset.y(), e->offset.z(), 0.0, 0.0, 0.0 ); e->terra_transform->setTransform( &sgcoord ); terrain->addKid( e->terra_transform ); e->lights_transform = NULL; /* uncomment this section for testing ground lights ssgLeaf *lights = gen_lights( b ); if ( lights ) { e->lights_range->addKid( lights ); e->lights_transform->addKid( e->lights_range ); e->lights_transform->setTransform( &sgcoord ); ground->addKid( e->lights_transform ); } */ } // Ensure at least one entry is free in the cache void FGNewCache::make_space() { FG_LOG( FG_TERRAIN, FG_INFO, "Make space in cache" ); cout << "cache size = " << tile_cache.size() << endl; cout << "max size = " << max_cache_size << endl; if ( (int)tile_cache.size() < max_cache_size ) { // space in the cache, return return; } while ( (int)tile_cache.size() >= max_cache_size ) { sgdVec3 abs_view_pos; float dist; float max_dist = 0.0; int max_index = -1; // we need to free the furthest entry tile_map_iterator current = tile_cache.begin(); tile_map_iterator end = tile_cache.end(); for ( ; current != end; ++current ) { long index = current->first; FGTileEntry *e = current->second; // calculate approximate distance from view point sgdCopyVec3( abs_view_pos, globals->get_current_view()->get_abs_view_pos() ); FG_LOG( FG_TERRAIN, FG_DEBUG, "DIST Abs view pos = " << abs_view_pos[0] << "," << abs_view_pos[1] << "," << abs_view_pos[2] ); FG_LOG( FG_TERRAIN, FG_DEBUG, " ref point = " << e->center ); sgdVec3 center; sgdSetVec3( center, e->center.x(), e->center.y(), e->center.z() ); dist = sgdDistanceVec3( center, abs_view_pos ); FG_LOG( FG_TERRAIN, FG_DEBUG, " distance = " << dist ); if ( dist > max_dist ) { max_dist = dist; max_index = index; } } // If we made it this far, then there were no open cache entries. // We will instead free the furthest cache entry and return it's // index. if ( max_index >= 0 ) { FG_LOG( FG_TERRAIN, FG_DEBUG, " max_dist = " << max_dist ); FG_LOG( FG_TERRAIN, FG_DEBUG, " index = " << max_index ); entry_free( max_index ); } else { FG_LOG( FG_TERRAIN, FG_ALERT, "WHOOPS!!! Dying in next_avail()" ); exit( -1 ); } } }