]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_initializemaps.cpp
gear retract rate input line changes
[flightgear.git] / src / FDM / UIUCModel / uiuc_initializemaps.cpp
1 /********************************************************************** 
2  
3  FILENAME:     uiuc_initializemaps.cpp 
4
5 ---------------------------------------------------------------------- 
6
7  DESCRIPTION:  initializes the maps for various keywords 
8
9 ----------------------------------------------------------------------
10  
11  STATUS:       alpha version
12
13 ----------------------------------------------------------------------
14  
15  REFERENCES:   
16  
17 ----------------------------------------------------------------------
18  
19  HISTORY:      01/26/2000   initial release
20                04/08/2000   broke up into multiple map_xxxx functions
21                03/09/2001   (DPM) initialize gear map
22
23 ----------------------------------------------------------------------
24  
25  AUTHOR(S):    Bipin Sehgal       <bsehgal@uiuc.edu>
26                Jeff Scott         <jscott@mail.com>
27                David Megginson    <david@megginson.com>
28  
29 ----------------------------------------------------------------------
30  
31  VARIABLES:
32  
33 ----------------------------------------------------------------------
34  
35  INPUTS:       none
36  
37 ----------------------------------------------------------------------
38  
39  OUTPUTS:      none
40  
41 ----------------------------------------------------------------------
42  
43  CALLED BY:    uiuc_wrapper.cpp
44  
45 ----------------------------------------------------------------------
46  
47  CALLS TO:     none
48  
49 ----------------------------------------------------------------------
50  
51  COPYRIGHT:    (C) 2000 by Michael Selig
52  
53  This program is free software; you can redistribute it and/or
54  modify it under the terms of the GNU General Public License
55  as published by the Free Software Foundation.
56  
57  This program is distributed in the hope that it will be useful,
58  but WITHOUT ANY WARRANTY; without even the implied warranty of
59  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
60  GNU General Public License for more details.
61  
62  You should have received a copy of the GNU General Public License
63  along with this program; if not, write to the Free Software
64  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
65  USA or view http://www.gnu.org/copyleft/gpl.html.
66  
67 **********************************************************************/
68
69 #include "uiuc_initializemaps.h"
70
71
72 void uiuc_initializemaps()
73 {
74   uiuc_map_keyword();
75   uiuc_map_init();
76   uiuc_map_geometry();
77   uiuc_map_controlSurface();
78   uiuc_map_mass();
79   uiuc_map_engine();
80   uiuc_map_CD();
81   uiuc_map_CL();
82   uiuc_map_Cm();
83   uiuc_map_CY();
84   uiuc_map_Croll();
85   uiuc_map_Cn();
86   uiuc_map_gear();
87   uiuc_map_fog();
88   uiuc_map_ice();
89   uiuc_map_record1();
90   uiuc_map_record2();
91   uiuc_map_record3();
92   uiuc_map_record4();
93   uiuc_map_record5();
94   uiuc_map_record6();
95   uiuc_map_misc();
96 }
97
98 // end uiuc_initializemaps.cpp