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>
|
|
|
|
|
1998-10-16 23:26:44 +00:00
|
|
|
#include "aircraft.hxx"
|
1998-11-06 21:17:31 +00:00
|
|
|
#include <Debug/logstream.hxx>
|
1998-01-27 00:47:41 +00:00
|
|
|
#include <Include/fg_constants.h>
|
1997-05-16 15:58:23 +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 ) {
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_AIRCRAFT, FG_INFO, "Initializing Aircraft structure" );
|
1998-02-07 15:29:31 +00:00
|
|
|
|
1998-12-05 15:53:59 +00:00
|
|
|
current_aircraft.fdm_state = &cur_fdm_state;
|
1998-10-25 14:08:37 +00:00
|
|
|
current_aircraft.controls = &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
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_FLIGHT, FG_DEBUG,
|
|
|
|
"Pos = ("
|
1998-12-03 01:14:58 +00:00
|
|
|
<< (f->get_Longitude() * 3600.0 * RAD_TO_DEG) << ","
|
|
|
|
<< (f->get_Latitude() * 3600.0 * RAD_TO_DEG) << ","
|
|
|
|
<< 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
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_FLIGHT, FG_DEBUG,
|
1998-12-03 01:14:58 +00:00
|
|
|
"Kts = " << f->get_V_equiv_kts()
|
1998-11-06 21:17:31 +00:00
|
|
|
<< " Elev = " << controls.get_elevator()
|
|
|
|
<< " Aileron = " << controls.get_aileron()
|
|
|
|
<< " Rudder = " << controls.get_rudder()
|
|
|
|
<< " Power = " << controls.get_throttle( 0 ) );
|
1997-05-16 15:58:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|