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