]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_map_controlSurface.cpp
Updated Cameron's entry.
[flightgear.git] / src / FDM / UIUCModel / uiuc_map_controlSurface.cpp
1 /********************************************************************** 
2  
3  FILENAME:     uiuc_map_controlSurface.cpp 
4
5 ---------------------------------------------------------------------- 
6
7  DESCRIPTION:  initializes the control surface map
8
9 ----------------------------------------------------------------------
10  
11  STATUS:       alpha version
12
13 ----------------------------------------------------------------------
14  
15  REFERENCES:   
16  
17 ----------------------------------------------------------------------
18  
19  HISTORY:      04/08/2000   initial release
20                06/18/2001   Added aileron_input, rudder_input,
21                             pilot_elev_no, pilot_ail_no, and 
22                             pilot_rud_no
23
24 ----------------------------------------------------------------------
25  
26  AUTHOR(S):    Bipin Sehgal       <bsehgal@uiuc.edu>
27                Jeff Scott         <jscott@mail.com>
28                Robert Deters      <rdeters@uiuc.edu>
29  
30 ----------------------------------------------------------------------
31  
32  VARIABLES:
33  
34 ----------------------------------------------------------------------
35  
36  INPUTS:       none
37  
38 ----------------------------------------------------------------------
39  
40  OUTPUTS:      none
41  
42 ----------------------------------------------------------------------
43  
44  CALLED BY:    uiuc_initializemaps.cpp
45  
46 ----------------------------------------------------------------------
47  
48  CALLS TO:     none
49  
50 ----------------------------------------------------------------------
51  
52  COPYRIGHT:    (C) 2000 by Michael Selig
53  
54  This program is free software; you can redistribute it and/or
55  modify it under the terms of the GNU General Public License
56  as published by the Free Software Foundation.
57  
58  This program is distributed in the hope that it will be useful,
59  but WITHOUT ANY WARRANTY; without even the implied warranty of
60  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
61  GNU General Public License for more details.
62  
63  You should have received a copy of the GNU General Public License
64  along with this program; if not, write to the Free Software
65  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
66  USA or view http://www.gnu.org/copyleft/gpl.html.
67  
68 **********************************************************************/
69
70 #include "uiuc_map_controlSurface.h"
71
72
73 void uiuc_map_controlSurface()
74 {
75   controlSurface_map["de"]               = de_flag                  ;
76   controlSurface_map["da"]               = da_flag                  ;
77   controlSurface_map["dr"]               = dr_flag                  ;
78   controlSurface_map["set_Long_trim"]    = set_Long_trim_flag       ;
79   controlSurface_map["set_Long_trim_deg"]= set_Long_trim_deg_flag   ;
80   controlSurface_map["zero_Long_trim"]   = zero_Long_trim_flag      ;
81   controlSurface_map["elevator_step"]    = elevator_step_flag       ;
82   controlSurface_map["elevator_singlet"] = elevator_singlet_flag    ;
83   controlSurface_map["elevator_doublet"] = elevator_doublet_flag    ;
84   controlSurface_map["elevator_input"]   = elevator_input_flag      ;
85   controlSurface_map["aileron_input"]    = aileron_input_flag       ;
86   controlSurface_map["rudder_input"]     = rudder_input_flag        ;
87   controlSurface_map["pilot_elev_no"]    = pilot_elev_no_flag       ;
88   controlSurface_map["pilot_ail_no"]     = pilot_ail_no_flag        ;
89   controlSurface_map["pilot_rud_no"]     = pilot_rud_no_flag        ;
90 }
91
92 // end uiuc_map_controlSurface.cpp