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
|
|
|
|
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
|
|
|
|
|
2002-08-25 22:53:38 +00:00
|
|
|
#include <simgear/misc/props.hxx>
|
|
|
|
#include <simgear/misc/props_io.hxx>
|
|
|
|
#include <simgear/misc/exception.hxx>
|
2001-03-25 14:20:12 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2002-08-25 22:53:38 +00:00
|
|
|
|
|
|
|
#include <plib/pu.h>
|
2000-02-15 03:30:01 +00:00
|
|
|
|
1999-05-06 21:14:06 +00:00
|
|
|
#include <Include/general.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>
|
1999-10-14 23:46:28 +00:00
|
|
|
|
1998-06-12 01:07:06 +00:00
|
|
|
#include "gui.h"
|
2001-01-08 20:55:16 +00:00
|
|
|
#include "gui_local.hxx"
|
|
|
|
#include "net_dlg.hxx"
|
2002-11-18 21:31:33 +00:00
|
|
|
#include "preset_dlg.hxx"
|
1999-03-11 23:09:26 +00:00
|
|
|
|
1999-06-28 18:41:01 +00:00
|
|
|
|
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 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;
|
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();
|
2003-02-05 02:17:08 +00:00
|
|
|
puSetDefaultStyle ( PUSTYLE_SMALL_BEVELLED ); //PUSTYLE_DEFAULT
|
|
|
|
puSetDefaultColourScheme (0.8, 0.8, 0.9, 0.8);
|
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-10-07 15:45:00 +00:00
|
|
|
SGPropertyNode *locale = globals->get_locale();
|
|
|
|
fntpath.append(locale->getStringValue("font", "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();
|
2002-11-18 21:31:33 +00:00
|
|
|
fgPresetInit();
|
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();
|
1999-10-15 20:43:02 +00:00
|
|
|
}
|