1 //*************************************************************************
2 // aircraft.hxx -- define shared aircraft parameters
4 // Written by Curtis Olson, started May 1997.
6 // Copyright (C) 1997 Curtis L. Olson - http://www.flightgear.org/~curt
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 //*************************************************************************/
33 // Define a structure containing all the parameters for an aircraft
35 FGInterface *fdm_state;
40 // current_aircraft contains all the parameters of the aircraft
41 // currently being operated.
42 extern fgAIRCRAFT current_aircraft;
45 // Initialize an Aircraft structure
46 void fgAircraftInit( void );
49 // Display various parameters to stdout
50 void fgAircraftOutputCurrent(fgAIRCRAFT *a);
53 // Read the list of available aircraft into to property tree
54 void fgReadAircraft(void);
55 bool fgLoadAircraft (const SGPropertyNode * arg);
57 #endif // _AIRCRAFT_HXX