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