123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- /**
- * @license
- * Visual Blocks Editor
- *
- * Copyright 2012 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 Utility functions for handling variables.
- * @author fraser@google.com (Neil Fraser)
- */
- 'use strict';
- goog.provide('Blockly.Variables');
- goog.require('Blockly.Blocks');
- goog.require('Blockly.Workspace');
- goog.require('goog.string');
- /**
- * Category to separate variable names from procedures and generated functions.
- */
- Blockly.Variables.NAME_TYPE = 'VARIABLE';
- /**
- * Find all user-created variables that are in use in the workspace.
- * For use by generators.
- * @param {!Blockly.Block|!Blockly.Workspace} root Root block or workspace.
- * @return {!Array.<string>} Array of variable names.
- */
- Blockly.Variables.allUsedVariables = function(root) {
- var blocks;
- if (root instanceof Blockly.Block) {
- // Root is Block.
- blocks = root.getDescendants();
- } else if (root.getAllBlocks) {
- // Root is Workspace.
- blocks = root.getAllBlocks();
- } else {
- throw 'Not Block or Workspace: ' + root;
- }
- var variableHash = Object.create(null);
- // Iterate through every block and add each variable to the hash.
- for (var x = 0; x < blocks.length; x++) {
- var blockVariables = blocks[x].getVars();
- if (blockVariables) {
- for (var y = 0; y < blockVariables.length; y++) {
- var varName = blockVariables[y];
- // Variable name may be null if the block is only half-built.
- if (varName) {
- variableHash[varName.toLowerCase()] = varName;
- }
- }
- }
- }
- // Flatten the hash into a list.
- var variableList = [];
- for (var name in variableHash) {
- variableList.push(variableHash[name]);
- }
- return variableList;
- };
- /**
- * Find all variables that the user has created through the workspace or
- * toolbox. For use by generators.
- * @param {!Blockly.Workspace} root The workspace to inspect.
- * @return {!Array.<string>} Array of variable names.
- */
- Blockly.Variables.allVariables = function(root) {
- if (root instanceof Blockly.Block) {
- // Root is Block.
- console.warn('Deprecated call to Blockly.Variables.allVariables ' +
- 'with a block instead of a workspace. You may want ' +
- 'Blockly.Variables.allUsedVariables');
- }
- return root.variableList;
- };
- /**
- * Construct the blocks required by the flyout for the variable category.
- * @param {!Blockly.Workspace} workspace The workspace contianing variables.
- * @return {!Array.<!Element>} Array of XML block elements.
- */
- Blockly.Variables.flyoutCategory = function(workspace) {
- var variableList = workspace.variableList;
- variableList.sort(goog.string.caseInsensitiveCompare);
- var xmlList = [];
- var button = goog.dom.createDom('button');
- button.setAttribute('text', Blockly.Msg.NEW_VARIABLE);
- button.setAttribute('callbackKey', 'CREATE_VARIABLE');
- Blockly.registerButtonCallback('CREATE_VARIABLE', function(button) {
- Blockly.Variables.createVariable(button.getTargetWorkspace());
- });
- xmlList.push(button);
- if (variableList.length > 0) {
- /*
- if (Blockly.Blocks['math_change']) {
- // <block type="math_change">
- // <value name="DELTA">
- // <shadow type="math_number">
- // <field name="NUM">1</field>
- // </shadow>
- // </value>
- // </block>
- var block = goog.dom.createDom('block');
- block.setAttribute('type', 'math_change');
- if (Blockly.Blocks['variables_get']) {
- block.setAttribute('gap', 20);
- }
- var value = goog.dom.createDom('value');
- value.setAttribute('name', 'DELTA');
- block.appendChild(value);
- var field = goog.dom.createDom('field', null, variableList[0]);
- field.setAttribute('name', 'VAR');
- block.appendChild(field);
- var shadowBlock = goog.dom.createDom('shadow');
- shadowBlock.setAttribute('type', 'math_number');
- value.appendChild(shadowBlock);
- var numberField = goog.dom.createDom('field', null, '1');
- numberField.setAttribute('name', 'NUM');
- shadowBlock.appendChild(numberField);
- xmlList.push(block);
- }*/
- for (var i = 0; i < variableList.length; i++) {
- if (Blockly.Blocks['variables_set']) {
- // <block type="variables_set" gap="20">
- // <field name="VAR">item</field>
- // </block>
- var block = goog.dom.createDom('block');
- block.setAttribute('type', 'variables_set');
- if (Blockly.Blocks['math_change']) {
- block.setAttribute('gap', 8);
- } else {
- //block.setAttribute('gap', 24);
- }
- var field = goog.dom.createDom('field', null, variableList[i]);
- field.setAttribute('name', 'VAR');
- block.appendChild(field);
- xmlList.push(block);
- }
- }
- for (var i = 0; i < variableList.length; i++) {
- if (Blockly.Blocks['variables_get']) {
- // <block type="variables_get" gap="8">
- // <field name="VAR">item</field>
- // </block>
- var block = goog.dom.createDom('block');
- block.setAttribute('type', 'variables_get');
- if (Blockly.Blocks['variables_set']) {
- block.setAttribute('gap', 8);
- }
- var field = goog.dom.createDom('field', null, variableList[i]);
- field.setAttribute('name', 'VAR');
- block.appendChild(field);
- xmlList.push(block);
- }
- }
- }
- if (Blockly.Blocks['variables_getself']) {
- var block = goog.dom.createDom('block');
- block.setAttribute('type', 'variables_getself');
- block.setAttribute('gap', 16);
- xmlList.push(block);
- }
- if (Blockly.Blocks['variables_setself']) {
- var block = goog.dom.createDom('block');
- block.setAttribute('type', 'variables_setself');
- block.setAttribute('gap', 16);
- xmlList.push(block);
- }
- return xmlList;
- };
- /**
- * Return a new variable name that is not yet being used. This will try to
- * generate single letter variable names in the range 'i' to 'z' to start with.
- * If no unique name is located it will try 'i' to 'z', 'a' to 'h',
- * then 'i2' to 'z2' etc. Skip 'l'.
- * @param {!Blockly.Workspace} workspace The workspace to be unique in.
- * @return {string} New variable name.
- */
- Blockly.Variables.generateUniqueName = function(workspace) {
- var variableList = workspace.variableList;
- var newName = '';
- if (variableList.length) {
- var nameSuffix = 1;
- var letters = 'ijkmnopqrstuvwxyzabcdefgh'; // No 'l'.
- var letterIndex = 0;
- var potName = letters.charAt(letterIndex);
- while (!newName) {
- var inUse = false;
- for (var i = 0; i < variableList.length; i++) {
- if (variableList[i].toLowerCase() == potName) {
- // This potential name is already used.
- inUse = true;
- break;
- }
- }
- if (inUse) {
- // Try the next potential name.
- letterIndex++;
- if (letterIndex == letters.length) {
- // Reached the end of the character sequence so back to 'i'.
- // a new suffix.
- letterIndex = 0;
- nameSuffix++;
- }
- potName = letters.charAt(letterIndex);
- if (nameSuffix > 1) {
- potName += nameSuffix;
- }
- } else {
- // We can use the current potential name.
- newName = potName;
- }
- }
- } else {
- newName = 'i';
- }
- return newName;
- };
- /**
- * Create a new variable on the given workspace.
- * @param {!Blockly.Workspace} workspace The workspace on which to create the
- * variable.
- * @param {function(null|undefined|string)=} opt_callback A callback. It will
- * return an acceptable new variable name, or null if change is to be
- * aborted (cancel button), or undefined if an existing variable was chosen.
- */
- Blockly.Variables.createVariable = function(workspace, opt_callback) {
- var promptAndCheckWithAlert = function(defaultName) {
- Blockly.Variables.promptName(Blockly.Msg.NEW_VARIABLE_TITLE, defaultName,
- function(text) {
- if (text) {
- if (workspace.variableIndexOf(text) != -1) {
- Blockly.alert(Blockly.Msg.VARIABLE_ALREADY_EXISTS.replace('%1',
- text.toLowerCase()),
- function() {
- promptAndCheckWithAlert(text); // Recurse
- });
- } else {
- workspace.createVariable(text);
- if (opt_callback) {
- opt_callback(text);
- }
- }
- } else {
- // User canceled prompt without a value.
- if (opt_callback) {
- opt_callback(null);
- }
- }
- });
- };
- promptAndCheckWithAlert('');
- };
- /**
- * Prompt the user for a new variable name.
- * @param {string} promptText The string of the prompt.
- * @param {string} defaultText The default value to show in the prompt's field.
- * @param {function(?string)} callback A callback. It will return the new
- * variable name, or null if the user picked something illegal.
- */
- Blockly.Variables.promptName = function(promptText, defaultText, callback) {
- Blockly.prompt(promptText, defaultText, function(newVar) {
- // Merge runs of whitespace. Strip leading and trailing whitespace.
- // Beyond this, all names are legal.
- if (newVar) {
- newVar = newVar.replace(/[\s\xa0]+/g, ' ').replace(/^ | $/g, '');
- if (newVar == Blockly.Msg.RENAME_VARIABLE ||
- newVar == Blockly.Msg.NEW_VARIABLE) {
- // Ok, not ALL names are legal...
- newVar = null;
- }
- }
- callback(newVar);
- });
- };
|