]> git.mxchange.org Git - flightgear.git/blob - src/Aircraft/aircraft.hxx
source tree reorganization prior to flightgear 0.7
[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  - curt@infoplane.com
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
38
39 // Define a structure containing all the parameters for an aircraft
40 typedef struct{
41     FGInterface   *fdm_state;
42     FGControls *controls;
43 } fgAIRCRAFT ;
44
45
46 // current_aircraft contains all the parameters of the aircraft
47 // currently being operated.
48 extern fgAIRCRAFT current_aircraft;
49
50
51 // Initialize an Aircraft structure
52 void fgAircraftInit( void );
53
54
55 // Display various parameters to stdout
56 void fgAircraftOutputCurrent(fgAIRCRAFT *a);
57
58
59 #endif // _AIRCRAFT_HXX
60
61