1998-06-12 01:07:06 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* gui.cxx
|
|
|
|
*
|
|
|
|
* Written 1998 by Durk Talsma, started Juni, 1998. For the flight gear
|
|
|
|
* project.
|
|
|
|
*
|
1999-09-09 03:40:06 +00:00
|
|
|
* Additional mouse supported added by David Megginson, 1999.
|
|
|
|
*
|
1998-06-12 01:07:06 +00:00
|
|
|
* 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$
|
|
|
|
**************************************************************************/
|
|
|
|
|
1998-07-04 00:48:41 +00:00
|
|
|
|
1999-03-11 23:09:26 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/compiler.h>
|
1999-05-08 02:33:13 +00:00
|
|
|
|
2001-03-23 22:42:49 +00:00
|
|
|
#ifdef SG_MATH_EXCEPTION_CLASH
|
1999-05-08 02:33:13 +00:00
|
|
|
# include <math.h>
|
|
|
|
#endif
|
|
|
|
|
1999-03-11 23:09:26 +00:00
|
|
|
#ifdef HAVE_WINDOWS_H
|
1999-05-06 21:14:06 +00:00
|
|
|
# include <windows.h>
|
1999-03-11 23:09:26 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <GL/glut.h>
|
2001-05-15 22:30:39 +00:00
|
|
|
#include <GL/gl.h>
|
1999-03-11 23:09:26 +00:00
|
|
|
|
|
|
|
#if defined(FX) && defined(XMESA)
|
|
|
|
# include <GL/xmesa.h>
|
|
|
|
#endif
|
|
|
|
|
2000-05-30 20:51:47 +00:00
|
|
|
#include STL_FSTREAM
|
1999-03-11 23:09:26 +00:00
|
|
|
#include STL_STRING
|
|
|
|
|
1998-07-04 00:48:41 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/constants.h>
|
2000-02-16 23:01:03 +00:00
|
|
|
#include <simgear/debug/logstream.hxx>
|
2001-03-25 14:20:12 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2000-02-16 23:01:03 +00:00
|
|
|
#include <simgear/screen/screen-dump.hxx>
|
2000-02-15 03:30:01 +00:00
|
|
|
|
1999-05-06 21:14:06 +00:00
|
|
|
#include <Include/general.hxx>
|
1999-04-27 15:43:08 +00:00
|
|
|
#include <Aircraft/aircraft.hxx>
|
|
|
|
#include <Airports/simple.hxx>
|
2000-04-30 06:51:49 +00:00
|
|
|
#include <Autopilot/auto_gui.hxx>
|
|
|
|
#include <Autopilot/newauto.hxx>
|
1999-05-06 22:16:12 +00:00
|
|
|
#include <Cockpit/panel.hxx>
|
1999-10-15 20:43:02 +00:00
|
|
|
#include <Controls/controls.hxx>
|
1999-04-27 15:43:08 +00:00
|
|
|
#include <FDM/flight.hxx>
|
1999-05-06 21:14:06 +00:00
|
|
|
#include <Main/fg_init.hxx>
|
2000-10-04 20:49:44 +00:00
|
|
|
#include <Main/fg_io.hxx>
|
2000-07-08 06:29:19 +00:00
|
|
|
#include <Main/globals.hxx>
|
2001-01-05 17:38:58 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
2001-07-22 19:51:16 +00:00
|
|
|
#include <Main/viewmgr.hxx>
|
2001-01-08 20:55:16 +00:00
|
|
|
|
2000-01-12 18:40:04 +00:00
|
|
|
#ifdef FG_NETWORK_OLK
|
2000-01-12 18:09:54 +00:00
|
|
|
#include <NetworkOLK/network.h>
|
2000-01-12 18:40:04 +00:00
|
|
|
#endif
|
2001-01-08 20:55:16 +00:00
|
|
|
|
2001-08-14 22:18:19 +00:00
|
|
|
#if defined( WIN32 ) && !defined( __CYGWIN__ ) && !defined(__MINGW32__)
|
2000-03-21 22:06:05 +00:00
|
|
|
# include <simgear/screen/win32-printer.h>
|
|
|
|
# include <simgear/screen/GlBitmaps.h>
|
1999-10-14 23:46:28 +00:00
|
|
|
#endif
|
|
|
|
|
1998-06-12 01:07:06 +00:00
|
|
|
#include "gui.h"
|
2001-01-08 20:55:16 +00:00
|
|
|
#include "gui_local.hxx"
|
|
|
|
#include "apt_dlg.hxx"
|
|
|
|
#include "net_dlg.hxx"
|
2001-01-29 05:08:00 +00:00
|
|
|
#include "sgVec3Slider.hxx"
|
2001-11-12 20:57:08 +00:00
|
|
|
#include "prop_picker.hxx"
|
1998-07-04 00:48:41 +00:00
|
|
|
|
2001-03-23 22:59:18 +00:00
|
|
|
SG_USING_STD(string);
|
1999-03-11 23:09:26 +00:00
|
|
|
|
2001-03-23 22:59:18 +00:00
|
|
|
#ifndef SG_HAVE_NATIVE_SGI_COMPILERS
|
|
|
|
SG_USING_STD(cout);
|
1999-06-28 18:41:01 +00:00
|
|
|
#endif
|
|
|
|
|
2001-01-08 20:55:16 +00:00
|
|
|
// main.cxx hack, should come from an include someplace
|
1999-10-14 23:46:28 +00:00
|
|
|
extern void fgInitVisuals( void );
|
|
|
|
extern void fgReshape( int width, int height );
|
|
|
|
extern void fgRenderFrame( void );
|
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
extern void initDialog (void);
|
|
|
|
extern void mkDialogInit (void);
|
|
|
|
extern void ConfirmExitDialogInit(void);
|
|
|
|
|
|
|
|
|
1999-05-27 00:21:22 +00:00
|
|
|
puFont guiFnt = 0;
|
|
|
|
fntTexFont *guiFntHandle = 0;
|
2001-01-08 20:55:16 +00:00
|
|
|
int gui_menu_on = 0;
|
2002-08-08 23:25:47 +00:00
|
|
|
puMenuBar *mainMenuBar = 0;
|
1999-05-12 01:11:17 +00:00
|
|
|
//static puButton *hideMenuButton = 0;
|
|
|
|
|
1999-10-15 20:43:02 +00:00
|
|
|
// from cockpit.cxx
|
|
|
|
extern void fgLatLonFormatToggle( puObject *);
|
1999-05-12 01:11:17 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
// from gui_funcs.cxx
|
|
|
|
extern void saveFlight(puObject *);
|
|
|
|
extern void loadFlight(puObject *);
|
|
|
|
extern void reInit(puObject *);
|
|
|
|
extern void dumpSnapShot(puObject *);
|
|
|
|
#ifdef TR_HIRES_SNAP
|
|
|
|
extern void dumpHiResSnapShot(puObject *);
|
2000-01-12 18:09:54 +00:00
|
|
|
#endif
|
2002-08-08 23:25:47 +00:00
|
|
|
#if defined( WIN32 ) && !defined( __CYGWIN__) && !defined(__MINGW32__)
|
|
|
|
extern void printScreen(puObject *);
|
1999-05-06 21:14:06 +00:00
|
|
|
#endif
|
2002-08-08 23:25:47 +00:00
|
|
|
extern void MayBeGoodBye(puObject *);
|
|
|
|
extern void guiTogglePanel(puObject *);
|
|
|
|
extern void PilotOffsetAdjust(puObject *);
|
|
|
|
extern void fgHUDalphaAdjust(puObject *);
|
|
|
|
extern void prop_pickerView(puObject *);
|
|
|
|
extern void NewAirport(puObject *);
|
|
|
|
#ifdef FG_NETWORK_OLK
|
|
|
|
extern void net_display_toggle(puObject *);
|
|
|
|
extern void NewCallSign(puObject *);
|
|
|
|
extern void net_fgd_scan(puObject *);
|
|
|
|
extern void net_register(puObject *);
|
|
|
|
extern void net_unregister(puObject *);
|
1999-05-06 21:14:06 +00:00
|
|
|
#endif
|
2002-08-08 23:25:47 +00:00
|
|
|
extern void NewAltitude(puObject *);
|
|
|
|
extern void AddWayPoint(puObject *);
|
|
|
|
extern void PopWayPoint(puObject *);
|
|
|
|
extern void ClearRoute(puObject *);
|
|
|
|
extern void fgAPAdjust(puObject *);
|
|
|
|
extern void fgLatLonFormatToggle(puObject *);
|
|
|
|
extern void helpCb(puObject *);
|
|
|
|
|
|
|
|
static const struct {
|
|
|
|
char *name;
|
|
|
|
void (*fn)(puObject *);
|
|
|
|
} __fg_gui_fn[] = {
|
|
|
|
|
|
|
|
// File
|
|
|
|
{"saveFlight", saveFlight},
|
|
|
|
{"loadFlight", loadFlight},
|
|
|
|
{"reInit", reInit},
|
|
|
|
#ifdef TR_HIRES_SNAP
|
|
|
|
{"dumpHiResSnapShot", dumpHiResSnapShot},
|
|
|
|
#endif
|
|
|
|
{"dumpSnapShot", dumpSnapShot},
|
|
|
|
#if defined( WIN32 ) && !defined( __CYGWIN__) && !defined(__MINGW32__)
|
|
|
|
{"printScreen", printScreen},
|
|
|
|
#endif
|
|
|
|
{"MayBeGoodBye", MayBeGoodBye},
|
2001-06-26 18:23:07 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
//View
|
|
|
|
{"guiTogglePanel", guiTogglePanel},
|
|
|
|
{"PilotOffsetAdjust", PilotOffsetAdjust},
|
|
|
|
{"fgHUDalphaAdjust", fgHUDalphaAdjust},
|
|
|
|
{"prop_pickerView", prop_pickerView},
|
2001-06-26 18:23:07 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
// Environment
|
|
|
|
{"NewAirport", NewAirport},
|
2001-06-26 18:23:07 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
// Network
|
|
|
|
#ifdef FG_NETWORK_OLK
|
|
|
|
{"net_display_toggle", net_display_toggle},
|
|
|
|
{"NewCallSign", NewCallSign},
|
|
|
|
{"net_fgd_scan", net_fgd_scan},
|
|
|
|
{"net_register", net_register},
|
|
|
|
{"net_unregister", net_unregister},
|
|
|
|
#endif
|
2001-06-26 18:23:07 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
// Autopilot
|
|
|
|
{"NewAltitude", NewAltitude},
|
|
|
|
{"AddWayPoint", AddWayPoint},
|
|
|
|
{"PopWayPoint", PopWayPoint},
|
|
|
|
{"ClearRoute", ClearRoute},
|
|
|
|
{"fgAPAdjust", fgAPAdjust},
|
|
|
|
{"fgLatLonFormatToggle", fgLatLonFormatToggle},
|
2001-06-26 18:23:07 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
// Help
|
|
|
|
{"helpCb", helpCb},
|
2001-06-26 18:23:07 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
// Structure termination
|
|
|
|
{"", NULL}
|
|
|
|
};
|
2001-06-26 18:23:07 +00:00
|
|
|
|
|
|
|
|
1999-04-27 15:43:08 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
struct fg_gui_t {
|
|
|
|
char *name;
|
|
|
|
char **submenu;
|
|
|
|
puCallback *cb;
|
|
|
|
} *Menu;
|
|
|
|
unsigned int Menu_size;
|
1999-11-01 21:16:05 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
void initMenu()
|
1999-11-01 21:16:05 +00:00
|
|
|
{
|
2002-08-08 23:25:47 +00:00
|
|
|
SGPropertyNode main;
|
|
|
|
SGPath spath( globals->get_fg_root() );
|
|
|
|
spath.append( "menu.xml" );
|
1999-11-01 21:16:05 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
try {
|
|
|
|
readProperties(spath.c_str(), &main);
|
|
|
|
} catch (const sg_exception &ex) {
|
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT, "Error processing the menu file.");
|
|
|
|
return;
|
|
|
|
}
|
1999-10-14 23:46:28 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, "Reading menu entries.");
|
1999-10-14 23:46:28 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
// Make the menu bar
|
|
|
|
mainMenuBar = new puMenuBar ();
|
1999-10-14 23:46:28 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
SGPropertyNode *menu = main.getChild("menu");
|
1999-10-14 23:46:28 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
vector<SGPropertyNode_ptr>submenu = menu->getChildren("submenu");
|
1999-10-14 23:46:28 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
Menu_size = 1+submenu.size();
|
|
|
|
Menu = (fg_gui_t *)calloc(Menu_size, sizeof(fg_gui_t));
|
1999-10-26 03:45:33 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
for (unsigned int h = 0; h < submenu.size(); h++) {
|
1999-10-26 03:45:33 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
vector<SGPropertyNode_ptr>option = submenu[h]->getChildren("option");
|
2001-06-26 18:23:07 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
//
|
|
|
|
// Make sure all entries will fit into allocated memory
|
|
|
|
//
|
|
|
|
Menu[h].submenu = (char **)calloc(1+option.size(), sizeof(char *));
|
|
|
|
Menu[h].cb = (puCallback *)calloc(1+option.size(), sizeof(puCallback));
|
2001-06-26 18:23:07 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
for (unsigned int i = 0; i < option.size(); i++) {
|
1999-10-14 23:46:28 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
SGPropertyNode *name = option[i]->getNode("name");
|
|
|
|
SGPropertyNode *call = option[i]->getNode("call");
|
|
|
|
SGPropertyNode *sep = option[i]->getNode("seperator");
|
2002-01-20 03:52:36 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
if (sep)
|
|
|
|
Menu[h].submenu[i] = strdup("----------");
|
1999-10-14 23:46:28 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
else if (call && strcmp(call->getStringValue(), ""))
|
|
|
|
Menu[h].submenu[i] = strdup(name->getStringValue());
|
2001-04-22 22:04:25 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
else
|
|
|
|
Menu[h].submenu[i] = strdup("not specified");
|
2001-04-22 22:04:25 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
Menu[h].cb[i] = NULL;
|
|
|
|
for (unsigned int j=0; __fg_gui_fn[j].fn; j++)
|
|
|
|
if (call &&
|
|
|
|
!strcmp(call->getStringValue(), __fg_gui_fn[j].name) )
|
|
|
|
{
|
|
|
|
Menu[h].cb[i] = __fg_gui_fn[j].fn;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-04-22 22:04:25 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
SGPropertyNode *name = submenu[h]->getNode("name");
|
1999-10-14 23:46:28 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
Menu[h].name = strdup(name->getStringValue());
|
|
|
|
mainMenuBar->add_submenu(Menu[h].name, Menu[h].submenu, Menu[h].cb);
|
1999-10-14 23:46:28 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
mainMenuBar->close();
|
1999-10-14 23:46:28 +00:00
|
|
|
}
|
|
|
|
|
2000-10-12 01:06:55 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
// FIXME: Has to be called from somewhere
|
|
|
|
// or better yet, turn the menu into a class of its own
|
|
|
|
void destroyMenu(void) {
|
|
|
|
for(unsigned int i=0; i < Menu_size; i++) {
|
2000-10-12 01:06:55 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
free(Menu[i].name);
|
1999-05-06 22:16:12 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
// FIXME: don't use strdup/free
|
|
|
|
for(unsigned int j=0; Menu[i].submenu[j] != NULL; j++)
|
|
|
|
free(Menu[i].submenu[j]);
|
|
|
|
}
|
|
|
|
}
|
1999-05-06 21:14:06 +00:00
|
|
|
|
1999-06-22 21:24:31 +00:00
|
|
|
|
1998-06-12 01:07:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------
|
1999-06-01 21:17:10 +00:00
|
|
|
init the gui
|
|
|
|
_____________________________________________________________________*/
|
1998-06-12 01:07:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
void guiInit()
|
|
|
|
{
|
1998-07-04 00:48:41 +00:00
|
|
|
char *mesa_win_state;
|
|
|
|
|
|
|
|
// Initialize PUI
|
|
|
|
puInit();
|
1999-06-01 21:17:10 +00:00
|
|
|
puSetDefaultStyle ( PUSTYLE_SMALL_BEVELLED ); //PUSTYLE_DEFAULT
|
1999-05-12 01:11:17 +00:00
|
|
|
puSetDefaultColourScheme (0.8, 0.8, 0.8, 0.4);
|
1998-07-04 00:48:41 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
initDialog();
|
1999-06-01 21:17:10 +00:00
|
|
|
|
|
|
|
// Next check home directory
|
2001-03-25 14:20:12 +00:00
|
|
|
SGPath fntpath;
|
1999-06-01 21:17:10 +00:00
|
|
|
char* envp = ::getenv( "FG_FONTS" );
|
|
|
|
if ( envp != NULL ) {
|
1999-06-05 12:45:40 +00:00
|
|
|
fntpath.set( envp );
|
1999-06-01 21:17:10 +00:00
|
|
|
} else {
|
2001-01-13 22:06:39 +00:00
|
|
|
fntpath.set( globals->get_fg_root() );
|
1999-06-05 12:45:40 +00:00
|
|
|
fntpath.append( "Fonts" );
|
1999-06-01 21:17:10 +00:00
|
|
|
}
|
|
|
|
|
1999-05-12 01:11:17 +00:00
|
|
|
// Install our fast fonts
|
2002-08-08 23:25:47 +00:00
|
|
|
fntpath.append( "typewriter.txf" );
|
1999-05-12 01:11:17 +00:00
|
|
|
guiFntHandle = new fntTexFont ;
|
1999-06-29 14:57:00 +00:00
|
|
|
guiFntHandle -> load ( (char *)fntpath.c_str() ) ;
|
1999-05-12 01:11:17 +00:00
|
|
|
puFont GuiFont ( guiFntHandle, 15 ) ;
|
|
|
|
puSetDefaultFonts( GuiFont, GuiFont ) ;
|
|
|
|
guiFnt = puGetDefaultLabelFont();
|
|
|
|
|
2001-06-12 05:18:43 +00:00
|
|
|
if (!fgHasNode("/sim/startup/mouse-pointer")) {
|
1999-06-01 21:17:10 +00:00
|
|
|
// 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.
|
|
|
|
if ( strstr ( general.get_glRenderer(), "Glide" ) ) {
|
|
|
|
// Test for the MESA_GLX_FX env variable
|
|
|
|
if ( (mesa_win_state = getenv( "MESA_GLX_FX" )) != NULL) {
|
|
|
|
// test if we are fullscreen mesa/glide
|
|
|
|
if ( (mesa_win_state[0] == 'f') ||
|
|
|
|
(mesa_win_state[0] == 'F') ) {
|
|
|
|
puShowCursor ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-01-08 20:55:16 +00:00
|
|
|
// mouse_active = ~mouse_active;
|
2001-01-13 22:06:39 +00:00
|
|
|
} else if ( !fgGetBool("/sim/startup/mouse-pointer") ) {
|
1999-06-01 21:17:10 +00:00
|
|
|
// don't show pointer
|
2001-01-13 22:06:39 +00:00
|
|
|
} else {
|
1999-06-01 21:17:10 +00:00
|
|
|
// force showing pointer
|
|
|
|
puShowCursor();
|
2001-01-08 20:55:16 +00:00
|
|
|
// mouse_active = ~mouse_active;
|
1998-07-04 00:48:41 +00:00
|
|
|
}
|
1999-10-15 20:43:02 +00:00
|
|
|
|
|
|
|
// MOUSE_VIEW mode stuff
|
2001-01-08 20:55:16 +00:00
|
|
|
initMouseQuat();
|
1998-07-04 00:48:41 +00:00
|
|
|
|
1999-05-12 01:11:17 +00:00
|
|
|
// Set up our Dialog Boxes
|
|
|
|
ConfirmExitDialogInit();
|
|
|
|
NewAirportInit();
|
2002-02-05 20:54:08 +00:00
|
|
|
|
1999-06-22 21:24:31 +00:00
|
|
|
#ifdef FG_NETWORK_OLK
|
|
|
|
NewNetIdInit();
|
2000-01-12 18:09:54 +00:00
|
|
|
NewNetFGDInit();
|
1999-06-22 21:24:31 +00:00
|
|
|
#endif
|
2001-01-08 20:55:16 +00:00
|
|
|
|
2002-08-08 23:25:47 +00:00
|
|
|
mkDialogInit();
|
|
|
|
|
|
|
|
initMenu();
|
1999-05-12 01:11:17 +00:00
|
|
|
|
|
|
|
// Set up menu bar toggle
|
2001-01-08 20:55:16 +00:00
|
|
|
gui_menu_on = ~0;
|
2001-09-19 22:26:01 +00:00
|
|
|
|
2002-03-26 02:38:11 +00:00
|
|
|
if (!strcmp(fgGetString("/sim/flight-model"), "ada")) {
|
2001-09-19 22:26:01 +00:00
|
|
|
guiToggleMenu(); // Menu off by default
|
|
|
|
}
|
1999-10-15 20:43:02 +00:00
|
|
|
}
|