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