]> git.mxchange.org Git - flightgear.git/blob - src/GUI/gui.cxx
Removed unused cur_view_fdm variable as suggested by Bernie Bright.
[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/misc/props.hxx>
38 #include <simgear/misc/props_io.hxx>
39 #include <simgear/misc/exception.hxx>
40 #include <simgear/misc/sg_path.hxx>
41
42 #include <plib/pu.h>
43
44 #include <Include/general.hxx>
45 #include <Main/globals.hxx>
46 #include <Main/fg_props.hxx>
47
48 #include "gui.h"
49 #include "gui_local.hxx"
50 #include "apt_dlg.hxx"
51 #include "net_dlg.hxx"
52
53
54 // main.cxx hack, should come from an include someplace
55 extern void fgInitVisuals( void );
56 extern void fgReshape( int width, int height );
57 extern void fgRenderFrame( void );
58
59 extern void initDialog (void);
60 extern void mkDialogInit (void);
61 extern void ConfirmExitDialogInit(void);
62
63
64 puFont guiFnt = 0;
65 fntTexFont *guiFntHandle = 0;
66 int gui_menu_on = 0;
67 puMenuBar    *mainMenuBar = 0;
68 //static puButton     *hideMenuButton = 0;
69
70
71 struct fg_gui_t {
72         char *name;
73         char **submenu;
74         puCallback *cb;
75 } *Menu;
76 unsigned int Menu_size;
77
78 void initMenu()
79 {
80      SGPropertyNode main;
81      SGPath spath( globals->get_fg_root() );
82      spath.append( "menu.xml" );
83
84      try {
85          readProperties(spath.c_str(), &main);
86      } catch (const sg_exception &ex) {
87          SG_LOG(SG_GENERAL, SG_ALERT, "Error processing the menu file.");
88          return;
89      }
90
91      SG_LOG(SG_GENERAL, SG_INFO, "Reading menu entries.");
92
93      // Make the menu bar
94      mainMenuBar = new puMenuBar ();
95
96      SGPropertyNode *menu = main.getChild("menu");
97
98      vector<SGPropertyNode_ptr>submenu = menu->getChildren("submenu");
99
100      Menu_size = 1+submenu.size();
101      Menu = (fg_gui_t *)calloc(Menu_size, sizeof(fg_gui_t));
102
103      for (unsigned int h = 0; h < submenu.size(); h++) {
104
105          vector<SGPropertyNode_ptr>option = submenu[h]->getChildren("option");
106
107          //
108          // Make sure all entries will fit into allocated memory
109          //
110          Menu[h].submenu = (char **)calloc(1+option.size(), sizeof(char *));
111          Menu[h].cb = (puCallback *)calloc(1+option.size(), sizeof(puCallback));
112
113          for (unsigned int i = 0; i < option.size(); i++) {
114
115              SGPropertyNode *name = option[i]->getNode("name");
116              SGPropertyNode *call = option[i]->getNode("call");
117              SGPropertyNode *sep = option[i]->getNode("seperator");
118
119              if (sep)
120                 Menu[h].submenu[i] = strdup("----------");
121
122              else if (call && strcmp(call->getStringValue(), ""))
123                  Menu[h].submenu[i] = strdup(name->getStringValue());
124
125              else
126                  Menu[h].submenu[i] = strdup("not specified");
127
128              Menu[h].cb[i] = NULL;
129              for (unsigned int j=0; __fg_gui_fn[j].fn; j++)
130                  if (call &&
131                      !strcmp(call->getStringValue(), __fg_gui_fn[j].name) )
132                  {
133                      Menu[h].cb[i] = __fg_gui_fn[j].fn;
134                      break;
135                  }
136          }
137
138          SGPropertyNode *name = submenu[h]->getNode("name");
139
140          Menu[h].name = strdup(name->getStringValue());
141          mainMenuBar->add_submenu(Menu[h].name, Menu[h].submenu, Menu[h].cb);
142
143     }
144
145     mainMenuBar->close();
146 }
147
148
149 // FIXME: Has to be called from somewhere
150 //        or better yet, turn the menu into a class of its own
151 void destroyMenu(void) {
152     for(unsigned int i=0; i < Menu_size; i++) {
153
154         free(Menu[i].name);
155
156                                 // FIXME: don't use strdup/free
157         for(unsigned int j=0; Menu[i].submenu[j] != NULL; j++)
158            free(Menu[i].submenu[j]);
159     }
160 }
161
162
163
164
165 /* -------------------------------------------------------------------------
166 init the gui
167 _____________________________________________________________________*/
168
169
170 void guiInit()
171 {
172     char *mesa_win_state;
173
174     // Initialize PUI
175     puInit();
176     puSetDefaultStyle         ( PUSTYLE_SMALL_BEVELLED ); //PUSTYLE_DEFAULT
177     puSetDefaultColourScheme  (0.8, 0.8, 0.8, 0.4);
178
179     initDialog();
180
181     // Next check home directory
182     SGPath fntpath;
183     char* envp = ::getenv( "FG_FONTS" );
184     if ( envp != NULL ) {
185         fntpath.set( envp );
186     } else {
187         fntpath.set( globals->get_fg_root() );
188         fntpath.append( "Fonts" );
189     }
190
191     // Install our fast fonts
192     fntpath.append( "typewriter.txf" );
193     guiFntHandle = new fntTexFont ;
194     guiFntHandle -> load ( (char *)fntpath.c_str() ) ;
195     puFont GuiFont ( guiFntHandle, 15 ) ;
196     puSetDefaultFonts( GuiFont, GuiFont ) ;
197     guiFnt = puGetDefaultLabelFont();
198   
199     if (!fgHasNode("/sim/startup/mouse-pointer")) {
200         // no preference specified for mouse pointer, attempt to autodetect...
201         // Determine if we need to render the cursor, or if the windowing
202         // system will do it.  First test if we are rendering with glide.
203         if ( strstr ( general.get_glRenderer(), "Glide" ) ) {
204             // Test for the MESA_GLX_FX env variable
205             if ( (mesa_win_state = getenv( "MESA_GLX_FX" )) != NULL) {
206                 // test if we are fullscreen mesa/glide
207                 if ( (mesa_win_state[0] == 'f') ||
208                      (mesa_win_state[0] == 'F') ) {
209                     puShowCursor ();
210                 }
211             }
212         }
213 //        mouse_active = ~mouse_active;
214     } else if ( !fgGetBool("/sim/startup/mouse-pointer") ) {
215         // don't show pointer
216     } else {
217         // force showing pointer
218         puShowCursor();
219 //        mouse_active = ~mouse_active;
220     }
221         
222     // MOUSE_VIEW mode stuff
223         initMouseQuat();
224
225     // Set up our Dialog Boxes
226     ConfirmExitDialogInit();
227     NewAirportInit();
228         
229 #ifdef FG_NETWORK_OLK
230     NewNetIdInit();
231     NewNetFGDInit();
232 #endif
233
234     mkDialogInit();
235
236     initMenu();
237     
238     // Set up menu bar toggle
239     gui_menu_on = ~0;
240
241     if (!strcmp(fgGetString("/sim/flight-model"), "ada")) {
242         guiToggleMenu(); // Menu off by default
243     }
244 }