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$
|
|
|
|
|
2018-08-11 09:09:11 +00:00
|
|
|
#include <config.h>
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2011-08-20 20:55:42 +00:00
|
|
|
#ifdef HAVE_WINDOWS_H
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
#if defined(__linux__)
|
|
|
|
// set link for setting _GNU_SOURCE before including fenv.h
|
|
|
|
// http://man7.org/linux/man-pages/man3/fenv.3.html
|
|
|
|
|
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <fenv.h>
|
2003-08-17 09:54:41 +00:00
|
|
|
#endif
|
|
|
|
|
2011-10-16 17:35:40 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
# include <unistd.h> // for gethostname()
|
|
|
|
#endif
|
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
#include <iostream>
|
2017-04-08 10:35:39 +00:00
|
|
|
#include <cerrno>
|
|
|
|
#include <csignal>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
|
|
|
#include <clocale>
|
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>
|
2017-01-28 23:07:23 +00:00
|
|
|
#include <simgear/scene/tgdb/GroundLightManager.hxx>
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2014-01-04 17:27:55 +00:00
|
|
|
#include <osg/BufferObject>
|
2021-03-13 18:48:03 +00:00
|
|
|
#include <osg/Texture>
|
2019-08-26 22:45:16 +00:00
|
|
|
#include <osg/Version>
|
2021-03-13 18:48:03 +00:00
|
|
|
#include <osgText/Font>
|
2014-01-04 17:27:55 +00:00
|
|
|
|
2003-08-17 09:54:41 +00:00
|
|
|
#include "main.hxx"
|
2021-06-18 11:04:10 +00:00
|
|
|
#include <GUI/MessageBox.hxx>
|
2017-06-14 17:26:38 +00:00
|
|
|
#include <Main/fg_init.hxx>
|
2013-11-06 23:49:58 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
2021-06-18 11:04:10 +00:00
|
|
|
#include <Main/globals.hxx>
|
|
|
|
#include <Main/options.hxx>
|
2020-04-07 08:38:54 +00:00
|
|
|
#include <Main/sentryIntegration.hxx>
|
2021-06-18 11:04:10 +00:00
|
|
|
#include <Navaids/NavDataCache.hxx>
|
|
|
|
#include <Viewer/fgviewer.hxx>
|
|
|
|
#include <flightgearBuildId.h>
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2004-03-31 21:10:32 +00:00
|
|
|
#include "fg_os.hxx"
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2017-06-07 15:25:19 +00:00
|
|
|
#if defined(HAVE_QT)
|
|
|
|
#include <GUI/QtLauncher.hxx>
|
|
|
|
#endif
|
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
using std::cerr;
|
|
|
|
using std::endl;
|
|
|
|
|
2012-08-21 16:07:47 +00:00
|
|
|
std::string homedir;
|
|
|
|
std::string hostname;
|
2005-12-21 13:36:04 +00:00
|
|
|
|
2012-04-21 07:38:41 +00:00
|
|
|
// forward declaration.
|
2004-08-24 08:40:41 +00:00
|
|
|
void fgExitCleanup();
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
static void initFPE(bool enableExceptions);
|
|
|
|
|
|
|
|
#if defined(__linux__)
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2011-07-17 17:31:28 +00:00
|
|
|
static void handleFPE(int);
|
2009-05-19 22:14:35 +00:00
|
|
|
static void
|
2014-02-19 21:53:52 +00:00
|
|
|
initFPE (bool fpeAbort)
|
2009-05-19 22:14:35 +00:00
|
|
|
{
|
|
|
|
if (fpeAbort) {
|
|
|
|
int except = fegetexcept();
|
|
|
|
feenableexcept(except | FE_DIVBYZERO | FE_INVALID);
|
|
|
|
} else {
|
|
|
|
signal(SIGFPE, handleFPE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handleFPE(int)
|
|
|
|
{
|
|
|
|
feclearexcept(FE_ALL_EXCEPT);
|
2014-02-19 21:53:52 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT, "Floating point interrupt (SIGFPE)");
|
2009-05-19 22:14:35 +00:00
|
|
|
signal(SIGFPE, handleFPE);
|
|
|
|
}
|
2014-02-19 21:53:52 +00:00
|
|
|
#elif defined (SG_WINDOWS)
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
static void initFPE(bool fpeAbort)
|
2003-08-17 09:54:41 +00:00
|
|
|
{
|
2014-02-19 21:53:52 +00:00
|
|
|
// Enable floating-point exceptions for Windows
|
|
|
|
if (fpeAbort) {
|
|
|
|
// set following link for what this does (note it does set SSE
|
|
|
|
// flags too, it's not just for the x87 FPU)
|
|
|
|
// http://msdn.microsoft.com/en-us/library/e9b52ceh.aspx
|
|
|
|
_control87( _EM_INEXACT, _MCW_EM );
|
|
|
|
}
|
2003-08-17 09:54:41 +00:00
|
|
|
}
|
|
|
|
|
2009-05-19 22:14:35 +00:00
|
|
|
#else
|
2014-02-19 21:53:52 +00:00
|
|
|
static void initFPE(bool)
|
2009-05-19 22:14:35 +00:00
|
|
|
{
|
2014-02-19 21:53:52 +00:00
|
|
|
// Ignore floating-point exceptions on FreeBSD, OS-X, other Unices
|
|
|
|
signal(SIGFPE, SIG_IGN);
|
2009-05-19 22:14:35 +00:00
|
|
|
}
|
2003-08-17 09:54:41 +00:00
|
|
|
#endif
|
|
|
|
|
2013-11-06 23:49:58 +00:00
|
|
|
#if defined(SG_WINDOWS)
|
2004-03-20 22:39:30 +00:00
|
|
|
int main ( int argc, char **argv );
|
|
|
|
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
2019-04-27 17:50:24 +00:00
|
|
|
LPSTR lpCmdLine, int nCmdShow)
|
|
|
|
{
|
|
|
|
// convert wchar_t args to UTF-8 which is what we expect cross-platform
|
|
|
|
int numArgs = 0;
|
|
|
|
LPWSTR* wideArgs = CommandLineToArgvW(GetCommandLineW(), &numArgs);
|
|
|
|
|
|
|
|
std::vector<char*> utf8Args;
|
2020-03-09 16:28:22 +00:00
|
|
|
utf8Args.resize(numArgs);
|
2019-04-27 17:50:24 +00:00
|
|
|
|
|
|
|
for (int a = 0; a < numArgs; ++a) {
|
|
|
|
const auto s = simgear::strutils::convertWStringToUtf8(wideArgs[a]);
|
|
|
|
// note we leak these (strudp calls malloc) but not a big concern
|
|
|
|
utf8Args[a] = strdup(s.c_str());
|
|
|
|
}
|
2004-03-20 22:39:30 +00:00
|
|
|
|
2019-04-27 17:50:24 +00:00
|
|
|
main(numArgs, utf8Args.data());
|
2004-03-20 22:39:30 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-30 11:29:51 +00:00
|
|
|
#if defined(__GNUC__)
|
|
|
|
#include <execinfo.h>
|
2017-01-30 14:58:09 +00:00
|
|
|
#include <cxxabi.h>
|
|
|
|
void segfault_handler(int signo) {
|
2017-01-30 11:29:51 +00:00
|
|
|
|
2017-01-30 14:58:09 +00:00
|
|
|
fprintf(stderr, "Error: caught signal %d:\n", signo);
|
2017-01-30 11:29:51 +00:00
|
|
|
|
2019-08-12 16:52:53 +00:00
|
|
|
#ifndef __OpenBSD__
|
2020-09-19 12:30:02 +00:00
|
|
|
void *array[128];
|
|
|
|
size_t size;
|
2017-01-30 14:58:09 +00:00
|
|
|
size = backtrace(array, 128);
|
|
|
|
if (size) {
|
|
|
|
char** list = backtrace_symbols(array, size);
|
|
|
|
size_t fnlen = 256;
|
|
|
|
char* fname = (char*)malloc(fnlen);
|
|
|
|
|
|
|
|
for (size_t i=1; i<size; i++) {
|
|
|
|
char *begin = 0, *offset = 0, *end = 0;
|
|
|
|
for (char *p = list[i]; *p; ++p) {
|
|
|
|
if (*p == '(') begin = p;
|
|
|
|
else if (*p == '+') offset = p;
|
|
|
|
else if (*p == ')' && offset) {
|
|
|
|
end = p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (begin && offset && end && begin<offset) {
|
|
|
|
*begin++ = '\0'; *offset++ = '\0'; *end = '\0';
|
|
|
|
|
|
|
|
int status;
|
|
|
|
char* ret = abi::__cxa_demangle(begin, fname, &fnlen, &status);
|
|
|
|
if (status == 0) {
|
|
|
|
fname = ret;
|
|
|
|
fprintf(stderr, " %s : %s+%s\n", list[i], fname, offset);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
fprintf(stderr, " %s : %s()+%s\n", list[i], begin, offset);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
fprintf(stderr, " %s\n", list[i]);
|
|
|
|
}
|
2017-01-30 11:29:51 +00:00
|
|
|
|
2017-01-30 14:58:09 +00:00
|
|
|
free(fname);
|
|
|
|
free(list);
|
2017-01-30 11:29:51 +00:00
|
|
|
}
|
2019-08-12 16:52:53 +00:00
|
|
|
#endif
|
2017-01-30 11:29:51 +00:00
|
|
|
|
2017-05-11 10:19:31 +00:00
|
|
|
std::abort();
|
2017-01-30 11:29:51 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-04-08 10:35:39 +00:00
|
|
|
[[noreturn]] static void fg_terminate()
|
2014-02-19 21:53:52 +00:00
|
|
|
{
|
2017-04-08 10:35:39 +00:00
|
|
|
cerr << "Running FlightGear's terminate handler. The program is going to "
|
|
|
|
"exit due to a fatal error condition, sorry." << std::endl;
|
|
|
|
std::abort();
|
2007-05-10 12:50:50 +00:00
|
|
|
}
|
|
|
|
|
2017-01-06 15:30:51 +00:00
|
|
|
// Detect SSE2 support for x86, it is always available for x86_64
|
|
|
|
#if defined(__i386__)
|
|
|
|
# if defined(SG_WINDOWS)
|
|
|
|
# include <intrin.h>
|
|
|
|
# define get_cpuid(a,b) __cpuid(a,b)
|
|
|
|
# else
|
|
|
|
# include <cpuid.h>
|
|
|
|
# define get_cpuid(a,b) __cpuid(b,a[0],a[1],a[2],a[3])
|
|
|
|
# endif
|
|
|
|
# define CPUID_GETFEATURES 1
|
|
|
|
# define CPUID_FEAT_EDX_SSE2 (1 << 26)
|
|
|
|
bool detectSIMD()
|
|
|
|
{
|
|
|
|
static int regs[4] = {0,0,0,0};
|
|
|
|
get_cpuid(regs, CPUID_GETFEATURES);
|
|
|
|
return (regs[3] & CPUID_FEAT_EDX_SSE2);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
bool detectSIMD() { return true; }
|
|
|
|
#endif
|
|
|
|
|
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.
|
2013-02-08 11:43:51 +00:00
|
|
|
int main ( int argc, char **argv )
|
|
|
|
{
|
2020-07-14 11:05:53 +00:00
|
|
|
// we don't want to accidently show a GUI box and block startup in
|
|
|
|
// non_GUI setups, so check this value early here, before options are
|
|
|
|
// processed
|
|
|
|
const bool headless = flightgear::Options::checkForArg(argc, argv, "disable-gui");
|
|
|
|
flightgear::setHeadlessMode(headless);
|
|
|
|
|
2017-01-06 15:30:51 +00:00
|
|
|
#ifdef ENABLE_SIMD
|
|
|
|
if (!detectSIMD()) {
|
2017-04-09 16:38:38 +00:00
|
|
|
flightgear::fatalMessageBoxThenExit(
|
|
|
|
"Fatal error",
|
|
|
|
"SSE2 support not detected, but this version of FlightGear requires "
|
|
|
|
"SSE2 hardware support.");
|
2017-01-06 15:30:51 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-11-06 23:49:58 +00:00
|
|
|
#if defined(SG_WINDOWS)
|
2011-08-20 20:55:42 +00:00
|
|
|
// Don't show blocking "no disk in drive" error messages on Windows 7,
|
|
|
|
// silently return errors to application instead.
|
|
|
|
// See Microsoft MSDN #ms680621: "GUI apps should specify SEM_NOOPENFILEERRORBOX"
|
|
|
|
SetErrorMode(SEM_NOOPENFILEERRORBOX);
|
|
|
|
|
2020-12-06 18:43:29 +00:00
|
|
|
std::cerr << "Boostrap-0" << std::endl;
|
2011-10-16 17:35:40 +00:00
|
|
|
hostname = ::getenv( "COMPUTERNAME" );
|
|
|
|
#else
|
|
|
|
// Unix(alike) systems
|
|
|
|
char _hostname[256];
|
|
|
|
gethostname(_hostname, 256);
|
2012-04-21 07:38:41 +00:00
|
|
|
hostname = _hostname;
|
2011-10-16 17:35:40 +00:00
|
|
|
signal(SIGPIPE, SIG_IGN);
|
2010-08-06 07:06:32 +00:00
|
|
|
#endif
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2017-01-06 15:30:51 +00:00
|
|
|
_bootstrap_OSInit = 0;
|
2020-04-07 08:38:54 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_SENTRY)
|
2020-12-06 18:43:29 +00:00
|
|
|
std::cerr << "Will init sentry" << std::endl;
|
2020-08-17 12:10:12 +00:00
|
|
|
flightgear::initSentry();
|
2020-12-06 18:43:29 +00:00
|
|
|
std::cerr << "Did init sentry" << std::endl;
|
2020-04-07 08:38:54 +00:00
|
|
|
#endif
|
2004-08-24 08:40:41 +00:00
|
|
|
|
2020-04-07 08:38:54 +00:00
|
|
|
// if we're not using the normal crash-reported, install our
|
2020-08-04 22:58:24 +00:00
|
|
|
// custom segfault handler on Linux, in debug builds.
|
|
|
|
// NB On OpenBSD this seems to lose info about where the signal
|
|
|
|
// happened, so is disabled.
|
|
|
|
#if !defined(SG_WINDOWS) && !defined(NDEBUG) && !defined(__OpenBSD__)
|
2020-04-07 08:38:54 +00:00
|
|
|
if (!flightgear::isSentryEnabled()) {
|
|
|
|
signal(SIGSEGV, segfault_handler);
|
|
|
|
}
|
2014-01-18 14:50:31 +00:00
|
|
|
#endif
|
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
initFPE(flightgear::Options::checkForArg(argc, argv, "enable-fpe"));
|
2020-12-06 18:43:29 +00:00
|
|
|
std::cerr << "Did init FPE" << std::endl;
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2016-02-02 20:44:46 +00:00
|
|
|
// pick up all user locale settings, but force C locale for numerical/sorting
|
|
|
|
// conversions because we have lots of code which assumes standard
|
|
|
|
// formatting
|
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
setlocale(LC_NUMERIC, "C");
|
|
|
|
setlocale(LC_COLLATE, "C");
|
|
|
|
|
2017-06-14 17:26:38 +00:00
|
|
|
if (flightgear::Options::checkForArg(argc, argv, "uninstall")) {
|
|
|
|
return fgUninstall();
|
|
|
|
}
|
2020-10-29 13:44:52 +00:00
|
|
|
|
|
|
|
std::cerr << "Boostrap-1" << std::endl;
|
2017-06-14 17:26:38 +00:00
|
|
|
|
2014-02-19 21:53:52 +00:00
|
|
|
bool fgviewer = flightgear::Options::checkForArg(argc, argv, "fgviewer");
|
2017-04-10 00:16:08 +00:00
|
|
|
int exitStatus = EXIT_FAILURE;
|
2003-08-17 09:54:41 +00:00
|
|
|
try {
|
2013-10-15 21:02:36 +00:00
|
|
|
// http://code.google.com/p/flightgear-bugs/issues/detail?id=1231
|
|
|
|
// ensure sglog is inited before atexit() is registered, so logging
|
|
|
|
// is possible inside fgExitCleanup
|
|
|
|
sglog();
|
2015-11-03 21:28:46 +00:00
|
|
|
|
|
|
|
|
2019-08-26 22:45:16 +00:00
|
|
|
#if OSG_VERSION_LESS_THAN(3, 5, 0)
|
2014-01-04 17:27:55 +00:00
|
|
|
// similar to above, ensure some static maps inside OSG exist before
|
|
|
|
// we register our at-exit handler, otherwise the statics are gone
|
|
|
|
// when fg_terminate runs, which causes crashes.
|
|
|
|
osg::Texture::getTextureObjectManager(0);
|
|
|
|
osg::GLBufferObjectManager::getGLBufferObjectManager(0);
|
2021-03-13 18:48:03 +00:00
|
|
|
|
|
|
|
// ensure this is called early (and hence deleted) late,
|
|
|
|
// otherwise fgExitCleanup crahses: see
|
|
|
|
// Sentry FLIGHTEAR-M68
|
|
|
|
osgText::Font::getDefaultFont();
|
2015-11-03 21:28:46 +00:00
|
|
|
#endif
|
2007-05-13 08:43:40 +00:00
|
|
|
std::set_terminate(fg_terminate);
|
2004-08-24 08:40:41 +00:00
|
|
|
atexit(fgExitCleanup);
|
2020-10-29 13:44:52 +00:00
|
|
|
|
|
|
|
std::cerr << "Boostrap-2" << std::endl;
|
|
|
|
|
2017-04-10 00:16:08 +00:00
|
|
|
if (fgviewer) {
|
|
|
|
exitStatus = fgviewerMain(argc, argv);
|
|
|
|
} else {
|
|
|
|
exitStatus = fgMainInit(argc, argv);
|
|
|
|
}
|
2017-02-27 23:15:07 +00:00
|
|
|
|
2006-02-23 12:55:57 +00:00
|
|
|
} catch (const sg_throwable &t) {
|
2013-11-06 23:49:58 +00:00
|
|
|
std::string info;
|
2009-06-16 08:41:17 +00:00
|
|
|
if (std::strlen(t.getOrigin()) != 0)
|
2013-11-06 23:49:58 +00:00
|
|
|
info = std::string("received from ") + t.getOrigin();
|
2017-04-09 16:38:38 +00:00
|
|
|
flightgear::fatalMessageBoxWithoutExit(
|
|
|
|
"Fatal exception", t.getFormattedMessage(), info);
|
2013-03-04 22:13:36 +00:00
|
|
|
} catch (const std::exception &e ) {
|
2017-04-09 16:38:38 +00:00
|
|
|
flightgear::fatalMessageBoxWithoutExit("Fatal exception", e.what());
|
2012-08-21 16:07:47 +00:00
|
|
|
} catch (const std::string &s) {
|
2017-04-09 16:38:38 +00:00
|
|
|
flightgear::fatalMessageBoxWithoutExit("Fatal exception", s);
|
2020-06-24 14:47:56 +00:00
|
|
|
} catch (const flightgear::FatalErrorException&) {
|
|
|
|
// we already showed the message box, just carry on to exit
|
2007-05-10 12:50:50 +00:00
|
|
|
} catch (const char *s) {
|
2014-02-19 21:53:52 +00:00
|
|
|
std::cerr << "Fatal error (const char*): " << s << std::endl;
|
2008-07-17 21:32:20 +00:00
|
|
|
} catch (...) {
|
2020-08-23 16:41:34 +00:00
|
|
|
flightgear::sentryReportException("Unknown main loop exception");
|
2014-02-19 21:53:52 +00:00
|
|
|
std::cerr << "Unknown exception in the main loop. Aborting..." << std::endl;
|
2005-12-22 23:32:23 +00:00
|
|
|
if (errno)
|
|
|
|
perror("Possible cause");
|
2008-07-17 21:32:20 +00:00
|
|
|
}
|
2003-08-17 09:54:41 +00:00
|
|
|
|
2017-06-07 15:25:19 +00:00
|
|
|
#if defined(HAVE_QT)
|
|
|
|
flightgear::shutdownQtApp();
|
|
|
|
#endif
|
2017-04-10 00:16:08 +00:00
|
|
|
return exitStatus;
|
2003-08-17 09:54:41 +00:00
|
|
|
}
|
|
|
|
|
2012-08-21 16:07:47 +00:00
|
|
|
// do some clean up on exit. Specifically we want to delete the sound-manager,
|
|
|
|
// so OpenAL device and context are released cleanly
|
2004-08-24 08:40:41 +00:00
|
|
|
void fgExitCleanup() {
|
|
|
|
|
2014-01-04 17:27:55 +00:00
|
|
|
if (_bootstrap_OSInit != 0) {
|
2004-08-24 08:40:41 +00:00
|
|
|
fgSetMouseCursor(MOUSE_CURSOR_POINTER);
|
2014-01-04 17:27:55 +00:00
|
|
|
fgOSCloseWindow();
|
|
|
|
}
|
2017-02-27 23:15:07 +00:00
|
|
|
|
2021-06-18 11:04:10 +00:00
|
|
|
flightgear::NavDataCache::shutdown();
|
|
|
|
|
2017-06-07 15:25:19 +00:00
|
|
|
// you might imagine we'd call shutdownQtApp here, but it's not safe to do
|
|
|
|
// so in an atexit handler, and crashes on Mac. Thiago states this explicitly:
|
|
|
|
// https://bugreports.qt.io/browse/QTBUG-48709
|
|
|
|
|
2013-10-15 21:02:36 +00:00
|
|
|
// on the common exit path globals is already deleted, and NULL,
|
|
|
|
// so this only happens on error paths.
|
2005-05-04 21:31:16 +00:00
|
|
|
delete globals;
|
2017-01-28 23:07:23 +00:00
|
|
|
// avoid crash on exit (https://sourceforge.net/p/flightgear/codetickets/1935/)
|
|
|
|
simgear::GroundLightManager::instance()->getRunwayLightStateSet()->clear();
|
|
|
|
simgear::GroundLightManager::instance()->getTaxiLightStateSet()->clear();
|
|
|
|
simgear::GroundLightManager::instance()->getGroundLightStateSet()->clear();
|
2016-06-09 10:04:24 +00:00
|
|
|
|
|
|
|
simgear::shutdownLogging();
|
2020-04-07 08:38:54 +00:00
|
|
|
flightgear::shutdownSentry();
|
2004-08-24 08:40:41 +00:00
|
|
|
}
|