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