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