summaryrefslogtreecommitdiff
path: root/js/codeq/robot.js
blob: d4fcfcfac1bad7ff96ee0f9583763e474b66b901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/* CodeQ: an online programming tutor.
   Copyright (C) 2015 UL FRI

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.

This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
details.

You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */

/**
 * The robot state of the state machine. When it is entered it'll prepare the code editor and load a sub-state machine which represents the 3 different parts of the screen.
 */

(function() {
    var subScreens, //this will be the actual (sub)state machine
        stateNameTag = 'stateName', //a tag for data which is added to some html elements
        jqScreen = $('#screen_robot'), // the screen container element
        //quadrants
        jqDescription = jqScreen.find('.block1'),
        jqCode = jqScreen.find('.block2'),
        jqConsole = jqScreen.find('.block3'),
        jqInfo = jqScreen.find('.block4'),
        jqAllQuadrants = jqDescription.add(jqCode).add(jqConsole).add(jqInfo), // all the quadrants
        // buttons
        jqBtnPlan = jqScreen.find('.btn-plan'),
        jqBtnHint = jqScreen.find('.btn-hint').ladda(),
        jqBtnRun = jqScreen.find('.btn-run'),
        jqBtnStop = jqScreen.find('.btn-stop'),
        jqInfoButtons = jqBtnPlan.add(jqBtnHint), // all info-focusing buttons
        jqAllButtons = jqInfoButtons.add(jqBtnRun).add(jqBtnStop), // all buttons
        // misc
        currentSubState = null,
        transitionEventName = 'mousedown',//event name of the event which will trigger the transition between these substates - the most common transition at least (there are some corner cases on the hint and test buttons -> see the code below)
        substates = {
            'description': {
                'enter': function () {
                    currentSubState = 'block1';
                    jqScreen.addClass(currentSubState);
                },
                'exit': function () {
                    jqScreen.removeClass(currentSubState);
                    currentSubState = null;
                }
            },
            'code': {
                'enter': function () {
                    currentSubState = 'block2';
                    jqScreen.addClass(currentSubState);
                },
                'exit': function () {
                    jqScreen.removeClass(currentSubState);
                    currentSubState = null;
                }
            },
            'info': {
                'enter': function () {
                    currentSubState = 'block4';
                    jqScreen.addClass(currentSubState);
                },
                'exit': function () {
                    jqScreen.removeClass(currentSubState);
                    currentSubState = null;
                }
            },
            'console': {
                'enter': function () {
                    currentSubState = 'block3';
                    jqScreen.addClass(currentSubState);
                },
                'exit': function () {
                    jqScreen.removeClass(currentSubState);
                    currentSubState = null;
                }
            }
        };
    var robotHandler; //created when we enter the robot state and destroyed once we leave it
    codeq.globalStateMachine.register('robot', {
        'enter': function (problemDef, commonDef, currentSolution) {
            $('#navigation-problem_list').css('display', '');
            $("#navigation-robot").addClass("active");
            $('#navigation-robot').css('display', '');

            jqScreen.css('display', '');//we have to show the screen now so the code editor shows its initial values correctly
            robotHandler = createRobotHandler(problemDef, commonDef, currentSolution);
            subScreens = codeq.makeStateMachine(substates);
            subScreens.transition(jqDescription.data(stateNameTag));
/*            Q.delay(100).then(function(){
             jqAllQuadrants.addClass('transition');//for smooth animations - need to be delayed, because otherwise we get some weird "animations" while the page is loading
             }).done();*/
            jqInfoButtons.on(transitionEventName, function (event) {
                subScreens.transition('info'); // set focus on the hints quadrant
                event.stopPropagation(); // don't allow the event to go on and trigger further transition
            });
            jqBtnRun.on(transitionEventName, function (event) {
                subScreens.transition('console'); // set focus on the hints quadrant
                event.stopPropagation(); // don't allow the event to go on and trigger further transition
            });

            jqAllQuadrants.on(transitionEventName, function () {
                subScreens.transition($(this).data(stateNameTag));
            });
        },
        'exit': function () {
            jqAllButtons.off(); // unregister all event handlers
            jqAllQuadrants.off();
            jqScreen.css('display', 'none');
//            jqAllQuadrants.removeClass('transition');
            robotHandler.destroy();
            robotHandler = null;
            subScreens.destroy();
            subScreens = null;
            jqScreen.addClass('block1');

            $('#navigation-problem_list').css('display', 'none');
            $("#navigation-robot").removeClass("active");
            $('#navigation-robot').css('display', 'none');
        }
    });

    jqDescription.data(stateNameTag, 'description');
    jqCode.data(stateNameTag, 'code');
    jqConsole.data(stateNameTag, 'console');
    jqInfo.data(stateNameTag, 'info');

    // a constant
    var firstCharacterPos = {'line': 0, 'ch': 0};

    var makeRobotTerminalHandler = function (jqConsole, editor, problem_id, activityHandler) {
        var terminal = codeq.makeConsole(jqConsole, {
                'greeting': 'Robot messages\n--------------\n\n',
            });
        terminal.inputDisable();
        return terminal;
    };

    codeq.on('init', function (args) {
        codeq.tr.registerDictionary('robot', codeq.tr.emptyDictionary); // to make the translator happy, when this screen is not active
    });

    var createRobotHandler = function (problemDef, commonDef, currentSolution) {
        var jqDescriptionContent = jqDescription.find('.description'),
            jqEditor = jqCode.find('.code_editor'),
            jqTerminal = jqConsole.find('.console'),
            jqHints = jqInfo.find('.hints'),
            jqStatus = jqConsole.find('.status'),
            editor = codeq.makeEditor(jqEditor[0],
                {
                    mode: 'python',
                    indentUnit: 4,
                    value: currentSolution || ''
                },
                function () {
                    jqBtnRun.focus();
                }),
            activityHandler = codeq.makeActivityHandler(editor, problemDef.id),
            terminal = makeRobotTerminalHandler(jqTerminal, editor, problemDef.id, activityHandler),
            hinter = codeq.makeHinter(jqHints, jqEditor, editor, 'robot_hints', problemDef, commonDef),
            commError = function (error) {
                alert(error);
            },
            reconnectTimer = null,
            url = 'ws://' + codeq.settings['robot_address'] + ':8000/',
            socket = eio(url);

        // set up the websocket events
        socket.on('close', function (data) {
            console.log('websocket closed, trying to reopen in 1 s');
            jqStatus.html('Not connected.');
            reconnectTimer = setTimeout(function () {
                reconnectTimer = null;
                socket.open();
            }, 1000);
        });
        socket.on('message', function(data) {
            //console.log('Received: ' + data);
            var json_obj = JSON.parse(data),
                sensors, sensor, text = '';
            if (json_obj.event == 'update') {
                sensors = json_obj.sensors;
                for (sensor in sensors) {
                    if (!sensors.hasOwnProperty(sensor)) continue;
                    text += sensor + ': ' + sensors[sensor] + '<br />\n'
                }
                jqStatus.html(text);
            }
            else if (json_obj.event == 'output') {
                text = json_obj.text;
                terminal.append(text, 'output');
            }
        });

        codeq.tr.registerDictionary('robot', problemDef.translations);
        codeq.tr.translateDom(jqScreen);
        jqBtnPlan.prop('disabled', !hinter.hasNextPlan());

        editor.on('change', function (instance, changeObj) {
            var doc = editor.getDoc(),
                pos = codeq.codePointCount(doc.getRange(firstCharacterPos, changeObj.from)),
                text;

            text = changeObj.removed.join('\n');
            if (text) {
                activityHandler.queueTrace({'typ': 'rm', 'off': pos, 'txt': text});
            }

            text = changeObj.text.join('\n');
            if (text) {
                activityHandler.queueTrace({'typ': 'ins', 'off': pos, 'txt': text});
            }
        });

        jqBtnPlan.on('click', function () {
            activityHandler.queueTrace({'typ': 'plan'});
            if (!hinter.planNext()) {
                jqBtnPlan.prop('disabled', true).blur();
            }
        });
        jqBtnHint.on('click', function () {
            editor.setOption('readOnly', true);
            jqBtnHint.ladda('start');
            codeq.comms.sendHint({
                'language': 'robot',
                'program': editor.getDoc().getValue(),
                'problem_id': problemDef.id
            })
            .then(function (data) {
                if (data.code === 0) {
                    activityHandler.queueTrace({'typ': 'hint', 'feedback': data.hints});
                    hinter.handle(data.hints);
                }
                else {
                    commError('error: ' + data.message);
                }
            })
            .fail(commError)
            .fin(function () {
                editor.setOption('readOnly', false);
                jqBtnHint.ladda('stop');
            })
            .done();
        });
        jqBtnRun.on('click', function () {
            var program = editor.getDoc().getValue();
            activityHandler.queueTrace({'typ': 'robot_run', 'program': program});
            socket.send(JSON.stringify({action: 'run', program: program}));
            terminal.append('<run>\n', 'output');
        });
        jqBtnStop.on('click', function () {
            activityHandler.queueTrace({'typ': 'robot_stop'});
            socket.send(JSON.stringify({action: 'stop'}));
            terminal.append('<stop>\n', 'output');
        });

        codeq.comms.loadProblem(problemDef.id).done();
        activityHandler.queueTrace({
            'typ': 'open',
            'time': Date.now(),
            'content': editor.getDoc().getValue()
        });

        return {
            destroy: function () {
                codeq.comms.endProblem().done();

                if (socket) {
                    socket.off('close');
                    socket.off('message');
                    socket.close();
                    socket = null;
                }
                if (reconnectTimer !== null) {
                    clearTimeout(reconnectTimer);
                    reconnectTimer = null;
                }

                $('#screen_robot .title').text('');//empty the title text
                jqAllButtons.off();
                editor.off('change');
                activityHandler.queueTrace({'typ': 'close'});
                activityHandler.flush();
                hinter.destroy();
                jqDescriptionContent.empty();
                jqEditor.empty(); // TODO: perhaps you do not want to "free" the editor, just empty it
                jqDescriptionContent = null;
                jqEditor = null;
                jqHints = null;
                codeq.tr.registerDictionary('robot', codeq.tr.emptyDictionary);
            }
        };
    };
})();