zkv1000 / Nasal / softkeys.nas /
Newer Older
132 lines | 4.605kb
commit initial
Sébastien MARQUE authored on 2017-03-07
1
var softkeysClass = {
softkeys are available now
Sébastien MARQUE authored on 2017-03-14
2
    new : func (device, node, role) {
commit initial
Sébastien MARQUE authored on 2017-03-07
3
        var m = { parents: [ softkeysClass ] };
4
        m.node = node;
softkeys are available now
Sébastien MARQUE authored on 2017-03-14
5
        m.device = device;
commit initial
Sébastien MARQUE authored on 2017-03-07
6
        m.role = role;
softkeys are available now
Sébastien MARQUE authored on 2017-03-14
7
        m.path = [];
commit initial
Sébastien MARQUE authored on 2017-03-07
8
        return m;
9
    },
10

            
softkeys are available now
Sébastien MARQUE authored on 2017-03-14
11
    clean : func {
12
        # deletes unsed bindings
fix commit récédent un peu r...
Sébastien MARQUE authored on 2017-03-14
13
        foreach (var b; keys(me.bindings))
14
            if (b != me.role)
15
                delete(me.bindings, b);
commit initial
Sébastien MARQUE authored on 2017-03-07
16
    },
17

            
softkeys are available now
Sébastien MARQUE authored on 2017-03-14
18
    SoftKey : func (n, a) {
19
        # released key not yet managed
20
        if (a == 1)
21
            return;
22

            
23
        var key = me.device.display.screenElements[sprintf("SoftKey%02i-text",n)].get('text');
24
        if (key == '' or key == nil)
25
            return;
26

            
27
        var path = keyMap[me.role];
28
        foreach(var p; me.path) {
29
            if (contains(path, p))
30
                path = path[p];
31
            else
32
                break;
commit initial
Sébastien MARQUE authored on 2017-03-07
33
        }
34

            
softkeys are available now
Sébastien MARQUE authored on 2017-03-14
35
        var bindings = me.bindings[me.role];
36
        foreach(var p; me.path) {
37
            if (contains(bindings, p))
38
                bindings = bindings[p];
39
            else
40
                break;
commit initial
Sébastien MARQUE authored on 2017-03-07
41
        }
42

            
softkeys are available now
Sébastien MARQUE authored on 2017-03-14
43
        if (contains(path, key)) {
44
            append(me.path, key);
45
            me.device.display.updateSoftKeys();
commit initial
Sébastien MARQUE authored on 2017-03-07
46
        }
softkeys are available now
Sébastien MARQUE authored on 2017-03-14
47
        elsif (contains(bindings, key)) {
48
            call(bindings[key], [], me);
commit initial
Sébastien MARQUE authored on 2017-03-07
49
        }
softkeys are available now
Sébastien MARQUE authored on 2017-03-14
50
        elsif (key == 'BACK') {
51
            pop(me.path);
52
            me.device.display.updateSoftKeys();
commit initial
Sébastien MARQUE authored on 2017-03-07
53
        }
softkeys are available now
Sébastien MARQUE authored on 2017-03-14
54
        else
55
            print(me.device.role ~ '/' ~ key ~ ' : not yet implemented');
56
    },
57

            
58
    bindings : {
59
        PFD : {
60
            INSET: {
61
                OFF: func {
62
                    pop(me.path);
63
                    me.device.display.updateSoftKeys();
64
                },
65
            },
66
            PFD: {
67
                'STD BARO': func {
68
                    pop(me.path);
69
                    me.device.display.updateSoftKeys();
70
                },
adds OAT, TAS, GSPD, WindDat...
Sébastien MARQUE authored on 2017-03-15
71
                'AOA/WIND' : {
72
                    WIND : {
73
                        OPTN1 : func {
74
                            me.device.display._winddata_optn = 1;
75
                            me.device.display.screenElements['WindData'].show();
76
                            me.device.display.screenElements['WindData-OPTN1'].show();
77
                            me.device.display.screenElements['WindData-OPTN1-HDG'].show();
78
                            me.device.display.screenElements['WindData-OPTN2'].hide();
79
                            me.device.display.updateWindData();
80
                        },
81
                        OPTN2 : func {
82
                            me.device.display._winddata_optn = 2;
83
                            me.device.display.screenElements['WindData'].show();
84
                            me.device.display.screenElements['WindData-OPTN1'].hide();
85
                            me.device.display.screenElements['WindData-OPTN2'].show();
86
                            me.device.display.screenElements['WindData-OPTN2-symbol'].show();
87
                            me.device.display.screenElements['WindData-OPTN2-headwind'].show();
88
                            me.device.display.screenElements['WindData-OPTN2-crosswind'].show();
89
                            me.device.display.updateWindData();
90
                        },
91
                        OFF : func {
92
                            me.device.display._winddata_optn = 0;
93
                            me.device.display.screenElements['WindData'].hide();
94
                            me.device.display.screenElements['WindData-OPTN1'].hide();
95
                            me.device.display.screenElements['WindData-OPTN2'].hide();
96
                        },
97
                    },
98
                },
softkeys are available now
Sébastien MARQUE authored on 2017-03-14
99
            },
100
            XPDR: {
101
                CODE: {
102
                    IDENT: func {
103
                        me.path = [];
104
                        me.device.display.updateSoftKeys();
105
                    },
106
                    BACK: func {
107
                        me.path = [];
108
                        me.device.display.updateSoftKeys();
109
                    },
110
                },
111
            },
112
        },
113
        MFD : {
114
            ENGINE: {
115
                FUEL: {
116
                    UNDO: func {
117
                        pop(me.path);
118
                        me.device.display.updateSoftKeys();
119
                    },
120
                    ENTER: func {
121
                        pop(me.path);
122
                        me.device.display.updateSoftKeys();
123
                    },
124
                },
125
                ENGINE: func {
126
                    me.path = [];
127
                    me.device.display.updateSoftKeys();
128
                },
129
            },
130
        },
commit initial
Sébastien MARQUE authored on 2017-03-07
131
    },
132
};