]> git.mxchange.org Git - flightgear.git/blob - src/Main/bootstrap.cxx
SGI and Borland compilers are gone.
[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: you should see a meaningful error message\n"
135             "here, but your GLUT (or SDL) library was apparently compiled\n"
136             "and/or linked without exception support. Please complain to\n"
137             "its provider!"
138             << endl << endl;
139     abort();
140 }
141
142 int _bootstrap_OSInit;
143
144 // Main entry point; catch any exceptions that have made it this far.
145 int main ( int argc, char **argv )
146 {
147 #if defined(_MSC_VER) || defined(_WIN32) 
148   // Don't show blocking "no disk in drive" error messages on Windows 7,
149   // silently return errors to application instead.
150   // See Microsoft MSDN #ms680621: "GUI apps should specify SEM_NOOPENFILEERRORBOX"
151   SetErrorMode(SEM_NOOPENFILEERRORBOX);
152
153   hostname = ::getenv( "COMPUTERNAME" );
154 #else
155   // Unix(alike) systems
156   char _hostname[256];
157   gethostname(_hostname, 256);
158   hostname = _hostname;
159     
160   signal(SIGPIPE, SIG_IGN);
161 #endif
162
163 #ifdef PTW32_STATIC_LIB
164     // Initialise static pthread win32 lib
165     pthread_win32_process_attach_np ();
166 #endif
167     _bootstrap_OSInit = 0;
168
169 #if defined(__FreeBSD__)
170     // Ignore floating-point exceptions on FreeBSD
171     signal(SIGFPE, SIG_IGN); 
172 #else
173     // Maybe Enable floating-point exceptions on Linux
174     for (int i = 0; i < argc; ++i) {
175         if (!strcmp("--enable-fpe", argv[i])) {
176             fpeAbort = true;
177             break;
178         }
179     }
180     initFPE();
181 #endif
182
183     // Enable floating-point exceptions for Windows
184 #if defined( _MSC_VER ) && defined( DEBUG )
185     // Christian, we should document what this does
186     _control87( _EM_INEXACT, _MCW_EM );
187 #endif
188
189     bool fgviewer = false;
190     for (int i = 0; i < argc; ++i) {
191         if (!strcmp("--fgviewer", argv[i])) {
192             fgviewer = true;
193             break;
194         }
195     }
196
197     // FIXME: add other, more specific
198     // exceptions.
199     try {
200         // http://code.google.com/p/flightgear-bugs/issues/detail?id=1231
201         // ensure sglog is inited before atexit() is registered, so logging
202         // is possible inside fgExitCleanup
203         sglog();
204         
205         std::set_terminate(fg_terminate);
206         atexit(fgExitCleanup);
207         if (fgviewer)
208             fgviewerMain(argc, argv);
209         else
210             fgMainInit(argc, argv);
211             
212         
213     } catch (const sg_throwable &t) {
214                             // We must use cerr rather than
215                             // logging, since logging may be
216                             // disabled.
217         cerr << "Fatal error: " << t.getFormattedMessage() << endl;
218         if (std::strlen(t.getOrigin()) != 0)
219             cerr << " (received from " << t.getOrigin() << ')' << endl;
220
221     } catch (const std::exception &e ) {
222         cerr << "Fatal error (std::exception): " << e.what() << endl;
223
224     } catch (const std::string &s) {
225         cerr << "Fatal error (std::string): " << s << endl;
226
227     } catch (const char *s) {
228         cerr << "Fatal error (const char*): " << s << endl;
229
230     } catch (...) {
231         cerr << "Unknown exception in the main loop. Aborting..." << endl;
232         if (errno)
233             perror("Possible cause");
234     }
235
236     return 0;
237 }
238
239 // do some clean up on exit.  Specifically we want to delete the sound-manager,
240 // so OpenAL device and context are released cleanly
241 void fgExitCleanup() {
242
243     if (_bootstrap_OSInit != 0)
244         fgSetMouseCursor(MOUSE_CURSOR_POINTER);
245
246     // on the common exit path globals is already deleted, and NULL,
247     // so this only happens on error paths.
248     delete globals;
249 }
250