]> git.mxchange.org Git - flightgear.git/blobdiff - Main/options.cxx
C++ ifying ...
[flightgear.git] / Main / options.cxx
index 5e3b9ff400f442716fdcead1af367adfc0cd4e29..1cdd667a684f86e53cf3602e577c08343d92c671 100644 (file)
 #include <stdio.h>
 #include <stdlib.h>          // atof(), atoi()
 #include <string.h>
+#include <string>
 
 #include <Debug/fg_debug.h>
+#include <Flight/flight.hxx>
 #include <Include/fg_constants.h>
-#include <Include/fg_zlib.h>
+#include <Misc/fgstream.hxx>
 
 #include "options.hxx"
 
+const int fgOPTIONS::FG_RADIUS_MIN;
+const int fgOPTIONS::FG_RADIUS_MAX;
+
+inline double
+atof( const string& str )
+{
+    return ::atof( str.c_str() );
+}
+
+inline int
+atoi( const string& str )
+{
+    return ::atoi( str.c_str() );
+}
 
 // Defined the shared options class here
 fgOPTIONS current_options;
 
 
 // Constructor
-fgOPTIONS::fgOPTIONS( void ) {
-    // set initial values/defaults
-
-    if ( getenv("FG_ROOT") != NULL ) {
-       // fg_root could be anywhere, so default to environmental
-       // variable $FG_ROOT if it is set.
-
-       strcpy(fg_root, getenv("FG_ROOT"));
-    } else {
-       // Otherwise, default to a random compiled in location if
-       // $FG_ROOT is not set.  This can still be overridden from the
-       // command line or a config file.
+fgOPTIONS::fgOPTIONS() :
+    // starting longitude in degrees (west = -)
+    // starting latitude in degrees (south = -)
 
-#if defined(WIN32)
-       strcpy(fg_root, "\\FlightGear");
-#else
-       strcpy(fg_root, "/usr/local/lib/FlightGear");
-#endif
-    }
+    // Default initial position is Globe, AZ (P13)
+    lon(-110.6642444),
+    lat(  33.3528917),
 
-    // default airport id
-    strcpy(airport_id, "");
+    // North of the city of Globe
+    // lon(-110.7),
+    // lat(  33.4),
 
-    // Miscellaneous
-    splash_screen = 1;
-    intro_music = 1;
-    mouse_pointer = 0;
+    // North of the city of Globe
+    // lon(-110.742578),
+    // lat(  33.507122),
 
-    // Features
-    hud_status = 1;
-    panel_status = 0;
+    // Near where I used to live in Globe, AZ
+    // lon(-110.766000),
+    // lat(  33.377778),
 
-    // Rendering options
-    fog = 2;    // nicest
-    fov = 65.0;
-    fullscreen = 0;
-    shading = 1;
-    skyblend = 1;
-    textures = 1;
-    wireframe = 0;
+    // 10125 Jewell St. NE
+    // lon(-93.15),
+    // lat( 45.15),
 
-    // Scenery options
-    tile_diameter = 7;
+    // Near KHSP (Hot Springs, VA)
+    // lon(-79.8338964 + 0.01),
+    // lat( 37.9514564 + 0.008),
 
-    // Time options
-    time_offset = 0;
-}
+    // (SEZ) SEDONA airport
+    // lon(-111.7884614 + 0.01),
+    // lat(  34.8486289 - 0.015),
 
+    // Somewhere near the Grand Canyon
+    // lon(-112.5),
+    // lat(  36.5),
 
-// Parse an int out of a --foo-bar=n type option 
-static int parse_int(char *arg) {
-    int result;
+    // Jim Brennon's Kingmont Observatory
+    // lon(-121.1131667),
+    // lat(  38.8293917),
 
-    // advance past the '='
-    while ( (arg[0] != '=') && (arg[0] != '\0') ) {
-       arg++;
-    }
+    // Huaras, Peru (S09d 31.871'  W077d 31.498')
+    // lon(-77.5249667),
+    // lat( -9.5311833),
+    // Eclipse Watching w73.5 n10 (approx) 18:00 UT
+    // lon(-73.5),
+    // lat( 10.0),
 
-    if ( arg[0] == '=' ) {
-       arg++;
-    }
+    // Test Position
+    // lon( 8.5),
+    // lat(47.5),
 
-    // printf("parse_int(): arg = %s\n", arg);
+    // Timms Hill (WI)
+    // lon(-90.1953055556),
+    // lat( 45.4511388889),
 
-    result = atoi(arg);
+    // starting altitude in meters (this will be reset to ground level
+    // if it is lower than the terrain
+    altitude(-9999.0),
 
-    // printf("parse_int(): result = %d\n", result);
+    // Initial Orientation
+    heading(270.0),      // heading (yaw) angle in degress (Psi)
+    roll(0.0),           // roll angle in degrees (Phi)
+    pitch(0.424),        // pitch angle in degrees (Theta)
 
-    return(result);
-}
+    // Miscellaneous
+    game_mode(0),
+    splash_screen(1),
+    intro_music(1),
+    mouse_pointer(0),
+    pause(0),
 
+    // Features
+    hud_status(1),
+    panel_status(0),
+    sound(1),
 
-// Parse an int out of a --foo-bar=n type option 
-static double parse_double(char *arg) {
-    double result;
+    // Flight Model options
+    flight_model(FG_LARCSIM),
 
-    // advance past the '='
-    while ( (arg[0] != '=') && (arg[0] != '\0') ) {
-       arg++;
-    }
+    // Rendering options
+    fog(FG_FOG_NICEST),  // nicest
+    fov(55.0),
+    fullscreen(0),
+    shading(1),
+    skyblend(1),
+    textures(1),
+    wireframe(0),
 
-    if ( arg[0] == '=' ) {
-       arg++;
-    }
+    // Scenery options
+    tile_diameter(5),
 
-    printf("parse_double(): arg = %s\n", arg);
+    // HUD options
+    tris_or_culled(0),
+       
+    // Time options
+    time_offset(0)
+{
+    // set initial values/defaults
+    char* envp = ::getenv( "FG_ROOT" );
 
-    result = atof(arg);
+    if ( envp != NULL ) {
+       // fg_root could be anywhere, so default to environmental
+       // variable $FG_ROOT if it is set.
+       fg_root = envp;
+    } else {
+       // Otherwise, default to a random compiled in location if
+       // $FG_ROOT is not set.  This can still be overridden from the
+       // command line or a config file.
 
-    printf("parse_double(): result = %.4f\n", result);
+#if defined(WIN32)
+       fg_root = "\\FlightGear";
+#else
+       fg_root = "/usr/local/lib/FlightGear";
+#endif
+    }
 
-    return(result);
+    airport_id = "";  // default airport id
 }
 
 
-// parse time string in the form of [+-]hh:mm:ss, returns the value in seconds
-static double parse_time(char *time_str) {
-    char num[256];
+double
+fgOPTIONS::parse_time(const string& time_in) {
+    char *time_str, num[256];
     double hours, minutes, seconds;
     double result = 0.0;
     int sign = 1;
     int i;
 
+    time_str = (char *)time_in.c_str();
+
     // printf("parse_time(): %s\n", time_str);
 
     // check for sign
@@ -176,7 +220,7 @@ static double parse_time(char *time_str) {
        hours = atof(num);
        // printf("hours = %.2lf\n", hours);
 
-       result += hours * 3600.0;
+       result += hours;
     }
 
     // get minutes
@@ -194,7 +238,7 @@ static double parse_time(char *time_str) {
        minutes = atof(num);
        // printf("minutes = %.2lf\n", minutes);
 
-       result += minutes * 60.0;
+       result += minutes / 60.0;
     }
 
     // get seconds
@@ -209,28 +253,38 @@ static double parse_time(char *time_str) {
        seconds = atof(num);
        // printf("seconds = %.2lf\n", seconds);
 
-       result += seconds;
+       result += seconds / 3600.0;
     }
 
     return(sign * result);
 }
 
 
+// parse degree in the form of [+/-]hhh:mm:ss
+double
+fgOPTIONS::parse_degree( const string& degree_str) {
+    double result = parse_time( degree_str );
+
+    // printf("Degree = %.4f\n", result);
+
+    return(result);
+}
+
+
 // parse time offset command line option
-static int parse_time_offset(char *time_str) {
+int
+fgOPTIONS::parse_time_offset( const string& time_str) {
     int result;
 
-    time_str += 14;
-
     // printf("time offset = %s\n", time_str);
 
 #ifdef HAVE_RINT
-    result = (int)rint(parse_time(time_str));
+    result = (int)rint(parse_time(time_str) * 3600.0);
 #else
-    result = (int)parse_time(time_str);
+    result = (int)(parse_time(time_str) * 3600.0);
 #endif
 
-    printf("parse_time_offset(): %d\n", result);
+    // printf("parse_time_offset(): %d\n", result);
 
     return( result );
 }
@@ -238,13 +292,9 @@ static int parse_time_offset(char *time_str) {
 
 // Parse --tile-diameter=n type option 
 
-#define FG_RADIUS_MIN 1
-#define FG_RADIUS_MAX 4
-
-static int parse_tile_radius(char *arg) {
-    int radius, tmp;
-
-    radius = parse_int(arg);
+int
+fgOPTIONS::parse_tile_radius( const string& arg ) {
+    int radius = atoi( arg );
 
     if ( radius < FG_RADIUS_MIN ) { radius = FG_RADIUS_MIN; }
     if ( radius > FG_RADIUS_MAX ) { radius = FG_RADIUS_MAX; }
@@ -255,88 +305,135 @@ static int parse_tile_radius(char *arg) {
 }
 
 
-// Parse --fov=x.xx type option 
-static double parse_fov(char *arg) {
-    double fov;
+// Parse --flightmode=abcdefg type option 
+int
+fgOPTIONS::parse_flight_model( const string& fm ) {
+    // printf("flight model = %s\n", fm);
 
-    fov = parse_double(arg);
+    if ( fm == "slew" ) {
+       return(FG_SLEW);
+    } else if ( (fm == "larcsim") || (fm == "LaRCsim") ) {
+       return(FG_LARCSIM);
+    } else {
+       fgPrintf( FG_GENERAL, FG_EXIT, "Unknown flight model = %s\n",
+                 fm.c_str());
+    }
+
+    // we'll never get here, but it makes the compiler happy.
+    return(-1);
+}
+
+
+// Parse --fov=x.xx type option 
+double
+fgOPTIONS::parse_fov( const string& arg ) {
+    double fov = atof(arg);
 
     if ( fov < FG_FOV_MIN ) { fov = FG_FOV_MIN; }
     if ( fov > FG_FOV_MAX ) { fov = FG_FOV_MAX; }
 
-    printf("parse_fov(): result = %.4f\n", fov);
+    // printf("parse_fov(): result = %.4f\n", fov);
 
     return(fov);
 }
 
 
 // Parse a single option
-int fgOPTIONS::parse_option( char *arg ) {
+int fgOPTIONS::parse_option( const string& arg ) {
     // General Options
-    if ( (strcmp(arg, "--help") == 0) ||
-        (strcmp(arg, "-h") == 0) ) {
+    if ( (arg == "--help") || (arg == "-h") ) {
        // help/usage request
        return(FG_OPTIONS_HELP);
-    } else if ( strcmp(arg, "--disable-splash-screen") == 0 ) {
-       splash_screen = 0;
-    } else if ( strcmp(arg, "--enable-splash-screen") == 0 ) {
-       splash_screen = 1;
-    } else if ( strcmp(arg, "--disable-intro-music") == 0 ) {
-       intro_music = 0;
-    } else if ( strcmp(arg, "--enable-intro-music") == 0 ) {
-       intro_music = 1;
-    } else if ( strcmp(arg, "--disable-mouse-pointer") == 0 ) {
+    } else if ( arg == "--disable-game-mode") {
+       game_mode = false;
+    } else if ( arg == "--enable-game-mode" ) {
+       game_mode = true;
+    } else if ( arg == "--disable-splash-screen" ) {
+       splash_screen = false;
+    } else if ( arg == "--enable-splash-screen" ) {
+       splash_screen = true;
+    } else if ( arg == "--disable-intro-music" ) {
+       intro_music = false;
+    } else if ( arg == "--enable-intro-music" ) {
+       intro_music = true;
+    } else if ( arg == "--disable-mouse-pointer" ) {
        mouse_pointer = 1;
-    } else if ( strcmp(arg, "--enable-mouse-pointer") == 0 ) {
+    } else if ( arg == "--enable-mouse-pointer" ) {
        mouse_pointer = 2;
-    } else if ( strcmp(arg, "--disable-hud") == 0 ) {
-       hud_status = 0; 
-    } else if ( strcmp(arg, "--enable-hud") == 0 ) {
-       hud_status = 1; 
-    } else if ( strcmp(arg, "--disable-panel") == 0 ) {
-       panel_status = 0;
-    } else if ( strcmp(arg, "--enable-panel") == 0 ) {
-       panel_status = 1;
-    } else if ( strncmp(arg, "--airport-id=", 13) == 0 ) {
-       arg += 13;
-       strncpy(airport_id, arg, 4);
-    } else if ( strncmp(arg, "--fg-root=", 10) == 0 ) {
-       arg += 10;
-       strcpy(fg_root, arg);
-    } else if ( strcmp(arg, "--fog-disable") == 0 ) {
-       fog = 0;        
-    } else if ( strcmp(arg, "--fog-fastest") == 0 ) {
-       fog = 1;        
-    } else if ( strcmp(arg, "--fog-nicest") == 0 ) {
-       fog = 2;        
-    } else if ( strncmp(arg, "--fov=", 6) == 0 ) {
-       fov = parse_fov(arg);
-    } else if ( strcmp(arg, "--disable-fullscreen") == 0 ) {
-       fullscreen = 0; 
-    } else if ( strcmp(arg, "--enable-fullscreen") == 0 ) {
-       fullscreen = 1; 
-    } else if ( strcmp(arg, "--shading-flat") == 0 ) {
+    } else if ( arg == "--disable-pause" ) {
+       pause = false;  
+    } else if ( arg == "--enable-pause" ) {
+       pause = true;   
+    } else if ( arg == "--disable-hud" ) {
+       hud_status = false;     
+    } else if ( arg == "--enable-hud" ) {
+       hud_status = true;      
+    } else if ( arg == "--disable-panel" ) {
+       panel_status = false;
+    } else if ( arg == "--enable-panel" ) {
+       panel_status = true;
+    } else if ( arg == "--disable-sound" ) {
+       sound = false;
+    } else if ( arg == "--enable-sound" ) {
+       sound = true;
+    } else if ( arg.find( "--airport-id=") != string::npos ) {
+       airport_id = arg.substr( 13 );
+    } else if ( arg.find( "--lon=" ) != string::npos ) {
+       lon = parse_degree( arg.substr(6) );
+    } else if ( arg.find( "--lat=" ) != string::npos ) {
+       lat = parse_degree( arg.substr(6) );
+    } else if ( arg.find( "--altitude=" ) != string::npos ) {
+       altitude = atof( arg.substr(11) );
+    } else if ( arg.find( "--heading=" ) != string::npos ) {
+       heading = atof( arg.substr(10) );
+    } else if ( arg.find( "--roll=" ) != string::npos ) {
+       roll = atof( arg.substr(7) );
+    } else if ( arg.find( "--pitch=" ) != string::npos ) {
+       pitch = atof( arg.substr(8) );
+    } else if ( arg.find( "--fg-root=" ) != string::npos ) {
+       fg_root = arg.substr( 10 );
+    } else if ( arg.find( "--flight-model=" ) != string::npos ) {
+       flight_model = parse_flight_model( arg.substr(15) );
+    } else if ( arg == "--fog-disable" ) {
+       fog = FG_FOG_DISABLED;  
+    } else if ( arg == "--fog-fastest" ) {
+       fog = FG_FOG_FASTEST;   
+    } else if ( arg == "--fog-nicest" ) {
+       fog = FG_FOG_NICEST;    
+    } else if ( arg.find( "--fov=" ) != string::npos ) {
+       fov = parse_fov( arg.substr(6) );
+    } else if ( arg == "--disable-fullscreen" ) {
+       fullscreen = false;     
+    } else if ( arg== "--enable-fullscreen") {
+       fullscreen = true;      
+    } else if ( arg == "--shading-flat") {
        shading = 0;    
-    } else if ( strcmp(arg, "--shading-smooth") == 0 ) {
+    } else if ( arg == "--shading-smooth") {
        shading = 1;    
-    } else if ( strcmp(arg, "--disable-skyblend") == 0 ) {
-       skyblend = 0;   
-    } else if ( strcmp(arg, "--enable-skyblend") == 0 ) {
-       skyblend = 1;   
-    } else if ( strcmp(arg, "--disable-textures") == 0 ) {
-       textures = 0;   
-    } else if ( strcmp(arg, "--enable-textures") == 0 ) {
-       textures = 1;   
-    } else if ( strcmp(arg, "--disable-wireframe") == 0 ) {
-       wireframe = 0;  
-    } else if ( strcmp(arg, "--enable-wireframe") == 0 ) {
-       wireframe = 1;  
-    } else if ( strncmp(arg, "--tile-radius=", 14) == 0 ) {
-       tile_radius = parse_tile_radius(arg);
+    } else if ( arg == "--disable-skyblend") {
+       skyblend = false;       
+    } else if ( arg== "--enable-skyblend" ) {
+       skyblend = true;        
+    } else if ( arg == "--disable-textures" ) {
+       textures = false;       
+    } else if ( arg == "--enable-textures" ) {
+       textures = true;        
+    } else if ( arg == "--disable-wireframe" ) {
+       wireframe = false;      
+    } else if ( arg == "--enable-wireframe" ) {
+       wireframe = true;       
+    } else if ( arg.find( "--tile-radius=" ) != string::npos ) {
+       tile_radius = parse_tile_radius( arg.substr(14) );
        tile_diameter = tile_radius * 2 + 1;
-    } else if ( strncmp(arg, "--time-offset=", 14) == 0 ) {
-       time_offset = parse_time_offset(arg);
+    } else if ( arg.find( "--time-offset=" ) != string::npos ) {
+       time_offset = parse_time_offset( (arg.substr(14)) );
+    } else if ( arg == "--hud-tris" ) {
+       tris_or_culled = 0;     
+    } else if ( arg == "--hud-culled" ) {
+       tris_or_culled = 1;     
     } else {
+       fgPrintf( FG_GENERAL, FG_EXIT, "Unknown option '%s'\n",
+                 arg.c_str() );
        return(FG_OPTIONS_ERROR);
     }
     
@@ -366,41 +463,30 @@ int fgOPTIONS::parse_command_line( int argc, char **argv ) {
 }
 
 
-// Parse the command line options
-int fgOPTIONS::parse_config_file( char *path ) {
-    char fgpath[256], line[256];
-    fgFile f;
-    int len, result;
-
-    strcpy(fgpath, path);
-    strcat(fgpath, ".gz");
-
-    // first try "path.gz"
-    if ( (f = fgopen(fgpath, "rb")) == NULL ) {
-       // next try "path"
-        if ( (f = fgopen(path, "rb")) == NULL ) {
-           return(FG_OPTIONS_ERROR);
-       }
-    }
+// Parse config file options
+int fgOPTIONS::parse_config_file( const string& path ) {
+    fg_gzifstream in( path );
+    if ( !in )
+       return(FG_OPTIONS_ERROR);
 
-    fgPrintf(FG_GENERAL, FG_INFO, "Processing config file: %s\n", path);
+    fgPrintf( FG_GENERAL, FG_INFO, "Processing config file: %s\n",
+             path.c_str() );
 
-    while ( fggets(f, line, 250) != NULL ) {
-       // strip trailing newline if it exists
-       len = strlen(line);
-       if ( line[len-1] == '\n' ) {
-           line[len-1] = '\0';
-       }
+    in.eat_comments();
+    while ( !in.eof() )
+    {
+       string line;
+       getline( in.stream(), line );
 
-       result = parse_option(line);
-       if ( result == FG_OPTIONS_ERROR ) {
+       if ( parse_option( line ) == FG_OPTIONS_ERROR ) {
            fgPrintf( FG_GENERAL, FG_EXIT, 
-                     "Config file parse error: %s '%s'\n", path, line );
+                     "Config file parse error: %s '%s'\n",
+                     path.c_str(), line.c_str() );
        }
+       in.eat_comments();
     }
 
-    fgclose(f);
-    return(FG_OPTIONS_OK);
+    return FG_OPTIONS_OK;
 }
 
 
@@ -412,13 +498,17 @@ void fgOPTIONS::usage ( void ) {
     printf("General Options:\n");
     printf("\t--help -h:  print usage\n");
     printf("\t--fg-root=path:  specify the root path for all the data files\n");
+    printf("\t--disable-game-mode:  disable full-screen game mode\n");
+    printf("\t--enable-game-mode:  enable full-screen game mode\n");
     printf("\t--disable-splash-screen:  disable splash screen\n");
     printf("\t--enable-splash-screen:  enable splash screen\n");
     printf("\t--disable-intro-music:  disable introduction music\n");
     printf("\t--enable-intro-music:  enable introduction music\n");
     printf("\t--disable-mouse-pointer:  disable extra mouse pointer\n");
     printf("\t--enable-mouse-pointer:  enable extra mouse pointer (i.e. for\n");
-    printf("\t\tfull screen voodoo/voodoo-II based cards.\n");
+    printf("\t\tfull screen voodoo/voodoo-II based cards.)\n");
+    printf("\t--disable-pause:  start out in an active state\n");
+    printf("\t--enable-pause:  start out in a paused state\n");
     printf("\n");
 
     printf("Features:\n");
@@ -426,10 +516,18 @@ void fgOPTIONS::usage ( void ) {
     printf("\t--enable-hud:  enable heads up display\n");
     printf("\t--disable-panel:  disable instrument panel\n");
     printf("\t--enable-panel:  enable instrumetn panel\n");
+    printf("\t--disable-sound:  disable sound effects\n");
+    printf("\t--enable-sound:  enable sound effects\n");
     printf("\n");
  
-    printf("Initial Position:\n");
+    printf("Initial Position and Orientation:\n");
     printf("\t--airport-id=ABCD:  specify starting postion by airport id\n");
+    printf("\t--lon=degrees:  starting longitude in degrees (west = -)\n");
+    printf("\t--lat=degrees:  starting latitude in degrees (south = -)\n");
+    printf("\t--altitude=meters:  starting altitude in meters\n");
+    printf("\t--heading=degrees:  heading (yaw) angle in degress (Psi)\n");
+    printf("\t--roll=degrees:  roll angle in degrees (Phi)\n");
+    printf("\t--pitch=degrees:  pitch angle in degrees (Theta)\n");
     printf("\n");
 
     printf("Rendering Options:\n");
@@ -453,41 +551,88 @@ void fgOPTIONS::usage ( void ) {
     printf("\t--tile-radius=n:  specify tile radius, must be 1 - 4\n");
     printf("\n");
 
+    printf("Hud Options:\n");
+    printf("\t--hud-tris:  Hud displays number of triangles rendered\n");
+    printf("\t--hud-culled:  Hud displays percentage of triangles culled\n");
+       
     printf("Time Options:\n");
     printf("\t--time-offset=[+-]hh:mm:ss:  offset local time by this amount\n");
 }
 
 
-// Query functions
-void fgOPTIONS::get_fg_root(char *root) { strcpy(root, fg_root); }
-void fgOPTIONS::get_airport_id(char *id) { strcpy(id, airport_id); }
-int fgOPTIONS::get_splash_screen( void ) { return(splash_screen); }
-int fgOPTIONS::get_intro_music( void ) { return(intro_music); }
-int fgOPTIONS::get_mouse_pointer( void ) { return(mouse_pointer); }
-int fgOPTIONS::get_hud_status( void ) { return(hud_status); }
-int fgOPTIONS::get_panel_status( void ) { return(panel_status); }
-int fgOPTIONS::get_fog( void ) { return(fog); }
-double fgOPTIONS::get_fov( void ) { return(fov); }
-int fgOPTIONS::get_fullscreen( void ) { return(fullscreen); }
-int fgOPTIONS::get_shading( void ) { return(shading); }
-int fgOPTIONS::get_skyblend( void ) { return(skyblend); }
-int fgOPTIONS::get_textures( void ) { return(textures); }
-int fgOPTIONS::get_wireframe( void ) { return(wireframe); }
-int fgOPTIONS::get_tile_radius( void ) { return(tile_radius); }
-int fgOPTIONS::get_tile_diameter( void ) { return(tile_diameter); }
-int fgOPTIONS::get_time_offset( void ) { return(time_offset); }
-
-
-// Update functions
-void fgOPTIONS::set_hud_status( int status ) { hud_status = status; }
-void fgOPTIONS::set_fov( double amount ) { fov = amount; }
-
 // Destructor
 fgOPTIONS::~fgOPTIONS( void ) {
 }
 
 
 // $Log$
+// Revision 1.26  1998/10/17 01:34:24  curt
+// C++ ifying ...
+//
+// Revision 1.25  1998/09/15 02:09:27  curt
+// Include/fg_callback.hxx
+//   Moved code inline to stop g++ 2.7 from complaining.
+//
+// Simulator/Time/event.[ch]xx
+//   Changed return type of fgEVENT::printStat().  void caused g++ 2.7 to
+//   complain bitterly.
+//
+// Minor bugfix and changes.
+//
+// Simulator/Main/GLUTmain.cxx
+//   Added missing type to idle_state definition - eliminates a warning.
+//
+// Simulator/Main/fg_init.cxx
+//   Changes to airport lookup.
+//
+// Simulator/Main/options.cxx
+//   Uses fg_gzifstream when loading config file.
+//
+// Revision 1.24  1998/09/08 15:04:33  curt
+// Optimizations by Norman Vine.
+//
+// Revision 1.23  1998/08/27 17:02:07  curt
+// Contributions from Bernie Bright <bbright@c031.aone.net.au>
+// - use strings for fg_root and airport_id and added methods to return
+//   them as strings,
+// - inlined all access methods,
+// - made the parsing functions private methods,
+// - deleted some unused functions.
+// - propogated some of these changes out a bit further.
+//
+// Revision 1.22  1998/08/24 20:11:13  curt
+// Added i/I to toggle full vs. minimal HUD.
+// Added a --hud-tris vs --hud-culled option.
+// Moved options accessor funtions to options.hxx.
+//
+// Revision 1.21  1998/08/20 15:10:34  curt
+// Added GameGLUT support.
+//
+// Revision 1.20  1998/07/30 23:48:28  curt
+// Output position & orientation when pausing.
+// Eliminated libtool use.
+// Added options to specify initial position and orientation.
+// Changed default fov to 55 degrees.
+// Added command line option to start in paused or unpaused state.
+//
+// Revision 1.19  1998/07/27 18:41:25  curt
+// Added a pause command "p"
+// Fixed some initialization order problems between pui and glut.
+// Added an --enable/disable-sound option.
+//
+// Revision 1.18  1998/07/22 01:27:03  curt
+// Strip out \r when parsing config file in case we are on a windoze system.
+//
+// Revision 1.17  1998/07/16 17:33:38  curt
+// "H" / "h" now control hud brightness as well with off being one of the
+//   states.
+// Better checking for xmesa/fx 3dfx fullscreen/window support for deciding
+//   whether or not to build in the feature.
+// Translucent menu support.
+// HAVE_AUDIO_SUPPORT -> ENABLE_AUDIO_SUPPORT
+// Use fork() / wait() for playing mp3 init music in background under unix.
+// Changed default tile diameter to 5.
+//
 // Revision 1.16  1998/07/13 21:01:39  curt
 // Wrote access functions for current fgOPTIONS.
 //