]> git.mxchange.org Git - flightgear.git/blob - src/GUI/gui.cxx
Don't scale elevator by 0.5.
[flightgear.git] / src / GUI / gui.cxx
1 /**************************************************************************
2  * gui.cxx
3  *
4  * Written 1998 by Durk Talsma, started Juni, 1998.  For the flight gear
5  * project.
6  *
7  * Additional mouse supported added by David Megginson, 1999.
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License as
11  * published by the Free Software Foundation; either version 2 of the
12  * License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * $Id$
24  **************************************************************************/
25
26
27 #ifdef HAVE_CONFIG_H
28 #  include <config.h>
29 #endif
30
31 #include <simgear/compiler.h>
32
33 #ifdef HAVE_WINDOWS_H
34 #  include <windows.h>
35 #endif
36
37 #include <simgear/structure/exception.hxx>
38 #include <simgear/misc/sg_path.hxx>
39 #include <simgear/props/props.hxx>
40 #include <simgear/props/props_io.hxx>
41
42 #include <plib/pu.h>
43
44 #include <Include/general.hxx>
45 #include <Main/main.hxx>
46 #include <Main/globals.hxx>
47 #include <Main/fg_props.hxx>
48
49 #include "gui.h"
50 #include "gui_local.hxx"
51 #include "net_dlg.hxx"
52 #include "preset_dlg.hxx"
53
54
55 extern void initDialog (void);
56 extern void mkDialogInit (void);
57 extern void ConfirmExitDialogInit(void);
58
59
60 puFont guiFnt = 0;
61 fntTexFont *guiFntHandle = 0;
62
63
64 /* -------------------------------------------------------------------------
65 init the gui
66 _____________________________________________________________________*/
67
68
69 void guiInit()
70 {
71     char *mesa_win_state;
72
73     // Initialize PUI
74     puInit();
75     puSetDefaultStyle         ( PUSTYLE_SMALL_BEVELLED ); //PUSTYLE_DEFAULT
76     puSetDefaultColourScheme  (0.8, 0.8, 0.9, 0.8);
77
78     initDialog();
79
80     // Next check home directory
81     SGPath fntpath;
82     char* envp = ::getenv( "FG_FONTS" );
83     if ( envp != NULL ) {
84         fntpath.set( envp );
85     } else {
86         fntpath.set( globals->get_fg_root() );
87         fntpath.append( "Fonts" );
88     }
89
90     // Install our fast fonts
91     SGPropertyNode *locale = globals->get_locale();
92     fntpath.append(locale->getStringValue("font", "typewriter.txf"));
93     guiFntHandle = new fntTexFont ;
94     guiFntHandle -> load ( (char *)fntpath.c_str() ) ;
95     puFont GuiFont ( guiFntHandle, 15 ) ;
96     puSetDefaultFonts( GuiFont, GuiFont ) ;
97     guiFnt = puGetDefaultLabelFont();
98   
99     if (!fgHasNode("/sim/startup/mouse-pointer")) {
100         // no preference specified for mouse pointer, attempt to autodetect...
101         // Determine if we need to render the cursor, or if the windowing
102         // system will do it.  First test if we are rendering with glide.
103         if ( strstr ( general.get_glRenderer(), "Glide" ) ) {
104             // Test for the MESA_GLX_FX env variable
105             if ( (mesa_win_state = getenv( "MESA_GLX_FX" )) != NULL) {
106                 // test if we are fullscreen mesa/glide
107                 if ( (mesa_win_state[0] == 'f') ||
108                      (mesa_win_state[0] == 'F') ) {
109                     puShowCursor ();
110                 }
111             }
112         }
113 //        mouse_active = ~mouse_active;
114     } else if ( !fgGetBool("/sim/startup/mouse-pointer") ) {
115         // don't show pointer
116     } else {
117         // force showing pointer
118         puShowCursor();
119 //        mouse_active = ~mouse_active;
120     }
121         
122     // MOUSE_VIEW mode stuff
123         initMouseQuat();
124
125     // Set up our Dialog Boxes
126     ConfirmExitDialogInit();
127     fgPresetInit();
128         
129 #ifdef FG_NETWORK_OLK
130     NewNetIdInit();
131     NewNetFGDInit();
132 #endif
133
134     mkDialogInit();
135 }