]> git.mxchange.org Git - flightgear.git/blobdiff - src/GUI/gui.cxx
Center display upon leaving mouse mode until we can come up with a more
[flightgear.git] / src / GUI / gui.cxx
index 6acecfdaa613d5df116b73c47f5c60a25b9c95ed..985cfc60b68e51c6aefd0d8e7b2e28a90ef22755 100644 (file)
@@ -28,9 +28,9 @@
 #  include <config.h>
 #endif
 
-#include <Include/compiler.h>
+#include <simgear/compiler.h>
 
-#ifdef FG_MATH_EXCEPTION_CLASH
+#ifdef SG_MATH_EXCEPTION_CLASH
 #  include <math.h>
 #endif
 
 #endif
 
 #include <GL/glut.h>
-#include <XGL/xgl.h>
+#include <GL/gl.h>
 
 #if defined(FX) && defined(XMESA)
 #  include <GL/xmesa.h>
 #endif
 
+#include STL_FSTREAM
 #include STL_STRING
 
 #include <stdlib.h>
 #include <string.h>
 
+#include <simgear/constants.h>
+#include <simgear/debug/logstream.hxx>
+#include <simgear/misc/sg_path.hxx>
+#include <simgear/screen/screen-dump.hxx>
+
 #include <Include/general.hxx>
-#include <Debug/logstream.hxx>
 #include <Aircraft/aircraft.hxx>
 #include <Airports/simple.hxx>
+#include <Autopilot/auto_gui.hxx>
+#include <Autopilot/newauto.hxx>
 #include <Cockpit/panel.hxx>
+#include <Controls/controls.hxx>
 #include <FDM/flight.hxx>
-#include <Main/options.hxx>
 #include <Main/fg_init.hxx>
-#include <Main/views.hxx>
-#include <Misc/fgpath.hxx>
-#include <Network/network.h>
-#include <Screen/screen-dump.hxx>
-#include <Time/fg_time.hxx>
+#include <Main/fg_io.hxx>
+#include <Main/globals.hxx>
+#include <Main/fg_props.hxx>
+#include <Main/options.hxx>
 
-#ifdef WIN32
-#  include <Screen/win32-printer.h>
+#ifdef FG_NETWORK_OLK
+#include <NetworkOLK/network.h>
+#endif
+   
+#if defined( WIN32 ) && !defined( __CYGWIN__ )
+#  include <simgear/screen/win32-printer.h>
+#  include <simgear/screen/GlBitmaps.h>
 #endif
 
 #include "gui.h"
+#include "gui_local.hxx"
+#include "apt_dlg.hxx"
+#include "net_dlg.hxx"
+#include "sgVec3Slider.hxx"
 
-FG_USING_STD(string);
+SG_USING_STD(string);
 
-#ifndef FG_HAVE_NATIVE_SGI_COMPILERS
-FG_USING_STD(cout);
+#ifndef SG_HAVE_NATIVE_SGI_COMPILERS
+SG_USING_STD(cout);
 #endif
 
-// hack, should come from an include someplace
+#ifdef  _MSC_VER
+#define  snprintf    _snprintf
+#endif   /* _MSC_VER */
+
+// main.cxx hack, should come from an include someplace
 extern void fgInitVisuals( void );
 extern void fgReshape( int width, int height );
 extern void fgRenderFrame( void );
 
 puFont guiFnt = 0;
 fntTexFont *guiFntHandle = 0;
-
+int gui_menu_on = 0;
 static puMenuBar    *mainMenuBar = 0;
 //static puButton     *hideMenuButton = 0;
 
@@ -113,318 +132,195 @@ char *gui_msg_RESET;  // "RESET"
 
 static char global_dialog_string[256];
 
-extern void NewAltitude( puObject *cb );
-extern void NewHeading( puObject *cb );
-extern void fgAPAdjust( puObject * );
+// from cockpit.cxx
 extern void fgLatLonFormatToggle( puObject *);
-extern void NewTgtAirport( puObject *cb );
 
-/* --------------------------------------------------------------------
-Mouse stuff
----------------------------------------------------------------------*/
 
-static int _mX = 0;
-static int _mY = 0;
-static int _savedX = 0;
-static int _savedY = 0;
-static int last_buttons = 0 ;
-static int mouse_active = 0;
-static int menu_on = 0;
-
-/* --------------------------------------------------------------------
-Support for mouse as control yoke (david@megginson.com)
-
-- right button toggles between pointer and yoke
-- horizontal drag with no buttons moves ailerons
-- vertical drag with no buttons moves elevators
-- horizontal drag with left button moves brakes (left=on)
-- vertical drag with left button moves throttle (up=more)
-- horizontal drag with middle button moves rudder
-- vertical drag with middle button moves trim
-
-For the *_sensitivity variables, a lower number means more sensitive.
-
-TODO: figure out how to keep pointer from leaving window in yoke mode.
-TODO: add thresholds and null zones
-TODO: sensitivity should be configurable at user option.
-TODO: allow differential braking (this will be useful if FlightGear
-      ever supports tail-draggers like the DC-3)
----------------------------------------------------------------------*/
+/* ================ General Purpose Functions ================ */
 
-typedef enum {
-    MOUSE_POINTER,
-    MOUSE_YOKE,
-    MOUSE_VIEW
-} MouseMode;
-
-MouseMode mouse_mode = MOUSE_POINTER;
-static float aileron_sensitivity = 500.0;
-static float elevator_sensitivity = 500.0;
-static float brake_sensitivity = 250.0;
-static float throttle_sensitivity = 250.0;
-static float rudder_sensitivity = 500.0;
-static float trim_sensitivity = 1000.0;
-
-void guiMotionFunc ( int x, int y )
+// Intercept the Escape Key
+void ConfirmExitDialog(void)
 {
-    if (mouse_mode == MOUSE_POINTER) {
-      puMouse ( x, y ) ;
-      glutPostRedisplay () ;
-    } else {
-      int ww = current_view.get_winWidth();
-      int wh = current_view.get_winHeight();
-
-                               // Mouse as yoke
-      if (mouse_mode == MOUSE_YOKE) {
-       if (last_buttons & (1 << GLUT_LEFT_BUTTON)) {
-         float brake_offset = (_mX - x) / brake_sensitivity;
-         float throttle_offset = (_mY - y) / throttle_sensitivity;
-         controls.move_brake(FGControls::ALL_WHEELS, brake_offset);
-         controls.move_throttle(FGControls::ALL_ENGINES, throttle_offset);
-       } else if (last_buttons & (1 << GLUT_MIDDLE_BUTTON)) {
-         float rudder_offset = (x - _mX) / rudder_sensitivity;
-         float trim_offset = (_mY - y) / trim_sensitivity;
-         controls.move_rudder(rudder_offset);
-         controls.move_elevator_trim(trim_offset);
-       } else {
-         float aileron_offset = (x - _mX) / aileron_sensitivity;
-         float elevator_offset = (_mY - y) / elevator_sensitivity;
-         controls.move_aileron(aileron_offset);
-         controls.move_elevator(elevator_offset);
-       }
-
-                               // Mouse as view
-      } else {
-       FGView * v = &current_view;
-       double offset = v->get_goal_view_offset();
-       double full = FG_PI * 2.0;
-       offset += (_mX - x) / 500.0;
-       while (offset < 0) {
-         offset += full;
-       }
-       while (offset > full) {
-         offset -= full;
-       }
-       v->set_view_offset(offset);
-       v->set_goal_view_offset(offset);
-      }
-
-                               // Keep the mouse in the window.
-      if (x < 5 || x > ww-5 || y < 5 || y > wh-5) {
-       _mX = x = ww / 2;
-       _mY = y = wh / 2;
-       glutWarpPointer(x, y);
-      }
-    }
+    FG_PUSH_PUI_DIALOG( YNdialogBox );
+}
 
-                               // Record the new mouse position.
-    _mX = x;
-    _mY = y;
+// General Purpose Message Box
+void mkDialog (const char *txt)
+{
+    strncpy(global_dialog_string, txt, 256);
+    dialogBoxMessage->setLabel(global_dialog_string);
+    FG_PUSH_PUI_DIALOG( dialogBox );
 }
 
-void guiMouseFunc(int button, int updown, int x, int y)
+// Toggle the Menu and Mouse display state
+void guiToggleMenu(void)
 {
-                               // Was the left button pressed?
-    if (updown == GLUT_DOWN && button == GLUT_LEFT_BUTTON) {
-      switch (mouse_mode) {
-      case MOUSE_POINTER:
-       break;
-      case MOUSE_YOKE:
-       break;
-      case MOUSE_VIEW:
-        current_view.set_view_offset( 0.00 );
-        current_view.set_goal_view_offset( 0.00 );
-       break;
-      }
-
-                               // Or was it the right button?
-    } else if (updown == GLUT_DOWN && button == GLUT_RIGHT_BUTTON) {
-      switch (mouse_mode) {
-      case MOUSE_POINTER:
-       mouse_mode = MOUSE_YOKE;
-       _savedX = x;
-       _savedY = y;
-       glutSetCursor(GLUT_CURSOR_NONE);
-       FG_LOG( FG_INPUT, FG_INFO, "Mouse in yoke mode" );
-       break;
-      case MOUSE_YOKE:
-       mouse_mode = MOUSE_VIEW;
-       FG_LOG( FG_INPUT, FG_INFO, "Mouse in view mode" );
-       break;
-      case MOUSE_VIEW:
-       mouse_mode = MOUSE_POINTER;
-       _mX = x = _savedX;
-       _mY = y = _savedY;
-       glutWarpPointer(x, y);
-       glutSetCursor(GLUT_CURSOR_INHERIT);
-       FG_LOG( FG_INPUT, FG_INFO, "Mouse in pointer mode" );
-       break;
-      }     
+    if( gui_menu_on ) {
+        // printf("Hiding Menu\n");
+        mainMenuBar->hide  ();
+#if defined(WIN32_CURSOR_TWEAKS)
+        if( mouse_mode == MOUSE_POINTER )
+            TurnCursorOff();
+#endif // #ifdef WIN32_CURSOR_TWEAKS
+    } else {
+        // printf("Showing Menu\n");
+        mainMenuBar->reveal();
+#ifdef WIN32
+        TurnCursorOn();
+#endif // #ifdef WIN32
     }
+    gui_menu_on = ~gui_menu_on;
+}
+    
+/* -----------------------------------------------------------------------
+the Gui callback functions 
+____________________________________________________________________*/
 
-                               // Register the new position (if it
-                               // hasn't been registered already).
-    _mX = x;
-    _mY = y;
 
-                               // Note which button is pressed.
-    if ( updown == GLUT_DOWN ) {
-        last_buttons |=  ( 1 << button ) ;
-    } else {
-        last_buttons &= ~( 1 << button ) ;
-    }
+// Hier Neu :-) This is my newly added code
+// Added by David Findlay <nedz@bigpond.com>
+// on Sunday 3rd of December
 
-                               // If we're in pointer mode, let PUI
-                               // know what's going on.
-    if (mouse_mode == MOUSE_POINTER) {
-       puMouse (button, updown, x,y);
-       glutPostRedisplay ();
-    }
-}
+// Start new Save Dialog Box
+static puDialogBox     *SaveDialog = 0;
+static puFrame         *SaveDialogFrame = 0;
+static puText          *SaveDialogMessage = 0;
+static puInput         *SaveDialogInput = 0;
 
-int guiGetMouseButton(void)
-{
-    return last_buttons;
-}
+static puOneShot       *SaveDialogOkButton = 0;
+static puOneShot       *SaveDialogCancelButton = 0;
+// static puOneShot       *SaveDialogResetButton = 0;
 
-void guiGetMouse(int *x, int *y)
-{
-    *x = _mX;
-    *y = _mY;
-};
+// Default save filename
+static char saveFile[256] = "fgfs.sav";
 
-static inline void TurnCursorOn( void )
-{
-    mouse_active = ~0;
-#if defined ( WIN32 ) || defined(__CYGWIN32__)
-    glutSetCursor(GLUT_CURSOR_INHERIT);
-#endif
-#if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 9)
-    glutWarpPointer( glutGet((GLenum)GLUT_SCREEN_WIDTH)/2, glutGet((GLenum)GLUT_SCREEN_HEIGHT)/2);
-#endif
+// Cancel Button
+void SaveDialogCancel(puObject *) {
+    FG_POP_PUI_DIALOG( SaveDialog );
 }
 
-static inline void TurnCursorOff( void )
-{
-    mouse_active = 0;
-#if defined ( WIN32 ) || defined(__CYGWIN32__)
-    glutSetCursor(GLUT_CURSOR_NONE);
-#else  // I guess this is what we want to do ??
-#if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 9)
-    glutWarpPointer( glutGet((GLenum)GLUT_SCREEN_WIDTH), glutGet((GLenum)GLUT_SCREEN_HEIGHT));
-#endif
-#endif
-}
+// If press OK do this
+void SaveDialogOk(puObject*) {
 
-void maybeToggleMouse( void )
-{
-#ifdef WIN32
-    static int first_time = ~0;
-    static int mouse_changed = 0;
+    FG_POP_PUI_DIALOG( SaveDialog );
 
-    if ( first_time ) {
-        if(!mouse_active) {
-            mouse_changed = ~mouse_changed;
-            TurnCursorOn();
-        }
+    char *s;
+    SaveDialogInput->getValue(&s);
+
+    ofstream output(s);
+    cout << saveFile << endl;
+    if (output.good() && fgSaveFlight(output)) {
+       output.close();
+       mkDialog("Saved flight");
+       SG_LOG(SG_INPUT, SG_INFO, "Saved flight");
     } else {
-        if( mouse_changed ) {
-            mouse_changed = ~mouse_changed;
-            if(mouse_active) {
-                TurnCursorOff();
-            }
-        }
+       mkDialog("Cannot save flight");
+       SG_LOG(SG_INPUT, SG_ALERT, "Cannot save flight");
     }
-    first_time = ~first_time;
-#endif // #ifdef WIN32
 }
 
-// Call with FALSE to init and TRUE to restore
-void BusyCursor( int restore )
-{
-    static int cursor = 0;
-    if( restore ) {
-        glutSetCursor(cursor);
-    } else {
-        cursor = glutGet( (GLenum)GLUT_WINDOW_CURSOR );
-#ifdef WIN32
-        TurnCursorOn();
-#endif
-        glutSetCursor( GLUT_CURSOR_WAIT );
+// Create Dialog
+static void saveFlight(puObject *cv) {
+    SaveDialog = new puDialogBox (150, 50);
+    {
+        SaveDialogFrame   = new puFrame           (0,0,350, 150);
+        SaveDialogMessage = new puText            (
+                       (150 - puGetStringWidth( puGetDefaultLabelFont(), "File Name:" ) / 2), 110);
+        SaveDialogMessage ->    setLabel          ("File Name:");
+
+        SaveDialogInput   = new puInput           (50, 70, 300, 100);
+        SaveDialogInput   ->    setValue          (saveFile);
+        SaveDialogInput   ->    acceptInput();
+
+        SaveDialogOkButton     =  new puOneShot   (50, 10, 110, 50);
+        SaveDialogOkButton     ->     setLegend   (gui_msg_OK);
+        SaveDialogOkButton     ->     setCallback ( SaveDialogOk );
+        SaveDialogOkButton     ->     makeReturnDefault(TRUE);
+
+        SaveDialogCancelButton =  new puOneShot   (140, 10, 210, 50);
+        SaveDialogCancelButton ->     setLegend   (gui_msg_CANCEL);
+        SaveDialogCancelButton ->     setCallback ( SaveDialogCancel );
     }
+    FG_FINALIZE_PUI_DIALOG( SaveDialog );
+   
+    SaveDialog -> reveal();
 }
-/* ================ General Purpose Functions ================ */
 
-// Intercept the Escape Key
-void ConfirmExitDialog(void)
-{
-    FG_PUSH_PUI_DIALOG( YNdialogBox );
-}
+// Load Dialog Start
+static puDialogBox     *LoadDialog = 0;
+static puFrame         *LoadDialogFrame = 0;
+static puText          *LoadDialogMessage = 0;
+static puInput         *LoadDialogInput = 0;
 
-// General Purpose Message Box
-void mkDialog (const char *txt)
-{
-    strncpy(global_dialog_string, txt, 256);
-    dialogBoxMessage->setLabel(global_dialog_string);
-    FG_PUSH_PUI_DIALOG( dialogBox );
-}
+static puOneShot       *LoadDialogOkButton = 0;
+static puOneShot       *LoadDialogCancelButton = 0;
+// static puOneShot       *LoadDialogResetButton = 0;
 
-// Repair any damage done to the Panel by other Gui Items
-void guiFixPanel( void )
-{
-    int toggle_pause;
+// Default load filename
+static char loadFile[256] = "fgfs.sav";
 
-    if ( current_options.get_panel_status() ) {
-        FGView *v = &current_view;
-        FGTime *t = FGTime::cur_time_params;
+// Do this if the person click okay
+void LoadDialogOk(puObject *) {
 
-        if( (toggle_pause = !t->getPause()) )
-            t->togglePauseMode();
+    FG_POP_PUI_DIALOG( LoadDialog );
 
-        // this seems to be the only way to do this :-(
-        // problem is the viewport has been mucked with
-        xglViewport(0, 0 , (GLint)(v->winWidth), (GLint)(v->winHeight) );
-        FGPanel::OurPanel->ReInit(0, 0, 1024, 768);
+    char *l;
+    LoadDialogInput->getValue(&l);
 
-        if(toggle_pause)
-            t->togglePauseMode();
+    ifstream input(l);
+    if (input.good() && fgLoadFlight(input)) {
+       input.close();
+       mkDialog("Loaded flight");
+       SG_LOG(SG_INPUT, SG_INFO, "Restored flight");
+    } else {
+       mkDialog("Failed to load flight");
+       SG_LOG(SG_INPUT, SG_ALERT, "Cannot load flight");
     }
 }
 
-// Toggle the Menu and Mouse display state
-void guiToggleMenu(void)
-{
-    if( menu_on ) {
-        // printf("Hiding Menu\n");
-        mainMenuBar->hide  ();
-#ifdef WIN32
-        TurnCursorOff();
-#endif // #ifdef WIN32
-    } else {
-        // printf("Showing Menu\n");
-        mainMenuBar->reveal();
-#ifdef WIN32
-        TurnCursorOn();
-#endif // #ifdef WIN32
-    }
-    menu_on = ~menu_on;
+// Do this is the person presses cancel
+void LoadDialogCancel(puObject *) {
+    FG_POP_PUI_DIALOG( LoadDialog );
 }
-    
-/* -----------------------------------------------------------------------
-the Gui callback functions 
-____________________________________________________________________*/
 
-void reInit(puObject *cb)
+// Create Load Dialog
+static void loadFlight(puObject *cb)
 {
-    BusyCursor(0);
-    fgReInitSubsystems();
-    BusyCursor(1);
+    LoadDialog = new puDialogBox (150, 50);
+    {
+        LoadDialogFrame   = new puFrame           (0,0,350, 150);
+        LoadDialogMessage = new puText            (
+                       (150 - puGetStringWidth( puGetDefaultLabelFont(), "File Name:" ) / 2), 110);
+        LoadDialogMessage ->    setLabel          ("File Name:");
+
+        LoadDialogInput   = new puInput           (50, 70, 300, 100);
+        LoadDialogInput   ->    setValue          (loadFile);
+        LoadDialogInput   ->    acceptInput();
+
+        LoadDialogOkButton     =  new puOneShot   (50, 10, 110, 50);
+        LoadDialogOkButton     ->     setLegend   (gui_msg_OK);
+        LoadDialogOkButton     ->     setCallback ( LoadDialogOk );
+        LoadDialogOkButton     ->     makeReturnDefault(TRUE);
+
+        LoadDialogCancelButton =  new puOneShot   (140, 10, 210, 50);
+        LoadDialogCancelButton ->     setLegend   (gui_msg_CANCEL);
+        LoadDialogCancelButton ->     setCallback ( LoadDialogCancel );
+    }
+    FG_FINALIZE_PUI_DIALOG( LoadDialog );
+   
+    LoadDialog -> reveal();
 }
-       
+
 // This is the accessor function
 void guiTogglePanel(puObject *cb)
 {
-    current_options.toggle_panel();
+  if (fgGetBool("/sim/panel/visibility"))
+    fgSetBool("/sim/panel/visibility", false);
+  else
+    fgSetBool("/sim/panel/visibility", true);
+
+  fgReshape(fgGetInt("/sim/startup/xsize"),
+           fgGetInt("/sim/startup/ysize"));
 }
     
 //void MenuHideMenuCb(puObject *cb)
@@ -435,14 +331,20 @@ void hideMenuCb (puObject *cb)
 
 void goodBye(puObject *)
 {
-    // FG_LOG( FG_INPUT, FG_ALERT,
+    // SG_LOG( SG_INPUT, SG_ALERT,
     //      "Program exiting normally at user request." );
     cout << "Program exiting normally at user request." << endl;
 
-    //  if(gps_bug)
-    //      fclose(gps_bug);
+#ifdef FG_NETWORK_OLK    
+    if ( fgGetBool("/sim/networking/network-olk") ) {
+       if ( net_is_registered == 0 ) fgd_send_com( "8", FGFS_host);
+    }
+#endif
 
-    exit(-1);
+    // close all external I/O connections
+    fgIOShutdownAll();
+
+    exit(0);
 }
 
 
@@ -454,8 +356,8 @@ void goAwayCb (puObject *me)
 void mkDialogInit (void)
 {
     //  printf("mkDialogInit\n");
-    int x = (current_options.get_xsize()/2 - 400/2);
-    int y = (current_options.get_ysize()/2 - 100/2);
+    int x = (fgGetInt("/sim/startup/xsize")/2 - 400/2);
+    int y = (fgGetInt("/sim/startup/ysize")/2 - 100/2);
     dialogBox = new puDialogBox (x, y); // 150, 50
     {
         dialogFrame = new puFrame (0,0,400,100);
@@ -487,8 +389,8 @@ void ConfirmExitDialogInit(void)
     //  printf("ConfirmExitDialogInit\n");
     int len = 200 - puGetStringWidth( puGetDefaultLabelFont(), msg )/2;
 
-    int x = (current_options.get_xsize()/2 - 400/2);
-    int y = (current_options.get_ysize()/2 - 100/2);
+    int x = (fgGetInt("/sim/startup/xsize")/2 - 400/2);
+    int y = (fgGetInt("/sim/startup/ysize")/2 - 100/2);
        
     YNdialogBox = new puDialogBox (x, y); // 150, 50
     //  YNdialogBox = new puDialogBox (150, 50);
@@ -502,11 +404,11 @@ void ConfirmExitDialogInit(void)
         
         YNdialogBoxOkButton =  new puOneShot      (100, 10, 160, 50);
         YNdialogBoxOkButton -> setLegend          (gui_msg_OK);
+        YNdialogBoxOkButton -> makeReturnDefault  (TRUE );
         YNdialogBoxOkButton -> setCallback        (goodBye);
         
         YNdialogBoxNoButton =  new puOneShot      (240, 10, 300, 50);
         YNdialogBoxNoButton -> setLegend          (gui_msg_NO);
-        //      YNdialogBoxNoButton -> makeReturnDefault  (TRUE );
         YNdialogBoxNoButton -> setCallback        (goAwayYesNoCb);
     }
     FG_FINALIZE_PUI_DIALOG( YNdialogBox );
@@ -530,319 +432,416 @@ void helpCb (puObject *)
 #  endif
 #endif
        
-#if !defined(WIN32)
-    string url = "http://www.flightgear.org/Docs/InstallGuide/getstart.html";
+    SGPath path( globals->get_fg_root() );
+    path.append( "Docs/index.html" );
        
+    string help_app = fgGetString("/sim/startup/browser-app");
+
     if ( system("xwininfo -name Netscape > /dev/null 2>&1") == 0 ) {
-        command = "netscape -remote \"openURL(" + url + ")\" &";
+        command = help_app + " -remote \"openURL(" + path.str() + ")\"";
     } else {
-        command = "netscape " + url + " &";
+        command = help_app + " " + path.str();
     }
-#else
-    command = "webrun.bat";
+#if !defined(WIN32)
+    command += " &";
 #endif
        
     system( command.c_str() );
-    //string text = "Help started in netscape window.";
-
-    //mkDialog (text.c_str());
     mkDialog ("Help started in netscape window.");
 }
 
+#define TR_HIRES_SNAP
+#if defined( TR_HIRES_SNAP)
+#include <simgear/screen/tr.h>
+extern void trRenderFrame( void );
+extern void fgUpdateHUD( GLfloat x_start, GLfloat y_start,
+                         GLfloat x_end, GLfloat y_end );
 
-
-#ifdef WIN32
-// win32 print screen function
-void printScreen ( puObject *obj ) {
+void fgHiResDump()
+{
+    FILE *f;
+    string message;
     bool show_pu_cursor = false;
-    TurnCursorOff();
-    if ( !puCursorIsHidden() ) {
-       show_pu_cursor = true;
-       puHideCursor();
-    }
-    BusyCursor( 0 );
-    mainMenuBar->hide();
+    bool show_menu = false;
+    char *filename = new char [24];
+    static int count = 1;
 
-    CGlPrinter p;
-    p.Begin( "FlightGear" );
-    fgInitVisuals();
-    fgReshape( p.GetHorzRes(), p.GetVertRes() );
-    fgRenderFrame();
-    p.End();
+    int freeze = globals->get_freeze();
+    if(!freeze)
+        globals->set_freeze( true );
 
-    if( menu_on ) {
-       mainMenuBar->reveal();
-    }
-    BusyCursor(1);
-    if ( show_pu_cursor ) {
-       puShowCursor();
+    if(gui_menu_on) {
+        show_menu = true;
+        guiToggleMenu();
     }
-    TurnCursorOn();
-}
-#endif // #ifdef WIN32
-
-
-// do a screen dump
-void dumpScreen ( puObject *obj ) {
-    bool show_pu_cursor = false;
-
-    mainMenuBar->hide();
-    TurnCursorOff();
+       
     if ( !puCursorIsHidden() ) {
-       show_pu_cursor = true;
-       puHideCursor();
+        show_pu_cursor = true;
+        puHideCursor();
     }
 
     fgInitVisuals();
-    fgReshape( current_options.get_xsize(), current_options.get_ysize() );
+    fgReshape( fgGetInt("/sim/startup/xsize"),
+               fgGetInt("/sim/startup/ysize") );
+
+    // we need two render frames here to clear the menu and cursor
+    // ... not sure why but doing an extra fgRenderFrame() shouldn't
+    // hurt anything
     fgRenderFrame();
     fgRenderFrame();
 
-    my_glDumpWindow( "fgfs-screen.ppm", 
-                    current_options.get_xsize(), 
-                    current_options.get_ysize() );
-    
-    mkDialog ("Screen dump saved to fgfs-screen.ppm");
+    // Make sure we have SSG projection primed for current view
+    glMatrixMode(GL_MODELVIEW);
+    glLoadIdentity();
+    ssgSetCamera( (sgVec4 *)globals->get_current_view()->get_VIEW() );
+    float fov = globals->get_current_view()->get_fov();
+    ssgSetFOV(fov, fov * globals->get_current_view()->get_win_ratio());
+    // ssgSetNearFar( 10.0f, 120000.0f );
+    ssgSetNearFar( 0.5f, 1200000.0f );
 
-    if ( show_pu_cursor ) {
-       puShowCursor();
+       
+    // This ImageSize stuff is a temporary hack
+    // should probably use 128x128 tile size and
+    // support any image size
+
+    // This should be a requester to get multiplier from user
+    int multiplier = 3;
+    int width = fgGetInt("/sim/startup/xsize");
+    int height = fgGetInt("/sim/startup/ysize");
+       
+    /* allocate buffer large enough to store one tile */
+    GLubyte *tile = (GLubyte *)malloc(width * height * 3 * sizeof(GLubyte));
+    if (!tile) {
+        printf("Malloc of tile buffer failed!\n");
+        return;
     }
 
-    TurnCursorOn();
-    if( menu_on ) {
-       mainMenuBar->reveal();
+    int imageWidth  = multiplier*width;
+    int imageHeight = multiplier*height;
+
+    /* allocate buffer to hold a row of tiles */
+    GLubyte *buffer
+        = (GLubyte *)malloc(imageWidth * height * 3 * sizeof(GLubyte));
+    if (!buffer) {
+        free(tile);
+        printf("Malloc of tile row buffer failed!\n");
+        return;
+    }
+    TRcontext *tr = trNew();
+    trTileSize(tr, width, height, 0);
+    trTileBuffer(tr, GL_RGB, GL_UNSIGNED_BYTE, tile);
+    trImageSize(tr, imageWidth, imageHeight);
+    trRowOrder(tr, TR_TOP_TO_BOTTOM);
+    sgFrustum *frustum = ssgGetFrustum();
+    trFrustum(tr,
+              frustum->getLeft(), frustum->getRight(),
+              frustum->getBot(),  frustum->getTop(), 
+              frustum->getNear(), frustum->getFar());
+       
+    /* Prepare ppm output file */
+    while (count < 1000) {
+        snprintf(filename, 24, "fgfs-screen-%03d.ppm", count++);
+        if ( (f = fopen(filename, "r")) == NULL )
+            break;
+        fclose(f);
     }
+    f = fopen(filename, "wb");
+    if (!f) {
+        printf("Couldn't open image file: %s\n", filename);
+        free(buffer);
+        free(tile);
+        return;
+    }
+    fprintf(f,"P6\n");
+    fprintf(f,"# ppm-file created by %s\n", "trdemo2");
+    fprintf(f,"%i %i\n", imageWidth, imageHeight);
+    fprintf(f,"255\n");
+
+    /* just to be safe... */
+    glPixelStorei(GL_PACK_ALIGNMENT, 1);
+
+    /* Because the HUD and Panel change the ViewPort we will
+     * need to handle some lowlevel stuff ourselves */
+    int ncols = trGet(tr, TR_COLUMNS);
+    int nrows = trGet(tr, TR_ROWS);
+
+    bool do_hud = fgGetBool("/sim/hud/visibility");
+    GLfloat hud_col_step = 640.0 / ncols;
+    GLfloat hud_row_step = 480.0 / nrows;
+       
+    bool do_panel = fgPanelVisible();
+    GLfloat panel_col_step = current_panel->getWidth() / ncols;
+    GLfloat panel_row_step = current_panel->getHeight() / nrows;
+       
+    /* Draw tiles */
+    int more = 1;
+    while (more) {
+        trBeginTile(tr);
+        int curColumn = trGet(tr, TR_CURRENT_COLUMN);
+        int curRow =  trGet(tr, TR_CURRENT_ROW);
+        trRenderFrame();
+        if ( do_hud )
+            fgUpdateHUD( curColumn*hud_col_step,      curRow*hud_row_step,
+                         (curColumn+1)*hud_col_step, (curRow+1)*hud_row_step );
+        if (do_panel)
+            current_panel->update( curColumn*panel_col_step, panel_col_step,
+                                   curRow*panel_row_step,    panel_row_step );
+        more = trEndTile(tr);
+
+        /* save tile into tile row buffer*/
+        int curTileWidth = trGet(tr, TR_CURRENT_TILE_WIDTH);
+        int bytesPerImageRow = imageWidth * 3*sizeof(GLubyte);
+        int bytesPerTileRow = (width) * 3*sizeof(GLubyte);
+        int xOffset = curColumn * bytesPerTileRow;
+        int bytesPerCurrentTileRow = (curTileWidth) * 3*sizeof(GLubyte);
+        int i;
+        for (i=0;i<height;i++) {
+            memcpy(buffer + i*bytesPerImageRow + xOffset, /* Dest */
+                   tile + i*bytesPerTileRow,              /* Src */
+                   bytesPerCurrentTileRow);               /* Byte count*/
+        }
 
-}
+        if (curColumn == trGet(tr, TR_COLUMNS)-1) {
+            /* write this buffered row of tiles to the file */
+            int curTileHeight = trGet(tr, TR_CURRENT_TILE_HEIGHT);
+            int bytesPerImageRow = imageWidth * 3*sizeof(GLubyte);
+            int i;
+            for (i=0;i<curTileHeight;i++) {
+                /* Remember, OpenGL images are bottom to top.  Have to reverse. */
+                GLubyte *rowPtr = buffer + (curTileHeight-1-i) * bytesPerImageRow;
+                fwrite(rowPtr, 1, imageWidth*3, f);
+            }
+        }
 
+    }
 
-/// The beginnings of teleportation :-)
-//  Needs cleaning up but works
-//  These statics should disapear when this is a class
-static puDialogBox     *AptDialog = 0;
-static puFrame         *AptDialogFrame = 0;
-static puText          *AptDialogMessage = 0;
-static puInput         *AptDialogInput = 0;
+    fgReshape( width, height );
 
-static char NewAirportId[16];
-static char NewAirportLabel[] = "Enter New Airport ID"; 
+    trDelete(tr);
 
-static puOneShot       *AptDialogOkButton = 0;
-static puOneShot       *AptDialogCancelButton = 0;
-static puOneShot       *AptDialogResetButton = 0;
+    fclose(f);
 
-void AptDialog_Cancel(puObject *)
-{
-    FG_POP_PUI_DIALOG( AptDialog );
-}
+    message = "Snap shot saved to ";
+    message += filename;
+    mkDialog (message.c_str());
 
-void AptDialog_OK (puObject *)
-{
-       fgAIRPORTS airports;
-       fgAIRPORT a;
-    
-    FGTime *t = FGTime::cur_time_params;
-    int PauseMode = t->getPause();
-    if(!PauseMode)
-        t->togglePauseMode();
+    free(tile);
+    free(buffer);
 
-    char *s;
-    AptDialogInput->getValue(&s);
-    string AptId(s);
+    // message = "Snap shot saved to ";
+    // message += filename;
+    // mkDialog (message.c_str());
 
-       cout << "AptDialog_OK " << AptId << " " << AptId.length() << endl;
-    
-    AptDialog_Cancel( NULL );
-    
-    if ( AptId.length() ) {
-        // set initial position from airport id
-        FG_LOG( FG_GENERAL, FG_INFO,
-                "Attempting to set starting position from airport code "
-                << AptId );
-
-        airports.load("apt_simple");
-        if ( airports.search( AptId, &a ) )
-        {
-            current_options.set_airport_id( AptId.c_str() );
-            BusyCursor(0);
-            fgReInitSubsystems();
-            BusyCursor(1);
-        } else {
-            AptId  += " not in database.";
-            mkDialog(AptId.c_str());
-        }
+    delete [] filename;
+
+    if( show_menu )
+        guiToggleMenu();
+
+    if ( show_pu_cursor ) {
+        puShowCursor();
     }
-    if( PauseMode != t->getPause() )
-        t->togglePauseMode();
-}
 
-void AptDialog_Reset(puObject *)
-{
-    //  strncpy( NewAirportId, current_options.get_airport_id().c_str(), 16 );
-    sprintf( NewAirportId, "%s", current_options.get_airport_id().c_str() );
-    AptDialogInput->setValue ( NewAirportId );
-    AptDialogInput->setCursor( 0 ) ;
+    if(!freeze)
+        globals->set_freeze( false );
 }
+#endif // #if defined( TR_HIRES_SNAP)
 
-void NewAirport(puObject *cb)
-{
-    //  strncpy( NewAirportId, current_options.get_airport_id().c_str(), 16 );
-    sprintf( NewAirportId, "%s", current_options.get_airport_id().c_str() );
-//     cout << "NewAirport " << NewAirportId << endl;
-    AptDialogInput->setValue( NewAirportId );
 
-    FG_PUSH_PUI_DIALOG( AptDialog );
-}
+#if defined( WIN32 ) && !defined( __CYGWIN__)
 
-static void NewAirportInit(void)
+static void rotateView( double roll, double pitch, double yaw )
 {
-    sprintf( NewAirportId, "%s", current_options.get_airport_id().c_str() );
-    int len = 150 - puGetStringWidth( puGetDefaultLabelFont(),
-                                      NewAirportLabel ) / 2;
+       // rotate view
+}
 
-    AptDialog = new puDialogBox (150, 50);
-    {
-        AptDialogFrame   = new puFrame           (0,0,350, 150);
-        AptDialogMessage = new puText            (len, 110);
-        AptDialogMessage ->    setLabel          (NewAirportLabel);
-
-        AptDialogInput   = new puInput           (50, 70, 300, 100);
-        AptDialogInput   ->    setValue          (NewAirportId);
-        AptDialogInput   ->    acceptInput();
-
-        AptDialogOkButton     =  new puOneShot   (50, 10, 110, 50);
-        AptDialogOkButton     ->     setLegend   (gui_msg_OK);
-        AptDialogOkButton     ->     setCallback (AptDialog_OK);
-        AptDialogOkButton     ->     makeReturnDefault(TRUE);
-
-        AptDialogCancelButton =  new puOneShot   (140, 10, 210, 50);
-        AptDialogCancelButton ->     setLegend   (gui_msg_CANCEL);
-        AptDialogCancelButton ->     setCallback (AptDialog_Cancel);
-
-        AptDialogResetButton  =  new puOneShot   (240, 10, 300, 50);
-        AptDialogResetButton  ->     setLegend   (gui_msg_RESET);
-        AptDialogResetButton  ->     setCallback (AptDialog_Reset);
+static GlBitmap *b1 = NULL;
+extern FGInterface cur_view_fdm;
+GLubyte *hiResScreenCapture( int multiplier )
+{
+    float oldfov = fgGetDouble("/sim/field-of-view");
+    float fov = oldfov / multiplier;
+    FGViewer *v = globals->get_current_view();
+    fgSetDouble("/sim/field-of-view", fov);
+    fgInitVisuals();
+    int cur_width = fgGetInt("/sim/startup/xsize");
+    int cur_height = fgGetInt("/sim/startup/ysize");
+    if (b1) delete( b1 );
+    // New empty (mostly) bitmap
+    b1 = new GlBitmap( GL_RGB, 1, 1, (unsigned char *)"123" );
+    int x,y;
+    for ( y = 0; y < multiplier; y++ ) {
+       for ( x = 0; x < multiplier; x++ ) {
+           fgReshape( cur_width, cur_height );
+           // pan to tile
+           rotateView( 0, (y*fov)-((multiplier-1)*fov/2), (x*fov)-((multiplier-1)*fov/2) );
+           fgRenderFrame();
+           // restore view
+           GlBitmap b2;
+           b1->copyBitmap( &b2, cur_width*x, cur_height*y );
+       }
     }
-       cout << "NewAirportInit " << NewAirportId << endl;
-    FG_FINALIZE_PUI_DIALOG( AptDialog );
+    fgSetDouble("/sim/field-of-view", oldfov);
+    return b1->getBitmap();
 }
+#endif
 
-/// The beginnings of networking :-)
-//  Needs cleaning up but works
-//  These statics should disapear when this is a class
-static puDialogBox     *NetIdDialog = 0;
-static puFrame         *NetIdDialogFrame = 0;
-static puText          *NetIdDialogMessage = 0;
-static puInput         *NetIdDialogInput = 0;
 
-static char NewNetId[16];
-static char NewNetIdLabel[] = "Enter New Callsign"; 
+#if defined( WIN32 ) && !defined( __CYGWIN__)
+// win32 print screen function
+void printScreen ( puObject *obj ) {
+    bool show_pu_cursor = false;
+    TurnCursorOff();
+    if ( !puCursorIsHidden() ) {
+       show_pu_cursor = true;
+       puHideCursor();
+    }
+    BusyCursor( 0 );
+    mainMenuBar->hide();
 
-static puOneShot       *NetIdDialogOkButton = 0;
-static puOneShot       *NetIdDialogCancelButton = 0;
+    CGlPrinter p( CGlPrinter::PRINT_BITMAP );
+    int cur_width = fgGetInt("/sim/startup/xsize");
+    int cur_height = fgGetInt("/sim/startup/ysize");
+    p.Begin( "FlightGear", cur_width*3, cur_height*3 );
+       p.End( hiResScreenCapture(3) );
 
-void NetIdDialog_Cancel(puObject *)
-{
-    FG_POP_PUI_DIALOG( NetIdDialog );
+    if( gui_menu_on ) {
+       mainMenuBar->reveal();
+    }
+    BusyCursor(1);
+    if ( show_pu_cursor ) {
+       puShowCursor();
+    }
+    TurnCursorOn();
 }
+#endif // #ifdef WIN32
 
-void NetIdDialog_OK (puObject *)
-{
-    string NetId;
-    
-    FGTime *t = FGTime::cur_time_params;
-    int PauseMode = t->getPause();
-    if(!PauseMode)
-        t->togglePauseMode();
-/*  
-   The following needs some cleanup because 
-   "string options.NetId" and "char *net_callsign" 
-*/
-    NetIdDialogInput->getValue(&net_callsign);
-    NetId = net_callsign;
-    
-    NetIdDialog_Cancel( NULL );
-    current_options.set_net_id( NetId.c_str() );
-/* Entering a callsign indicates : user wants Net HUD Info */
-    net_hud_display = 1;
 
-    if( PauseMode != t->getPause() )
-        t->togglePauseMode();
+void dumpSnapShot ( puObject *obj ) {
+    fgDumpSnapShot();
 }
 
-void NewCallSign(puObject *cb)
-{
-    sprintf( NewNetId, "%s", current_options.get_net_id().c_str() );
-    NetIdDialogInput->setValue( NewNetId );
 
-    FG_PUSH_PUI_DIALOG( NetIdDialog );
+void dumpHiResSnapShot ( puObject *obj ) {
+    fgHiResDump();
 }
 
-static void NewNetIdInit(void)
-{
-    sprintf( NewNetId, "%s", current_options.get_net_id().c_str() );
-    int len = 150 - puGetStringWidth( puGetDefaultLabelFont(),
-                                      NewNetIdLabel ) / 2;
 
-    NetIdDialog = new puDialogBox (150, 50);
-    {
-        NetIdDialogFrame   = new puFrame           (0,0,350, 150);
-        NetIdDialogMessage = new puText            (len, 110);
-        NetIdDialogMessage ->    setLabel          (NewNetIdLabel);
+// do a screen snap shot
+void fgDumpSnapShot () {
+    bool show_pu_cursor = false;
+    char *filename = new char [24];
+    string message;
+    static int count = 1;
 
-        NetIdDialogInput   = new puInput           (50, 70, 300, 100);
-        NetIdDialogInput   ->    setValue          (NewNetId);
-        NetIdDialogInput   ->    acceptInput();
+    int freeze = globals->get_freeze();
+    if(!freeze)
+        globals->set_freeze( true );
 
-        NetIdDialogOkButton     =  new puOneShot   (50, 10, 110, 50);
-        NetIdDialogOkButton     ->     setLegend   (gui_msg_OK);
-        NetIdDialogOkButton     ->     setCallback (NetIdDialog_OK);
-        NetIdDialogOkButton     ->     makeReturnDefault(TRUE);
+    mainMenuBar->hide();
+    TurnCursorOff();
+    if ( !puCursorIsHidden() ) {
+       show_pu_cursor = true;
+       puHideCursor();
+    }
 
-        NetIdDialogCancelButton =  new puOneShot   (240, 10, 300, 50);
-        NetIdDialogCancelButton ->     setLegend   (gui_msg_CANCEL);
-        NetIdDialogCancelButton ->     setCallback (NetIdDialog_Cancel);
+    fgInitVisuals();
+    fgReshape( fgGetInt("/sim/startup/xsize"),
+              fgGetInt("/sim/startup/ysize") );
+
+    // we need two render frames here to clear the menu and cursor
+    // ... not sure why but doing an extra fgRenderFrame() shouldn't
+    // hurt anything
+    fgRenderFrame();
+    fgRenderFrame();
+
+    while (count < 1000) {
+        FILE *fp;
+        snprintf(filename, 24, "fgfs-screen-%03d.ppm", count++);
+        if ( (fp = fopen(filename, "r")) == NULL )
+            break;
+        fclose(fp);
+    }
+
+    if ( sg_glDumpWindow( filename,
+                         fgGetInt("/sim/startup/xsize"), 
+                         fgGetInt("/sim/startup/ysize")) ) {
+       message = "Snap shot saved to ";
+       message += filename;
+    } else {
+        message = "Failed to save to ";
+       message += filename;
+    }
+
+    mkDialog (message.c_str());
 
+    delete [] filename;
+
+    if ( show_pu_cursor ) {
+       puShowCursor();
     }
-    FG_FINALIZE_PUI_DIALOG( NetIdDialog );
+
+    TurnCursorOn();
+    if( gui_menu_on ) {
+       mainMenuBar->reveal();
+    }
+
+    if(!freeze)
+        globals->set_freeze( false );
 }
 
+#ifdef FG_NETWORK_OLK
 static void net_display_toggle( puObject *cb)
 {
        net_hud_display = (net_hud_display) ? 0 : 1;
-        printf("Toggle net_hud_display : %d\n", net_hud_display);
+       printf("Toggle net_hud_display : %d\n", net_hud_display);
 }
 
-static void net_blaster_toggle( puObject *cb)
+static void net_register( puObject *cb)
 {
-       net_blast_toggle = (net_blast_toggle) ? 0 : -1;
-        printf("Toggle net_blast : %d\n", net_blast_toggle);
+       fgd_send_com( "1", FGFS_host );
+       net_is_registered = 0;
+       printf("Registering to deamon\n");
 }
 
-/***************  End Networking  **************/
-
+static void net_unregister( puObject *cb)
+{
+       fgd_send_com( "8", FGFS_host );
+       net_is_registered = -1;
+       printf("Unregistering from deamon\n");
+}
 
+extern void net_fgd_scan(puObject *cb);
+#endif // #ifdef FG_NETWORK_OLK
 
 /* -----------------------------------------------------------------------
 The menu stuff 
 ---------------------------------------------------------------------*/
 char *fileSubmenu               [] = {
     "Exit", /* "Close", "---------", */
-#ifdef WIN32
+#if defined( WIN32 ) && !defined( __CYGWIN__)
     "Print",
 #endif
-    "Screen Dump",
-    /* "---------", "Save", */ 
-    "Reset", NULL
+    "Snap Shot",
+    "Hires Snap Shot",
+    "---------", 
+    "Reset", 
+    "Load flight",
+    "Save flight",
+    NULL
 };
 puCallback fileSubmenuCb        [] = {
     MayBeGoodBye, /* hideMenuCb, NULL, */
-#ifdef WIN32
+#if defined( WIN32 ) && !defined( __CYGWIN__)
     printScreen, 
 #endif
     /* NULL, notCb, */
-    dumpScreen,
-    reInit, NULL
+    dumpSnapShot,
+    dumpHiResSnapShot,
+    NULL,
+    reInit, 
+    loadFlight,
+    saveFlight,
+    NULL
 };
 
 /*
@@ -854,24 +853,42 @@ puCallback editSubmenuCb        [] = {
 };
 */
 
+extern void fgHUDalphaAdjust( puObject * );
 char *viewSubmenu               [] = {
-    /* "Cockpit View > ", "View >","------------", */ "Toggle Panel...", NULL
+    "HUD Alpha",
+    "Pilot Offset",
+    /* "Cockpit View > ", "View >","------------", */
+    "Toggle Panel...", NULL
 };
 puCallback viewSubmenuCb        [] = {
-    /* notCb, notCb, NULL, guiTogglePanel, */ NULL
+    fgHUDalphaAdjust,
+    PilotOffsetAdjust,
+    /* notCb, notCb, NULL, */
+    guiTogglePanel, NULL
 };
 
-char *aircraftSubmenu           [] = {
-    "Autopilot", "Heading", "Altitude", "Navigation", "Airport", 
-    /* "Communication", */ NULL
+//  "---------", 
+
+char *autopilotSubmenu           [] = {
+    "Toggle HUD Format", "Adjust AP Settings",
+    "---------", 
+    "Clear Route", "Skip Current Waypoint", "Add Waypoint",
+    "---------", 
+    "Set Altitude", "Set Heading",
+    NULL
 };
-puCallback aircraftSubmenuCb    [] = {
-    fgAPAdjust, NewHeading, NewAltitude, fgLatLonFormatToggle, NewTgtAirport, 
+
+puCallback autopilotSubmenuCb    [] = {
+    fgLatLonFormatToggle, fgAPAdjust,
+    NULL,
+    ClearRoute, PopWayPoint, AddWayPoint,
+    NULL,
+    NewAltitude, NewHeading,
     /* notCb, */ NULL
 };
 
 char *environmentSubmenu        [] = {
-    "Airport", /* "Terrain", "Weather", */ NULL
+    "Goto Airport", /* "Terrain", "Weather", */ NULL
 };
 puCallback environmentSubmenuCb [] = {
     NewAirport, /* notCb, notCb, */ NULL
@@ -888,15 +905,17 @@ puCallback optionsSubmenuCb     [] = {
 
 #ifdef FG_NETWORK_OLK
 char *networkSubmenu            [] = {
-    /* "Unregister from FGD ", "Send MSG to All", "Send MSG", "Show Pilots", */
-    /* "Register to FGD", */
-    /* "Scan for Deamons", */ "Enter Callsign", /* "Display Netinfos", */
-    "Toggle Display",
-    "Hyper Blast", NULL
+    "Unregister from FGD ", /* "Send MSG to All", "Send MSG", "Show Pilots", */
+    "Register to FGD",
+    "Scan for Deamons", "Enter Callsign", /* "Display Netinfos", */
+    "Toggle Display", NULL
 };
 puCallback networkSubmenuCb     [] = {
-    /* notCb, notCb, notCb, notCb, notCb, notCb, */ NewCallSign, /* notCb, */
-    net_display_toggle, net_blaster_toggle, NULL
+    /* notCb, notCb, notCb, notCb, */ 
+    net_unregister, 
+    net_register, 
+    net_fgd_scan, NewCallSign, 
+    net_display_toggle, NULL
 };
 #endif
 
@@ -930,12 +949,12 @@ void guiInit()
     gui_msg_RESET  = msg_RESET;  // "RESET"
 
     // Next check home directory
-    FGPath fntpath;
+    SGPath fntpath;
     char* envp = ::getenv( "FG_FONTS" );
     if ( envp != NULL ) {
         fntpath.set( envp );
     } else {
-        fntpath.set( current_options.get_fg_root() );
+        fntpath.set( globals->get_fg_root() );
        fntpath.append( "Fonts" );
     }
 
@@ -947,7 +966,7 @@ void guiInit()
     puSetDefaultFonts( GuiFont, GuiFont ) ;
     guiFnt = puGetDefaultLabelFont();
   
-    if ( current_options.get_mouse_pointer() == 0 ) {
+    if (!fgHasNode("/sim/startup/mouse-pointer")) {
         // no preference specified for mouse pointer, attempt to autodetect...
         // Determine if we need to render the cursor, or if the windowing
         // system will do it.  First test if we are rendering with glide.
@@ -961,36 +980,44 @@ void guiInit()
                 }
             }
         }
-        mouse_active = ~mouse_active;
-    } else if ( current_options.get_mouse_pointer() == 1 ) {
+//        mouse_active = ~mouse_active;
+    } else if ( !fgGetBool("/sim/startup/mouse-pointer") ) {
         // don't show pointer
-    } else if ( current_options.get_mouse_pointer() == 2 ) {
+    } else {
         // force showing pointer
         puShowCursor();
-        mouse_active = ~mouse_active;
+//        mouse_active = ~mouse_active;
     }
+       
+    // MOUSE_VIEW mode stuff
+       initMouseQuat();
 
     // Set up our Dialog Boxes
     ConfirmExitDialogInit();
     NewAirportInit();
 #ifdef FG_NETWORK_OLK
     NewNetIdInit();
+    NewNetFGDInit();
 #endif
-    mkDialogInit();
+
+       mkDialogInit();
     
     // Make the menu bar
     mainMenuBar = new puMenuBar ();
     mainMenuBar -> add_submenu ("File", fileSubmenu, fileSubmenuCb);
     // mainMenuBar -> add_submenu ("Edit", editSubmenu, editSubmenuCb);
     mainMenuBar -> add_submenu ("View", viewSubmenu, viewSubmenuCb);
-    mainMenuBar -> add_submenu ("Aircraft", aircraftSubmenu, aircraftSubmenuCb);
     mainMenuBar -> add_submenu ("Environment", environmentSubmenu, environmentSubmenuCb);
+    mainMenuBar -> add_submenu ("Autopilot", autopilotSubmenu, autopilotSubmenuCb);
     // mainMenuBar -> add_submenu ("Options", optionsSubmenu, optionsSubmenuCb);
 #ifdef FG_NETWORK_OLK
-    mainMenuBar -> add_submenu ("Network", networkSubmenu, networkSubmenuCb);
+    if ( fgGetBool("/sim/networking/network-olk") ) {
+       mainMenuBar -> add_submenu ("Network", networkSubmenu, networkSubmenuCb);
+    }
 #endif
     mainMenuBar -> add_submenu ("Help", helpSubmenu, helpSubmenuCb);
     mainMenuBar-> close ();
     // Set up menu bar toggle
-    menu_on = ~0;
+    gui_menu_on = ~0;
 }
+