]> git.mxchange.org Git - flightgear.git/blob - src/Main/bootstrap.cxx
Fix some places relying on public 'using std::string' in SimGear
[flightgear.git] / src / Main / bootstrap.cxx
1 // bootstrap.cxx -- bootstrap routines: main()
2 //
3 // Written by Curtis Olson, started May 1997.
4 //
5 // Copyright (C) 1997 - 2002  Curtis L. Olson  - http://www.flightgear.org/~curt
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23
24 #ifdef HAVE_CONFIG_H
25 #  include <config.h>
26 #endif
27
28 #ifdef HAVE_WINDOWS_H
29 #include <windows.h>
30 #endif
31
32 #if defined(HAVE_FEENABLEEXCEPT)
33 #ifndef _GNU_SOURCE
34 #define _GNU_SOURCE
35 #endif
36 #include <fenv.h>
37 #elif defined(__linux__) && defined(__i386__)
38 #  include <fpu_control.h>
39 #endif
40
41 #ifndef _WIN32
42 #  include <unistd.h> // for gethostname()
43 #endif
44
45 #include <errno.h>
46 #include <signal.h>
47 #include <stdlib.h>
48 #include <stdio.h>
49
50 #include <simgear/compiler.h>
51 #include <simgear/structure/exception.hxx>
52 #include <simgear/debug/logstream.hxx>
53
54 #include <cstring>
55 #include <iostream>
56 using std::cerr;
57 using std::endl;
58
59 #include <Viewer/fgviewer.hxx>
60 #include "main.hxx"
61 #include "globals.hxx"
62 #include "fg_props.hxx"
63
64
65 #include "fg_os.hxx"
66
67 std::string homedir;
68 std::string hostname;
69
70 // forward declaration.
71 void fgExitCleanup();
72
73 static bool fpeAbort = false;
74 static void initFPE();
75
76 #if defined(HAVE_FEENABLEEXCEPT)
77 static void handleFPE(int);
78 static void
79 initFPE ()
80 {
81     if (fpeAbort) {
82         int except = fegetexcept();
83         feenableexcept(except | FE_DIVBYZERO | FE_INVALID);
84     } else {
85         signal(SIGFPE, handleFPE);
86     }
87 }
88
89 static void handleFPE(int)
90 {
91     feclearexcept(FE_ALL_EXCEPT);
92     signal(SIGFPE, handleFPE);
93 }
94 #elif defined(__linux__) && defined(__i386__)
95
96 static void handleFPE(int);
97 static void
98 initFPE ()
99 {
100     fpu_control_t fpe_flags = 0;
101     _FPU_GETCW(fpe_flags);
102 //     fpe_flags &= ~_FPU_MASK_IM;      // invalid operation
103 //     fpe_flags &= ~_FPU_MASK_DM;      // denormalized operand
104 //     fpe_flags &= ~_FPU_MASK_ZM;      // zero-divide
105 //     fpe_flags &= ~_FPU_MASK_OM;      // overflow
106 //     fpe_flags &= ~_FPU_MASK_UM;      // underflow
107 //     fpe_flags &= ~_FPU_MASK_PM;      // precision (inexact result)
108     _FPU_SETCW(fpe_flags);
109     signal(SIGFPE, handleFPE);
110 }
111
112 static void
113 handleFPE (int num)
114 {
115   initFPE();
116   SG_LOG(SG_GENERAL, SG_ALERT, "Floating point interrupt (SIGFPE)");
117 }
118 #else
119 static void initFPE()
120 {
121 }
122 #endif
123
124 #ifdef _MSC_VER
125 int main ( int argc, char **argv );
126 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
127                              LPSTR lpCmdLine, int nCmdShow) {
128
129   logbuf::has_no_console();
130   main( __argc, __argv );
131 }
132 #endif
133
134 #if defined( sgi )
135 #include <sys/fpu.h>
136 #include <sys/sysmp.h>
137 #include <unistd.h>
138
139 /*
140  *  set the special "flush zero" bit (FS, bit 24) in the Control Status
141  *  Register of the FPU of R4k and beyond so that the result of any
142  *  underflowing operation will be clamped to zero, and no exception of
143  *  any kind will be generated on the CPU.  This has no effect on an
144  *  R3000.
145  */
146 void flush_fpe(void)
147 {
148     union fpc_csr f;
149     f.fc_word = get_fpc_csr();
150     f.fc_struct.flush = 1;
151     set_fpc_csr(f.fc_word);
152 }
153 #endif
154
155 static void fg_terminate() {
156     cerr << endl <<
157             "Uncaught Exception: you should see a meaningful error message\n"
158             "here, but your GLUT (or SDL) library was apparently compiled\n"
159             "and/or linked without exception support. Please complain to\n"
160             "its provider!"
161             << endl << endl;
162     abort();
163 }
164
165 int _bootstrap_OSInit;
166
167 // Main entry point; catch any exceptions that have made it this far.
168 int main ( int argc, char **argv ) {
169 #if _MSC_VER
170   // Don't show blocking "no disk in drive" error messages on Windows 7,
171   // silently return errors to application instead.
172   // See Microsoft MSDN #ms680621: "GUI apps should specify SEM_NOOPENFILEERRORBOX"
173   SetErrorMode(SEM_NOOPENFILEERRORBOX);
174
175   // Windows has no $HOME aka %HOME%, so we have to construct the full path.
176   homedir = ::getenv("APPDATA");
177   homedir.append("\\flightgear.org");
178
179   hostname = ::getenv( "COMPUTERNAME" );
180 #else
181   // Unix(alike) systems
182   char _hostname[256];
183   gethostname(_hostname, 256);
184   hostname = _hostname;
185   
186   homedir = ::getenv( "HOME" );
187   
188   signal(SIGPIPE, SIG_IGN);
189 #endif
190
191 #ifdef PTW32_STATIC_LIB
192     // Initialise static pthread win32 lib
193     pthread_win32_process_attach_np ();
194 #endif
195     _bootstrap_OSInit = 0;
196
197 #if defined(__FreeBSD__)
198     // Ignore floating-point exceptions on FreeBSD
199     signal(SIGFPE, SIG_IGN); 
200 #else
201     // Maybe Enable floating-point exceptions on Linux
202     for (int i = 0; i < argc; ++i) {
203         if (!strcmp("--enable-fpe", argv[i])) {
204             fpeAbort = true;
205             break;
206         }
207     }
208     initFPE();
209 #endif
210
211 #if defined(sgi)
212     flush_fpe();
213
214     // Bind all non-rendering threads to CPU1
215     // This will reduce the jitter caused by them to an absolute minimum,
216     // but it will only work with superuser authority.
217     if ( geteuid() == 0 )
218     {
219        sysmp(MP_CLOCK, 0);              // bind the timer only to CPU0
220        sysmp(MP_ISOLATE, 1 );           // Isolate CPU1
221        sysmp(MP_NONPREEMPTIVE, 1 );     // disable process time slicing on CPU1
222     }
223 #endif
224
225     // Enable floating-point exceptions for Windows
226 #if defined( _MSC_VER ) && defined( DEBUG )
227     // Christian, we should document what this does
228     _control87( _EM_INEXACT, _MCW_EM );
229 #endif
230
231 #if defined( HAVE_BC5PLUS )
232     _control87(MCW_EM, MCW_EM);  /* defined in float.h */
233 #endif
234   
235     bool fgviewer = false;
236     for (int i = 0; i < argc; ++i) {
237         if (!strcmp("--fgviewer", argv[i])) {
238             fgviewer = true;
239             break;
240         }
241     }
242
243     // FIXME: add other, more specific
244     // exceptions.
245     try {
246         std::set_terminate(fg_terminate);
247         atexit(fgExitCleanup);
248         if (fgviewer)
249             fgviewerMain(argc, argv);
250         else
251             fgMainInit(argc, argv);
252             
253         
254     } catch (const sg_throwable &t) {
255                             // We must use cerr rather than
256                             // logging, since logging may be
257                             // disabled.
258         cerr << "Fatal error: " << t.getFormattedMessage() << endl;
259         if (std::strlen(t.getOrigin()) != 0)
260             cerr << " (received from " << t.getOrigin() << ')' << endl;
261
262     } catch (const std::string &s) {
263         cerr << "Fatal error: " << s << endl;
264
265     } catch (const char *s) {
266         cerr << "Fatal error: " << s << endl;
267
268     } catch (...) {
269         cerr << "Unknown exception in the main loop. Aborting..." << endl;
270         if (errno)
271             perror("Possible cause");
272     }
273
274     return 0;
275 }
276
277 // do some clean up on exit.  Specifically we want to delete the sound-manager,
278 // so OpenAL device and context are released cleanly
279 void fgExitCleanup() {
280
281     if (_bootstrap_OSInit != 0)
282         fgSetMouseCursor(MOUSE_CURSOR_POINTER);
283
284     delete globals;
285 }
286