]> git.mxchange.org Git - flightgear.git/blob - src/Aircraft/aircraft.hxx
Fix my mailing address by replacing it with my web page.
[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., 675 Mass Ave, Cambridge, MA 02139, 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 <Controls/controls.hxx>
37 #include <Main/fg_init.hxx>
38
39
40 // Define a structure containing all the parameters for an aircraft
41 typedef struct{
42     FGInterface *fdm_state;
43     FGControls *controls;
44 } fgAIRCRAFT ;
45
46
47 // current_aircraft contains all the parameters of the aircraft
48 // currently being operated.
49 extern fgAIRCRAFT current_aircraft;
50
51
52 // Initialize an Aircraft structure
53 void fgAircraftInit( void );
54
55
56 // Display various parameters to stdout
57 void fgAircraftOutputCurrent(fgAIRCRAFT *a);
58
59
60 // Read the list of available aircraft into to property tree
61 void fgReadAircraft(void);
62 bool fgLoadAircraft (const SGPropertyNode * arg);
63
64 #endif // _AIRCRAFT_HXX
65