remove macintosh (note: not MacOS-X) and MWERKS workarounds.
This commit is contained in:
parent
4bb77f71d4
commit
4b40e725cd
27 changed files with 1 additions and 123 deletions
|
@ -479,10 +479,6 @@ bool FGFDMExec::LoadModel(string model, bool addModelToPath)
|
||||||
|
|
||||||
modelName = model; // Set the class modelName attribute
|
modelName = model; // Set the class modelName attribute
|
||||||
|
|
||||||
# ifdef macintosh
|
|
||||||
separator = ";";
|
|
||||||
# endif
|
|
||||||
|
|
||||||
if( AircraftPath.empty() || EnginePath.empty() || SystemsPath.empty()) {
|
if( AircraftPath.empty() || EnginePath.empty() || SystemsPath.empty()) {
|
||||||
cerr << "Error: attempted to load aircraft with undefined ";
|
cerr << "Error: attempted to load aircraft with undefined ";
|
||||||
cerr << "aircraft, engine, and system paths" << endl;
|
cerr << "aircraft, engine, and system paths" << endl;
|
||||||
|
|
|
@ -311,6 +311,7 @@ void FGJSBsim::init()
|
||||||
9.0/5.0*(temperature->getDoubleValue()+273.15) );
|
9.0/5.0*(temperature->getDoubleValue()+273.15) );
|
||||||
Atmosphere->SetExPressure(pressure->getDoubleValue()*70.726566);
|
Atmosphere->SetExPressure(pressure->getDoubleValue()*70.726566);
|
||||||
Atmosphere->SetExDensity(density->getDoubleValue());
|
Atmosphere->SetExDensity(density->getDoubleValue());
|
||||||
|
Atmosphere->SetTurbType(FGAtmosphere::ttCulp);
|
||||||
Atmosphere->SetTurbGain(turbulence_gain->getDoubleValue());
|
Atmosphere->SetTurbGain(turbulence_gain->getDoubleValue());
|
||||||
Atmosphere->SetTurbRate(turbulence_rate->getDoubleValue());
|
Atmosphere->SetTurbRate(turbulence_rate->getDoubleValue());
|
||||||
|
|
||||||
|
|
|
@ -826,10 +826,6 @@ bool FGInitialCondition::Load(string rstfile, bool useStoredPath)
|
||||||
int n;
|
int n;
|
||||||
|
|
||||||
string sep = "/";
|
string sep = "/";
|
||||||
# ifdef macintosh
|
|
||||||
sep = ";";
|
|
||||||
# endif
|
|
||||||
|
|
||||||
if( useStoredPath ) {
|
if( useStoredPath ) {
|
||||||
init_file_name = fdmex->GetFullAircraftPath() + sep + rstfile + ".xml";
|
init_file_name = fdmex->GetFullAircraftPath() + sep + rstfile + ".xml";
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -205,10 +205,8 @@ FGfdmSocket::FGfdmSocket(int port)
|
||||||
|
|
||||||
FGfdmSocket::~FGfdmSocket()
|
FGfdmSocket::~FGfdmSocket()
|
||||||
{
|
{
|
||||||
#ifndef macintosh
|
|
||||||
if (sckt) shutdown(sckt,2);
|
if (sckt) shutdown(sckt,2);
|
||||||
if (sckt_in) shutdown(sckt_in,2);
|
if (sckt_in) shutdown(sckt_in,2);
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __BORLANDC__
|
#ifdef __BORLANDC__
|
||||||
WSACleanup();
|
WSACleanup();
|
||||||
|
|
|
@ -308,9 +308,6 @@ bool FGAerodynamics::Load(Element *element)
|
||||||
Element *temp_element, *axis_element, *function_element;
|
Element *temp_element, *axis_element, *function_element;
|
||||||
|
|
||||||
string separator = "/";
|
string separator = "/";
|
||||||
#ifdef macintosh
|
|
||||||
separator = ";";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
fname = element->GetAttributeValue("file");
|
fname = element->GetAttributeValue("file");
|
||||||
if (!fname.empty()) {
|
if (!fname.empty()) {
|
||||||
|
|
|
@ -116,9 +116,6 @@ bool FGBuoyantForces::Load(Element *element)
|
||||||
Debug(2);
|
Debug(2);
|
||||||
|
|
||||||
string separator = "/";
|
string separator = "/";
|
||||||
#ifdef macintosh
|
|
||||||
separator = ";";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
fname = element->GetAttributeValue("file");
|
fname = element->GetAttributeValue("file");
|
||||||
if (!fname.empty()) {
|
if (!fname.empty()) {
|
||||||
|
|
|
@ -494,9 +494,6 @@ bool FGFCS::Load(Element* el, SystemType systype)
|
||||||
Components=0;
|
Components=0;
|
||||||
|
|
||||||
string separator = "/";
|
string separator = "/";
|
||||||
#ifdef macintosh
|
|
||||||
separator = ";";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// ToDo: The handling of name and file attributes could be improved, here,
|
// ToDo: The handling of name and file attributes could be improved, here,
|
||||||
// considering that a name can be in the external file, as well.
|
// considering that a name can be in the external file, as well.
|
||||||
|
@ -649,9 +646,6 @@ string FGFCS::FindSystemFullPathname(string system_filename)
|
||||||
ifstream system_file;
|
ifstream system_file;
|
||||||
|
|
||||||
string separator = "/";
|
string separator = "/";
|
||||||
# ifdef macintosh
|
|
||||||
separator = ";";
|
|
||||||
# endif
|
|
||||||
|
|
||||||
fullpath = systemPath + separator;
|
fullpath = systemPath + separator;
|
||||||
localpath = aircraftPath + separator + "Systems" + separator;
|
localpath = aircraftPath + separator + "Systems" + separator;
|
||||||
|
@ -680,9 +674,6 @@ ifstream* FGFCS::FindSystemFile(string system_filename)
|
||||||
ifstream* system_file = new ifstream();
|
ifstream* system_file = new ifstream();
|
||||||
|
|
||||||
string separator = "/";
|
string separator = "/";
|
||||||
# ifdef macintosh
|
|
||||||
separator = ";";
|
|
||||||
# endif
|
|
||||||
|
|
||||||
fullpath = systemPath + separator;
|
fullpath = systemPath + separator;
|
||||||
localpath = aircraftPath + separator + "Systems" + separator;
|
localpath = aircraftPath + separator + "Systems" + separator;
|
||||||
|
|
|
@ -885,9 +885,6 @@ bool FGOutput::Load(Element* element)
|
||||||
Element *property_element;
|
Element *property_element;
|
||||||
|
|
||||||
string separator = "/";
|
string separator = "/";
|
||||||
# ifdef macintosh
|
|
||||||
separator = ";";
|
|
||||||
# endif
|
|
||||||
|
|
||||||
if (!DirectivesFile.empty()) { // A directives filename from the command line overrides
|
if (!DirectivesFile.empty()) { // A directives filename from the command line overrides
|
||||||
output_file_name = DirectivesFile; // one found in the config file.
|
output_file_name = DirectivesFile; // one found in the config file.
|
||||||
|
|
|
@ -336,9 +336,6 @@ string FGPropulsion::FindEngineFullPathname(string engine_filename)
|
||||||
ifstream engine_file;
|
ifstream engine_file;
|
||||||
|
|
||||||
string separator = "/";
|
string separator = "/";
|
||||||
# ifdef macintosh
|
|
||||||
separator = ";";
|
|
||||||
# endif
|
|
||||||
|
|
||||||
fullpath = enginePath + separator;
|
fullpath = enginePath + separator;
|
||||||
localpath = aircraftPath + separator + "Engines" + separator;
|
localpath = aircraftPath + separator + "Engines" + separator;
|
||||||
|
@ -367,9 +364,6 @@ ifstream* FGPropulsion::FindEngineFile(string engine_filename)
|
||||||
ifstream* engine_file = new ifstream();
|
ifstream* engine_file = new ifstream();
|
||||||
|
|
||||||
string separator = "/";
|
string separator = "/";
|
||||||
# ifdef macintosh
|
|
||||||
separator = ";";
|
|
||||||
# endif
|
|
||||||
|
|
||||||
fullpath = enginePath + separator;
|
fullpath = enginePath + separator;
|
||||||
localpath = aircraftPath + separator + "Engines" + separator;
|
localpath = aircraftPath + separator + "Engines" + separator;
|
||||||
|
|
|
@ -254,10 +254,6 @@ bool FGEngine::LoadThruster(Element *thruster_element)
|
||||||
FGColumnVector3 location, orientation;
|
FGColumnVector3 location, orientation;
|
||||||
string separator = "/";
|
string separator = "/";
|
||||||
|
|
||||||
# ifdef macintosh
|
|
||||||
separator = ";";
|
|
||||||
# endif
|
|
||||||
|
|
||||||
fullpath = enginePath + separator;
|
fullpath = enginePath + separator;
|
||||||
localpath = aircraftPath + separator + "Engines" + separator;
|
localpath = aircraftPath + separator + "Engines" + separator;
|
||||||
|
|
||||||
|
|
|
@ -159,11 +159,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -73,11 +73,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -75,11 +75,6 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
|
|
||||||
#if defined( __MWERKS__ )
|
|
||||||
// -dw- optimizer chokes (big-time) trying to optimize humongous
|
|
||||||
// loop/switch statements
|
|
||||||
#pragma optimization_level 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
Loading…
Add table
Reference in a new issue