1
0
Fork 0
flightgear/src/Aircraft/aircraft.cxx

197 lines
5.3 KiB
C++
Raw Normal View History

1998-10-17 01:33:52 +00:00
// aircraft.cxx -- various aircraft routines
//
// Written by Curtis Olson, started May 1997.
//
// Copyright (C) 1997 Curtis L. Olson - curt@infoplane.com
//
// 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
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
// $Id$
1997-05-16 15:58:23 +00:00
#include <stdio.h>
#include <string.h> // strdup
#include <plib/ul.h>
#include <plib/ssg.h>
1997-05-16 15:58:23 +00:00
2000-02-15 03:30:01 +00:00
#include <simgear/constants.h>
2000-02-16 23:01:03 +00:00
#include <simgear/debug/logstream.hxx>
#include <simgear/misc/sg_path.hxx>
#include <simgear/misc/commands.hxx>
#include <simgear/misc/exception.hxx>
2000-02-15 03:30:01 +00:00
#include <Main/globals.hxx>
#include <Main/fg_props.hxx>
#include <Main/fgfs.hxx>
1998-10-16 23:26:44 +00:00
#include "aircraft.hxx"
1997-05-16 15:58:23 +00:00
extern void fgInitFDM(void);
class FGFX;
1998-10-17 01:33:52 +00:00
// This is a record containing all the info for the aircraft currently
// being operated
fgAIRCRAFT current_aircraft;
1998-10-17 01:33:52 +00:00
// Initialize an Aircraft structure
void fgAircraftInit( void ) {
2001-03-24 06:03:11 +00:00
SG_LOG( SG_AIRCRAFT, SG_INFO, "Initializing Aircraft structure" );
1999-10-11 23:09:07 +00:00
current_aircraft.fdm_state = cur_fdm_state;
current_aircraft.controls = globals->get_controls();
}
1998-10-17 01:33:52 +00:00
// Display various parameters to stdout
void fgAircraftOutputCurrent(fgAIRCRAFT *a) {
FGInterface *f;
1997-05-16 15:58:23 +00:00
f = a->fdm_state;
1997-05-16 15:58:23 +00:00
2001-03-24 06:03:11 +00:00
SG_LOG( SG_FLIGHT, SG_DEBUG,
2001-05-23 20:57:25 +00:00
"Pos = ("
2001-03-24 04:48:44 +00:00
<< (f->get_Longitude() * 3600.0 * SGD_RADIANS_TO_DEGREES) << ","
<< (f->get_Latitude() * 3600.0 * SGD_RADIANS_TO_DEGREES) << ","
1998-12-03 01:14:58 +00:00
<< f->get_Altitude()
<< ") (Phi,Theta,Psi)=("
1998-12-03 01:14:58 +00:00
<< f->get_Phi() << ","
<< f->get_Theta() << ","
<< f->get_Psi() << ")" );
2001-03-24 06:03:11 +00:00
SG_LOG( SG_FLIGHT, SG_DEBUG,
1998-12-03 01:14:58 +00:00
"Kts = " << f->get_V_equiv_kts()
<< " Elev = " << globals->get_controls()->get_elevator()
<< " Aileron = " << globals->get_controls()->get_aileron()
<< " Rudder = " << globals->get_controls()->get_rudder()
<< " Power = " << globals->get_controls()->get_throttle( 0 ) );
1997-05-16 15:58:23 +00:00
}
// Show available aircraft types
void fgReadAircraft(void) {
SGPropertyNode *aircraft_types = fgGetNode("/sim/aircraft-types", true);
SGPath path( globals->get_fg_root() );
path.append("Aircraft");
ulDirEnt* dire;
ulDir *dirp;
dirp = ulOpenDir(path.c_str());
if (dirp == NULL) {
SG_LOG( SG_AIRCRAFT, SG_ALERT, "Unable to open aircraft directory." );
ulCloseDir(dirp);
return;
}
while ((dire = ulReadDir(dirp)) != NULL) {
char *ptr;
if ((ptr = strstr(dire->d_name, "-set.xml")) && strlen(ptr) == 8) {
*ptr = '\0';
#if 0
SGPath afile = path;
afile.append(dire->d_name);
SGPropertyNode root;
try {
readProperties(afile.str(), &root);
} catch (...) {
continue;
}
SGPropertyNode *node = root.getNode("sim");
if (node) {
SGPropertyNode *desc = node->getNode("description");
if (desc) {
#endif
SGPropertyNode *aircraft =
aircraft_types->getChild(dire->d_name, 0, true);
#if 0
aircraft->setStringValue(strdup(desc->getStringValue()));
}
}
#endif
}
}
ulCloseDir(dirp);
globals->get_commands()->addCommand("load-aircraft", fgLoadAircraft);
}
static inline bool
fgLoadAircraft (const SGPropertyNode * arg)
{
static const SGPropertyNode *master_freeze
= fgGetNode("/sim/freeze/master");
bool freeze = master_freeze->getBoolValue();
if ( !freeze ) {
fgSetBool("/sim/freeze/master", true);
}
cur_fdm_state->unbind();
string aircraft = fgGetString("/sim/aircraft", "");
globals->restoreInitialState();
if ( aircraft.size() > 0 ) {
SGPath aircraft_path(globals->get_fg_root());
aircraft_path.append("Aircraft");
aircraft_path.append(aircraft);
aircraft_path.concat("-set.xml");
SG_LOG(SG_INPUT, SG_INFO, "Reading default aircraft: " << aircraft
<< " from " << aircraft_path.str());
try {
readProperties(aircraft_path.str(), globals->get_props());
} catch (const sg_exception &e) {
string message = "Error reading default aircraft: ";
message += e.getFormattedMessage();
SG_LOG(SG_INPUT, SG_ALERT, message);
exit(2);
}
} else {
SG_LOG(SG_INPUT, SG_ALERT, "No default aircraft specified");
}
// Update the FDM
//
fgSetString("/sim/aircraft", aircraft.c_str());
fgInitFDM();
// update our position based on current presets
fgInitPosition();
SGTime *t = globals->get_time_params();
delete t;
t = fgInitTime();
globals->set_time_params( t );
fgReInitSubsystems();
if ( !freeze ) {
fgSetBool("/sim/freeze/master", false);
}
return true;
}