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>
|
2003-03-29 15:04:52 +00:00
|
|
|
#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>
|
2003-03-29 15:04:52 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
|
|
|
#include <simgear/misc/commands.hxx>
|
|
|
|
#include <simgear/misc/exception.hxx>
|
2000-02-15 03:30:01 +00:00
|
|
|
|
2001-07-22 19:51:16 +00:00
|
|
|
#include <Main/globals.hxx>
|
2003-03-29 15:04:52 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
2003-03-30 12:49:05 +00:00
|
|
|
#include <Main/viewmgr.hxx>
|
|
|
|
#include <Cockpit/panel.hxx>
|
|
|
|
#include <Cockpit/hud.hxx>
|
|
|
|
#include <Cockpit/panel_io.hxx>
|
|
|
|
#include <Model/acmodel.hxx>
|
|
|
|
#include <Autopilot/newauto.hxx>
|
2003-03-29 15:04:52 +00:00
|
|
|
#include <Main/fgfs.hxx>
|
2001-07-22 19:51:16 +00:00
|
|
|
|
1998-10-16 23:26:44 +00:00
|
|
|
#include "aircraft.hxx"
|
1997-05-16 15:58:23 +00:00
|
|
|
|
2003-03-29 15:04:52 +00:00
|
|
|
|
1998-10-17 01:33:52 +00:00
|
|
|
// This is a record containing all the info for the aircraft currently
|
|
|
|
// being operated
|
1998-02-07 15:29:31 +00:00
|
|
|
fgAIRCRAFT current_aircraft;
|
|
|
|
|
|
|
|
|
1998-10-17 01:33:52 +00:00
|
|
|
// Initialize an Aircraft structure
|
1998-02-07 15:29:31 +00:00
|
|
|
void fgAircraftInit( void ) {
|
2001-03-24 06:03:11 +00:00
|
|
|
SG_LOG( SG_AIRCRAFT, SG_INFO, "Initializing Aircraft structure" );
|
1998-02-07 15:29:31 +00:00
|
|
|
|
1999-10-11 23:09:07 +00:00
|
|
|
current_aircraft.fdm_state = cur_fdm_state;
|
2001-07-22 19:51:16 +00:00
|
|
|
current_aircraft.controls = globals->get_controls();
|
1998-02-07 15:29:31 +00:00
|
|
|
}
|
1997-12-10 22:37:34 +00:00
|
|
|
|
|
|
|
|
1998-10-17 01:33:52 +00:00
|
|
|
// Display various parameters to stdout
|
1998-02-07 15:29:31 +00:00
|
|
|
void fgAircraftOutputCurrent(fgAIRCRAFT *a) {
|
1999-02-05 21:28:09 +00:00
|
|
|
FGInterface *f;
|
1997-05-16 15:58:23 +00:00
|
|
|
|
1998-12-05 15:53:59 +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()
|
1998-11-06 21:17:31 +00:00
|
|
|
<< ") (Phi,Theta,Psi)=("
|
1998-12-03 01:14:58 +00:00
|
|
|
<< f->get_Phi() << ","
|
|
|
|
<< f->get_Theta() << ","
|
|
|
|
<< f->get_Psi() << ")" );
|
1998-10-25 14:08:37 +00:00
|
|
|
|
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()
|
2001-07-22 19:51:16 +00:00
|
|
|
<< " 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
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-29 15:04:52 +00:00
|
|
|
// Show available aircraft types
|
|
|
|
void fgReadAircraft(void) {
|
|
|
|
|
2003-05-06 23:46:24 +00:00
|
|
|
// SGPropertyNode *aircraft_types = fgGetNode("/sim/aircraft-types", true);
|
2003-03-29 15:04:52 +00:00
|
|
|
|
|
|
|
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) {
|
2003-05-06 23:46:24 +00:00
|
|
|
SGPropertyNode *aircraft =
|
2003-03-29 15:04:52 +00:00
|
|
|
aircraft_types->getChild(dire->d_name, 0, true);
|
|
|
|
|
|
|
|
aircraft->setStringValue(strdup(desc->getStringValue()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ulCloseDir(dirp);
|
|
|
|
|
|
|
|
globals->get_commands()->addCommand("load-aircraft", fgLoadAircraft);
|
|
|
|
}
|
|
|
|
|
2003-08-11 08:50:30 +00:00
|
|
|
static bool
|
2003-03-29 15:04:52 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2003-03-30 12:49:05 +00:00
|
|
|
// TODO:
|
|
|
|
// remove electrical system
|
2003-03-29 15:04:52 +00:00
|
|
|
cur_fdm_state->unbind();
|
|
|
|
|
2003-03-30 12:49:05 +00:00
|
|
|
// Save the selected aircraft model since restoreInitialState
|
|
|
|
// will obverwrite it.
|
|
|
|
//
|
2003-03-29 15:04:52 +00:00
|
|
|
string aircraft = fgGetString("/sim/aircraft", "");
|
|
|
|
globals->restoreInitialState();
|
|
|
|
|
2003-03-30 12:49:05 +00:00
|
|
|
fgSetString("/sim/aircraft", aircraft.c_str());
|
|
|
|
fgSetString("/sim/panel/path", "Aircraft/c172/Panels/c172-vfr-panel.xml");
|
|
|
|
|
2003-03-29 15:04:52 +00:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
2003-03-30 12:49:05 +00:00
|
|
|
// Initialize the (new) 2D panel.
|
|
|
|
//
|
|
|
|
string panel_path = fgGetString("/sim/panel/path",
|
|
|
|
"Aircraft/c172/Panels/c172-vfr-panel.xml");
|
|
|
|
|
|
|
|
FGPanel *panel = fgReadPanel(panel_path);
|
|
|
|
if (panel == 0) {
|
|
|
|
SG_LOG( SG_INPUT, SG_ALERT,
|
|
|
|
"Error reading new panel from " << panel_path );
|
|
|
|
} else {
|
|
|
|
SG_LOG( SG_INPUT, SG_INFO, "Loaded new panel from " << panel_path );
|
|
|
|
globals->get_current_panel()->unbind();
|
|
|
|
delete globals->get_current_panel();
|
|
|
|
globals->set_current_panel( panel );
|
|
|
|
globals->get_current_panel()->init();
|
|
|
|
globals->get_current_panel()->bind();
|
|
|
|
globals->get_current_panel()->update(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load the new 3D model
|
|
|
|
//
|
|
|
|
globals->get_aircraft_model()->unbind();
|
|
|
|
delete globals->get_aircraft_model();
|
|
|
|
globals->set_aircraft_model(new FGAircraftModel);
|
|
|
|
globals->get_aircraft_model()->init();
|
|
|
|
globals->get_aircraft_model()->bind();
|
|
|
|
|
|
|
|
// TODO:
|
|
|
|
// load new electrical system
|
2003-03-29 15:04:52 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
// update our position based on current presets
|
|
|
|
fgInitPosition();
|
|
|
|
|
2003-03-30 12:49:05 +00:00
|
|
|
// Update the HUD
|
|
|
|
fgHUDInit(¤t_aircraft);
|
|
|
|
|
2003-03-29 15:04:52 +00:00
|
|
|
SGTime *t = globals->get_time_params();
|
|
|
|
delete t;
|
|
|
|
t = fgInitTime();
|
|
|
|
globals->set_time_params( t );
|
|
|
|
|
2003-03-30 12:49:05 +00:00
|
|
|
// Reinitialize some subsystems
|
|
|
|
//
|
|
|
|
globals->get_viewmgr()->reinit();
|
|
|
|
globals->get_controls()->reset_all();
|
|
|
|
globals->get_autopilot()->reset();
|
|
|
|
globals->get_aircraft_model()->reinit();
|
|
|
|
globals->get_subsystem("fx")->reinit();
|
|
|
|
|
2003-03-29 15:04:52 +00:00
|
|
|
fgReInitSubsystems();
|
|
|
|
|
|
|
|
if ( !freeze ) {
|
|
|
|
fgSetBool("/sim/freeze/master", false);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|