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