]> git.mxchange.org Git - flightgear.git/blob - src/Aircraft/aircraft.hxx
Forward port from CVS/PLIB: Use a more memory allocation efficient 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
30 #ifndef __cplusplus                                                          
31 # error This library requires C++
32 #endif                                   
33
34
35 #include <FDM/flight.hxx>
36 #include <Main/fg_init.hxx>
37
38 #include "controls.hxx"
39
40
41 // Define a structure containing all the parameters for an aircraft
42 typedef struct{
43     FGInterface *fdm_state;
44     FGControls *controls;
45 } fgAIRCRAFT ;
46
47
48 // current_aircraft contains all the parameters of the aircraft
49 // currently being operated.
50 extern fgAIRCRAFT current_aircraft;
51
52
53 // Initialize an Aircraft structure
54 void fgAircraftInit( void );
55
56
57 // Display various parameters to stdout
58 void fgAircraftOutputCurrent(fgAIRCRAFT *a);
59
60
61 // Read the list of available aircraft into to property tree
62 void fgReadAircraft(void);
63 bool fgLoadAircraft (const SGPropertyNode * arg);
64
65 #endif // _AIRCRAFT_HXX
66