2003-08-17 09:54:41 +00:00
|
|
|
// bootstrap.cxx -- bootstrap routines: main()
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started May 1997.
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 1997 - 2002 Curtis L. Olson - http://www.flightgear.org/~curt
|
2003-08-17 09:54:41 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-08-17 09:54:41 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__linux__) && defined(__i386__)
|
|
|
|
# include <fpu_control.h>
|
|
|
|
#endif
|
|
|
|
|
2005-12-22 23:32:23 +00:00
|
|
|
#include <errno.h>
|
2008-07-15 16:55:23 +00:00
|
|
|
#include <signal.h>
|
2003-08-17 09:54:41 +00:00
|
|
|
#include <stdlib.h>
|
2004-10-17 17:59:02 +00:00
|
|
|
#include <stdio.h>
|
2003-08-17 09:54:41 +00:00
|
|
|
|
|
|
|
#include <simgear/compiler.h>
|
2003-09-24 17:20:55 +00:00
|
|
|
#include <simgear/structure/exception.hxx>
|
2003-08-17 10:03:36 +00:00
|
|
|
#include <simgear/debug/logstream.hxx>
|
2003-08-17 09:54:41 +00:00
|
|
|
|
|
|
|
#include STL_IOSTREAM
|
|
|
|
SG_USING_STD(cerr);
|
|
|
|
SG_USING_STD(endl);
|
|
|
|
|
|
|
|
#include "main.hxx"
|
2004-08-24 08:40:41 +00:00
|
|
|
#include "globals.hxx"
|
2003-08-17 09:54:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_WINDOWS_H
|
|
|
|
# include <windows.h>
|
|
|
|
# include <float.h>
|
2007-01-31 20:44:44 +00:00
|
|
|
# include <pthread.h>
|
2003-08-17 09:54:41 +00:00
|
|
|
#endif
|
|
|
|
|
2004-03-31 21:10:32 +00:00
|
|
|
#include "fg_os.hxx"
|
2003-08-17 09:54:41 +00:00
|
|
|
|
|
|
|
#ifdef macintosh
|
|
|
|
# include <console.h> // -dw- for command line dialog
|
|
|
|
#endif
|
|
|
|
|
2005-12-21 13:36:04 +00:00
|
|
|
char *homedir = ::getenv( "HOME" );
|
|
|
|
char *hostname = ::getenv( "HOSTNAME" );
|
|
|
|
bool free_hostname = false;
|
|
|
|
|
2004-08-24 08:40:41 +00:00
|
|
|
// foreward declaration.
|
|
|
|
void fgExitCleanup();
|
2003-08-17 09:54:41 +00:00
|
|
|
|
|
|
|
#if defined(__linux__) && defined(__i386__)
|
|
|
|
|
|
|
|
static void handleFPE (int);
|
|
|
|
|
|
|
|
static void
|
|
|
|
initFPE ()
|
|
|
|
{
|
|
|
|
fpu_control_t fpe_flags = 0;
|
|
|
|
_FPU_GETCW(fpe_flags);
|
|
|
|
// fpe_flags &= ~_FPU_MASK_IM; // invalid operation
|
|
|
|
// fpe_flags &= ~_FPU_MASK_DM; // denormalized operand
|
|
|
|
// fpe_flags &= ~_FPU_MASK_ZM; // zero-divide
|
|
|
|
// fpe_flags &= ~_FPU_MASK_OM; // overflow
|
|
|
|
// fpe_flags &= ~_FPU_MASK_UM; // underflow
|
|
|
|
// fpe_flags &= ~_FPU_MASK_PM; // precision (inexact result)
|
|
|
|
_FPU_SETCW(fpe_flags);
|
|
|
|
signal(SIGFPE, handleFPE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handleFPE (int num)
|
|
|
|
{
|
|
|
|
initFPE();
|
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT, "Floating point interrupt (SIGFPE)");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int lo;
|
|
|
|
int hi;
|
|
|
|
} PSN;
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
short CPSGetCurrentProcess(PSN *psn);
|
|
|
|
short CPSSetProcessName (PSN *psn, char *processname);
|
|
|
|
short CPSEnableForegroundOperation(PSN *psn, int _arg2, int _arg3, int _arg4, int _arg5);
|
|
|
|
short CPSSetFrontProcess(PSN *psn);
|
|
|
|
};
|
|
|
|
|
|
|
|
#define CPSEnableFG(psn) CPSEnableForegroundOperation(psn,0x03,0x3C,0x2C,0x1103)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2004-03-20 22:39:30 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
int main ( int argc, char **argv );
|
|
|
|
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
|
|
|
LPSTR lpCmdLine, int nCmdShow) {
|
|
|
|
|
2006-09-27 20:18:08 +00:00
|
|
|
logbuf::has_no_console();
|
2004-03-20 22:39:30 +00:00
|
|
|
main( __argc, __argv );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-05-14 11:58:57 +00:00
|
|
|
#if defined( sgi )
|
|
|
|
#include <sys/fpu.h>
|
2005-01-09 10:27:01 +00:00
|
|
|
#include <sys/sysmp.h>
|
2005-03-08 18:05:24 +00:00
|
|
|
#include <unistd.h>
|
2004-05-14 11:58:57 +00:00
|
|
|
|
|
|
|
/*
|
2005-01-09 10:27:01 +00:00
|
|
|
* set the special "flush zero" bit (FS, bit 24) in the Control Status
|
|
|
|
* Register of the FPU of R4k and beyond so that the result of any
|
|
|
|
* underflowing operation will be clamped to zero, and no exception of
|
|
|
|
* any kind will be generated on the CPU. This has no effect on an
|
|
|
|
* R3000.
|
|
|
|
*/
|
2004-05-14 11:58:57 +00:00
|
|
|
void flush_fpe(void)
|
|
|
|
{
|
|
|
|
union fpc_csr f;
|
|
|
|
f.fc_word = get_fpc_csr();
|
|
|
|
f.fc_struct.flush = 1;
|
|
|
|
set_fpc_csr(f.fc_word);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-05-13 08:43:40 +00:00
|
|
|
static void fg_terminate() {
|
2007-05-10 12:50:50 +00:00
|
|
|
cerr << endl <<
|
|
|
|
"Uncaught Exception: you should see a meaningful error message\n"
|
|
|
|
"here, but your GLUT (or SDL) library was apparently compiled\n"
|
|
|
|
"and/or linked without exception support. Please complain to\n"
|
|
|
|
"its provider!"
|
|
|
|
<< endl << endl;
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2004-08-24 08:40:41 +00:00
|
|
|
int _bootstrap_OSInit;
|
|
|
|
|
2003-08-17 09:54:41 +00:00
|
|
|
// Main entry point; catch any exceptions that have made it this far.
|
|
|
|
int main ( int argc, char **argv ) {
|
|
|
|
|
2007-01-31 20:44:44 +00:00
|
|
|
#ifdef PTW32_STATIC_LIB
|
|
|
|
// Initialise static pthread win32 lib
|
|
|
|
pthread_win32_process_attach_np ();
|
|
|
|
#endif
|
2004-08-24 08:40:41 +00:00
|
|
|
_bootstrap_OSInit = 0;
|
|
|
|
|
2003-08-17 09:54:41 +00:00
|
|
|
#if defined(__linux__) && defined(__i386__)
|
2006-03-28 21:18:32 +00:00
|
|
|
// Enable floating-point exceptions for Linux/x86
|
2003-08-17 09:54:41 +00:00
|
|
|
initFPE();
|
2006-03-28 21:18:32 +00:00
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
// Ignore floating-point exceptions on FreeBSD
|
|
|
|
signal(SIGFPE, SIG_IGN);
|
2003-08-17 09:54:41 +00:00
|
|
|
#endif
|
2008-07-15 16:55:23 +00:00
|
|
|
signal(SIGPIPE, SIG_IGN);
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2004-05-14 11:58:57 +00:00
|
|
|
#if defined(sgi)
|
|
|
|
flush_fpe();
|
2005-01-09 10:27:01 +00:00
|
|
|
|
|
|
|
// Bind all non-rendering threads to CPU1
|
|
|
|
// This will reduce the jitter caused by them to an absolute minimum,
|
|
|
|
// but it will only work with superuser authority.
|
|
|
|
if ( geteuid() == 0 )
|
|
|
|
{
|
|
|
|
sysmp(MP_CLOCK, 0); // bind the timer only to CPU0
|
|
|
|
sysmp(MP_ISOLATE, 1 ); // Isolate CPU1
|
|
|
|
sysmp(MP_NONPREEMPTIVE, 1 ); // disable process time slicing on CPU1
|
|
|
|
}
|
2004-05-14 11:58:57 +00:00
|
|
|
#endif
|
|
|
|
|
2003-08-17 09:54:41 +00:00
|
|
|
// Enable floating-point exceptions for Windows
|
|
|
|
#if defined( _MSC_VER ) && defined( DEBUG )
|
|
|
|
// Christian, we should document what this does
|
|
|
|
_control87( _EM_INEXACT, _MCW_EM );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined( HAVE_BC5PLUS )
|
|
|
|
_control87(MCW_EM, MCW_EM); /* defined in float.h */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Keyboard focus hack
|
2003-10-19 19:15:41 +00:00
|
|
|
#if defined(__APPLE__) && !defined(OSX_BUNDLE)
|
2003-08-17 09:54:41 +00:00
|
|
|
{
|
|
|
|
PSN psn;
|
|
|
|
|
2004-03-31 21:10:32 +00:00
|
|
|
fgOSInit (&argc, argv);
|
2004-08-24 08:40:41 +00:00
|
|
|
_bootstrap_OSInit++;
|
2003-08-17 09:54:41 +00:00
|
|
|
|
|
|
|
CPSGetCurrentProcess(&psn);
|
|
|
|
CPSSetProcessName(&psn, "FlightGear");
|
|
|
|
CPSEnableFG(&psn);
|
|
|
|
CPSSetFrontProcess(&psn);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// FIXME: add other, more specific
|
|
|
|
// exceptions.
|
|
|
|
try {
|
2007-05-13 08:43:40 +00:00
|
|
|
std::set_terminate(fg_terminate);
|
2004-08-24 08:40:41 +00:00
|
|
|
atexit(fgExitCleanup);
|
2003-08-17 09:54:41 +00:00
|
|
|
fgMainInit(argc, argv);
|
2006-02-23 12:55:57 +00:00
|
|
|
} catch (const sg_throwable &t) {
|
2003-08-17 09:54:41 +00:00
|
|
|
// We must use cerr rather than
|
|
|
|
// logging, since logging may be
|
|
|
|
// disabled.
|
2005-06-12 16:01:49 +00:00
|
|
|
cerr << "Fatal error: " << t.getFormattedMessage() << endl;
|
|
|
|
if (!t.getOrigin().empty())
|
|
|
|
cerr << " (received from " << t.getOrigin() << ')' << endl;
|
|
|
|
|
2006-02-23 12:55:57 +00:00
|
|
|
} catch (const string &s) {
|
2006-02-23 08:32:27 +00:00
|
|
|
cerr << "Fatal error: " << s << endl;
|
|
|
|
|
2007-05-10 12:50:50 +00:00
|
|
|
} catch (const char *s) {
|
|
|
|
cerr << "Fatal error: " << s << endl;
|
|
|
|
|
2004-10-17 17:29:34 +00:00
|
|
|
} catch (...) {
|
|
|
|
cerr << "Unknown exception in the main loop. Aborting..." << endl;
|
2005-12-22 23:32:23 +00:00
|
|
|
if (errno)
|
|
|
|
perror("Possible cause");
|
2003-08-17 09:54:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-08-24 08:40:41 +00:00
|
|
|
// do some clean up on exit. Specifically we want to call alutExit()
|
|
|
|
// which happens in the sound manager destructor.
|
|
|
|
void fgExitCleanup() {
|
|
|
|
|
|
|
|
if (_bootstrap_OSInit != 0)
|
|
|
|
fgSetMouseCursor(MOUSE_CURSOR_POINTER);
|
|
|
|
|
2005-05-04 21:31:16 +00:00
|
|
|
delete globals;
|
2005-12-21 13:36:04 +00:00
|
|
|
|
|
|
|
if (free_hostname && hostname != NULL)
|
|
|
|
free(hostname);
|
2004-08-24 08:40:41 +00:00
|
|
|
}
|
2003-08-17 09:54:41 +00:00
|
|
|
|