/** * @license * Visual Blocks Editor * * Copyright 2017 Google Inc. * https://developers.google.com/blockly/ * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @fileoverview Example "wait" block that will pause the interpreter for a * number of seconds. Because wait is a blocking behavior, such blocks will * only work in interpreted environments. * * See https://neil.fraser.name/software/JS-Interpreter/docs.html */ Blockly.defineBlocksWithJsonArray([{ "type": "wait_seconds", "message0": " wait %1 seconds", "args0": [{ "type": "field_number", "name": "SECONDS", "min": 0, "max": 600, "value": 1 }], "previousStatement": null, "nextStatement": null, "colour": "%{BKY_LOOPS_HUE}" }]); /** * Generator for wait block creates call to new method * waitForSeconds(). */ Blockly.JavaScript['wait_seconds'] = function(block) { var seconds = Number(block.getFieldValue('SECONDS')); var code = 'waitForSeconds(' + seconds + ');\n'; return code; }; /** * Register the interpreter asynchronous function * waitForSeconds(). */ function initInterpreterWaitForSeconds(interpreter, scope) { // Ensure function name does not conflict with variable names. Blockly.JavaScript.addReservedWords('waitForSeconds'); var wrapper = interpreter.createAsyncFunction( function(timeInSeconds, callback) { // Delay the call to the callback. setTimeout(callback, timeInSeconds * 1000); }); interpreter.setProperty(scope, 'waitForSeconds', wrapper); }