]> git.mxchange.org Git - flightgear.git/blob - src/FDM/YASim/ControlMap.hpp
Renamed /velocities/side-slip-rad to /orientation/side-slip-rad.
[flightgear.git] / src / FDM / YASim / ControlMap.hpp
1 #ifndef _CONTROL_MAP_HPP
2 #define _CONTROL_MAP_HPP
3
4 #include "Vector.hpp"
5
6 namespace yasim {
7
8 class ControlMap {
9 public:
10     ~ControlMap();
11
12     enum OutputType { THROTTLE, MIXTURE, STARTER, MAGNETOS,
13                       ADVANCE, REHEAT, PROP,
14                       BRAKE, STEER, EXTEND,
15                       INCIDENCE, FLAP0, FLAP1, SLAT, SPOILER, VECTOR,
16                       BOOST, CASTERING };
17
18     enum { OPT_SPLIT  = 0x01,
19            OPT_INVERT = 0x02,
20            OPT_SQUARE = 0x04 };
21
22     // Returns a new, not-yet-used "input handle" for addMapping and
23     // setInput.  This typically corresponds to one user axis.
24     int newInput();
25
26     // Adds a mapping to between input handle and a particular setting
27     // on an output object.  The value of output MUST match the type
28     // of object!
29     void addMapping(int input, int output, void* object, int options=0);
30
31     // An additional form to specify a mapping range.  Input values
32     // outside of [src0:src1] are clamped, and are then mapped to
33     // [dst0:dst1] before being set on the object.
34     void addMapping(int input, int output, void* object, int options,
35                     float src0, float src1, float dst0, float dst1);
36
37     // Resets our accumulated input values.  Call before any
38     // setInput() invokations.
39     void reset();
40
41     // Sets the specified input (as returned by newInput) to the
42     // specified value.
43     void setInput(int input, float value);
44
45     // Calculates and applies the settings received since the last reset().
46     void applyControls(float dt);
47
48     // Returns the input/output range appropriate for the given
49     // control.  Ailerons go from -1 to 1, while throttles are never
50     // lower than zero, etc...
51     static float rangeMin(int type);
52     static float rangeMax(int type);
53
54     // Each output record is identified by both an object/type tuple
55     // and a numeric handle.
56     int getOutputHandle(void* obj, int type);
57
58     // Sets the transition time for the control output to swing
59     // through its full range.
60     void setTransitionTime(int handle, float time);
61
62     // Retrieves the current value of the control output.  Controls
63     // with OPT_SPLIT settable on inputs will have a separately
64     // computed "right side" value.
65     float getOutput(int handle);
66     float getOutputR(int handle);
67
68 private:
69     struct OutRec { int type; void* object; Vector maps;
70                     float oldL, oldR, time; };
71     struct MapRec  { OutRec* out; int idx; int opt; float val;
72                      float src0; float src1; float dst0; float dst1; };
73
74     // A list of (sub)Vectors containing a bunch of MapRec objects for
75     // each input handle.
76     Vector _inputs;
77
78     // An unordered list of output settings.
79     Vector _outputs;
80 };
81
82 }; // namespace yasim
83 #endif // _CONTROL_MAP_HPP