暂无描述

variables.js 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /**
  2. * @license
  3. * Visual Blocks Editor
  4. *
  5. * Copyright 2012 Google Inc.
  6. * https://developers.google.com/blockly/
  7. *
  8. * Licensed under the Apache License, Version 2.0 (the "License");
  9. * you may not use this file except in compliance with the License.
  10. * You may obtain a copy of the License at
  11. *
  12. * http://www.apache.org/licenses/LICENSE-2.0
  13. *
  14. * Unless required by applicable law or agreed to in writing, software
  15. * distributed under the License is distributed on an "AS IS" BASIS,
  16. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17. * See the License for the specific language governing permissions and
  18. * limitations under the License.
  19. */
  20. /**
  21. * @fileoverview Variable blocks for Blockly.
  22. * @author fraser@google.com (Neil Fraser)
  23. */
  24. 'use strict';
  25. goog.provide('Blockly.Blocks.variables');
  26. goog.require('Blockly.Blocks');
  27. /**
  28. * Common HSV hue for all blocks in this category.
  29. */
  30. Blockly.Blocks.variables.HUE = 330;
  31. Blockly.Blocks['variables_get'] = {
  32. /**
  33. * Block for variable getter.
  34. * @this Blockly.Block
  35. */
  36. init: function() {
  37. this.setHelpUrl(Blockly.Msg.VARIABLES_GET_HELPURL);
  38. this.setColour(Blockly.Blocks.variables.HUE);
  39. this.appendDummyInput()
  40. .appendField(new Blockly.FieldVariable(
  41. Blockly.Msg.VARIABLES_DEFAULT_NAME), 'VAR');
  42. this.setOutput(true);
  43. this.setTooltip(Blockly.Msg.VARIABLES_GET_TOOLTIP);
  44. this.contextMenuMsg_ = Blockly.Msg.VARIABLES_GET_CREATE_SET;
  45. },
  46. /**
  47. * Return all variables referenced by this block.
  48. * @return {!Array.<string>} List of variable names.
  49. * @this Blockly.Block
  50. */
  51. getVars: function() {
  52. return [this.getFieldValue('VAR')];
  53. },
  54. /**
  55. * Notification that a variable is renaming.
  56. * If the name matches one of this block's variables, rename it.
  57. * @param {string} oldName Previous name of variable.
  58. * @param {string} newName Renamed variable.
  59. * @this Blockly.Block
  60. */
  61. renameVar: function(oldName, newName) {
  62. if (Blockly.Names.equals(oldName, this.getFieldValue('VAR'))) {
  63. this.setFieldValue(newName, 'VAR');
  64. }
  65. },
  66. contextMenuType_: 'variables_set',
  67. /**
  68. * Add menu option to create getter/setter block for this setter/getter.
  69. * @param {!Array} options List of menu options to add to.
  70. * @this Blockly.Block
  71. */
  72. customContextMenu: function(options) {
  73. var option = {enabled: true};
  74. var name = this.getFieldValue('VAR');
  75. option.text = this.contextMenuMsg_.replace('%1', name);
  76. var xmlField = goog.dom.createDom('field', null, name);
  77. xmlField.setAttribute('name', 'VAR');
  78. var xmlBlock = goog.dom.createDom('block', null, xmlField);
  79. xmlBlock.setAttribute('type', this.contextMenuType_);
  80. option.callback = Blockly.ContextMenu.callbackFactory(this, xmlBlock);
  81. options.push(option);
  82. }
  83. };
  84. Blockly.Blocks['variables_set'] = {
  85. /**
  86. * Block for variable setter.
  87. * @this Blockly.Block
  88. */
  89. init: function() {
  90. this.jsonInit({
  91. "message0": Blockly.Msg.VARIABLES_SET,
  92. "args0": [
  93. {
  94. "type": "field_variable",
  95. "name": "VAR",
  96. "variable": Blockly.Msg.VARIABLES_DEFAULT_NAME
  97. },
  98. {
  99. "type": "input_value",
  100. "name": "VALUE"
  101. }
  102. ],
  103. "previousStatement": null,
  104. "nextStatement": null,
  105. "colour": Blockly.Blocks.variables.HUE,
  106. "tooltip": Blockly.Msg.VARIABLES_SET_TOOLTIP,
  107. "helpUrl": Blockly.Msg.VARIABLES_SET_HELPURL
  108. });
  109. this.contextMenuMsg_ = Blockly.Msg.VARIABLES_SET_CREATE_GET;
  110. },
  111. /**
  112. * Return all variables referenced by this block.
  113. * @return {!Array.<string>} List of variable names.
  114. * @this Blockly.Block
  115. */
  116. getVars: function() {
  117. return [this.getFieldValue('VAR')];
  118. },
  119. /**
  120. * Notification that a variable is renaming.
  121. * If the name matches one of this block's variables, rename it.
  122. * @param {string} oldName Previous name of variable.
  123. * @param {string} newName Renamed variable.
  124. * @this Blockly.Block
  125. */
  126. renameVar: function(oldName, newName) {
  127. if (Blockly.Names.equals(oldName, this.getFieldValue('VAR'))) {
  128. this.setFieldValue(newName, 'VAR');
  129. }
  130. },
  131. contextMenuType_: 'variables_get',
  132. customContextMenu: Blockly.Blocks['variables_get'].customContextMenu
  133. };