@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.
Files changed (243) hide show
  1. package/.nvmrc +1 -0
  2. package/LICENSE +674 -0
  3. package/README.md +57 -0
  4. package/TRADEMARK +1 -0
  5. package/blockly_compressed_horizontal.js +2268 -0
  6. package/blockly_compressed_vertical.js +2296 -0
  7. package/blockly_uncompressed_horizontal.js +1212 -0
  8. package/blockly_uncompressed_vertical.js +1212 -0
  9. package/blocks_common/colour.js +61 -0
  10. package/blocks_common/math.js +159 -0
  11. package/blocks_common/matrix.js +54 -0
  12. package/blocks_common/note.js +58 -0
  13. package/blocks_common/text.js +57 -0
  14. package/blocks_compressed.js +37 -0
  15. package/blocks_compressed_horizontal.js +68 -0
  16. package/blocks_compressed_vertical.js +216 -0
  17. package/blocks_horizontal/control.js +212 -0
  18. package/blocks_horizontal/default_toolbox.js +139 -0
  19. package/blocks_horizontal/event.js +190 -0
  20. package/blocks_horizontal/wedo.js +325 -0
  21. package/blocks_vertical/control.js +532 -0
  22. package/blocks_vertical/data.js +666 -0
  23. package/blocks_vertical/default_toolbox.js +571 -0
  24. package/blocks_vertical/event.js +329 -0
  25. package/blocks_vertical/extensions.js +294 -0
  26. package/blocks_vertical/looks.js +591 -0
  27. package/blocks_vertical/motion.js +587 -0
  28. package/blocks_vertical/operators.js +470 -0
  29. package/blocks_vertical/procedures.js +1051 -0
  30. package/blocks_vertical/sensing.js +555 -0
  31. package/blocks_vertical/sound.js +246 -0
  32. package/blocks_vertical/vertical_extensions.js +289 -0
  33. package/build/gen_blocks.js +1 -0
  34. package/build/test_expect.js +1 -0
  35. package/build/test_input.js +1 -0
  36. package/build.py +647 -0
  37. package/cleanup.sh +101 -0
  38. package/core/block.js +1837 -0
  39. package/core/block_animations.js +107 -0
  40. package/core/block_drag_surface.js +299 -0
  41. package/core/block_dragger.js +424 -0
  42. package/core/block_events.js +531 -0
  43. package/core/block_render_svg_horizontal.js +892 -0
  44. package/core/block_render_svg_vertical.js +1734 -0
  45. package/core/block_svg.js +1355 -0
  46. package/core/blockly.js +620 -0
  47. package/core/blocks.js +37 -0
  48. package/core/bubble.js +664 -0
  49. package/core/bubble_dragger.js +285 -0
  50. package/core/colours.js +177 -0
  51. package/core/comment.js +293 -0
  52. package/core/comment_events.js +539 -0
  53. package/core/connection.js +776 -0
  54. package/core/connection_db.js +300 -0
  55. package/core/constants.js +408 -0
  56. package/core/contextmenu.js +534 -0
  57. package/core/css.js +1354 -0
  58. package/core/data_category.js +490 -0
  59. package/core/dragged_connection_manager.js +260 -0
  60. package/core/dropdowndiv.js +408 -0
  61. package/core/events.js +429 -0
  62. package/core/events_abstract.js +113 -0
  63. package/core/extensions.js +450 -0
  64. package/core/field.js +810 -0
  65. package/core/field_angle.js +410 -0
  66. package/core/field_checkbox.js +133 -0
  67. package/core/field_colour.js +253 -0
  68. package/core/field_colour_slider.js +387 -0
  69. package/core/field_date.js +353 -0
  70. package/core/field_dropdown.js +447 -0
  71. package/core/field_iconmenu.js +309 -0
  72. package/core/field_image.js +200 -0
  73. package/core/field_label.js +136 -0
  74. package/core/field_label_serializable.js +125 -0
  75. package/core/field_matrix.js +566 -0
  76. package/core/field_note.js +850 -0
  77. package/core/field_number.js +366 -0
  78. package/core/field_numberdropdown.js +77 -0
  79. package/core/field_textdropdown.js +164 -0
  80. package/core/field_textinput.js +675 -0
  81. package/core/field_textinput_removable.js +105 -0
  82. package/core/field_variable.js +385 -0
  83. package/core/field_variable_getter.js +185 -0
  84. package/core/field_vertical_separator.js +161 -0
  85. package/core/flyout_base.js +935 -0
  86. package/core/flyout_button.js +324 -0
  87. package/core/flyout_dragger.js +83 -0
  88. package/core/flyout_extension_category_header.js +159 -0
  89. package/core/flyout_horizontal.js +475 -0
  90. package/core/flyout_vertical.js +770 -0
  91. package/core/generator.js +426 -0
  92. package/core/gesture.js +1010 -0
  93. package/core/grid.js +227 -0
  94. package/core/icon.js +205 -0
  95. package/core/inject.js +496 -0
  96. package/core/input.js +285 -0
  97. package/core/insertion_marker_manager.js +678 -0
  98. package/core/intersection_observer.js +102 -0
  99. package/core/msg.js +62 -0
  100. package/core/mutator.js +426 -0
  101. package/core/names.js +198 -0
  102. package/core/options.js +244 -0
  103. package/core/procedures.js +739 -0
  104. package/core/rendered_connection.js +417 -0
  105. package/core/scratch_block_comment.js +646 -0
  106. package/core/scratch_blocks_utils.js +246 -0
  107. package/core/scratch_bubble.js +699 -0
  108. package/core/scratch_events.js +131 -0
  109. package/core/scratch_msgs.js +85 -0
  110. package/core/scrollbar.js +875 -0
  111. package/core/toolbox.js +803 -0
  112. package/core/tooltip.js +337 -0
  113. package/core/touch.js +226 -0
  114. package/core/trashcan.js +343 -0
  115. package/core/ui_events.js +91 -0
  116. package/core/ui_menu_utils.js +68 -0
  117. package/core/utils.js +825 -0
  118. package/core/variable_events.js +259 -0
  119. package/core/variable_map.js +415 -0
  120. package/core/variable_model.js +116 -0
  121. package/core/variables.js +674 -0
  122. package/core/warning.js +199 -0
  123. package/core/widgetdiv.js +344 -0
  124. package/core/workspace.js +673 -0
  125. package/core/workspace_audio.js +170 -0
  126. package/core/workspace_comment.js +426 -0
  127. package/core/workspace_comment_render_svg.js +706 -0
  128. package/core/workspace_comment_svg.js +609 -0
  129. package/core/workspace_drag_surface_svg.js +195 -0
  130. package/core/workspace_dragger.js +132 -0
  131. package/core/workspace_svg.js +2382 -0
  132. package/core/xml.js +930 -0
  133. package/core/zoom_controls.js +301 -0
  134. package/dist/horizontal.js +222 -0
  135. package/dist/vertical.js +222 -0
  136. package/dist/web/horizontal.js +232 -0
  137. package/dist/web/vertical.js +232 -0
  138. package/i18n/common.py +234 -0
  139. package/i18n/create_messages.py +162 -0
  140. package/i18n/create_scratch_msgs.js +69 -0
  141. package/i18n/dedup_json.py +73 -0
  142. package/i18n/js_to_json.js +46 -0
  143. package/i18n/js_to_json.py +136 -0
  144. package/i18n/json_to_js.js +52 -0
  145. package/i18n/json_to_js.py +185 -0
  146. package/i18n/sync_tx_translations.js +111 -0
  147. package/i18n/test_scratch_msgs.js +87 -0
  148. package/i18n/tests.py +47 -0
  149. package/i18n/xliff_to_json.py +232 -0
  150. package/local_build.sh +70 -0
  151. package/media/click.mp3 +0 -0
  152. package/media/click.ogg +0 -0
  153. package/media/click.wav +0 -0
  154. package/media/comment-arrow-down.svg +10 -0
  155. package/media/comment-arrow-up.svg +10 -0
  156. package/media/delete-x.svg +10 -0
  157. package/media/delete.mp3 +0 -0
  158. package/media/delete.ogg +0 -0
  159. package/media/delete.wav +0 -0
  160. package/media/dropdown-arrow-dark.svg +1 -0
  161. package/media/dropdown-arrow.svg +1 -0
  162. package/media/extensions/microbit-block-icon.svg +130 -0
  163. package/media/extensions/music-block-icon.svg +17 -0
  164. package/media/extensions/pen-block-icon.svg +19 -0
  165. package/media/extensions/wedo2-block-icon.svg +36 -0
  166. package/media/eyedropper.svg +22 -0
  167. package/media/green-flag.svg +17 -0
  168. package/media/handclosed.cur +0 -0
  169. package/media/handdelete.cur +0 -0
  170. package/media/handopen.cur +0 -0
  171. package/media/icons/arrow.svg +12 -0
  172. package/media/icons/arrow_button.svg +1 -0
  173. package/media/icons/control_forever.svg +1 -0
  174. package/media/icons/control_repeat.svg +1 -0
  175. package/media/icons/control_stop.svg +1 -0
  176. package/media/icons/control_wait.svg +1 -0
  177. package/media/icons/event_broadcast_blue.svg +1 -0
  178. package/media/icons/event_broadcast_coral.svg +1 -0
  179. package/media/icons/event_broadcast_green.svg +1 -0
  180. package/media/icons/event_broadcast_magenta.svg +1 -0
  181. package/media/icons/event_broadcast_orange.svg +1 -0
  182. package/media/icons/event_broadcast_purple.svg +1 -0
  183. package/media/icons/event_when-broadcast-received_blue.svg +1 -0
  184. package/media/icons/event_when-broadcast-received_coral.svg +1 -0
  185. package/media/icons/event_when-broadcast-received_green.svg +1 -0
  186. package/media/icons/event_when-broadcast-received_magenta.svg +1 -0
  187. package/media/icons/event_when-broadcast-received_orange.svg +1 -0
  188. package/media/icons/event_when-broadcast-received_purple.svg +1 -0
  189. package/media/icons/event_whenflagclicked.svg +1 -0
  190. package/media/icons/remove.svg +19 -0
  191. package/media/icons/set-led_blue.svg +1 -0
  192. package/media/icons/set-led_coral.svg +1 -0
  193. package/media/icons/set-led_green.svg +1 -0
  194. package/media/icons/set-led_magenta.svg +1 -0
  195. package/media/icons/set-led_mystery.svg +1 -0
  196. package/media/icons/set-led_orange.svg +1 -0
  197. package/media/icons/set-led_purple.svg +1 -0
  198. package/media/icons/set-led_white.svg +1 -0
  199. package/media/icons/set-led_yellow.svg +1 -0
  200. package/media/icons/wedo_motor-clockwise.svg +1 -0
  201. package/media/icons/wedo_motor-counterclockwise.svg +1 -0
  202. package/media/icons/wedo_motor-speed_fast.svg +1 -0
  203. package/media/icons/wedo_motor-speed_med.svg +1 -0
  204. package/media/icons/wedo_motor-speed_slow.svg +1 -0
  205. package/media/icons/wedo_when-distance_close.svg +1 -0
  206. package/media/icons/wedo_when-tilt-backward.svg +1 -0
  207. package/media/icons/wedo_when-tilt-forward.svg +1 -0
  208. package/media/icons/wedo_when-tilt-left.svg +1 -0
  209. package/media/icons/wedo_when-tilt-right.svg +1 -0
  210. package/media/icons/wedo_when-tilt.svg +1 -0
  211. package/media/repeat.svg +18 -0
  212. package/media/rotate-left.svg +1 -0
  213. package/media/rotate-right.svg +1 -0
  214. package/media/sprites.png +0 -0
  215. package/media/status-not-ready.svg +13 -0
  216. package/media/status-ready.svg +13 -0
  217. package/media/zoom-in.svg +1 -0
  218. package/media/zoom-out.svg +1 -0
  219. package/media/zoom-reset.svg +1 -0
  220. package/msg/js/en.js +290 -0
  221. package/msg/json/en.json +285 -0
  222. package/msg/messages.js +359 -0
  223. package/msg/scratch_msgs.js +22969 -0
  224. package/package.json +60 -0
  225. package/pull_from_blockly.sh +151 -0
  226. package/renovate.json5 +15 -0
  227. package/shim/blockly_compressed_horizontal-blocks_compressed.js +1 -0
  228. package/shim/blockly_compressed_horizontal.Blockly.js +1 -0
  229. package/shim/blockly_compressed_horizontal.goog.js +1 -0
  230. package/shim/blockly_compressed_horizontal.js +1 -0
  231. package/shim/blockly_compressed_vertical-blocks_compressed.js +1 -0
  232. package/shim/blockly_compressed_vertical.Blockly.js +1 -0
  233. package/shim/blockly_compressed_vertical.goog.js +1 -0
  234. package/shim/blockly_compressed_vertical.js +1 -0
  235. package/shim/blocks_compressed_horizontal-blockly_compressed_horizontal-messages.js +1 -0
  236. package/shim/blocks_compressed_horizontal.js +1 -0
  237. package/shim/blocks_compressed_vertical-blockly_compressed_vertical-messages.js +1 -0
  238. package/shim/blocks_compressed_vertical.js +1 -0
  239. package/shim/gh-pages.js +1 -0
  240. package/shim/horizontal.js +1 -0
  241. package/shim/index.js +17 -0
  242. package/shim/vertical.js +1 -0
  243. package/universal-python.js +82 -0
@@ -0,0 +1,591 @@
1
+ /**
2
+ * @license
3
+ * Visual Blocks Editor
4
+ *
5
+ * Copyright 2016 Massachusetts Institute of Technology
6
+ * All rights reserved.
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
+ 'use strict';
22
+
23
+ goog.provide('Blockly.Blocks.looks');
24
+
25
+ goog.require('Blockly.Blocks');
26
+ goog.require('Blockly.Colours');
27
+ goog.require('Blockly.constants');
28
+ goog.require('Blockly.ScratchBlocks.VerticalExtensions');
29
+
30
+
31
+ Blockly.Blocks['looks_sayforsecs'] = {
32
+ /**
33
+ * Block to say for some time.
34
+ * @this Blockly.Block
35
+ */
36
+ init: function() {
37
+ this.jsonInit({
38
+ "message0": Blockly.Msg.LOOKS_SAYFORSECS,
39
+ "args0": [
40
+ {
41
+ "type": "input_value",
42
+ "name": "MESSAGE"
43
+ },
44
+ {
45
+ "type": "input_value",
46
+ "name": "SECS"
47
+ }
48
+ ],
49
+ "category": Blockly.Categories.looks,
50
+ "extensions": ["colours_looks", "shape_statement"]
51
+ });
52
+ }
53
+ };
54
+
55
+ Blockly.Blocks['looks_say'] = {
56
+ /**
57
+ * Block to say.
58
+ * @this Blockly.Block
59
+ */
60
+ init: function() {
61
+ this.jsonInit({
62
+ "message0": Blockly.Msg.LOOKS_SAY,
63
+ "args0": [
64
+ {
65
+ "type": "input_value",
66
+ "name": "MESSAGE"
67
+ }
68
+ ],
69
+ "category": Blockly.Categories.looks,
70
+ "extensions": ["colours_looks", "shape_statement"]
71
+ });
72
+ }
73
+ };
74
+
75
+ Blockly.Blocks['looks_thinkforsecs'] = {
76
+ /**
77
+ * Block to think for some time.
78
+ * @this Blockly.Block
79
+ */
80
+ init: function() {
81
+ this.jsonInit({
82
+ "message0": Blockly.Msg.LOOKS_THINKFORSECS,
83
+ "args0": [
84
+ {
85
+ "type": "input_value",
86
+ "name": "MESSAGE"
87
+ },
88
+ {
89
+ "type": "input_value",
90
+ "name": "SECS"
91
+ }
92
+ ],
93
+ "category": Blockly.Categories.looks,
94
+ "extensions": ["colours_looks", "shape_statement"]
95
+ });
96
+ }
97
+ };
98
+
99
+ Blockly.Blocks['looks_think'] = {
100
+ /**
101
+ * Block to think.
102
+ * @this Blockly.Block
103
+ */
104
+ init: function() {
105
+ this.jsonInit({
106
+ "message0": Blockly.Msg.LOOKS_THINK,
107
+ "args0": [
108
+ {
109
+ "type": "input_value",
110
+ "name": "MESSAGE"
111
+ }
112
+ ],
113
+ "category": Blockly.Categories.looks,
114
+ "extensions": ["colours_looks", "shape_statement"]
115
+ });
116
+ }
117
+ };
118
+
119
+ Blockly.Blocks['looks_show'] = {
120
+ /**
121
+ * Show block.
122
+ * @this Blockly.Block
123
+ */
124
+ init: function() {
125
+ this.jsonInit({
126
+ "message0": Blockly.Msg.LOOKS_SHOW,
127
+ "category": Blockly.Categories.looks,
128
+ "extensions": ["colours_looks", "shape_statement"]
129
+ });
130
+ }
131
+ };
132
+
133
+ Blockly.Blocks['looks_hide'] = {
134
+ /**
135
+ * Hide block.
136
+ * @this Blockly.Block
137
+ */
138
+ init: function() {
139
+ this.jsonInit({
140
+ "message0": Blockly.Msg.LOOKS_HIDE,
141
+ "category": Blockly.Categories.looks,
142
+ "extensions": ["colours_looks", "shape_statement"]
143
+ });
144
+ }
145
+ };
146
+
147
+ Blockly.Blocks['looks_hideallsprites'] = {
148
+ /**
149
+ * Hide-all-sprites block. Does not actually do anything. This is an
150
+ * obsolete block that is implemented for compatibility with Scratch 2.0
151
+ * projects.
152
+ * @this Blockly.Block
153
+ */
154
+ init: function() {
155
+ this.jsonInit({
156
+ "message0": Blockly.Msg.LOOKS_HIDEALLSPRITES,
157
+ "category": Blockly.Categories.looks,
158
+ "extensions": ["colours_looks", "shape_statement"]
159
+ });
160
+ }
161
+ };
162
+
163
+ Blockly.Blocks['looks_changeeffectby'] = {
164
+ /**
165
+ * Block to change graphic effect.
166
+ * @this Blockly.Block
167
+ */
168
+ init: function() {
169
+ this.jsonInit({
170
+ "message0": Blockly.Msg.LOOKS_CHANGEEFFECTBY,
171
+ "args0": [
172
+ {
173
+ "type": "field_dropdown",
174
+ "name": "EFFECT",
175
+ "options": [
176
+ [Blockly.Msg.LOOKS_EFFECT_COLOR, 'COLOR'],
177
+ [Blockly.Msg.LOOKS_EFFECT_FISHEYE, 'FISHEYE'],
178
+ [Blockly.Msg.LOOKS_EFFECT_WHIRL, 'WHIRL'],
179
+ [Blockly.Msg.LOOKS_EFFECT_PIXELATE, 'PIXELATE'],
180
+ [Blockly.Msg.LOOKS_EFFECT_MOSAIC, 'MOSAIC'],
181
+ [Blockly.Msg.LOOKS_EFFECT_BRIGHTNESS, 'BRIGHTNESS'],
182
+ [Blockly.Msg.LOOKS_EFFECT_GHOST, 'GHOST']
183
+ ]
184
+ },
185
+ {
186
+ "type": "input_value",
187
+ "name": "CHANGE"
188
+ }
189
+ ],
190
+ "category": Blockly.Categories.looks,
191
+ "extensions": ["colours_looks", "shape_statement"]
192
+ });
193
+ }
194
+ };
195
+
196
+ Blockly.Blocks['looks_seteffectto'] = {
197
+ /**
198
+ * Block to set graphic effect.
199
+ * @this Blockly.Block
200
+ */
201
+ init: function() {
202
+ this.jsonInit({
203
+ "message0": Blockly.Msg.LOOKS_SETEFFECTTO,
204
+ "args0": [
205
+ {
206
+ "type": "field_dropdown",
207
+ "name": "EFFECT",
208
+ "options": [
209
+ [Blockly.Msg.LOOKS_EFFECT_COLOR, 'COLOR'],
210
+ [Blockly.Msg.LOOKS_EFFECT_FISHEYE, 'FISHEYE'],
211
+ [Blockly.Msg.LOOKS_EFFECT_WHIRL, 'WHIRL'],
212
+ [Blockly.Msg.LOOKS_EFFECT_PIXELATE, 'PIXELATE'],
213
+ [Blockly.Msg.LOOKS_EFFECT_MOSAIC, 'MOSAIC'],
214
+ [Blockly.Msg.LOOKS_EFFECT_BRIGHTNESS, 'BRIGHTNESS'],
215
+ [Blockly.Msg.LOOKS_EFFECT_GHOST, 'GHOST']
216
+ ]
217
+ },
218
+ {
219
+ "type": "input_value",
220
+ "name": "VALUE"
221
+ }
222
+ ],
223
+ "category": Blockly.Categories.looks,
224
+ "extensions": ["colours_looks", "shape_statement"]
225
+ });
226
+ }
227
+ };
228
+
229
+ Blockly.Blocks['looks_cleargraphiceffects'] = {
230
+ /**
231
+ * Block to clear graphic effects.
232
+ * @this Blockly.Block
233
+ */
234
+ init: function() {
235
+ this.jsonInit({
236
+ "message0": Blockly.Msg.LOOKS_CLEARGRAPHICEFFECTS,
237
+ "category": Blockly.Categories.looks,
238
+ "extensions": ["colours_looks", "shape_statement"]
239
+ });
240
+ }
241
+ };
242
+
243
+ Blockly.Blocks['looks_changesizeby'] = {
244
+ /**
245
+ * Block to change size
246
+ * @this Blockly.Block
247
+ */
248
+ init: function() {
249
+ this.jsonInit({
250
+ "message0": Blockly.Msg.LOOKS_CHANGESIZEBY,
251
+ "args0": [
252
+ {
253
+ "type": "input_value",
254
+ "name": "CHANGE"
255
+ }
256
+ ],
257
+ "category": Blockly.Categories.looks,
258
+ "extensions": ["colours_looks", "shape_statement"]
259
+ });
260
+ }
261
+ };
262
+
263
+ Blockly.Blocks['looks_setsizeto'] = {
264
+ /**
265
+ * Block to set size
266
+ * @this Blockly.Block
267
+ */
268
+ init: function() {
269
+ this.jsonInit({
270
+ "message0": Blockly.Msg.LOOKS_SETSIZETO,
271
+ "args0": [
272
+ {
273
+ "type": "input_value",
274
+ "name": "SIZE"
275
+ }
276
+ ],
277
+ "category": Blockly.Categories.looks,
278
+ "extensions": ["colours_looks", "shape_statement"]
279
+ });
280
+ }
281
+ };
282
+
283
+ Blockly.Blocks['looks_size'] = {
284
+ /**
285
+ * Block to report size
286
+ * @this Blockly.Block
287
+ */
288
+ init: function() {
289
+ this.jsonInit({
290
+ "message0": Blockly.Msg.LOOKS_SIZE,
291
+ "category": Blockly.Categories.looks,
292
+ "checkboxInFlyout": true,
293
+ "extensions": ["colours_looks", "output_number"]
294
+ });
295
+ }
296
+ };
297
+
298
+ Blockly.Blocks['looks_changestretchby'] = {
299
+ /**
300
+ * Block to change stretch. Does not actually do anything. This is an
301
+ * obsolete block that is implemented for compatibility with Scratch 1.4
302
+ * projects as well as 2.0 projects that still have the block.
303
+ * The "stretch" blocks were introduced in very early versions of Scratch,
304
+ * but their functionality was removed shortly later. They still appeared
305
+ * correctly up until (and including) Scratch 1.4 - as "change stretch by"
306
+ * and "set stretch to" - but were removed altogether in Scratch 2.0, and
307
+ * displayed as red "undefined" blocks. Some Scratch projects still contain
308
+ * these blocks, however, and they don't open in 3.0 unless the blocks
309
+ * actually exist (though they still don't funcitonally do anything).
310
+ * @this Blockly.Block
311
+ */
312
+ init: function() {
313
+ this.jsonInit({
314
+ "message0": Blockly.Msg.LOOKS_CHANGESTRETCHBY,
315
+ "args0": [
316
+ {
317
+ "type": "input_value",
318
+ "name": "CHANGE"
319
+ }
320
+ ],
321
+ "category": Blockly.Categories.looks,
322
+ "extensions": ["colours_looks", "shape_statement"]
323
+ });
324
+ }
325
+ };
326
+
327
+ Blockly.Blocks['looks_setstretchto'] = {
328
+ /**
329
+ * Block to set stretch. Does not actually do anything. This is an obsolete
330
+ * block that is implemented for compatibility with Scratch 1.4 projects
331
+ * (see looks_changestretchby).
332
+ * @this Blockly.Block
333
+ */
334
+ init: function() {
335
+ this.jsonInit({
336
+ "message0": Blockly.Msg.LOOKS_SETSTRETCHTO,
337
+ "args0": [
338
+ {
339
+ "type": "input_value",
340
+ "name": "STRETCH"
341
+ }
342
+ ],
343
+ "category": Blockly.Categories.looks,
344
+ "extensions": ["colours_looks", "shape_statement"]
345
+ });
346
+ }
347
+ };
348
+
349
+ Blockly.Blocks['looks_costume'] = {
350
+ /**
351
+ * Costumes drop-down menu.
352
+ * @this Blockly.Block
353
+ */
354
+ init: function() {
355
+ this.jsonInit({
356
+ "message0": "%1",
357
+ "args0": [
358
+ {
359
+ "type": "field_dropdown",
360
+ "name": "COSTUME",
361
+ "options": [
362
+ ['costume1', 'COSTUME1'],
363
+ ['costume2', 'COSTUME2']
364
+ ]
365
+ }
366
+ ],
367
+ "colour": Blockly.Colours.looks.secondary,
368
+ "colourSecondary": Blockly.Colours.looks.secondary,
369
+ "colourTertiary": Blockly.Colours.looks.tertiary,
370
+ "colourQuaternary": Blockly.Colours.looks.quaternary,
371
+ "extensions": ["output_string"]
372
+ });
373
+ }
374
+ };
375
+
376
+ Blockly.Blocks['looks_switchcostumeto'] = {
377
+ /**
378
+ * Block to switch the sprite's costume to the selected one.
379
+ * @this Blockly.Block
380
+ */
381
+ init: function() {
382
+ this.jsonInit({
383
+ "message0": Blockly.Msg.LOOKS_SWITCHCOSTUMETO,
384
+ "args0": [
385
+ {
386
+ "type": "input_value",
387
+ "name": "COSTUME"
388
+ }
389
+ ],
390
+ "category": Blockly.Categories.looks,
391
+ "extensions": ["colours_looks", "shape_statement"]
392
+ });
393
+ }
394
+ };
395
+
396
+ Blockly.Blocks['looks_nextcostume'] = {
397
+ /**
398
+ * Block to switch the sprite's costume to the next one.
399
+ * @this Blockly.Block
400
+ */
401
+ init: function() {
402
+ this.jsonInit({
403
+ "message0": Blockly.Msg.LOOKS_NEXTCOSTUME,
404
+ "category": Blockly.Categories.looks,
405
+ "extensions": ["colours_looks", "shape_statement"]
406
+ });
407
+ }
408
+ };
409
+
410
+ Blockly.Blocks['looks_switchbackdropto'] = {
411
+ /**
412
+ * Block to switch the backdrop to the selected one.
413
+ * @this Blockly.Block
414
+ */
415
+ init: function() {
416
+ this.jsonInit({
417
+ "message0": Blockly.Msg.LOOKS_SWITCHBACKDROPTO,
418
+ "args0": [
419
+ {
420
+ "type": "input_value",
421
+ "name": "BACKDROP"
422
+ }
423
+ ],
424
+ "category": Blockly.Categories.looks,
425
+ "extensions": ["colours_looks", "shape_statement"]
426
+ });
427
+ }
428
+ };
429
+
430
+ Blockly.Blocks['looks_backdrops'] = {
431
+ /**
432
+ * Backdrop list
433
+ * @this Blockly.Block
434
+ */
435
+ init: function() {
436
+ this.jsonInit({
437
+ "id": "looks_backdrops",
438
+ "message0": "%1",
439
+ "args0": [
440
+ {
441
+ "type": "field_dropdown",
442
+ "name": "BACKDROP",
443
+ "options": [
444
+ ['backdrop1', 'BACKDROP1']
445
+ ]
446
+ }
447
+ ],
448
+ "colour": Blockly.Colours.looks.secondary,
449
+ "colourSecondary": Blockly.Colours.looks.secondary,
450
+ "colourTertiary": Blockly.Colours.looks.tertiary,
451
+ "colourQuaternary": Blockly.Colours.looks.quaternary,
452
+ "extensions": ["output_string"]
453
+ });
454
+ }
455
+ };
456
+
457
+ Blockly.Blocks['looks_gotofrontback'] = {
458
+ /**
459
+ * "Go to front/back" Block.
460
+ * @this Blockly.Block
461
+ */
462
+ init: function() {
463
+ this.jsonInit({
464
+ "message0": Blockly.Msg.LOOKS_GOTOFRONTBACK,
465
+ "args0": [
466
+ {
467
+ "type": "field_dropdown",
468
+ "name": "FRONT_BACK",
469
+ "options": [
470
+ [Blockly.Msg.LOOKS_GOTOFRONTBACK_FRONT, 'front'],
471
+ [Blockly.Msg.LOOKS_GOTOFRONTBACK_BACK, 'back']
472
+ ]
473
+ }
474
+ ],
475
+ "category": Blockly.Categories.looks,
476
+ "extensions": ["colours_looks", "shape_statement"]
477
+ });
478
+ }
479
+ };
480
+
481
+ Blockly.Blocks['looks_goforwardbackwardlayers'] = {
482
+ /**
483
+ * "Go forward/backward [Number] Layers" Block.
484
+ * @this Blockly.Block
485
+ */
486
+ init: function() {
487
+ this.jsonInit({
488
+ "message0": Blockly.Msg.LOOKS_GOFORWARDBACKWARDLAYERS,
489
+ "args0": [
490
+ {
491
+ "type": "field_dropdown",
492
+ "name": "FORWARD_BACKWARD",
493
+ "options": [
494
+ [Blockly.Msg.LOOKS_GOFORWARDBACKWARDLAYERS_FORWARD, 'forward'],
495
+ [Blockly.Msg.LOOKS_GOFORWARDBACKWARDLAYERS_BACKWARD, 'backward']
496
+ ]
497
+ },
498
+ {
499
+ "type": "input_value",
500
+ "name": "NUM"
501
+ }
502
+ ],
503
+ "category": Blockly.Categories.looks,
504
+ "extensions": ["colours_looks", "shape_statement"]
505
+ });
506
+ }
507
+ };
508
+
509
+ Blockly.Blocks['looks_backdropnumbername'] = {
510
+ /**
511
+ * Block to report backdrop's number or name
512
+ * @this Blockly.Block
513
+ */
514
+ init: function() {
515
+ this.jsonInit({
516
+ "message0": Blockly.Msg.LOOKS_BACKDROPNUMBERNAME,
517
+ "args0": [
518
+ {
519
+ "type": "field_dropdown",
520
+ "name": "NUMBER_NAME",
521
+ "options": [
522
+ [Blockly.Msg.LOOKS_NUMBERNAME_NUMBER, 'number'],
523
+ [Blockly.Msg.LOOKS_NUMBERNAME_NAME, 'name']
524
+ ]
525
+ }
526
+ ],
527
+ "category": Blockly.Categories.looks,
528
+ "checkboxInFlyout": true,
529
+ "extensions": ["colours_looks", "output_number"]
530
+ });
531
+ }
532
+ };
533
+
534
+ Blockly.Blocks['looks_costumenumbername'] = {
535
+ /**
536
+ * Block to report costume's number or name
537
+ * @this Blockly.Block
538
+ */
539
+ init: function() {
540
+ this.jsonInit({
541
+ "message0": Blockly.Msg.LOOKS_COSTUMENUMBERNAME,
542
+ "args0": [
543
+ {
544
+ "type": "field_dropdown",
545
+ "name": "NUMBER_NAME",
546
+ "options": [
547
+ [Blockly.Msg.LOOKS_NUMBERNAME_NUMBER, 'number'],
548
+ [Blockly.Msg.LOOKS_NUMBERNAME_NAME, 'name']
549
+ ]
550
+ }
551
+ ],
552
+ "category": Blockly.Categories.looks,
553
+ "checkboxInFlyout": true,
554
+ "extensions": ["colours_looks", "output_number"]
555
+ });
556
+ }
557
+ };
558
+
559
+ Blockly.Blocks['looks_switchbackdroptoandwait'] = {
560
+ /**
561
+ * Block to switch the backdrop to the selected one and wait.
562
+ * @this Blockly.Block
563
+ */
564
+ init: function() {
565
+ this.jsonInit({
566
+ "message0": Blockly.Msg.LOOKS_SWITCHBACKDROPTOANDWAIT,
567
+ "args0": [
568
+ {
569
+ "type": "input_value",
570
+ "name": "BACKDROP"
571
+ }
572
+ ],
573
+ "category": Blockly.Categories.looks,
574
+ "extensions": ["colours_looks", "shape_statement"]
575
+ });
576
+ }
577
+ };
578
+
579
+ Blockly.Blocks['looks_nextbackdrop'] = {
580
+ /**
581
+ * Block to switch the backdrop to the next one.
582
+ * @this Blockly.Block
583
+ */
584
+ init: function() {
585
+ this.jsonInit({
586
+ "message0": Blockly.Msg.LOOKS_NEXTBACKDROP_BLOCK,
587
+ "category": Blockly.Categories.looks,
588
+ "extensions": ["colours_looks", "shape_statement"]
589
+ });
590
+ }
591
+ };