]> git.mxchange.org Git - flightgear.git/blob - src/Main/bootstrap.cxx
Remove confusing reference to SDL/GLUT
[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
53 #include <cstring>
54 #include <iostream>
55 using std::cerr;
56 using std::endl;
57
58 #include <Viewer/fgviewer.hxx>
59 #include "main.hxx"
60 #include "globals.hxx"
61 #include "fg_props.hxx"
62
63
64 #include "fg_os.hxx"
65
66 std::string homedir;
67 std::string hostname;
68
69 // forward declaration.
70 void fgExitCleanup();
71
72 static bool fpeAbort = false;
73 static void initFPE();
74
75 #if defined(HAVE_FEENABLEEXCEPT)
76 static void handleFPE(int);
77 static void
78 initFPE ()
79 {
80     if (fpeAbort) {
81         int except = fegetexcept();
82         feenableexcept(except | FE_DIVBYZERO | FE_INVALID);
83     } else {
84         signal(SIGFPE, handleFPE);
85     }
86 }
87
88 static void handleFPE(int)
89 {
90     feclearexcept(FE_ALL_EXCEPT);
91     signal(SIGFPE, handleFPE);
92 }
93 #elif defined(__linux__) && defined(__i386__)
94
95 static void handleFPE(int);
96 static void
97 initFPE ()
98 {
99     fpu_control_t fpe_flags = 0;
100     _FPU_GETCW(fpe_flags);
101 //     fpe_flags &= ~_FPU_MASK_IM;      // invalid operation
102 //     fpe_flags &= ~_FPU_MASK_DM;      // denormalized operand
103 //     fpe_flags &= ~_FPU_MASK_ZM;      // zero-divide
104 //     fpe_flags &= ~_FPU_MASK_OM;      // overflow
105 //     fpe_flags &= ~_FPU_MASK_UM;      // underflow
106 //     fpe_flags &= ~_FPU_MASK_PM;      // precision (inexact result)
107     _FPU_SETCW(fpe_flags);
108     signal(SIGFPE, handleFPE);
109 }
110
111 static void
112 handleFPE (int num)
113 {
114   initFPE();
115   SG_LOG(SG_GENERAL, SG_ALERT, "Floating point interrupt (SIGFPE)");
116 }
117 #else
118 static void initFPE()
119 {
120 }
121 #endif
122
123 #if defined(_MSC_VER) || defined(_WIN32)
124 int main ( int argc, char **argv );
125 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
126                              LPSTR lpCmdLine, int nCmdShow) {
127
128   main( __argc, __argv );
129 }
130 #endif
131
132 static void fg_terminate() {
133     cerr << endl <<
134             "Uncaught Exception: missing exception handler on some thread"
135             << endl << endl;
136     abort();
137 }
138
139 int _bootstrap_OSInit;
140
141 // Main entry point; catch any exceptions that have made it this far.
142 int main ( int argc, char **argv )
143 {
144 #if defined(_MSC_VER) || defined(_WIN32) 
145   // Don't show blocking "no disk in drive" error messages on Windows 7,
146   // silently return errors to application instead.
147   // See Microsoft MSDN #ms680621: "GUI apps should specify SEM_NOOPENFILEERRORBOX"
148   SetErrorMode(SEM_NOOPENFILEERRORBOX);
149
150   hostname = ::getenv( "COMPUTERNAME" );
151 #else
152   // Unix(alike) systems
153   char _hostname[256];
154   gethostname(_hostname, 256);
155   hostname = _hostname;
156     
157   signal(SIGPIPE, SIG_IGN);
158 #endif
159
160 #ifdef PTW32_STATIC_LIB
161     // Initialise static pthread win32 lib
162     pthread_win32_process_attach_np ();
163 #endif
164     _bootstrap_OSInit = 0;
165
166 #if defined(__FreeBSD__)
167     // Ignore floating-point exceptions on FreeBSD
168     signal(SIGFPE, SIG_IGN); 
169 #else
170     // Maybe Enable floating-point exceptions on Linux
171     for (int i = 0; i < argc; ++i) {
172         if (!strcmp("--enable-fpe", argv[i])) {
173             fpeAbort = true;
174             break;
175         }
176     }
177     initFPE();
178 #endif
179
180     // Enable floating-point exceptions for Windows
181 #if defined( _MSC_VER ) && defined( DEBUG )
182     // Christian, we should document what this does
183     _control87( _EM_INEXACT, _MCW_EM );
184 #endif
185
186     bool fgviewer = false;
187     for (int i = 0; i < argc; ++i) {
188         if (!strcmp("--fgviewer", argv[i])) {
189             fgviewer = true;
190             break;
191         }
192     }
193
194     // FIXME: add other, more specific
195     // exceptions.
196     try {
197         // http://code.google.com/p/flightgear-bugs/issues/detail?id=1231
198         // ensure sglog is inited before atexit() is registered, so logging
199         // is possible inside fgExitCleanup
200         sglog();
201         
202         std::set_terminate(fg_terminate);
203         atexit(fgExitCleanup);
204         if (fgviewer)
205             fgviewerMain(argc, argv);
206         else
207             fgMainInit(argc, argv);
208             
209         
210     } catch (const sg_throwable &t) {
211                             // We must use cerr rather than
212                             // logging, since logging may be
213                             // disabled.
214         cerr << "Fatal error: " << t.getFormattedMessage() << endl;
215         if (std::strlen(t.getOrigin()) != 0)
216             cerr << " (received from " << t.getOrigin() << ')' << endl;
217
218     } catch (const std::exception &e ) {
219         cerr << "Fatal error (std::exception): " << e.what() << endl;
220
221     } catch (const std::string &s) {
222         cerr << "Fatal error (std::string): " << s << endl;
223
224     } catch (const char *s) {
225         cerr << "Fatal error (const char*): " << s << endl;
226
227     } catch (...) {
228         cerr << "Unknown exception in the main loop. Aborting..." << endl;
229         if (errno)
230             perror("Possible cause");
231     }
232
233     return 0;
234 }
235
236 // do some clean up on exit.  Specifically we want to delete the sound-manager,
237 // so OpenAL device and context are released cleanly
238 void fgExitCleanup() {
239
240     if (_bootstrap_OSInit != 0)
241         fgSetMouseCursor(MOUSE_CURSOR_POINTER);
242
243     // on the common exit path globals is already deleted, and NULL,
244     // so this only happens on error paths.
245     delete globals;
246 }
247