]> git.mxchange.org Git - flightgear.git/blob - src/GUI/gui.cxx
Patch from Julian Foad:
[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              int pos = option.size()-i-1;
120              if (sep)
121                 Menu[h].submenu[pos] = strdup("----------");
122
123              else if (call && strcmp(call->getStringValue(), ""))
124                  Menu[h].submenu[pos] = strdup(name->getStringValue());
125
126              else
127                  Menu[h].submenu[pos] = strdup("not specified");
128
129              Menu[h].cb[pos] = NULL;
130              for (unsigned int j=0; __fg_gui_fn[j].fn; j++)
131                  if (call &&
132                      !strcmp(call->getStringValue(), __fg_gui_fn[j].name) )
133                  {
134                      Menu[h].cb[pos] = __fg_gui_fn[j].fn;
135                      break;
136                  }
137          }
138
139          SGPropertyNode *name = submenu[h]->getNode("name");
140
141          Menu[h].name = strdup(name->getStringValue());
142          mainMenuBar->add_submenu(Menu[h].name, Menu[h].submenu, Menu[h].cb);
143
144     }
145
146     mainMenuBar->close();
147 }
148
149
150 // FIXME: Has to be called from somewhere
151 //        or better yet, turn the menu into a class of its own
152 void destroyMenu(void) {
153     for(unsigned int i=0; i < Menu_size; i++) {
154
155         free(Menu[i].name);
156
157                                 // FIXME: don't use strdup/free
158         for(unsigned int j=0; Menu[i].submenu[j] != NULL; j++)
159            free(Menu[i].submenu[j]);
160     }
161 }
162
163
164
165
166 /* -------------------------------------------------------------------------
167 init the gui
168 _____________________________________________________________________*/
169
170
171 void guiInit()
172 {
173     char *mesa_win_state;
174
175     // Initialize PUI
176     puInit();
177     puSetDefaultStyle         ( PUSTYLE_SMALL_BEVELLED ); //PUSTYLE_DEFAULT
178     puSetDefaultColourScheme  (0.8, 0.8, 0.8, 0.4);
179
180     initDialog();
181
182     // Next check home directory
183     SGPath fntpath;
184     char* envp = ::getenv( "FG_FONTS" );
185     if ( envp != NULL ) {
186         fntpath.set( envp );
187     } else {
188         fntpath.set( globals->get_fg_root() );
189         fntpath.append( "Fonts" );
190     }
191
192     // Install our fast fonts
193     fntpath.append( "typewriter.txf" );
194     guiFntHandle = new fntTexFont ;
195     guiFntHandle -> load ( (char *)fntpath.c_str() ) ;
196     puFont GuiFont ( guiFntHandle, 15 ) ;
197     puSetDefaultFonts( GuiFont, GuiFont ) ;
198     guiFnt = puGetDefaultLabelFont();
199   
200     if (!fgHasNode("/sim/startup/mouse-pointer")) {
201         // no preference specified for mouse pointer, attempt to autodetect...
202         // Determine if we need to render the cursor, or if the windowing
203         // system will do it.  First test if we are rendering with glide.
204         if ( strstr ( general.get_glRenderer(), "Glide" ) ) {
205             // Test for the MESA_GLX_FX env variable
206             if ( (mesa_win_state = getenv( "MESA_GLX_FX" )) != NULL) {
207                 // test if we are fullscreen mesa/glide
208                 if ( (mesa_win_state[0] == 'f') ||
209                      (mesa_win_state[0] == 'F') ) {
210                     puShowCursor ();
211                 }
212             }
213         }
214 //        mouse_active = ~mouse_active;
215     } else if ( !fgGetBool("/sim/startup/mouse-pointer") ) {
216         // don't show pointer
217     } else {
218         // force showing pointer
219         puShowCursor();
220 //        mouse_active = ~mouse_active;
221     }
222         
223     // MOUSE_VIEW mode stuff
224         initMouseQuat();
225
226     // Set up our Dialog Boxes
227     ConfirmExitDialogInit();
228     NewAirportInit();
229         
230 #ifdef FG_NETWORK_OLK
231     NewNetIdInit();
232     NewNetFGDInit();
233 #endif
234
235     mkDialogInit();
236
237     initMenu();
238     
239     // Set up menu bar toggle
240     gui_menu_on = ~0;
241
242     if (!strcmp(fgGetString("/sim/flight-model"), "ada")) {
243         guiToggleMenu(); // Menu off by default
244     }
245 }