@blockdia/scratch-blocks 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.nvmrc +1 -0
- package/LICENSE +674 -0
- package/README.md +57 -0
- package/TRADEMARK +1 -0
- package/blockly_compressed_horizontal.js +2268 -0
- package/blockly_compressed_vertical.js +2296 -0
- package/blockly_uncompressed_horizontal.js +1212 -0
- package/blockly_uncompressed_vertical.js +1212 -0
- package/blocks_common/colour.js +61 -0
- package/blocks_common/math.js +159 -0
- package/blocks_common/matrix.js +54 -0
- package/blocks_common/note.js +58 -0
- package/blocks_common/text.js +57 -0
- package/blocks_compressed.js +37 -0
- package/blocks_compressed_horizontal.js +68 -0
- package/blocks_compressed_vertical.js +216 -0
- package/blocks_horizontal/control.js +212 -0
- package/blocks_horizontal/default_toolbox.js +139 -0
- package/blocks_horizontal/event.js +190 -0
- package/blocks_horizontal/wedo.js +325 -0
- package/blocks_vertical/control.js +532 -0
- package/blocks_vertical/data.js +666 -0
- package/blocks_vertical/default_toolbox.js +571 -0
- package/blocks_vertical/event.js +329 -0
- package/blocks_vertical/extensions.js +294 -0
- package/blocks_vertical/looks.js +591 -0
- package/blocks_vertical/motion.js +587 -0
- package/blocks_vertical/operators.js +470 -0
- package/blocks_vertical/procedures.js +1051 -0
- package/blocks_vertical/sensing.js +555 -0
- package/blocks_vertical/sound.js +246 -0
- package/blocks_vertical/vertical_extensions.js +289 -0
- package/build/gen_blocks.js +1 -0
- package/build/test_expect.js +1 -0
- package/build/test_input.js +1 -0
- package/build.py +647 -0
- package/cleanup.sh +101 -0
- package/core/block.js +1837 -0
- package/core/block_animations.js +107 -0
- package/core/block_drag_surface.js +299 -0
- package/core/block_dragger.js +424 -0
- package/core/block_events.js +531 -0
- package/core/block_render_svg_horizontal.js +892 -0
- package/core/block_render_svg_vertical.js +1734 -0
- package/core/block_svg.js +1355 -0
- package/core/blockly.js +620 -0
- package/core/blocks.js +37 -0
- package/core/bubble.js +664 -0
- package/core/bubble_dragger.js +285 -0
- package/core/colours.js +177 -0
- package/core/comment.js +293 -0
- package/core/comment_events.js +539 -0
- package/core/connection.js +776 -0
- package/core/connection_db.js +300 -0
- package/core/constants.js +408 -0
- package/core/contextmenu.js +534 -0
- package/core/css.js +1354 -0
- package/core/data_category.js +490 -0
- package/core/dragged_connection_manager.js +260 -0
- package/core/dropdowndiv.js +408 -0
- package/core/events.js +429 -0
- package/core/events_abstract.js +113 -0
- package/core/extensions.js +450 -0
- package/core/field.js +810 -0
- package/core/field_angle.js +410 -0
- package/core/field_checkbox.js +133 -0
- package/core/field_colour.js +253 -0
- package/core/field_colour_slider.js +387 -0
- package/core/field_date.js +353 -0
- package/core/field_dropdown.js +447 -0
- package/core/field_iconmenu.js +309 -0
- package/core/field_image.js +200 -0
- package/core/field_label.js +136 -0
- package/core/field_label_serializable.js +125 -0
- package/core/field_matrix.js +566 -0
- package/core/field_note.js +850 -0
- package/core/field_number.js +366 -0
- package/core/field_numberdropdown.js +77 -0
- package/core/field_textdropdown.js +164 -0
- package/core/field_textinput.js +675 -0
- package/core/field_textinput_removable.js +105 -0
- package/core/field_variable.js +385 -0
- package/core/field_variable_getter.js +185 -0
- package/core/field_vertical_separator.js +161 -0
- package/core/flyout_base.js +935 -0
- package/core/flyout_button.js +324 -0
- package/core/flyout_dragger.js +83 -0
- package/core/flyout_extension_category_header.js +159 -0
- package/core/flyout_horizontal.js +475 -0
- package/core/flyout_vertical.js +770 -0
- package/core/generator.js +426 -0
- package/core/gesture.js +1010 -0
- package/core/grid.js +227 -0
- package/core/icon.js +205 -0
- package/core/inject.js +496 -0
- package/core/input.js +285 -0
- package/core/insertion_marker_manager.js +678 -0
- package/core/intersection_observer.js +102 -0
- package/core/msg.js +62 -0
- package/core/mutator.js +426 -0
- package/core/names.js +198 -0
- package/core/options.js +244 -0
- package/core/procedures.js +739 -0
- package/core/rendered_connection.js +417 -0
- package/core/scratch_block_comment.js +646 -0
- package/core/scratch_blocks_utils.js +246 -0
- package/core/scratch_bubble.js +699 -0
- package/core/scratch_events.js +131 -0
- package/core/scratch_msgs.js +85 -0
- package/core/scrollbar.js +875 -0
- package/core/toolbox.js +803 -0
- package/core/tooltip.js +337 -0
- package/core/touch.js +226 -0
- package/core/trashcan.js +343 -0
- package/core/ui_events.js +91 -0
- package/core/ui_menu_utils.js +68 -0
- package/core/utils.js +825 -0
- package/core/variable_events.js +259 -0
- package/core/variable_map.js +415 -0
- package/core/variable_model.js +116 -0
- package/core/variables.js +674 -0
- package/core/warning.js +199 -0
- package/core/widgetdiv.js +344 -0
- package/core/workspace.js +673 -0
- package/core/workspace_audio.js +170 -0
- package/core/workspace_comment.js +426 -0
- package/core/workspace_comment_render_svg.js +706 -0
- package/core/workspace_comment_svg.js +609 -0
- package/core/workspace_drag_surface_svg.js +195 -0
- package/core/workspace_dragger.js +132 -0
- package/core/workspace_svg.js +2382 -0
- package/core/xml.js +930 -0
- package/core/zoom_controls.js +301 -0
- package/dist/horizontal.js +222 -0
- package/dist/vertical.js +222 -0
- package/dist/web/horizontal.js +232 -0
- package/dist/web/vertical.js +232 -0
- package/i18n/common.py +234 -0
- package/i18n/create_messages.py +162 -0
- package/i18n/create_scratch_msgs.js +69 -0
- package/i18n/dedup_json.py +73 -0
- package/i18n/js_to_json.js +46 -0
- package/i18n/js_to_json.py +136 -0
- package/i18n/json_to_js.js +52 -0
- package/i18n/json_to_js.py +185 -0
- package/i18n/sync_tx_translations.js +111 -0
- package/i18n/test_scratch_msgs.js +87 -0
- package/i18n/tests.py +47 -0
- package/i18n/xliff_to_json.py +232 -0
- package/local_build.sh +70 -0
- package/media/click.mp3 +0 -0
- package/media/click.ogg +0 -0
- package/media/click.wav +0 -0
- package/media/comment-arrow-down.svg +10 -0
- package/media/comment-arrow-up.svg +10 -0
- package/media/delete-x.svg +10 -0
- package/media/delete.mp3 +0 -0
- package/media/delete.ogg +0 -0
- package/media/delete.wav +0 -0
- package/media/dropdown-arrow-dark.svg +1 -0
- package/media/dropdown-arrow.svg +1 -0
- package/media/extensions/microbit-block-icon.svg +130 -0
- package/media/extensions/music-block-icon.svg +17 -0
- package/media/extensions/pen-block-icon.svg +19 -0
- package/media/extensions/wedo2-block-icon.svg +36 -0
- package/media/eyedropper.svg +22 -0
- package/media/green-flag.svg +17 -0
- package/media/handclosed.cur +0 -0
- package/media/handdelete.cur +0 -0
- package/media/handopen.cur +0 -0
- package/media/icons/arrow.svg +12 -0
- package/media/icons/arrow_button.svg +1 -0
- package/media/icons/control_forever.svg +1 -0
- package/media/icons/control_repeat.svg +1 -0
- package/media/icons/control_stop.svg +1 -0
- package/media/icons/control_wait.svg +1 -0
- package/media/icons/event_broadcast_blue.svg +1 -0
- package/media/icons/event_broadcast_coral.svg +1 -0
- package/media/icons/event_broadcast_green.svg +1 -0
- package/media/icons/event_broadcast_magenta.svg +1 -0
- package/media/icons/event_broadcast_orange.svg +1 -0
- package/media/icons/event_broadcast_purple.svg +1 -0
- package/media/icons/event_when-broadcast-received_blue.svg +1 -0
- package/media/icons/event_when-broadcast-received_coral.svg +1 -0
- package/media/icons/event_when-broadcast-received_green.svg +1 -0
- package/media/icons/event_when-broadcast-received_magenta.svg +1 -0
- package/media/icons/event_when-broadcast-received_orange.svg +1 -0
- package/media/icons/event_when-broadcast-received_purple.svg +1 -0
- package/media/icons/event_whenflagclicked.svg +1 -0
- package/media/icons/remove.svg +19 -0
- package/media/icons/set-led_blue.svg +1 -0
- package/media/icons/set-led_coral.svg +1 -0
- package/media/icons/set-led_green.svg +1 -0
- package/media/icons/set-led_magenta.svg +1 -0
- package/media/icons/set-led_mystery.svg +1 -0
- package/media/icons/set-led_orange.svg +1 -0
- package/media/icons/set-led_purple.svg +1 -0
- package/media/icons/set-led_white.svg +1 -0
- package/media/icons/set-led_yellow.svg +1 -0
- package/media/icons/wedo_motor-clockwise.svg +1 -0
- package/media/icons/wedo_motor-counterclockwise.svg +1 -0
- package/media/icons/wedo_motor-speed_fast.svg +1 -0
- package/media/icons/wedo_motor-speed_med.svg +1 -0
- package/media/icons/wedo_motor-speed_slow.svg +1 -0
- package/media/icons/wedo_when-distance_close.svg +1 -0
- package/media/icons/wedo_when-tilt-backward.svg +1 -0
- package/media/icons/wedo_when-tilt-forward.svg +1 -0
- package/media/icons/wedo_when-tilt-left.svg +1 -0
- package/media/icons/wedo_when-tilt-right.svg +1 -0
- package/media/icons/wedo_when-tilt.svg +1 -0
- package/media/repeat.svg +18 -0
- package/media/rotate-left.svg +1 -0
- package/media/rotate-right.svg +1 -0
- package/media/sprites.png +0 -0
- package/media/status-not-ready.svg +13 -0
- package/media/status-ready.svg +13 -0
- package/media/zoom-in.svg +1 -0
- package/media/zoom-out.svg +1 -0
- package/media/zoom-reset.svg +1 -0
- package/msg/js/en.js +290 -0
- package/msg/json/en.json +285 -0
- package/msg/messages.js +359 -0
- package/msg/scratch_msgs.js +22969 -0
- package/package.json +60 -0
- package/pull_from_blockly.sh +151 -0
- package/renovate.json5 +15 -0
- package/shim/blockly_compressed_horizontal-blocks_compressed.js +1 -0
- package/shim/blockly_compressed_horizontal.Blockly.js +1 -0
- package/shim/blockly_compressed_horizontal.goog.js +1 -0
- package/shim/blockly_compressed_horizontal.js +1 -0
- package/shim/blockly_compressed_vertical-blocks_compressed.js +1 -0
- package/shim/blockly_compressed_vertical.Blockly.js +1 -0
- package/shim/blockly_compressed_vertical.goog.js +1 -0
- package/shim/blockly_compressed_vertical.js +1 -0
- package/shim/blocks_compressed_horizontal-blockly_compressed_horizontal-messages.js +1 -0
- package/shim/blocks_compressed_horizontal.js +1 -0
- package/shim/blocks_compressed_vertical-blockly_compressed_vertical-messages.js +1 -0
- package/shim/blocks_compressed_vertical.js +1 -0
- package/shim/gh-pages.js +1 -0
- package/shim/horizontal.js +1 -0
- package/shim/index.js +17 -0
- package/shim/vertical.js +1 -0
- package/universal-python.js +82 -0
package/core/names.js
ADDED
|
@@ -0,0 +1,198 @@
|
|
|
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
|
+
/**
|
|
22
|
+
* @fileoverview Utility functions for handling variables and procedure names.
|
|
23
|
+
* @author fraser@google.com (Neil Fraser)
|
|
24
|
+
*/
|
|
25
|
+
'use strict';
|
|
26
|
+
|
|
27
|
+
goog.provide('Blockly.Names');
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Class for a database of entity names (variables, functions, etc).
|
|
32
|
+
* @param {string} reservedWords A comma-separated string of words that are
|
|
33
|
+
* illegal for use as names in a language (e.g. 'new,if,this,...').
|
|
34
|
+
* @param {string=} opt_variablePrefix Some languages need a '$' or a namespace
|
|
35
|
+
* before all variable names.
|
|
36
|
+
* @constructor
|
|
37
|
+
*/
|
|
38
|
+
Blockly.Names = function(reservedWords, opt_variablePrefix) {
|
|
39
|
+
this.variablePrefix_ = opt_variablePrefix || '';
|
|
40
|
+
this.reservedDict_ = Object.create(null);
|
|
41
|
+
if (reservedWords) {
|
|
42
|
+
var splitWords = reservedWords.split(',');
|
|
43
|
+
for (var i = 0; i < splitWords.length; i++) {
|
|
44
|
+
this.reservedDict_[splitWords[i]] = true;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
this.reset();
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Constant to separate developer variable names from user-defined variable
|
|
52
|
+
* names when running generators.
|
|
53
|
+
* A developer variable will be declared as a global in the generated code, but
|
|
54
|
+
* will never be shown to the user in the workspace or stored in the variable
|
|
55
|
+
* map.
|
|
56
|
+
*/
|
|
57
|
+
Blockly.Names.DEVELOPER_VARIABLE_TYPE = 'DEVELOPER_VARIABLE';
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* When JavaScript (or most other languages) is generated, variable 'foo' and
|
|
61
|
+
* procedure 'foo' would collide. However, Blockly has no such problems since
|
|
62
|
+
* variable get 'foo' and procedure call 'foo' are unambiguous.
|
|
63
|
+
* Therefore, Blockly keeps a separate type name to disambiguate.
|
|
64
|
+
* getName('foo', 'variable') -> 'foo'
|
|
65
|
+
* getName('foo', 'procedure') -> 'foo2'
|
|
66
|
+
*/
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Empty the database and start from scratch. The reserved words are kept.
|
|
70
|
+
*/
|
|
71
|
+
Blockly.Names.prototype.reset = function() {
|
|
72
|
+
this.db_ = Object.create(null);
|
|
73
|
+
this.dbReverse_ = Object.create(null);
|
|
74
|
+
this.variableMap_ = null;
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Set the variable map that maps from variable name to variable object.
|
|
79
|
+
* @param {!Blockly.VariableMap} map The map to track.
|
|
80
|
+
* @package
|
|
81
|
+
*/
|
|
82
|
+
Blockly.Names.prototype.setVariableMap = function(map) {
|
|
83
|
+
this.variableMap_ = map;
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Get the name for a user-defined variable, based on its ID.
|
|
88
|
+
* This should only be used for variables of type Blockly.Variables.NAME_TYPE.
|
|
89
|
+
* @param {string} id The ID to look up in the variable map.
|
|
90
|
+
* @return {?string} The name of the referenced variable, or null if there was
|
|
91
|
+
* no variable map or the variable was not found in the map.
|
|
92
|
+
* @private
|
|
93
|
+
*/
|
|
94
|
+
Blockly.Names.prototype.getNameForUserVariable_ = function(id) {
|
|
95
|
+
if (!this.variableMap_) {
|
|
96
|
+
console.log('Deprecated call to Blockly.Names.prototype.getName without ' +
|
|
97
|
+
'defining a variable map. To fix, add the folowing code in your ' +
|
|
98
|
+
'generator\'s init() function:\n' +
|
|
99
|
+
'Blockly.YourGeneratorName.variableDB_.setVariableMap(' +
|
|
100
|
+
'workspace.getVariableMap());');
|
|
101
|
+
return null;
|
|
102
|
+
}
|
|
103
|
+
var variable = this.variableMap_.getVariableById(id);
|
|
104
|
+
if (variable) {
|
|
105
|
+
return variable.name;
|
|
106
|
+
} else {
|
|
107
|
+
return null;
|
|
108
|
+
}
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* Convert a Blockly entity name to a legal exportable entity name.
|
|
113
|
+
* @param {string} name The Blockly entity name (no constraints).
|
|
114
|
+
* @param {string} type The type of entity in Blockly
|
|
115
|
+
* ('VARIABLE', 'PROCEDURE', 'BUILTIN', etc...).
|
|
116
|
+
* @return {string} An entity name that is legal in the exported language.
|
|
117
|
+
*/
|
|
118
|
+
Blockly.Names.prototype.getName = function(name, type) {
|
|
119
|
+
if (type == Blockly.Variables.NAME_TYPE) {
|
|
120
|
+
var varName = this.getNameForUserVariable_(name);
|
|
121
|
+
if (varName) {
|
|
122
|
+
name = varName;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
var normalized = name.toLowerCase() + '_' + type;
|
|
126
|
+
|
|
127
|
+
var isVarType = type == Blockly.Variables.NAME_TYPE ||
|
|
128
|
+
type == Blockly.Names.DEVELOPER_VARIABLE_TYPE;
|
|
129
|
+
|
|
130
|
+
var prefix = isVarType ? this.variablePrefix_ : '';
|
|
131
|
+
if (normalized in this.db_) {
|
|
132
|
+
return prefix + this.db_[normalized];
|
|
133
|
+
}
|
|
134
|
+
var safeName = this.getDistinctName(name, type);
|
|
135
|
+
this.db_[normalized] = safeName.substr(prefix.length);
|
|
136
|
+
return safeName;
|
|
137
|
+
};
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* Convert a Blockly entity name to a legal exportable entity name.
|
|
141
|
+
* Ensure that this is a new name not overlapping any previously defined name.
|
|
142
|
+
* Also check against list of reserved words for the current language and
|
|
143
|
+
* ensure name doesn't collide.
|
|
144
|
+
* @param {string} name The Blockly entity name (no constraints).
|
|
145
|
+
* @param {string} type The type of entity in Blockly
|
|
146
|
+
* ('VARIABLE', 'PROCEDURE', 'BUILTIN', etc...).
|
|
147
|
+
* @return {string} An entity name that is legal in the exported language.
|
|
148
|
+
*/
|
|
149
|
+
Blockly.Names.prototype.getDistinctName = function(name, type) {
|
|
150
|
+
var safeName = this.safeName_(name);
|
|
151
|
+
var i = '';
|
|
152
|
+
while (this.dbReverse_[safeName + i] ||
|
|
153
|
+
(safeName + i) in this.reservedDict_) {
|
|
154
|
+
// Collision with existing name. Create a unique name.
|
|
155
|
+
i = i ? i + 1 : 2;
|
|
156
|
+
}
|
|
157
|
+
safeName += i;
|
|
158
|
+
this.dbReverse_[safeName] = true;
|
|
159
|
+
var isVarType = type == Blockly.Variables.NAME_TYPE ||
|
|
160
|
+
type == Blockly.Names.DEVELOPER_VARIABLE_TYPE;
|
|
161
|
+
var prefix = isVarType ? this.variablePrefix_ : '';
|
|
162
|
+
return prefix + safeName;
|
|
163
|
+
};
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Given a proposed entity name, generate a name that conforms to the
|
|
167
|
+
* [_A-Za-z][_A-Za-z0-9]* format that most languages consider legal for
|
|
168
|
+
* variables.
|
|
169
|
+
* @param {string} name Potentially illegal entity name.
|
|
170
|
+
* @return {string} Safe entity name.
|
|
171
|
+
* @private
|
|
172
|
+
*/
|
|
173
|
+
Blockly.Names.prototype.safeName_ = function(name) {
|
|
174
|
+
if (!name) {
|
|
175
|
+
name = 'unnamed';
|
|
176
|
+
} else {
|
|
177
|
+
// Unfortunately names in non-latin characters will look like
|
|
178
|
+
// _E9_9F_B3_E4_B9_90 which is pretty meaningless.
|
|
179
|
+
// https://github.com/google/blockly/issues/1654
|
|
180
|
+
name = encodeURI(name.replace(/ /g, '_')).replace(/[^\w]/g, '_');
|
|
181
|
+
// Most languages don't allow names with leading numbers.
|
|
182
|
+
if ('0123456789'.indexOf(name[0]) != -1) {
|
|
183
|
+
name = 'my_' + name;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
return name;
|
|
187
|
+
};
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* Do the given two entity names refer to the same entity?
|
|
191
|
+
* Blockly names are case-insensitive.
|
|
192
|
+
* @param {string} name1 First name.
|
|
193
|
+
* @param {string} name2 Second name.
|
|
194
|
+
* @return {boolean} True if names are the same.
|
|
195
|
+
*/
|
|
196
|
+
Blockly.Names.equals = function(name1, name2) {
|
|
197
|
+
return name1.toLowerCase() == name2.toLowerCase();
|
|
198
|
+
};
|
package/core/options.js
ADDED
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Visual Blocks Editor
|
|
4
|
+
*
|
|
5
|
+
* Copyright 2016 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
|
+
/**
|
|
22
|
+
* @fileoverview Object that controls settings for the workspace.
|
|
23
|
+
* @author fenichel@google.com (Rachel Fenichel)
|
|
24
|
+
*/
|
|
25
|
+
'use strict';
|
|
26
|
+
|
|
27
|
+
goog.provide('Blockly.Options');
|
|
28
|
+
goog.require('Blockly.Colours');
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Parse the user-specified options, using reasonable defaults where behaviour
|
|
33
|
+
* is unspecified.
|
|
34
|
+
* @param {!Object} options Dictionary of options. Specification:
|
|
35
|
+
* https://developers.google.com/blockly/guides/get-started/web#configuration
|
|
36
|
+
* @constructor
|
|
37
|
+
*/
|
|
38
|
+
Blockly.Options = function(options) {
|
|
39
|
+
var readOnly = !!options['readOnly'];
|
|
40
|
+
if (readOnly) {
|
|
41
|
+
var languageTree = null;
|
|
42
|
+
var hasCategories = false;
|
|
43
|
+
var hasTrashcan = false;
|
|
44
|
+
var hasCollapse = false;
|
|
45
|
+
var hasComments = false;
|
|
46
|
+
var hasDisable = false;
|
|
47
|
+
var hasSounds = false;
|
|
48
|
+
} else {
|
|
49
|
+
if (!options['toolbox'] && Blockly.Blocks.defaultToolbox) {
|
|
50
|
+
var oParser = new DOMParser();
|
|
51
|
+
var dom = oParser.parseFromString(Blockly.Blocks.defaultToolbox, 'text/xml');
|
|
52
|
+
options['toolbox'] = dom.documentElement;
|
|
53
|
+
}
|
|
54
|
+
var languageTree = Blockly.Options.parseToolboxTree(options['toolbox']);
|
|
55
|
+
var hasCategories = Boolean(languageTree &&
|
|
56
|
+
languageTree.getElementsByTagName('category').length);
|
|
57
|
+
var hasTrashcan = options['trashcan'];
|
|
58
|
+
if (hasTrashcan === undefined) {
|
|
59
|
+
hasTrashcan = false;
|
|
60
|
+
}
|
|
61
|
+
var hasCollapse = options['collapse'];
|
|
62
|
+
if (hasCollapse === undefined) {
|
|
63
|
+
hasCollapse = hasCategories;
|
|
64
|
+
}
|
|
65
|
+
var hasComments = options['comments'];
|
|
66
|
+
if (hasComments === undefined) {
|
|
67
|
+
hasComments = hasCategories;
|
|
68
|
+
}
|
|
69
|
+
var hasDisable = options['disable'];
|
|
70
|
+
if (hasDisable === undefined) {
|
|
71
|
+
hasDisable = hasCategories;
|
|
72
|
+
}
|
|
73
|
+
var hasSounds = options['sounds'];
|
|
74
|
+
if (hasSounds === undefined) {
|
|
75
|
+
hasSounds = true;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
var rtl = !!options['rtl'];
|
|
79
|
+
var horizontalLayout = options['horizontalLayout'];
|
|
80
|
+
if (horizontalLayout === undefined) {
|
|
81
|
+
horizontalLayout = false;
|
|
82
|
+
}
|
|
83
|
+
var toolboxAtStart = options['toolboxPosition'];
|
|
84
|
+
if (toolboxAtStart === 'end') {
|
|
85
|
+
toolboxAtStart = false;
|
|
86
|
+
} else {
|
|
87
|
+
toolboxAtStart = true;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
if (horizontalLayout) {
|
|
91
|
+
var toolboxPosition = toolboxAtStart ?
|
|
92
|
+
Blockly.TOOLBOX_AT_TOP : Blockly.TOOLBOX_AT_BOTTOM;
|
|
93
|
+
} else {
|
|
94
|
+
var toolboxPosition = (toolboxAtStart == rtl) ?
|
|
95
|
+
Blockly.TOOLBOX_AT_RIGHT : Blockly.TOOLBOX_AT_LEFT;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
var hasScrollbars = options['scrollbars'];
|
|
99
|
+
if (hasScrollbars === undefined) {
|
|
100
|
+
hasScrollbars = hasCategories;
|
|
101
|
+
}
|
|
102
|
+
var hasCss = options['css'];
|
|
103
|
+
if (hasCss === undefined) {
|
|
104
|
+
hasCss = true;
|
|
105
|
+
}
|
|
106
|
+
var pathToMedia = 'https://blockly-demo.appspot.com/static/media/';
|
|
107
|
+
if (options['media']) {
|
|
108
|
+
pathToMedia = options['media'];
|
|
109
|
+
} else if (options['path']) {
|
|
110
|
+
// 'path' is a deprecated option which has been replaced by 'media'.
|
|
111
|
+
pathToMedia = options['path'] + 'media/';
|
|
112
|
+
}
|
|
113
|
+
if (options['oneBasedIndex'] === undefined) {
|
|
114
|
+
var oneBasedIndex = true;
|
|
115
|
+
} else {
|
|
116
|
+
var oneBasedIndex = !!options['oneBasedIndex'];
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
Blockly.Colours.overrideColours(options['colours']);
|
|
120
|
+
|
|
121
|
+
this.RTL = rtl;
|
|
122
|
+
this.oneBasedIndex = oneBasedIndex;
|
|
123
|
+
this.collapse = hasCollapse;
|
|
124
|
+
this.comments = hasComments;
|
|
125
|
+
this.disable = hasDisable;
|
|
126
|
+
this.readOnly = readOnly;
|
|
127
|
+
this.pathToMedia = pathToMedia;
|
|
128
|
+
this.hasCategories = hasCategories;
|
|
129
|
+
this.hasScrollbars = hasScrollbars;
|
|
130
|
+
this.hasTrashcan = hasTrashcan;
|
|
131
|
+
this.hasSounds = hasSounds;
|
|
132
|
+
this.hasCss = hasCss;
|
|
133
|
+
this.horizontalLayout = horizontalLayout;
|
|
134
|
+
this.languageTree = languageTree;
|
|
135
|
+
this.gridOptions = Blockly.Options.parseGridOptions_(options);
|
|
136
|
+
this.zoomOptions = Blockly.Options.parseZoomOptions_(options);
|
|
137
|
+
this.toolboxPosition = toolboxPosition;
|
|
138
|
+
};
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* The parent of the current workspace, or null if there is no parent workspace.
|
|
142
|
+
* @type {Blockly.Workspace}
|
|
143
|
+
**/
|
|
144
|
+
Blockly.Options.prototype.parentWorkspace = null;
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* If set, sets the translation of the workspace to match the scrollbars.
|
|
148
|
+
*/
|
|
149
|
+
Blockly.Options.prototype.setMetrics = null;
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* Return an object with the metrics required to size the workspace.
|
|
153
|
+
* @return {Object} Contains size and position metrics, or null.
|
|
154
|
+
*/
|
|
155
|
+
Blockly.Options.prototype.getMetrics = null;
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Parse the user-specified zoom options, using reasonable defaults where
|
|
159
|
+
* behaviour is unspecified. See zoom documentation:
|
|
160
|
+
* https://developers.google.com/blockly/guides/configure/web/zoom
|
|
161
|
+
* @param {!Object} options Dictionary of options.
|
|
162
|
+
* @return {!Object} A dictionary of normalized options.
|
|
163
|
+
* @private
|
|
164
|
+
*/
|
|
165
|
+
Blockly.Options.parseZoomOptions_ = function(options) {
|
|
166
|
+
var zoom = options['zoom'] || {};
|
|
167
|
+
var zoomOptions = {};
|
|
168
|
+
if (zoom['controls'] === undefined) {
|
|
169
|
+
zoomOptions.controls = false;
|
|
170
|
+
} else {
|
|
171
|
+
zoomOptions.controls = !!zoom['controls'];
|
|
172
|
+
}
|
|
173
|
+
if (zoom['wheel'] === undefined) {
|
|
174
|
+
zoomOptions.wheel = false;
|
|
175
|
+
} else {
|
|
176
|
+
zoomOptions.wheel = !!zoom['wheel'];
|
|
177
|
+
}
|
|
178
|
+
if (zoom['startScale'] === undefined) {
|
|
179
|
+
zoomOptions.startScale = 1;
|
|
180
|
+
} else {
|
|
181
|
+
zoomOptions.startScale = parseFloat(zoom['startScale']);
|
|
182
|
+
}
|
|
183
|
+
if (zoom['maxScale'] === undefined) {
|
|
184
|
+
zoomOptions.maxScale = 3;
|
|
185
|
+
} else {
|
|
186
|
+
zoomOptions.maxScale = parseFloat(zoom['maxScale']);
|
|
187
|
+
}
|
|
188
|
+
if (zoom['minScale'] === undefined) {
|
|
189
|
+
zoomOptions.minScale = 0.3;
|
|
190
|
+
} else {
|
|
191
|
+
zoomOptions.minScale = parseFloat(zoom['minScale']);
|
|
192
|
+
}
|
|
193
|
+
if (zoom['scaleSpeed'] === undefined) {
|
|
194
|
+
zoomOptions.scaleSpeed = 1.2;
|
|
195
|
+
} else {
|
|
196
|
+
zoomOptions.scaleSpeed = parseFloat(zoom['scaleSpeed']);
|
|
197
|
+
}
|
|
198
|
+
return zoomOptions;
|
|
199
|
+
};
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* Parse the user-specified grid options, using reasonable defaults where
|
|
203
|
+
* behaviour is unspecified. See grid documentation:
|
|
204
|
+
* https://developers.google.com/blockly/guides/configure/web/grid
|
|
205
|
+
* @param {!Object} options Dictionary of options.
|
|
206
|
+
* @return {!Object} A dictionary of normalized options.
|
|
207
|
+
* @private
|
|
208
|
+
*/
|
|
209
|
+
Blockly.Options.parseGridOptions_ = function(options) {
|
|
210
|
+
var grid = options['grid'] || {};
|
|
211
|
+
var gridOptions = {};
|
|
212
|
+
gridOptions.spacing = parseFloat(grid['spacing']) || 0;
|
|
213
|
+
gridOptions.colour = grid['colour'] || '#888';
|
|
214
|
+
gridOptions.length = parseFloat(grid['length']) || 1;
|
|
215
|
+
gridOptions.snap = gridOptions.spacing > 0 && !!grid['snap'];
|
|
216
|
+
return gridOptions;
|
|
217
|
+
};
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Parse the provided toolbox tree into a consistent DOM format.
|
|
221
|
+
* @param {Node|string} tree DOM tree of blocks, or text representation of same.
|
|
222
|
+
* @return {Node} DOM tree of blocks, or null.
|
|
223
|
+
*/
|
|
224
|
+
Blockly.Options.parseToolboxTree = function(tree) {
|
|
225
|
+
if (tree) {
|
|
226
|
+
if (typeof tree != 'string') {
|
|
227
|
+
if (typeof XSLTProcessor == 'undefined' && tree.outerHTML) {
|
|
228
|
+
// In this case the tree will not have been properly built by the
|
|
229
|
+
// browser. The HTML will be contained in the element, but it will
|
|
230
|
+
// not have the proper DOM structure since the browser doesn't support
|
|
231
|
+
// XSLTProcessor (XML -> HTML). This is the case in IE 9+.
|
|
232
|
+
tree = tree.outerHTML;
|
|
233
|
+
} else if (!(tree instanceof Element)) {
|
|
234
|
+
tree = null;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
if (typeof tree == 'string') {
|
|
238
|
+
tree = Blockly.Xml.textToDom(tree);
|
|
239
|
+
}
|
|
240
|
+
} else {
|
|
241
|
+
tree = null;
|
|
242
|
+
}
|
|
243
|
+
return tree;
|
|
244
|
+
};
|