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