forked from google/blockly-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep-execution.html
254 lines (231 loc) · 8.19 KB
/
step-execution.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Blockly Demo: Step Execution with JS-Interpreter</title>
<script src="toolbox.js"></script>
<!-- acorn_interpreter.js is copied from the JS-Interpreter project
without modification. -->
<script src="acorn_interpreter.js"></script>
<script src="./node_modules/blockly/blockly_compressed.js"></script>
<script src="./node_modules/blockly/blocks_compressed.js"></script>
<script src="./node_modules/blockly/javascript_compressed.js"></script>
<script src="./node_modules/blockly/msg/en.js"></script>
<style>
body {
background-color: #fff;
font-family: sans-serif;
}
h1 {
font-weight: normal;
font-size: 140%;
}
</style>
</head>
<body>
<h1>Step Execution with JS-Interpreter</h1>
<p>This is a demo of executing code step-by-step with a sandboxed JavaScript interpreter.</p>
<p>The generator's <code>Blockly.JavaScript.STATEMENT_PREFIX</code> is assigned
<code>'highlightBlock(%1);\n'</code>, where <code>%1</code> is the block ID.
The call to <code>highlightBlock()</code> will highlight the identified block
and set the variable <code>highlightPause</code> to <code>true</code>.</p>
<p>Each press of the "Step JavaScript" button will run the interpreter one
step after another until <code>highlightPause</code> is true.
That is, until <code>highlightBlock()</code> has highlighted the block that
will be executed on the next step.</p>
<p>→ <a href="https://developers.google.com/blockly/guides/app-integration/running-javascript#js-interpreter">More info on running code with JS-Interpreter</a></p>
<p>
<button onclick="stepCode()" id="stepButton">Step JavaScript</button>
</p>
<div style="width: 100%">
<div id="blocklyDiv"
style="display: inline-block; height: 480px; width: 58%"></div>
<textarea id="output" disabled="disabled"
style="display: inline-block; height: 480px; width: 38%;">
</textarea>
</div>
<script>
const startBlocks = {
"blocks": {
"blocks": [
{
"type": "variables_set",
"x": 20,
"y": 20,
"inline": true,
"fields": {
"VAR": {"id": "n"}
},
"inputs": {
"VALUE": {
"block": {
"type": "math_number",
"fields": {"NUM": 1}
}
}
},
"next": {
"block": {
"type": "controls_repeat_ext",
"inline": true,
"inputs": {
"TIMES": {
"block": {
"type": "math_number",
"fields": {"NUM": 4}
}
},
"DO": {
"block": {
"type": "variables_set",
"inline": true,
"fields": {
"VAR": {"id": "n"}
},
"inputs": {
"VALUE": {
"block": {
"type": "math_arithmetic",
"fields": {"OP": "MULTIPLY"},
"inputs": {
"A": {
"block": {
"type": "variables_get",
"fields": {
"VAR": {"id": "n"}
}
}
},
"B": {
"block": {
"type": "math_number",
"fields": {"NUM": 2}
}
}
}
}
}
},
"next": {
"block": {
"type": "text_print",
"inputs": {
"TEXT": {
"block": {
"type": "variables_get",
"fields": {
"VAR": {"id": "n"}
}
}
}
}
}
}
}
}
}
}
}
}
]
},
"variables": [
{
"name": "n",
"id": "n"
}
]
};
const demoWorkspace = Blockly.inject('blocklyDiv',
{media: './node_modules/blockly/media/',
toolbox: toolboxJson});
Blockly.JavaScript.STATEMENT_PREFIX = 'highlightBlock(%1);\n';
Blockly.JavaScript.addReservedWords('highlightBlock');
Blockly.serialization.workspaces.load(startBlocks, demoWorkspace)
const outputArea = document.getElementById('output');
const stepButton = document.getElementById('stepButton');
let myInterpreter = null;
function initApi(interpreter, globalObject) {
// Add an API function for the alert() block, generated for "text_print" blocks.
const wrapperAlert = function alert(text) {
text = arguments.length ? text : '';
outputArea.value += '\n' + text;
};
interpreter.setProperty(globalObject, 'alert',
interpreter.createNativeFunction(wrapperAlert));
// Add an API function for the prompt() block.
const wrapperPrompt = function prompt(text) {
return window.prompt(text);
};
interpreter.setProperty(globalObject, 'prompt',
interpreter.createNativeFunction(wrapperPrompt));
// Add an API function for highlighting blocks.
const wrapperHighlight = function(id) {
id = String(id || '');
return highlightBlock(id);
};
interpreter.setProperty(globalObject, 'highlightBlock',
interpreter.createNativeFunction(wrapperHighlight));
}
// Each step will run the interpreter until the highlightPause is true.
let highlightPause = false;
function highlightBlock(id) {
demoWorkspace.highlightBlock(id);
highlightPause = true;
}
function resetStepUi(clearOutput) {
demoWorkspace.highlightBlock(null);
highlightPause = false;
if (clearOutput) {
outputArea.value = 'Program output:\n=================';
}
myInterpreter = null;
}
function stepCode() {
if (!myInterpreter) {
// First statement of this code.
// Clear the program output.
resetStepUi(true);
const latestCode = Blockly.JavaScript.workspaceToCode(demoWorkspace);
myInterpreter = new Interpreter(latestCode, initApi);
// And then show generated code in an alert.
// In a timeout to allow the outputArea.value to reset first.
setTimeout(function() {
alert('Ready to execute the following code\n' +
'===================================\n' + latestCode);
highlightPause = true;
stepCode();
}, 1);
return;
}
highlightPause = false;
let hasMoreCode;
do {
try {
hasMoreCode = myInterpreter.step();
} finally {
if (!hasMoreCode) {
// Program complete, no more code to execute.
outputArea.value += '\n\n<< Program complete >>';
resetStepUi(false);
// Cool down, to discourage accidentally restarting the program.
stepButton.disabled = 'disabled';
setTimeout(function() {
stepButton.disabled = '';
}, 2000);
return;
}
}
// Keep executing until a highlight statement is reached,
// or the code completes or errors.
} while (hasMoreCode && !highlightPause);
}
demoWorkspace.addChangeListener(function(event) {
if (!event.isUiEvent) {
// Something changed. Interpreter needs to be reloaded.
resetStepUi(true);
}
});
</script>
</body>
</html>