]> git.mxchange.org Git - flightgear.git/blob - src/Main/bootstrap.cxx
a2d0e6ce5339aeeb39b74701f1d1cf30286dd59c
[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 #if defined(__linux__) && defined(__i386__)
29 #  include <fpu_control.h>
30 #endif
31
32 #include <errno.h>
33 #include <signal.h>
34 #include <stdlib.h>
35 #include <stdio.h>
36
37 #include <simgear/compiler.h>
38 #include <simgear/structure/exception.hxx>
39 #include <simgear/debug/logstream.hxx>
40
41 #include STL_IOSTREAM
42 SG_USING_STD(cerr);
43 SG_USING_STD(endl);
44
45 #include "main.hxx"
46 #include "globals.hxx"
47
48
49 #ifdef HAVE_WINDOWS_H
50 #  include <windows.h>
51 #  include <float.h>
52 #  include <pthread.h>
53 #endif
54
55 #include "fg_os.hxx"
56
57 #ifdef macintosh
58 #  include <console.h>          // -dw- for command line dialog
59 #endif
60
61 char *homedir = ::getenv( "HOME" );
62 char *hostname = ::getenv( "HOSTNAME" );
63 bool free_hostname = false;
64
65 // foreward declaration.
66 void fgExitCleanup();
67
68 #if defined(__linux__) && defined(__i386__)
69
70 static void handleFPE (int);
71
72 static void
73 initFPE ()
74 {
75     fpu_control_t fpe_flags = 0;
76     _FPU_GETCW(fpe_flags);
77 //     fpe_flags &= ~_FPU_MASK_IM;      // invalid operation
78 //     fpe_flags &= ~_FPU_MASK_DM;      // denormalized operand
79 //     fpe_flags &= ~_FPU_MASK_ZM;      // zero-divide
80 //     fpe_flags &= ~_FPU_MASK_OM;      // overflow
81 //     fpe_flags &= ~_FPU_MASK_UM;      // underflow
82 //     fpe_flags &= ~_FPU_MASK_PM;      // precision (inexact result)
83     _FPU_SETCW(fpe_flags);
84     signal(SIGFPE, handleFPE);
85 }
86
87 static void
88 handleFPE (int num)
89 {
90   initFPE();
91   SG_LOG(SG_GENERAL, SG_ALERT, "Floating point interrupt (SIGFPE)");
92 }
93 #endif
94
95 #ifdef __APPLE__
96
97 typedef struct
98 {
99   int  lo;
100   int  hi;
101 } PSN;
102
103 extern "C" {
104   short CPSGetCurrentProcess(PSN *psn);
105   short CPSSetProcessName (PSN *psn, char *processname);
106   short CPSEnableForegroundOperation(PSN *psn, int _arg2, int _arg3, int _arg4, int _arg5);
107   short CPSSetFrontProcess(PSN *psn);
108 };
109
110 #define CPSEnableFG(psn) CPSEnableForegroundOperation(psn,0x03,0x3C,0x2C,0x1103)
111
112 #endif
113
114 #ifdef _MSC_VER
115 int main ( int argc, char **argv );
116 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
117                              LPSTR lpCmdLine, int nCmdShow) {
118
119   logbuf::has_no_console();
120   main( __argc, __argv );
121 }
122 #endif
123
124 #if defined( sgi )
125 #include <sys/fpu.h>
126 #include <sys/sysmp.h>
127 #include <unistd.h>
128
129 /*
130  *  set the special "flush zero" bit (FS, bit 24) in the Control Status
131  *  Register of the FPU of R4k and beyond so that the result of any
132  *  underflowing operation will be clamped to zero, and no exception of
133  *  any kind will be generated on the CPU.  This has no effect on an
134  *  R3000.
135  */
136 void flush_fpe(void)
137 {
138     union fpc_csr f;
139     f.fc_word = get_fpc_csr();
140     f.fc_struct.flush = 1;
141     set_fpc_csr(f.fc_word);
142 }
143 #endif
144
145 static void fg_terminate() {
146     cerr << endl <<
147             "Uncaught Exception: you should see a meaningful error message\n"
148             "here, but your GLUT (or SDL) library was apparently compiled\n"
149             "and/or linked without exception support. Please complain to\n"
150             "its provider!"
151             << endl << endl;
152     abort();
153 }
154
155 int _bootstrap_OSInit;
156
157 // Main entry point; catch any exceptions that have made it this far.
158 int main ( int argc, char **argv ) {
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(__linux__) && defined(__i386__)
167     // Enable floating-point exceptions for Linux/x86
168     initFPE();
169 #elif defined(__FreeBSD__)
170     // Ignore floating-point exceptions on FreeBSD
171     signal(SIGFPE, SIG_IGN);
172 #endif
173 #ifndef _MSC_VER
174     signal(SIGPIPE, SIG_IGN);
175 #endif
176
177 #if defined(sgi)
178     flush_fpe();
179
180     // Bind all non-rendering threads to CPU1
181     // This will reduce the jitter caused by them to an absolute minimum,
182     // but it will only work with superuser authority.
183     if ( geteuid() == 0 )
184     {
185        sysmp(MP_CLOCK, 0);              // bind the timer only to CPU0
186        sysmp(MP_ISOLATE, 1 );           // Isolate CPU1
187        sysmp(MP_NONPREEMPTIVE, 1 );     // disable process time slicing on CPU1
188     }
189 #endif
190
191     // Enable floating-point exceptions for Windows
192 #if defined( _MSC_VER ) && defined( DEBUG )
193     // Christian, we should document what this does
194     _control87( _EM_INEXACT, _MCW_EM );
195 #endif
196
197 #if defined( HAVE_BC5PLUS )
198     _control87(MCW_EM, MCW_EM);  /* defined in float.h */
199 #endif
200
201     // Keyboard focus hack
202 #if defined(__APPLE__) && !defined(OSX_BUNDLE)
203     {
204       PSN psn;
205
206       fgOSInit (&argc, argv);
207       _bootstrap_OSInit++;
208
209       CPSGetCurrentProcess(&psn);
210       CPSSetProcessName(&psn, "FlightGear");
211       CPSEnableFG(&psn);
212       CPSSetFrontProcess(&psn);
213     }
214 #endif
215
216     // FIXME: add other, more specific
217     // exceptions.
218     try {
219         std::set_terminate(fg_terminate);
220         atexit(fgExitCleanup);
221         fgMainInit(argc, argv);
222     } catch (const sg_throwable &t) {
223                             // We must use cerr rather than
224                             // logging, since logging may be
225                             // disabled.
226         cerr << "Fatal error: " << t.getFormattedMessage() << endl;
227         if (!t.getOrigin().empty())
228             cerr << " (received from " << t.getOrigin() << ')' << endl;
229
230     } catch (const string &s) {
231         cerr << "Fatal error: " << s << endl;
232
233     } catch (const char *s) {
234         cerr << "Fatal error: " << s << endl;
235
236     } catch (...) {
237         cerr << "Unknown exception in the main loop. Aborting..." << endl;
238         if (errno)
239             perror("Possible cause");
240     }
241
242     return 0;
243 }
244
245 // do some clean up on exit.  Specifically we want to call alutExit()
246 // which happens in the sound manager destructor.
247 void fgExitCleanup() {
248
249     if (_bootstrap_OSInit != 0)
250         fgSetMouseCursor(MOUSE_CURSOR_POINTER);
251
252     delete globals;
253
254     if (free_hostname && hostname != NULL)
255         free(hostname);
256 }
257