2015-10-22 21:42:19 +08:00
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
2008-05-10 01:08:31 +08:00
*
2015-10-22 21:42:19 +08:00
* This application is open source and may be redistributed and / or modified
2010-11-22 19:22:03 +08:00
* freely and without restriction , both in commercial and non commercial applications ,
2008-05-10 01:08:31 +08:00
* as long as this copyright notice is maintained .
2015-10-22 21:42:19 +08:00
*
2008-05-10 01:08:31 +08:00
* This application 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 .
*/
# include <osg/Timer>
# include <osg/ArgumentParser>
# include <osg/ApplicationUsage>
2008-05-13 00:59:04 +08:00
# include <osg/CoordinateSystemNode>
2008-05-13 20:36:39 +08:00
# include <osg/Geometry>
2010-12-10 21:22:21 +08:00
# include <osg/PagedLOD>
2008-05-13 00:59:04 +08:00
# include <osg/io_utils>
# include <osgTerrain/TerrainTile>
2008-05-10 01:08:31 +08:00
# include <osgDB/Archive>
# include <osgDB/ReadFile>
# include <osgDB/WriteFile>
# include <osgDB/FileUtils>
2008-10-21 00:24:57 +08:00
# include <osgDB/FileCache>
# include <osgDB/FileNameUtils>
2008-05-10 01:08:31 +08:00
# include <iostream>
# include <algorithm>
2008-05-13 00:59:04 +08:00
# include <signal.h>
2009-01-09 20:17:40 +08:00
# include <stdlib.h>
2008-05-13 00:59:04 +08:00
2015-11-23 19:01:47 +08:00
# include <OpenThreads/Atomic>
static OpenThreads : : Atomic s_ExitApplication ;
static OpenThreads : : Atomic s_SigValue ;
2008-05-13 00:59:04 +08:00
2008-05-14 01:27:29 +08:00
struct Extents
{
Extents ( ) :
_maxLevel ( 0 ) ,
_min ( DBL_MAX , DBL_MAX ) ,
_max ( - DBL_MAX , - DBL_MAX ) { }
Extents ( unsigned int maxLevel , double minX , double minY , double maxX , double maxY ) :
_maxLevel ( maxLevel ) ,
_min ( minX , minY ) ,
_max ( maxX , maxY ) { }
2015-10-22 21:42:19 +08:00
2008-05-14 01:27:29 +08:00
Extents ( const Extents & extents ) :
_maxLevel ( extents . _maxLevel ) ,
_min ( extents . _min ) ,
_max ( extents . _max ) { }
2015-10-22 21:42:19 +08:00
2008-05-14 01:27:29 +08:00
Extents & operator = ( const Extents & rhs )
{
if ( & rhs = = this ) return * this ;
2015-10-22 21:42:19 +08:00
2008-05-14 01:27:29 +08:00
_maxLevel = rhs . _maxLevel ;
_min = rhs . _min ;
_max = rhs . _max ;
2015-10-22 21:42:19 +08:00
2008-05-14 01:27:29 +08:00
return * this ;
}
bool intersects ( unsigned level , osg : : Vec2d & in_min , osg : : Vec2d & in_max )
{
osg : : notify ( osg : : INFO ) < < " intersects( " < < level < < " , min= " < < in_min < < " max= " < < in_max < < " ) " < < std : : endl ;
osg : : notify ( osg : : INFO ) < < " _maxLevel= " < < _maxLevel < < " , _min= " < < _min < < " _max= " < < _max < < std : : endl ;
if ( level > _maxLevel ) return false ;
2015-10-22 21:42:19 +08:00
2008-05-14 01:27:29 +08:00
osg : : Vec2d union_min , union_max ;
2015-10-22 21:42:19 +08:00
// handle mins
2008-05-14 01:27:29 +08:00
if ( _min . x ( ) ! = DBL_MAX & & in_min . x ( ) ! = DBL_MAX )
{
// both _min.x() and in_min.x() are defined so use max of two
union_min . x ( ) = _min . x ( ) > in_min . x ( ) ? _min . x ( ) : in_min . x ( ) ;
}
else
{
// one or both _min.x() and in_min.x() aren't defined so use min of two
union_min . x ( ) = _min . x ( ) < in_min . x ( ) ? _min . x ( ) : in_min . x ( ) ;
}
if ( _min . y ( ) ! = DBL_MAX & & in_min . y ( ) ! = DBL_MAX )
{
// both _min.y() and in_min.y() are defined so use max of two
union_min . y ( ) = _min . y ( ) > in_min . y ( ) ? _min . y ( ) : in_min . y ( ) ;
}
else
{
// one or both _min.y() and in_min.y() aren't defined so use min of two
union_min . y ( ) = _min . y ( ) < in_min . y ( ) ? _min . y ( ) : in_min . y ( ) ;
}
2015-10-22 21:42:19 +08:00
// handle maxs
2008-05-14 01:27:29 +08:00
if ( _max . x ( ) ! = - DBL_MAX & & in_max . x ( ) ! = - DBL_MAX )
{
// both _max.x() and in_max.x() are defined so use max of two
union_max . x ( ) = _max . x ( ) < in_max . x ( ) ? _max . x ( ) : in_max . x ( ) ;
}
else
{
// one or both _max.x() and in_max.x() aren't defined so use max of two
union_max . x ( ) = _max . x ( ) > in_max . x ( ) ? _max . x ( ) : in_max . x ( ) ;
}
if ( _max . y ( ) ! = - DBL_MAX & & in_max . y ( ) ! = - DBL_MAX )
{
// both _max.y() and in_max.y() are defined so use max of two
union_max . y ( ) = _max . y ( ) < in_max . y ( ) ? _max . y ( ) : in_max . y ( ) ;
}
else
{
// one or both _max.y() and in_max.y() aren't defined so use max of two
union_max . y ( ) = _max . y ( ) > in_max . y ( ) ? _max . y ( ) : in_max . y ( ) ;
}
bool result = union_min . x ( ) < union_max . x ( ) & & union_min . y ( ) < union_max . y ( ) ;
osg : : notify ( osg : : INFO ) < < " union_min= " < < union_min < < " union_max= " < < union_max < < " result = " < < result < < std : : endl ;
2015-10-22 21:42:19 +08:00
2008-05-14 01:27:29 +08:00
return result ;
}
unsigned int _maxLevel ;
osg : : Vec2d _min ;
osg : : Vec2d _max ;
} ;
2008-05-10 01:08:31 +08:00
class LoadDataVisitor : public osg : : NodeVisitor
{
public :
2008-05-13 00:59:04 +08:00
2008-05-14 01:27:29 +08:00
LoadDataVisitor ( ) :
2008-05-10 01:08:31 +08:00
osg : : NodeVisitor ( osg : : NodeVisitor : : TRAVERSE_ALL_CHILDREN ) ,
_currentLevel ( 0 ) { }
2008-10-21 00:24:57 +08:00
void setFileCache ( osgDB : : FileCache * fileCache ) { _fileCache = fileCache ; }
2015-10-22 21:42:19 +08:00
2008-05-14 01:27:29 +08:00
void addExtents ( unsigned int maxLevel , double minX , double minY , double maxX , double maxY )
{
_extentsList . push_back ( Extents ( maxLevel , minX , minY , maxX , maxY ) ) ;
}
void addExtents ( unsigned int maxLevel )
{
_extentsList . push_back ( Extents ( maxLevel , DBL_MAX , DBL_MAX , - DBL_MAX , - DBL_MAX ) ) ;
}
2008-05-13 00:59:04 +08:00
void apply ( osg : : CoordinateSystemNode & cs )
{
2008-05-13 20:36:39 +08:00
_csnStack . push_back ( & cs ) ;
2015-10-22 21:42:19 +08:00
2008-05-13 00:59:04 +08:00
if ( ! s_ExitApplication ) traverse ( cs ) ;
2008-05-13 20:36:39 +08:00
_csnStack . pop_back ( ) ;
2008-05-13 00:59:04 +08:00
}
2015-10-22 21:42:19 +08:00
2008-05-13 00:59:04 +08:00
void apply ( osg : : Group & group )
{
2008-05-13 20:36:39 +08:00
if ( s_ExitApplication ) return ;
2015-10-22 21:42:19 +08:00
2008-05-13 00:59:04 +08:00
osgTerrain : : TerrainTile * terrainTile = dynamic_cast < osgTerrain : : TerrainTile * > ( & group ) ;
osgTerrain : : Locator * locator = terrainTile ? terrainTile - > getLocator ( ) : 0 ;
if ( locator )
{
osg : : Vec3d l00 ( 0.0 , 0.0 , 0.0 ) ;
osg : : Vec3d l10 ( 1.0 , 0.0 , 0.0 ) ;
osg : : Vec3d l11 ( 1.0 , 1.0 , 0.0 ) ;
osg : : Vec3d l01 ( 0.0 , 1.0 , 0.0 ) ;
2008-05-13 20:36:39 +08:00
2008-05-13 00:59:04 +08:00
osg : : Vec3d w00 , w10 , w11 , w01 ;
2008-05-13 20:36:39 +08:00
2008-05-13 00:59:04 +08:00
locator - > convertLocalToModel ( l00 , w00 ) ;
locator - > convertLocalToModel ( l10 , w10 ) ;
locator - > convertLocalToModel ( l11 , w11 ) ;
locator - > convertLocalToModel ( l01 , w01 ) ;
2008-05-13 20:36:39 +08:00
2008-05-13 00:59:04 +08:00
if ( locator - > getEllipsoidModel ( ) & &
locator - > getCoordinateSystemType ( ) = = osgTerrain : : Locator : : GEOCENTRIC )
{
convertXYZToLatLongHeight ( locator - > getEllipsoidModel ( ) , w00 ) ;
convertXYZToLatLongHeight ( locator - > getEllipsoidModel ( ) , w10 ) ;
convertXYZToLatLongHeight ( locator - > getEllipsoidModel ( ) , w11 ) ;
convertXYZToLatLongHeight ( locator - > getEllipsoidModel ( ) , w01 ) ;
}
2008-05-13 20:36:39 +08:00
updateBound ( w00 ) ;
updateBound ( w10 ) ;
updateBound ( w11 ) ;
updateBound ( w01 ) ;
return ;
2008-05-13 00:59:04 +08:00
}
2015-10-22 21:42:19 +08:00
2008-05-13 20:36:39 +08:00
traverse ( group ) ;
}
void apply ( osg : : Transform & transform )
{
osg : : Matrix matrix ;
if ( ! _matrixStack . empty ( ) ) matrix = _matrixStack . back ( ) ;
transform . computeLocalToWorldMatrix ( matrix , this ) ;
pushMatrix ( matrix ) ;
traverse ( transform ) ;
popMatrix ( ) ;
2008-05-13 00:59:04 +08:00
}
2008-05-10 01:08:31 +08:00
void apply ( osg : : PagedLOD & plod )
{
2008-05-13 00:59:04 +08:00
if ( s_ExitApplication ) return ;
2015-10-22 21:42:19 +08:00
2008-05-10 01:08:31 +08:00
+ + _currentLevel ;
2015-10-22 21:42:19 +08:00
2008-05-13 20:36:39 +08:00
initBound ( ) ;
2015-10-22 21:42:19 +08:00
2008-05-13 00:59:04 +08:00
// first compute the bounds of this subgraph
for ( unsigned int i = 0 ; i < plod . getNumFileNames ( ) ; + + i )
{
if ( plod . getFileName ( i ) . empty ( ) )
{
traverse ( plod ) ;
}
2008-05-13 20:36:39 +08:00
}
2015-10-22 21:42:19 +08:00
2008-05-14 01:27:29 +08:00
if ( intersects ( ) )
2008-05-10 01:08:31 +08:00
{
2008-05-14 01:27:29 +08:00
for ( unsigned int i = 0 ; i < plod . getNumFileNames ( ) ; + + i )
2008-05-10 01:08:31 +08:00
{
2008-05-14 01:27:29 +08:00
osg : : notify ( osg : : INFO ) < < " filename[ " < < i < < " ] " < < plod . getFileName ( i ) < < std : : endl ;
if ( ! plod . getFileName ( i ) . empty ( ) )
2008-05-10 01:08:31 +08:00
{
2008-05-14 01:27:29 +08:00
std : : string filename ;
2015-10-22 21:42:19 +08:00
if ( ! plod . getDatabasePath ( ) . empty ( ) )
2008-05-14 01:27:29 +08:00
{
filename = plod . getDatabasePath ( ) + plod . getFileName ( i ) ;
}
else
{
filename = plod . getFileName ( i ) ;
}
2008-10-21 00:24:57 +08:00
osg : : ref_ptr < osg : : Node > node = readNodeFileAndWriteToCache ( filename ) ;
2008-05-14 01:27:29 +08:00
if ( ! s_ExitApplication & & node . valid ( ) ) node - > accept ( * this ) ;
2008-05-10 01:08:31 +08:00
}
}
}
2015-10-22 21:42:19 +08:00
2008-05-10 01:08:31 +08:00
- - _currentLevel ;
}
2015-10-22 21:42:19 +08:00
2008-05-13 20:36:39 +08:00
void apply ( osg : : Geode & geode )
{
for ( unsigned int i = 0 ; i < geode . getNumDrawables ( ) ; + + i )
{
osg : : Geometry * geom = geode . getDrawable ( i ) - > asGeometry ( ) ;
if ( geom )
{
osg : : Vec3Array * vertices = dynamic_cast < osg : : Vec3Array * > ( geom - > getVertexArray ( ) ) ;
if ( vertices ) updateBound ( * vertices ) ;
}
}
}
2015-10-22 21:42:19 +08:00
osg : : ref_ptr < osg : : Node > readNodeFileAndWriteToCache ( const std : : string & filename )
2008-10-21 00:24:57 +08:00
{
2015-10-22 21:42:19 +08:00
osg : : ref_ptr < osg : : Node > node = 0 ;
2012-02-10 01:52:13 +08:00
if ( _fileCache . valid ( ) )
2008-10-21 00:24:57 +08:00
{
if ( _fileCache - > existsInCache ( filename ) )
{
osg : : notify ( osg : : NOTICE ) < < " reading from FileCache: " < < filename < < std : : endl ;
2011-01-04 03:41:06 +08:00
node = _fileCache - > readNode ( filename , osgDB : : Registry : : instance ( ) - > getOptions ( ) ) . takeNode ( ) ;
2008-10-21 00:24:57 +08:00
}
else
{
osg : : notify ( osg : : NOTICE ) < < " reading : " < < filename < < std : : endl ;
2015-10-22 21:42:19 +08:00
node = osgDB : : readRefNodeFile ( filename ) ;
2008-10-21 00:24:57 +08:00
if ( node )
{
osg : : notify ( osg : : NOTICE ) < < " write to FileCache : " < < filename < < std : : endl ;
_fileCache - > writeNode ( * node , filename , osgDB : : Registry : : instance ( ) - > getOptions ( ) ) ;
}
}
}
else
{
osg : : notify ( osg : : NOTICE ) < < " reading : " < < filename < < std : : endl ;
2015-10-22 21:42:19 +08:00
node = osgDB : : readRefNodeFile ( filename ) ;
2008-10-21 00:24:57 +08:00
}
2011-01-04 03:41:06 +08:00
return node ;
2008-10-21 00:24:57 +08:00
}
2011-01-04 03:41:06 +08:00
2008-05-10 01:08:31 +08:00
protected :
2008-05-13 20:36:39 +08:00
inline void pushMatrix ( osg : : Matrix & matrix ) { _matrixStack . push_back ( matrix ) ; }
2015-10-22 21:42:19 +08:00
2008-05-13 20:36:39 +08:00
inline void popMatrix ( ) { _matrixStack . pop_back ( ) ; }
2008-05-13 00:59:04 +08:00
void convertXYZToLatLongHeight ( osg : : EllipsoidModel * em , osg : : Vec3d & v )
{
em - > convertXYZToLatLongHeight ( v . x ( ) , v . y ( ) , v . z ( ) ,
2008-05-14 02:28:26 +08:00
v . y ( ) , v . x ( ) , v . z ( ) ) ;
2015-10-22 21:42:19 +08:00
2008-05-13 00:59:04 +08:00
v . x ( ) = osg : : RadiansToDegrees ( v . x ( ) ) ;
v . y ( ) = osg : : RadiansToDegrees ( v . y ( ) ) ;
}
2015-10-22 21:42:19 +08:00
2008-05-13 20:36:39 +08:00
void initBound ( )
{
_min . set ( DBL_MAX , DBL_MAX ) ;
_max . set ( - DBL_MAX , - DBL_MAX ) ;
}
2008-05-13 00:59:04 +08:00
2008-05-13 20:36:39 +08:00
void updateBound ( osg : : Vec3d & v )
{
if ( v . x ( ) < _min . x ( ) ) _min . x ( ) = v . x ( ) ;
if ( v . y ( ) < _min . y ( ) ) _min . y ( ) = v . y ( ) ;
if ( v . x ( ) > _max . x ( ) ) _max . x ( ) = v . x ( ) ;
if ( v . y ( ) > _max . y ( ) ) _max . y ( ) = v . y ( ) ;
}
2015-10-22 21:42:19 +08:00
2008-05-13 20:36:39 +08:00
void updateBound ( osg : : Vec3Array & vertices )
{
// set up matrix
osg : : Matrix matrix ;
if ( ! _matrixStack . empty ( ) ) matrix = _matrixStack . back ( ) ;
2015-10-22 21:42:19 +08:00
2008-05-13 20:36:39 +08:00
// set up ellipsoid model
osg : : EllipsoidModel * em = ! _csnStack . empty ( ) ? _csnStack . back ( ) - > getEllipsoidModel ( ) : 0 ;
2015-10-22 21:42:19 +08:00
2008-05-13 20:36:39 +08:00
for ( osg : : Vec3Array : : iterator itr = vertices . begin ( ) ;
itr ! = vertices . end ( ) ;
+ + itr )
{
osg : : Vec3d v = osg : : Vec3d ( * itr ) * matrix ;
if ( em ) convertXYZToLatLongHeight ( em , v ) ;
updateBound ( v ) ;
}
}
2015-10-22 21:42:19 +08:00
2008-05-14 01:27:29 +08:00
bool intersects ( )
2008-05-13 20:36:39 +08:00
{
2008-05-14 01:27:29 +08:00
osg : : notify ( osg : : INFO ) < < " intersects() _min = " < < _min < < " _max = " < < _max < < std : : endl ;
for ( ExtentsList : : iterator itr = _extentsList . begin ( ) ;
itr ! = _extentsList . end ( ) ;
+ + itr )
{
if ( itr - > intersects ( _currentLevel , _min , _max ) ) return true ;
}
2015-10-22 21:42:19 +08:00
2008-05-13 20:36:39 +08:00
return false ;
}
2008-05-14 01:27:29 +08:00
typedef std : : vector < Extents > ExtentsList ;
2008-05-13 20:36:39 +08:00
typedef std : : vector < osg : : Matrix > MatrixStack ;
typedef std : : vector < osg : : CoordinateSystemNode * > CSNStack ;
2008-10-21 00:24:57 +08:00
osg : : ref_ptr < osgDB : : FileCache > _fileCache ;
2008-05-13 20:36:39 +08:00
2008-05-14 01:27:29 +08:00
ExtentsList _extentsList ;
2008-05-13 20:36:39 +08:00
unsigned int _currentLevel ;
MatrixStack _matrixStack ;
CSNStack _csnStack ;
2015-10-22 21:42:19 +08:00
2008-05-13 20:36:39 +08:00
osg : : Vec2d _min ;
osg : : Vec2d _max ;
2008-05-10 01:08:31 +08:00
} ;
2008-05-13 00:59:04 +08:00
static void signalHandler ( int sig )
{
2015-11-23 19:01:47 +08:00
s_SigValue . exchange ( sig ) ;
s_ExitApplication . exchange ( 1 ) ;
2008-05-13 00:59:04 +08:00
}
2008-05-10 01:08:31 +08:00
int main ( int argc , char * * argv )
{
2008-05-13 00:59:04 +08:00
# ifndef _WIN32
signal ( SIGHUP , signalHandler ) ;
signal ( SIGQUIT , signalHandler ) ;
signal ( SIGKILL , signalHandler ) ;
signal ( SIGUSR1 , signalHandler ) ;
signal ( SIGUSR2 , signalHandler ) ;
# endif
signal ( SIGABRT , signalHandler ) ;
signal ( SIGINT , signalHandler ) ;
signal ( SIGTERM , signalHandler ) ;
2008-05-10 01:08:31 +08:00
// use an ArgumentParser object to manage the program arguments.
osg : : ArgumentParser arguments ( & argc , argv ) ;
2015-10-22 21:42:19 +08:00
2008-05-10 01:08:31 +08:00
// set up the usage document, in case we need to print out how to use this program.
arguments . getApplicationUsage ( ) - > setApplicationName ( arguments . getApplicationName ( ) ) ;
2011-07-18 00:24:47 +08:00
arguments . getApplicationUsage ( ) - > setDescription ( arguments . getApplicationName ( ) + " is an application for collecting a set of separate files into a single archive file that can be later read in OSG applications.. " ) ;
2008-05-10 01:08:31 +08:00
arguments . getApplicationUsage ( ) - > setCommandLineUsage ( arguments . getApplicationName ( ) + " [options] filename ... " ) ;
2008-05-14 01:27:29 +08:00
arguments . getApplicationUsage ( ) - > addCommandLineOption ( " -l level " , " Read down to level across the whole database. " ) ;
arguments . getApplicationUsage ( ) - > addCommandLineOption ( " -e level minX minY maxX maxY " , " Read down to <level> across the extents minX, minY to maxY, maxY. Note, for geocentric datase X and Y are longitude and latitude respectively. " ) ;
arguments . getApplicationUsage ( ) - > addCommandLineOption ( " -c directory " , " Shorthand for --file-cache directory. " ) ;
arguments . getApplicationUsage ( ) - > addCommandLineOption ( " --file-cache directory " , " Set directory as to place cache download files. " ) ;
2015-10-22 21:42:19 +08:00
2008-05-10 01:08:31 +08:00
// if user request help write it out to cout.
if ( arguments . read ( " -h " ) | | arguments . read ( " --help " ) )
{
arguments . getApplicationUsage ( ) - > write ( std : : cout ) ;
return 1 ;
}
2015-10-22 21:42:19 +08:00
2008-05-14 01:27:29 +08:00
LoadDataVisitor ldv ;
2008-10-21 00:24:57 +08:00
std : : string fileCachePath ;
while ( arguments . read ( " --file-cache " , fileCachePath ) | | arguments . read ( " -c " , fileCachePath ) ) { }
2015-10-22 21:42:19 +08:00
2008-10-21 00:24:57 +08:00
if ( fileCachePath . empty ( ) )
2015-10-22 21:42:19 +08:00
{
2008-10-21 00:24:57 +08:00
const char * env_fileCachePath = getenv ( " OSG_FILE_CACHE " ) ;
if ( env_fileCachePath )
{
fileCachePath = env_fileCachePath ;
}
}
if ( fileCachePath . empty ( ) )
{
std : : cout < < " No path to the file cache defined, please set OSG_FILE_PATH env var, or use --file-cache <directory> to set a suitable directory for the file cache. " < < std : : endl ;
return 1 ;
}
2015-10-22 21:42:19 +08:00
2008-10-21 00:24:57 +08:00
ldv . setFileCache ( new osgDB : : FileCache ( fileCachePath ) ) ;
2008-05-10 01:08:31 +08:00
unsigned int maxLevels = 0 ;
2008-05-14 01:27:29 +08:00
while ( arguments . read ( " -l " , maxLevels ) )
{
ldv . addExtents ( maxLevels ) ;
}
2015-10-22 21:42:19 +08:00
2008-05-14 01:27:29 +08:00
double minX , maxX , minY , maxY ;
while ( arguments . read ( " -e " , maxLevels , minX , minY , maxX , maxY ) )
{
ldv . addExtents ( maxLevels , minX , minY , maxX , maxY ) ;
}
2015-10-22 21:42:19 +08:00
2008-10-21 00:24:57 +08:00
std : : string filename ;
for ( int i = 1 ; i < arguments . argc ( ) ; + + i )
{
if ( ! arguments . isOption ( i ) )
{
filename = arguments [ i ] ;
break ;
}
2008-05-10 01:08:31 +08:00
}
2015-10-22 21:42:19 +08:00
if ( filename . empty ( ) )
2008-10-21 00:24:57 +08:00
{
std : : cout < < " No file to load specified. " < < std : : endl ;
return 1 ;
}
2015-10-22 21:42:19 +08:00
2008-10-21 00:24:57 +08:00
osg : : ref_ptr < osg : : Node > loadedModel = ldv . readNodeFileAndWriteToCache ( filename ) ;
2008-05-10 01:08:31 +08:00
if ( ! loadedModel )
{
std : : cout < < " No data loaded, please specify a database to load " < < std : : endl ;
return 1 ;
}
2015-10-22 21:42:19 +08:00
2008-05-10 01:08:31 +08:00
loadedModel - > accept ( ldv ) ;
2008-05-13 00:59:04 +08:00
if ( s_ExitApplication )
{
2015-11-23 19:01:47 +08:00
std : : cout < < " osgfilecache exited in response to signal : " < < s_SigValue < < std : : endl ;
2008-05-13 00:59:04 +08:00
}
2008-05-10 01:08:31 +08:00
return 0 ;
}