]> git.mxchange.org Git - flightgear.git/blob - src/Aircraft/aircraft.hxx
Merge branch 'curt/replay'
[flightgear.git] / src / Aircraft / aircraft.hxx
1 //*************************************************************************
2 // aircraft.hxx -- define shared aircraft parameters
3 //
4 // Written by Curtis Olson, started May 1997.
5 //
6 // Copyright (C) 1997  Curtis L. Olson  - http://www.flightgear.org/~curt
7 //
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.
12 //
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.
17 //
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.
21 //
22 // $Id$
23 //*************************************************************************/
24
25
26 #ifndef _AIRCRAFT_HXX
27 #define _AIRCRAFT_HXX
28                                  
29 class FGInterface;
30 class FGControls;
31 class SGPropertyNode;
32
33 // Define a structure containing all the parameters for an aircraft
34 typedef struct{
35     FGInterface *fdm_state;
36     FGControls *controls;
37 } fgAIRCRAFT ;
38
39
40 // current_aircraft contains all the parameters of the aircraft
41 // currently being operated.
42 extern fgAIRCRAFT current_aircraft;
43
44
45 // Initialize an Aircraft structure
46 void fgAircraftInit( void );
47
48
49 // Display various parameters to stdout
50 void fgAircraftOutputCurrent(fgAIRCRAFT *a);
51
52
53 // Read the list of available aircraft into to property tree
54 void fgReadAircraft(void);
55 bool fgLoadAircraft (const SGPropertyNode * arg);
56
57 #endif // _AIRCRAFT_HXX
58