]> git.mxchange.org Git - flightgear.git/blob - Controls/controls.h
C++ - ifing the code a bit.
[flightgear.git] / Controls / controls.h
1 /**************************************************************************
2  * controls.h -- defines a standard interface to all flight sim controls
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  * (Log is kept at end of this file)
24  **************************************************************************/
25
26
27 #ifndef _CONTROLS_H
28 #define _CONTROLS_H
29
30
31 #include <Include/fg_limits.h>
32
33
34 #ifdef __cplusplus                                                          
35 extern "C" {                            
36 #endif                                   
37
38
39 /* Define a structure containing the control parameters */
40
41 typedef struct {
42     double aileron;
43     double elevator;
44     double elevator_trim;
45     double rudder;
46     double throttle[FG_MAX_ENGINES];
47 } fgCONTROLS, *pfgControls;
48
49
50 #define FG_Elevator     c->elevator
51 #define FG_Aileron      c->aileron
52 #define FG_Rudder       c->rudder
53 #define FG_Throttle     c->throttle
54 #define FG_Throttle_All -1
55 #define FG_Elev_Trim    c->elevator_trim
56
57 /* 
58 #define Left_button     cockpit_.left_pb_on_stick
59 #define Right_button    cockpit_.right_pb_on_stick
60 #define First_trigger   cockpit_.trig_pos_1
61 #define Second_trigger  cockpit_.trig_pos_2
62 #define Left_trim       cockpit_.left_trim
63 #define Right_trim      cockpit_.right_trim
64 #define SB_extend       cockpit_.sb_extend
65 #define SB_retract      cockpit_.sb_retract
66 #define Gear_sel_up     cockpit_.gear_sel_up 
67 */
68
69
70 extern fgCONTROLS cur_control_params;
71
72 void fgControlsInit( void );
73
74 void fgElevMove(double amt);
75 void fgElevSet(double pos);
76 void fgElevTrimMove(double amt);
77 void fgElevTrimSet(double pos);
78 void fgAileronMove(double amt);
79 void fgAileronSet(double pos);
80 void fgRudderMove(double amt);
81 void fgRudderSet(double pos);
82 void fgThrottleMove(int engine, double amt);
83 void fgThrottleSet(int engine, double pos);
84
85
86 #ifdef __cplusplus
87 }
88 #endif
89
90
91 #endif /* _CONTROLS_H */
92
93
94 /* $Log$
95 /* Revision 1.14  1998/04/22 13:26:19  curt
96 /* C++ - ifing the code a bit.
97 /*
98  * Revision 1.13  1998/04/21 17:02:35  curt
99  * Prepairing for C++ integration.
100  *
101  * Revision 1.12  1998/02/09 22:56:48  curt
102  * Removed "depend" files from cvs control.  Other minor make tweaks.
103  *
104  * Revision 1.11  1998/02/07 15:29:36  curt
105  * Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
106  * <chotchkiss@namg.us.anritsu.com>
107  *
108  * Revision 1.10  1998/01/27 00:47:52  curt
109  * Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
110  * system and commandline/config file processing code.
111  *
112  * Revision 1.9  1998/01/22 02:59:31  curt
113  * Changed #ifdef FILE_H to #ifdef _FILE_H
114  *
115  * Revision 1.8  1998/01/19 18:40:22  curt
116  * Tons of little changes to clean up the code and to remove fatal errors
117  * when building with the c++ compiler.
118  *
119  * Revision 1.7  1997/12/15 23:54:36  curt
120  * Add xgl wrappers for debugging.
121  * Generate terrain normals on the fly.
122  *
123  * Revision 1.6  1997/12/10 22:37:41  curt
124  * Prepended "fg" on the name of all global structures that didn't have it yet.
125  * i.e. "struct WEATHER {}" became "struct fgWEATHER {}"
126  *
127  * Revision 1.5  1997/08/27 03:30:02  curt
128  * Changed naming scheme of basic shared structures.
129  *
130  * Revision 1.4  1997/07/23 21:52:18  curt
131  * Put comments around the text after an #endif for increased portability.
132  *
133  * Revision 1.3  1997/05/31 19:16:27  curt
134  * Elevator trim added.
135  *
136  * Revision 1.2  1997/05/23 15:40:33  curt
137  * Added GNU copyright headers.
138  *
139  * Revision 1.1  1997/05/16 15:59:48  curt
140  * Initial revision.
141  *
142  */