@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,212 @@
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
+ /**
22
+ * @fileoverview Control blocks for Scratch (Horizontal)
23
+ * @author ascii@media.mit.edu <Andrew Sliwinski>
24
+ */
25
+ 'use strict';
26
+
27
+ goog.provide('Blockly.Blocks.control');
28
+
29
+ goog.require('Blockly.Blocks');
30
+
31
+ goog.require('Blockly.Colours');
32
+
33
+ Blockly.Blocks['control_repeat'] = {
34
+ /**
35
+ * Block for repeat n times (external number).
36
+ * https://blockly-demo.appspot.com/static/demos/blockfactory/index.html#so57n9
37
+ * @this Blockly.Block
38
+ */
39
+ init: function() {
40
+ this.jsonInit({
41
+ "id": "control_repeat",
42
+ "message0": "%1 %2 %3",
43
+ "args0": [
44
+ {
45
+ "type": "input_statement",
46
+ "name": "SUBSTACK"
47
+ },
48
+ {
49
+ "type": "field_image",
50
+ "src": Blockly.mainWorkspace.options.pathToMedia + "icons/control_repeat.svg",
51
+ "width": 40,
52
+ "height": 40,
53
+ "alt": "*",
54
+ "flip_rtl": true
55
+ },
56
+ {
57
+ "type": "input_value",
58
+ "name": "TIMES",
59
+ "check": "Number"
60
+ }
61
+ ],
62
+ "inputsInline": true,
63
+ "previousStatement": null,
64
+ "nextStatement": null,
65
+ "category": Blockly.Categories.control,
66
+ "colour": Blockly.Colours.control.primary,
67
+ "colourSecondary": Blockly.Colours.control.secondary,
68
+ "colourTertiary": Blockly.Colours.control.tertiary,
69
+ "colourQuaternary": Blockly.Colours.control.quaternary
70
+ });
71
+ }
72
+ };
73
+
74
+ Blockly.Blocks['control_forever'] = {
75
+ /**
76
+ * Block for repeat n times (external number).
77
+ * https://blockly-demo.appspot.com/static/demos/blockfactory/index.html#5eke39
78
+ * @this Blockly.Block
79
+ */
80
+ init: function() {
81
+ this.jsonInit({
82
+ "id": "control_forever",
83
+ "message0": "%1 %2",
84
+ "args0": [
85
+ {
86
+ "type": "input_statement",
87
+ "name": "SUBSTACK"
88
+ },
89
+ {
90
+ "type": "field_image",
91
+ "src": Blockly.mainWorkspace.options.pathToMedia + "icons/control_forever.svg",
92
+ "width": 40,
93
+ "height": 40,
94
+ "alt": "*",
95
+ "flip_rtl": true
96
+ }
97
+ ],
98
+ "inputsInline": true,
99
+ "previousStatement": null,
100
+ "category": Blockly.Categories.control,
101
+ "colour": Blockly.Colours.control.primary,
102
+ "colourSecondary": Blockly.Colours.control.secondary,
103
+ "colourTertiary": Blockly.Colours.control.tertiary,
104
+ "colourQuaternary": Blockly.Colours.control.quaternary
105
+ });
106
+ }
107
+ };
108
+
109
+ Blockly.Blocks['control_repeat'] = {
110
+ /**
111
+ * Block for repeat n times (external number).
112
+ * https://blockly-demo.appspot.com/static/demos/blockfactory/index.html#so57n9
113
+ * @this Blockly.Block
114
+ */
115
+ init: function() {
116
+ this.jsonInit({
117
+ "id": "control_repeat",
118
+ "message0": "%1 %2 %3",
119
+ "args0": [
120
+ {
121
+ "type": "input_statement",
122
+ "name": "SUBSTACK"
123
+ },
124
+ {
125
+ "type": "field_image",
126
+ "src": Blockly.mainWorkspace.options.pathToMedia + "icons/control_repeat.svg",
127
+ "width": 40,
128
+ "height": 40,
129
+ "alt": "*",
130
+ "flip_rtl": true
131
+ },
132
+ {
133
+ "type": "input_value",
134
+ "name": "TIMES",
135
+ "check": "Number"
136
+ }
137
+ ],
138
+ "inputsInline": true,
139
+ "previousStatement": null,
140
+ "nextStatement": null,
141
+ "category": Blockly.Categories.control,
142
+ "colour": Blockly.Colours.control.primary,
143
+ "colourSecondary": Blockly.Colours.control.secondary,
144
+ "colourTertiary": Blockly.Colours.control.tertiary,
145
+ "colourQuaternary": Blockly.Colours.control.quaternary
146
+ });
147
+ }
148
+ };
149
+
150
+ Blockly.Blocks['control_stop'] = {
151
+ /**
152
+ * Block for stop all scripts.
153
+ * @this Blockly.Block
154
+ */
155
+ init: function() {
156
+ this.jsonInit({
157
+ "id": "control_stop",
158
+ "message0": "%1",
159
+ "args0": [
160
+ {
161
+ "type": "field_image",
162
+ "src": Blockly.mainWorkspace.options.pathToMedia + "icons/control_stop.svg",
163
+ "width": 40,
164
+ "height": 40,
165
+ "alt": "Stop"
166
+ }
167
+ ],
168
+ "inputsInline": true,
169
+ "previousStatement": null,
170
+ "category": Blockly.Categories.control,
171
+ "colour": Blockly.Colours.control.primary,
172
+ "colourSecondary": Blockly.Colours.control.secondary,
173
+ "colourTertiary": Blockly.Colours.control.tertiary,
174
+ "colourQuaternary": Blockly.Colours.control.quaternary
175
+ });
176
+ }
177
+ };
178
+
179
+ Blockly.Blocks['control_wait'] = {
180
+ /**
181
+ * Block to wait (pause) stack.
182
+ * @this Blockly.Block
183
+ */
184
+ init: function() {
185
+ this.jsonInit({
186
+ "id": "control_wait",
187
+ "message0": "%1 %2",
188
+ "args0": [
189
+ {
190
+ "type": "field_image",
191
+ "src": Blockly.mainWorkspace.options.pathToMedia + "icons/control_wait.svg",
192
+ "width": 40,
193
+ "height": 40,
194
+ "alt": "Wait"
195
+ },
196
+ {
197
+ "type": "input_value",
198
+ "name": "DURATION",
199
+ "check": "Number"
200
+ }
201
+ ],
202
+ "inputsInline": true,
203
+ "previousStatement": null,
204
+ "nextStatement": null,
205
+ "category": Blockly.Categories.control,
206
+ "colour": Blockly.Colours.control.primary,
207
+ "colourSecondary": Blockly.Colours.control.secondary,
208
+ "colourTertiary": Blockly.Colours.control.tertiary,
209
+ "colourQuaternary": Blockly.Colours.control.quaternary
210
+ });
211
+ }
212
+ };
@@ -0,0 +1,139 @@
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.defaultToolbox');
24
+
25
+ goog.require('Blockly.Blocks');
26
+
27
+ /**
28
+ * @fileoverview Provide a default toolbox XML.
29
+ */
30
+
31
+ Blockly.Blocks.defaultToolbox = '<xml id="toolbox-categories" style="display: none">' +
32
+ '<category name="Events">' +
33
+ '<block type="event_whenflagclicked"></block>' +
34
+ '<block type="event_whenbroadcastreceived">' +
35
+ '<value name="CHOICE">' +
36
+ '<shadow type="dropdown_whenbroadcast">' +
37
+ '<field name="CHOICE">blue</field>' +
38
+ '</shadow>' +
39
+ '</value>' +
40
+ '</block>' +
41
+ '<block type="event_broadcast">' +
42
+ '<value name="CHOICE">' +
43
+ '<shadow type="dropdown_broadcast">' +
44
+ '<field name="CHOICE">blue</field>' +
45
+ '</shadow>' +
46
+ '</value>' +
47
+ '</block>' +
48
+ '</category>' +
49
+ '<category name="Control">' +
50
+ '<block type="control_forever"></block>' +
51
+ '<block type="control_repeat">' +
52
+ '<value name="TIMES">' +
53
+ '<shadow type="math_whole_number">' +
54
+ '<field name="NUM">4</field>' +
55
+ '</shadow>' +
56
+ '</value>' +
57
+ '</block>' +
58
+ '<block type="control_stop"></block>' +
59
+ '<block type="control_wait">' +
60
+ '<value name="DURATION">' +
61
+ '<shadow type="math_positive_number">' +
62
+ '<field name="NUM">1</field>' +
63
+ '</shadow>' +
64
+ '</value>' +
65
+ '</block>' +
66
+ '</category>' +
67
+ '<category name="Wedo">' +
68
+ '<block type="wedo_setcolor">' +
69
+ '<value name="CHOICE">' +
70
+ '<shadow type="dropdown_wedo_setcolor">' +
71
+ '<field name="CHOICE">mystery</field>' +
72
+ '</shadow>' +
73
+ '</value>' +
74
+ '</block>' +
75
+ '<block type="wedo_motorclockwise">' +
76
+ '<value name="DURATION">' +
77
+ '<shadow type="math_positive_number">' +
78
+ '<field name="NUM">1</field>' +
79
+ '</shadow>' +
80
+ '</value>' +
81
+ '</block>' +
82
+ '<block type="wedo_motorcounterclockwise">' +
83
+ '<value name="DURATION">' +
84
+ '<shadow type="math_positive_number">' +
85
+ '<field name="NUM">1</field>' +
86
+ '</shadow>' +
87
+ '</value>' +
88
+ '</block>' +
89
+ '<block type="wedo_motorspeed">' +
90
+ '<value name="CHOICE">' +
91
+ '<shadow type="dropdown_wedo_motorspeed">' +
92
+ '<field name="CHOICE">fast</field>' +
93
+ '</shadow>' +
94
+ '</value>' +
95
+ '</block>' +
96
+ '<block type="wedo_whentilt">' +
97
+ '<value name="CHOICE">' +
98
+ '<shadow type="dropdown_wedo_whentilt">' +
99
+ '<field name="CHOICE">forward</field>' +
100
+ '</shadow>' +
101
+ '</value>' +
102
+ '</block>' +
103
+ '<block type="wedo_whendistanceclose"></block>' +
104
+ '</category>' +
105
+ '</xml>';
106
+
107
+ Blockly.Blocks.defaultToolboxSimple = '<xml id="toolbox-simple" style="display: none">' +
108
+ '<block type="event_whenflagclicked"></block>' +
109
+ '<block type="event_whenbroadcastreceived">' +
110
+ '<value name="CHOICE">' +
111
+ '<shadow type="dropdown_whenbroadcast">' +
112
+ '<field name="CHOICE">blue</field>' +
113
+ '</shadow>' +
114
+ '</value>' +
115
+ '</block>' +
116
+ '<block type="event_broadcast">' +
117
+ '<value name="CHOICE">' +
118
+ '<shadow type="dropdown_broadcast">' +
119
+ '<field name="CHOICE">blue</field>' +
120
+ '</shadow>' +
121
+ '</value>' +
122
+ '</block>' +
123
+ '<block type="control_forever"></block>' +
124
+ '<block type="control_repeat">' +
125
+ '<value name="TIMES">' +
126
+ '<shadow type="math_whole_number">' +
127
+ '<field name="NUM">4</field>' +
128
+ '</shadow>' +
129
+ '</value>' +
130
+ '</block>' +
131
+ '<block type="control_stop"></block>' +
132
+ '<block type="control_wait">' +
133
+ '<value name="DURATION">' +
134
+ '<shadow type="math_positive_number">' +
135
+ '<field name="NUM">1</field>' +
136
+ '</shadow>' +
137
+ '</value>' +
138
+ '</block>' +
139
+ '</xml>';
@@ -0,0 +1,190 @@
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
+ /**
22
+ * @fileoverview Control blocks for Scratch (Horizontal)
23
+ * @author ascii@media.mit.edu <Andrew Sliwinski>
24
+ */
25
+ 'use strict';
26
+
27
+ goog.provide('Blockly.Blocks.event');
28
+
29
+ goog.require('Blockly.Blocks');
30
+
31
+ goog.require('Blockly.Colours');
32
+
33
+ Blockly.Blocks['event_whenflagclicked'] = {
34
+ /**
35
+ * Block for when flag clicked.
36
+ * @this Blockly.Block
37
+ */
38
+ init: function() {
39
+ this.jsonInit({
40
+ "id": "event_whenflagclicked",
41
+ "message0": "%1",
42
+ "args0": [
43
+ {
44
+ "type": "field_image",
45
+ "src": Blockly.mainWorkspace.options.pathToMedia + "icons/event_whenflagclicked.svg",
46
+ "width": 40,
47
+ "height": 40,
48
+ "alt": "When green flag clicked",
49
+ "flip_rtl": true
50
+ }
51
+ ],
52
+ "inputsInline": true,
53
+ "nextStatement": null,
54
+ "category": Blockly.Categories.event,
55
+ "colour": Blockly.Colours.event.primary,
56
+ "colourSecondary": Blockly.Colours.event.secondary,
57
+ "colourTertiary": Blockly.Colours.event.tertiary,
58
+ "colourQuaternary": Blockly.Colours.event.quaternary
59
+ });
60
+ }
61
+ };
62
+
63
+ Blockly.Blocks['dropdown_whenbroadcast'] = {
64
+ /**
65
+ * Block for when broadcast dropdown (used for shadow).
66
+ * @this Blockly.Block
67
+ */
68
+ init: function() {
69
+ this.appendDummyInput()
70
+ .appendField(new Blockly.FieldIconMenu(
71
+ [
72
+ {src: Blockly.mainWorkspace.options.pathToMedia + 'icons/event_when-broadcast-received_blue.svg',
73
+ value: 'blue', width: 48, height: 48, alt: 'Blue'},
74
+ {src: Blockly.mainWorkspace.options.pathToMedia + 'icons/event_when-broadcast-received_green.svg',
75
+ value: 'green', width: 48, height: 48, alt: 'Green'},
76
+ {src: Blockly.mainWorkspace.options.pathToMedia + 'icons/event_when-broadcast-received_coral.svg',
77
+ value: 'coral', width: 48, height: 48, alt: 'Coral'},
78
+ {src: Blockly.mainWorkspace.options.pathToMedia + 'icons/event_when-broadcast-received_magenta.svg',
79
+ value: 'magenta', width: 48, height: 48, alt: 'Magenta'},
80
+ {src: Blockly.mainWorkspace.options.pathToMedia + 'icons/event_when-broadcast-received_orange.svg',
81
+ value: 'orange', width: 48, height: 48, alt: 'Orange'},
82
+ {src: Blockly.mainWorkspace.options.pathToMedia + 'icons/event_when-broadcast-received_purple.svg',
83
+ value: 'purple', width: 48, height: 48, alt: 'Purple'}
84
+ ]), 'CHOICE');
85
+ this.setOutput(true);
86
+ this.setColour(Blockly.Colours.event.primary,
87
+ Blockly.Colours.event.secondary,
88
+ Blockly.Colours.event.tertiary,
89
+ Blockly.Colours.event.quaternary
90
+ );
91
+ }
92
+ };
93
+
94
+ Blockly.Blocks['event_whenbroadcastreceived'] = {
95
+ /**
96
+ * Block for when broadcast received.
97
+ * @this Blockly.Block
98
+ */
99
+ init: function() {
100
+ this.jsonInit({
101
+ "id": "event_whenbroadcastreceived",
102
+ "message0": "%1 %2",
103
+ "args0": [
104
+ {
105
+ "type": "field_image",
106
+ "src": Blockly.mainWorkspace.options.pathToMedia + "icons/event_when-broadcast-received_blue.svg",
107
+ "width": 40,
108
+ "height": 40,
109
+ "alt": "Broadcast received"
110
+ },
111
+ {
112
+ "type": "input_value",
113
+ "name": "CHOICE"
114
+ }
115
+ ],
116
+ "inputsInline": true,
117
+ "nextStatement": null,
118
+ "category": Blockly.Categories.event,
119
+ "colour": Blockly.Colours.event.primary,
120
+ "colourSecondary": Blockly.Colours.event.secondary,
121
+ "colourTertiary": Blockly.Colours.event.tertiary,
122
+ "colourQuaternary": Blockly.Colours.event.quaternary
123
+ });
124
+ }
125
+ };
126
+
127
+ Blockly.Blocks['dropdown_broadcast'] = {
128
+ /**
129
+ * Block for broadcast dropdown (used for shadow).
130
+ * @this Blockly.Block
131
+ */
132
+ init: function() {
133
+ this.appendDummyInput()
134
+ .appendField(new Blockly.FieldIconMenu(
135
+ [
136
+ {src: Blockly.mainWorkspace.options.pathToMedia + 'icons/event_broadcast_blue.svg',
137
+ value: 'blue', width: 48, height: 48, alt: 'Blue'},
138
+ {src: Blockly.mainWorkspace.options.pathToMedia + 'icons/event_broadcast_green.svg',
139
+ value: 'green', width: 48, height: 48, alt: 'Green'},
140
+ {src: Blockly.mainWorkspace.options.pathToMedia + 'icons/event_broadcast_coral.svg',
141
+ value: 'coral', width: 48, height: 48, alt: 'Coral'},
142
+ {src: Blockly.mainWorkspace.options.pathToMedia + 'icons/event_broadcast_magenta.svg',
143
+ value: 'magenta', width: 48, height: 48, alt: 'Magenta'},
144
+ {src: Blockly.mainWorkspace.options.pathToMedia + 'icons/event_broadcast_orange.svg',
145
+ value: 'orange', width: 48, height: 48, alt: 'Orange'},
146
+ {src: Blockly.mainWorkspace.options.pathToMedia + 'icons/event_broadcast_purple.svg',
147
+ value: 'purple', width: 48, height: 48, alt: 'Purple'}
148
+ ]), 'CHOICE');
149
+ this.setOutput(true);
150
+ this.setColour(Blockly.Colours.event.primary,
151
+ Blockly.Colours.event.secondary,
152
+ Blockly.Colours.event.tertiary,
153
+ Blockly.Colours.event.quaternary
154
+ );
155
+ }
156
+ };
157
+
158
+ Blockly.Blocks['event_broadcast'] = {
159
+ /**
160
+ * Block to send a broadcast.
161
+ * @this Blockly.Block
162
+ */
163
+ init: function() {
164
+ this.jsonInit({
165
+ "id": "event_broadcast",
166
+ "message0": "%1 %2",
167
+ "args0": [
168
+ {
169
+ "type": "field_image",
170
+ "src": Blockly.mainWorkspace.options.pathToMedia + "icons/event_broadcast_blue.svg",
171
+ "width": 40,
172
+ "height": 40,
173
+ "alt": "Broadcast"
174
+ },
175
+ {
176
+ "type": "input_value",
177
+ "name": "CHOICE"
178
+ }
179
+ ],
180
+ "inputsInline": true,
181
+ "previousStatement": null,
182
+ "nextStatement": null,
183
+ "category": Blockly.Categories.event,
184
+ "colour": Blockly.Colours.event.primary,
185
+ "colourSecondary": Blockly.Colours.event.secondary,
186
+ "colourTertiary": Blockly.Colours.event.tertiary,
187
+ "colourQuaternary": Blockly.Colours.event.quaternary
188
+ });
189
+ }
190
+ };