UNPKG

@mixly/micropython

Version:
1,310 lines (1,254 loc) 58.9 kB
import * as Blockly from 'blockly/core'; import { Boards, Profile } from 'mixly'; const DISPLAY_ONBOARD_HUE = '#569A98'; export const display_show_image = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .setCheck([String, "esp32_image", "List", 'Tuple']) .appendField(Blockly.Msg.MIXLY_ESP32_SHOW_IMAGE_OR_STRING); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); var version = Boards.getSelectedBoardKey() if (version == 'micropython:esp32:mixbot') { this.setTooltip(Blockly.Msg.MIXLY_MIXBOT_SHOW_SCROLL_STRING_TOOLTIP); } } }; export const display_show_image_or_string_delay = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .setCheck(String) .appendField(Blockly.Msg.OLED_DRAWSTR); this.appendValueInput("space") .setCheck(Number) .appendField(Blockly.Msg.MICROPYTHON_DISPLAY_FONT_SPACE); this.appendDummyInput("") .appendField(Blockly.Msg.TEXT_CENTER) .appendField(new Blockly.FieldDropdown([ [Blockly.Msg.MICROPYTHON_DISPLAY_YES, "True"], [Blockly.Msg.MICROPYTHON_DISPLAY_NO, "False"] ]), 'center') this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); } }; export const display_scroll_string = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .setCheck(String) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_SCROLL_STRING); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); } }; export const display_scroll_string_delay = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .setCheck(String) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_SCROLL_STRING); var version = Boards.getSelectedBoardKey() if (version == 'micropython:esp32s3:mixgo_nova') { this.appendValueInput("y") .setCheck(Number) .appendField('y'); this.appendValueInput("size") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_TURTLE_WRITE_FONT_NUM); } this.appendValueInput("space") .setCheck(Number) .appendField(Blockly.Msg.MICROPYTHON_DISPLAY_FONT_SPACE); this.appendValueInput("time") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_SCROLL_INTERVAL); if (version == 'micropython:esp32s3:mixgo_nova') { this.appendValueInput('VAR') .appendField(Blockly.Msg.HTML_COLOUR); } this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.MIXLY_ESP32_SCROLL_IMAGE_OR_STRING_DELAY); } }; export const onboard_tft_scroll_string_delay = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .setCheck(String) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_SCROLL_STRING); this.appendValueInput("y") .setCheck(Number) .appendField('y'); this.appendValueInput("size") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_TURTLE_WRITE_FONT_NUM); this.appendValueInput("space") .setCheck(Number) .appendField(Blockly.Msg.MICROPYTHON_DISPLAY_FONT_SPACE); this.appendValueInput("time") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_SCROLL_INTERVAL); this.appendValueInput('VAR') .appendField(Blockly.Msg.HTML_COLOUR); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.MIXLY_ESP32_SCROLL_IMAGE_OR_STRING_DELAY); } }; export const display_show_frame_string = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .setCheck(String) .appendField(Blockly.Msg.MIXLY_ESP32_MONITOR_SHOW_FRAME); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); } }; export const display_show_frame_string_delay = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .setCheck(String) .appendField(Blockly.Msg.MIXLY_ESP32_MONITOR_SHOW_FRAME); this.appendValueInput("time") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_SCROLL_INTERVAL); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); } }; /** * @deprecated To be removed in the future */ export const display_image_create = { init: function () { this.appendDummyInput('') .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_CREATE_IMAGE) for (let i = 0; i < 12; i++) { let dummyInputObj = this.appendDummyInput(); for (let j = 0; j < 32; j++) { dummyInputObj.appendField(new Blockly.FieldColour('#000', null, { colourOptions: ['#f00', '#000'], columns: 2 }), i + '-' + j); } } this.appendDummyInput() .appendField(`(${Blockly.Msg.MIXLY_DEPRECATED})`); this.setOutput(true); this.setColour(DISPLAY_ONBOARD_HUE); this.setTooltip(Blockly.Msg.MIXLY_MICROBIT_Create_image1); this.setWarningText(Blockly.Msg.MIXLY_DEPRECATED_WARNING_TEXT); } }; export const display_bitmap_create = { init: function () { this.appendDummyInput('') .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_CREATE_IMAGE) this.appendDummyInput('') .setAlign(Blockly.inputs.Align.CENTRE) .appendField(new Blockly.FieldBitmap(display_bitmap_create.BITMAP, null, { filledColor: '#000', emptyColor: '#5ba5a5', bgColor: '#e5e7f1' }), 'BITMAP'); this.setOutput(true); this.setColour(DISPLAY_ONBOARD_HUE); this.setTooltip(Blockly.Msg.MIXLY_MICROBIT_Create_image1); }, BITMAP: Array.from({ length: 12 }, () => new Array(32).fill(0)) }; export const display_image_builtins = { init: function () { this.jsonInit({ "colour": DISPLAY_ONBOARD_HUE, "args0": [ { "name": "image", "options": [ ["HEART", "HEART"], ["HEART_SMALL", "HEART_SMALL"], ["HAPPY", "HAPPY"], ["SAD", "SAD"], ["SMILE", "SMILE"], ["SILLY", "SILLY"], ["FABULOUS", "FABULOUS"], ["SURPRISED", "SURPRISED"], ["ASLEEP", "ASLEEP"], ["ANGRY", "ANGRY"], ["CONFUSED", "CONFUSED"], ["NO", "NO"], ["YES", "YES"] ], "type": "field_dropdown" } ], "output": ["esp32_image", "List"], "helpUrl": "https://microbit-micropython.readthedocs.io/en/latest/image.html#attributes", "tooltip": Blockly.Msg.MIXLY_MICROBIT_Built_in_image1, "message0": Blockly.Msg.MIXLY_MICROBIT_Built_in_image }); } }; export const display_image_builtins_all = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendDummyInput("") .appendField(Blockly.Msg.MIXLY_MICROBIT_Built_in_image1) .appendField(new Blockly.FieldDropdown(Profile.default.builtinimg), 'image'); this.setOutput(true, ["esp32_image", "List"]); } }; export const image_arithmetic = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.setOutput(true, "esp32_image"); this.appendValueInput('A') // .setCheck(["esp32_image", "List", String]) .appendField(Blockly.Msg.MICROBIT_DISPLAY_MERGE_SHAPE); this.appendValueInput('B') // .setCheck(["esp32_image", "List", String]) .appendField(new Blockly.FieldDropdown(image_arithmetic.OPERATORS), 'OP'); this.setInputsInline(true); var thisBlock = this; this.setTooltip(function () { var mode = thisBlock.getFieldValue('OP'); var TOOLTIPS = { '+': Blockly.Msg.MIXLY_MICROBIT_image_add, '-': Blockly.Msg.MIXLY_MICROBIT_image_reduce }; return TOOLTIPS[mode]; }); }, OPERATORS: [ [Blockly.Msg.MICROBIT_DISPLAY_UNION, 'add'], [Blockly.Msg.MICROBIT_DISPLAY_MINUS, 'sub'] ] }; export const image_invert = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('A') .setCheck("esp32_image") .appendField(Blockly.Msg.MIXLY_MICROBIT_Invert_image1); this.setInputsInline(true); this.setOutput(true, "esp32_image"); } }; export const display_shift = { init: function () { //this.setHelpUrl(Blockly.Msg.MATH_TRIG_HELPURL); this.setColour(DISPLAY_ONBOARD_HUE); // this.setOutput(true); this.setInputsInline(true); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.appendDummyInput('') .appendField(Blockly.Msg.DISPLAY_IMAGE_LET) this.appendDummyInput('') .appendField(Blockly.Msg.DISPLAY_IMAGE_LET2) .appendField(new Blockly.FieldDropdown(display_shift.OPERATORS), 'OP'); this.appendValueInput('val') .appendField(Blockly.Msg.DISPLAY_IMAGE_SHIFT) .setCheck(Number); this.appendDummyInput('') .appendField(Blockly.Msg.DISPLAY_IMAGE_UNIT) var thisBlock = this; this.setTooltip(function () { var mode = thisBlock.getFieldValue('OP'); var mode0 = Blockly.Msg.DISPLAY_IMAGE_LET; var mode1 = Blockly.Msg.DISPLAY_IMAGE_LET2; var mode2 = Blockly.Msg.DISPLAY_IMAGE_LET3; var TOOLTIPS = { 'shift_up': Blockly.Msg.MIXLY_UP, 'shift_down': Blockly.Msg.MIXLY_DOWN, 'shift_left': Blockly.Msg.MIXLY_LEFT, 'shift_right': Blockly.Msg.MIXLY_RIGHT }; return mode0 + mode1 + TOOLTIPS[mode] + mode2; }); }, OPERATORS: [ [Blockly.Msg.MIXLY_UP, 'shift_up'], [Blockly.Msg.MIXLY_DOWN, 'shift_down'], [Blockly.Msg.MIXLY_LEFT, 'shift_left'], [Blockly.Msg.MIXLY_RIGHT, 'shift_right'], ] }; export const display_get_pixel = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('x') .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_GET_POINT_X); this.appendValueInput('y') .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_PLOT_POINT_Y); this.appendDummyInput() .appendField(Blockly.Msg.MIXLY_ESP32_JS_MONITOR_GET_POINT); this.setInputsInline(true); this.setOutput(true, Number); this.setTooltip(Blockly.Msg.MIXLY_ESP32_JS_MONITOR_BRIGHTNESS); } }; export const display_bright_point = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('x') .setCheck(Number) .appendField(Blockly.Msg.MIXLY_ESP32_JS_MONITOR_SET_BRIGHTNESS) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_GET_POINT_X); this.appendValueInput('y') .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_PLOT_POINT_Y); this.appendValueInput("STAT") .setCheck([Number, Boolean]); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.MIXLY_ESP32_DISPLAY_SETPIXEL); } }; export const display_get_screen_pixel = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendDummyInput() .appendField(Blockly.Msg.MIXLY_ESP32_JS_MONITOR_GET_SCREEN_BRIGHTNESS); this.setInputsInline(true); this.setOutput(true, Number); this.setTooltip(Blockly.Msg.MIXLY_ESP32_JS_MONITOR_GET_SCREEN_BRIGHTNESS); } }; export const display_bright_screen = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('x') .setCheck(Number) .appendField(Blockly.Msg.MIXLY_ESP32_JS_MONITOR_SET_SCREEN_BRIGHTNESS) this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.MIXLY_ESP32_JS_MONITOR_SET_SCREEN_BRIGHTNESS + ' 0.0-1.0'); } }; export const display_clear = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendDummyInput() .appendField(Blockly.Msg.MIXLY_MICROBIT_Clear_display); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.MIXLY_MICROBIT_Clear_display); } }; /** * @deprecated To be removed in the future */ export const mixgome_display_image_create = { init: function () { this.appendDummyInput('') .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_CREATE_IMAGE) for (let i = 0; i < 5; i++) { let dummyInputObj = this.appendDummyInput(); for (let j = 0; j < 8; j++) { dummyInputObj.appendField(new Blockly.FieldColour('#000', null, { colourOptions: ['#f00', '#000'], columns: 2 }), i + '-' + j); } } this.appendDummyInput() .appendField(`(${Blockly.Msg.MIXLY_DEPRECATED})`); this.setOutput(true); this.setColour(DISPLAY_ONBOARD_HUE); this.setTooltip(Blockly.Msg.MIXLY_MICROBIT_Create_image1); this.setWarningText(Blockly.Msg.MIXLY_DEPRECATED_WARNING_TEXT); } }; export const mixgome_display_bitmap_create = { init: function () { this.appendDummyInput('') .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_CREATE_IMAGE) this.appendDummyInput('') .setAlign(Blockly.inputs.Align.CENTRE) .appendField(new Blockly.FieldBitmap(mixgome_display_bitmap_create.BITMAP, null, { filledColor: '#000', emptyColor: '#5ba5a5', bgColor: '#e5e7f1' }), 'BITMAP'); this.setOutput(true); this.setColour(DISPLAY_ONBOARD_HUE); this.setTooltip(Blockly.Msg.MIXLY_MICROBIT_Create_image1); }, BITMAP: Array.from({ length: 5 }, () => new Array(8).fill(0)) }; /** * @deprecated To be removed in the future */ export const mixgomini_display_image_create = { init: function () { this.appendDummyInput('') .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_CREATE_IMAGE) for (let i = 0; i < 8; i++) { let dummyInputObj = this.appendDummyInput(); for (let j = 0; j < 12; j++) { dummyInputObj.appendField(new Blockly.FieldColour('#000', null, { colourOptions: ['#f00', '#000'], columns: 2 }), i + '-' + j); } } this.appendDummyInput() .appendField(`(${Blockly.Msg.MIXLY_DEPRECATED})`); this.setOutput(true); this.setColour(DISPLAY_ONBOARD_HUE); this.setTooltip(Blockly.Msg.MIXLY_MICROBIT_Create_image1); this.setWarningText(Blockly.Msg.MIXLY_DEPRECATED_WARNING_TEXT); } }; export const mixgomini_display_bitmap_create = { init: function () { this.appendDummyInput('') .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_CREATE_IMAGE) this.appendDummyInput('') .setAlign(Blockly.inputs.Align.CENTRE) .appendField(new Blockly.FieldBitmap(mixgomini_display_bitmap_create.BITMAP, null, { filledColor: '#000', emptyColor: '#5ba5a5', bgColor: '#e5e7f1' }), 'BITMAP'); this.setOutput(true); this.setColour(DISPLAY_ONBOARD_HUE); this.setTooltip(Blockly.Msg.MIXLY_MICROBIT_Create_image1); }, BITMAP: Array.from({ length: 8 }, () => new Array(12).fill(0)) }; /** * @deprecated To be removed in the future */ export const mixgo_display_image_create_new = { init: function () { this.appendDummyInput('') .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_CREATE_IMAGE) for (let i = 0; i < 8; i++) { let dummyInputObj = this.appendDummyInput(); for (let j = 0; j < 16; j++) { dummyInputObj.appendField(new Blockly.FieldColour('#000', null, { colourOptions: ['#f00', '#000'], columns: 2 }), i + '-' + j); } } this.appendDummyInput() .appendField(`(${Blockly.Msg.MIXLY_DEPRECATED})`); this.setOutput(true, "esp32_image"); this.setColour(DISPLAY_ONBOARD_HUE); this.setTooltip(Blockly.Msg.MIXLY_MICROBIT_Create_image1); this.setWarningText(Blockly.Msg.MIXLY_DEPRECATED_WARNING_TEXT); } }; export const mixgo_display_bitmap_create = { init: function () { this.appendDummyInput('') .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_CREATE_IMAGE) this.appendDummyInput('') .setAlign(Blockly.inputs.Align.CENTRE) .appendField(new Blockly.FieldBitmap(mixgo_display_bitmap_create.BITMAP, null, { filledColor: '#000', emptyColor: '#5ba5a5', bgColor: '#e5e7f1' }), 'BITMAP'); this.setOutput(true); this.setColour(DISPLAY_ONBOARD_HUE); this.setTooltip(Blockly.Msg.MIXLY_MICROBIT_Create_image1); }, BITMAP: Array.from({ length: 8 }, () => new Array(16).fill(0)) }; export const mixgome_display_font = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendDummyInput() .appendField(Blockly.Msg.OLED_SET_FONT) .appendField(new Blockly.FieldDropdown(mixgome_display_font.OPERATORS), 'OP'); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); }, OPERATORS: [ ['4x5' + Blockly.Msg.MIXGO_ME_DISPLAY_HORIZONTAL, "'4x5'"], ['5x5' + Blockly.Msg.MIXGO_ME_DISPLAY_HORIZONTAL, "'5x5'"], ['5x8' + Blockly.Msg.MIXGO_ME_DISPLAY_VERTICAL, "'5x8'"] ] }; //mpython export const onboard_oled_show_image = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .appendField(Blockly.Msg.OLED_BITMAP); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.OLED_BITMAP_OR_STRING); } }; export const onboard_oled_show_image_xy = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .appendField(Blockly.Msg.OLED_BITMAP); this.appendValueInput("x") .setCheck(Number) .appendField('x'); this.appendValueInput("y") .setCheck(Number) .appendField('y'); this.appendValueInput("size") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_NUMBER); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.OLED_BITMAP_OR_STRING); } }; export const onboard_oled_show_string = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .setCheck([String, "esp32_image", "List", 'Tuple']) .appendField(Blockly.Msg.OLED_DRAWSTR); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.OLED_BITMAP_OR_STRING); } }; export const onboard_oled_show_image_or_string_delay = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .setCheck(String) .appendField(Blockly.Msg.OLED_DRAWSTR); this.appendValueInput("x") .setCheck(Number) .appendField('x'); this.appendValueInput("y") .setCheck(Number) .appendField('y'); this.appendValueInput("size") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_TURTLE_WRITE_FONT_NUM); this.appendValueInput("space") .setCheck(Number) .appendField(Blockly.Msg.MICROPYTHON_DISPLAY_FONT_SPACE); this.appendDummyInput("") .appendField(Blockly.Msg.TEXT_CENTER) .appendField(new Blockly.FieldDropdown([ [Blockly.Msg.MICROPYTHON_DISPLAY_YES, "True"], [Blockly.Msg.MICROPYTHON_DISPLAY_NO, "False"] ]), 'center') this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.MIXLY_ESP32_SHOW_IMAGE_OR_STRING_DELAY); } }; export const onboard_oled_scroll_string_delay = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .setCheck(String) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_SCROLL_STRING); this.appendValueInput("y") .setCheck(Number) .appendField('y'); this.appendValueInput("size") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_TURTLE_WRITE_FONT_NUM); this.appendValueInput("space") .setCheck(Number) .appendField(Blockly.Msg.MICROPYTHON_DISPLAY_FONT_SPACE); this.appendValueInput("time") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_SCROLL_INTERVAL); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.MIXLY_ESP32_SCROLL_IMAGE_OR_STRING_DELAY); } }; export const onboard_oled_show_frame_string_delay = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .setCheck(String) .appendField(Blockly.Msg.MIXLY_ESP32_MONITOR_SHOW_FRAME); this.appendValueInput("size") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_TURTLE_WRITE_FONT_NUM); this.appendValueInput("time") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_SCROLL_INTERVAL); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); } }; export const onboard_oled_bright_point = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('x') .setCheck(Number) .appendField(Blockly.Msg.MIXLY_ESP32_JS_MONITOR_SET_BRIGHTNESS) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_GET_POINT_X); this.appendValueInput('y') .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_PLOT_POINT_Y); this.appendValueInput("STAT") .setCheck([Number, Boolean]); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.MIXLY_ESP32_DISPLAY_SETPIXEL); } }; export const mpython_display_shape_rect = { init: function () { this.jsonInit({ "colour": DISPLAY_ONBOARD_HUE, "args0": [ { "name": "state", "options": [ [Blockly.Msg.MPYTHON_DISPLAY_MODE_1, '1'], [Blockly.Msg.MPYTHON_DISPLAY_MODE_0, '0'] ], "type": "field_dropdown" }, { "name": "shape", "options": [ [Blockly.Msg.MPYTHON_DISPLAY_HOLLOW, 'rect'], [Blockly.Msg.MPYTHON_DISPLAY_SOLID, 'fill_rect'] ], "type": "field_dropdown" }, { "type": "input_dummy" }, { "name": "x", "type": "input_value", //"check": "Number" }, { "name": "y", "type": "input_value", //"check": "Number" }, { "name": "w", "type": "input_value", //"check": "Number" }, { "name": "h", "type": "input_value", //"check": "Number" } ], "inputsInline": true, "helpUrl": Blockly.Msg.mpython_HELPURL, "tooltip": Blockly.Msg.MPYTHON_DISPLAY_SHAPE_RECT_TOOLTIP, "message0": Blockly.Msg.MPYTHON_DISPLAY_SHAPE_RECT_MESSAGE0, "nextStatement": null, "previousStatement": null }); } }; export const mpython_display_hvline = { init: function () { this.jsonInit({ "colour": DISPLAY_ONBOARD_HUE, "args0": [ { "name": "state", "options": [ [Blockly.Msg.MPYTHON_DISPLAY_MODE_1, '1'], [Blockly.Msg.MPYTHON_DISPLAY_MODE_0, '0'] ], "type": "field_dropdown" }, { "name": "dir_h_v", "options": [ [Blockly.Msg.mpython_vertical, '0'], [Blockly.Msg.mpython_horizontal, '1'] ], "type": "field_dropdown" }, { "type": "input_dummy" }, { "name": "x", "type": "input_value", //"check": "Number" }, { "name": "y", "type": "input_value", //"check": "Number" }, { "name": "length", "type": "input_value", //"check": "Number" } ], "inputsInline": true, "helpUrl": Blockly.Msg.mpython_HELPURL, "tooltip": Blockly.Msg.MPYTHON_DISPLAY_HVLINE_TOOLTIP, "message0": Blockly.Msg.MPYTHON_DISPLAY_HVLINE_MESSAGE0, "nextStatement": null, "previousStatement": null }); } }; export const mpython_display_line = { init: function () { this.jsonInit({ "colour": DISPLAY_ONBOARD_HUE, "args0": [ { "name": "state", "options": [[Blockly.Msg.mpython_display_hline_1, '1'], [Blockly.Msg.mpython_display_hline_0, '0']], "type": "field_dropdown" }, { "type": "input_dummy" }, { "name": "x1", "type": "input_value", //"check": "Number" }, { "name": "y1", "type": "input_value", //"check": "Number" }, { "name": "x2", "type": "input_value", //"check": "Number" }, { "name": "y2", "type": "input_value", //"check": "Number" } ], "inputsInline": true, "helpUrl": Blockly.Msg.mpython_HELPURL, "tooltip": Blockly.Msg.mpython_display_line_TOOLTIP, "message0": Blockly.Msg.mpython_display_line_MESSAGE0, "nextStatement": null, "previousStatement": null }); } }; export const mpython_pbm_image = { init: function () { this.appendDummyInput() .appendField(Blockly.Msg.MIXLY_MICROBIT_Built_in_image1) .appendField(new Blockly.FieldDropdown(mpython_pbm_image.IMAGES), 'path'); this.setColour(DISPLAY_ONBOARD_HUE); this.setOutput(true); }, IMAGES: [ ["Heart", "expression_picture.Heart"], ["Angry", "expression_picture.Angry"], ["Bored", "expression_picture.Bored"], ["Confused", "expression_picture.Confused"], ["Happy", "expression_picture.Happy"], ["Paper", "expression_picture.Paper"], ["Rock", "expression_picture.Rock"], ["Sad", "expression_picture.Sad"], ["Scissors", "expression_picture.Scissors"], ["Silly", "expression_picture.Silly"], ["Sleep", "expression_picture.Sleep"], ["Small_heart", "expression_picture.Small_heart"], ["Small_paper", "expression_picture.Small_paper"], ["Small_rock", "expression_picture.Small_rock"], ["Small_scissors", "expression_picture.Small_scissors"], ["Smile", "expression_picture.Smile"], ["Surprise", "expression_picture.Surprise"], ["Wonderful", "expression_picture.Wonderful"], ["Eyes_Angry", "eye_picture.Eyes_Angry"], ["Awake", "eye_picture.Awake"], ["Black_eye", "eye_picture.Black_eye"], ["Bottom_left", "eye_picture.Bottom_left"], ["Bottom_right", "eye_picture.Bottom_right"], ["Crazy_1", "eye_picture.Crazy_1"], ["Crazy_2", "eye_picture.Crazy_2"], ["Disappointed", "eye_picture.Disappointed"], ["Dizzy", "eye_picture.Dizzy"], ["Down", "eye_picture.Down"], ["Evil", "eye_picture.Evil"], ["Hurt", "eye_picture.Hurt"], ["Knocked_out", "eye_picture.Knocked_out"], ["Love", "eye_picture.Love"], ["Middle_left", "eye_picture.Middle_left"], ["Middle_right", "eye_picture.Middle_right"], ["Neutral", "eye_picture.Neutral"], ["Nuclear", "eye_picture.Nuclear"], ["Pinch_left", "eye_picture.Pinch_left"], ["Pinch_middle", "eye_picture.Pinch_middle"], ["Pinch_right", "eye_picture.Pinch_right"], ["Tear", "eye_picture.Tear"], ["Tired_left", "eye_picture.Tired_left"], ["Tired_middle", "eye_picture.Tired_middle"], ["Tired_right", "eye_picture.Tired_right"], ["Toxic", "eye_picture.Toxic"], ["Up", "eye_picture.Up"], ["Winking", "eye_picture.Winking"], ["Accept", "informatio_picture.Accept"], ["Backward", "informatio_picture.Backward"], ["Decline", "informatio_picture.Decline"], ["Forward", "informatio_picture.Forward"], ["Left", "informatio_picture.Left"], ["No_go", "informatio_picture.No_go"], ["Question_mark", "informatio_picture.Question_mark"], ["Right", "informatio_picture.Right"], ["Stop_1", "informatio_picture.Stop_1"], ["Stop_2", "informatio_picture.Stop_2"], ["Thumbs_down", "informatio_picture.Thumbs_down"], ["Thumbs_up", "informatio_picture.Thumbs_up"], ["Warning", "informatio_picture.Warning"], ["Bomb", "object_picture.Bomb"], ["Boom", "object_picture.Boom"], ["Fire", "object_picture.Fire"], ["Flowers", "object_picture.Flowers"], ["Forest", "object_picture.Forest"], ["Lightning", "object_picture.Lightning"], ["Light_off", "object_picture.Light_off"], ["Light_on", "object_picture.Light_on"], ["Night", "object_picture.Night"], ["Pirate", "object_picture.Pirate"], ["Snow", "object_picture.Snow"], ["Target", "object_picture.Target"], ["Bar_0", "progres_picture.Bar_0"], ["Bar_1", "progres_picture.Bar_1"], ["Bar_2", "progres_picture.Bar_2"], ["Bar_3", "progres_picture.Bar_3"], ["Bar_4", "progres_picture.Bar_4"], ["Dial_0", "progres_picture.Dial_0"], ["Dial_1", "progres_picture.Dial_1"], ["Dial_2", "progres_picture.Dial_2"], ["Dial_3", "progres_picture.Dial_3"], ["Dial_4", "progres_picture.Dial_4"], ["Dots_0", "progres_picture.Dots_0"], ["Dots_1", "progres_picture.Dots_1"], ["Dots_2", "progres_picture.Dots_2"], ["Dots_3", "progres_picture.Dots_3"], ["Hourglass_0", "progres_picture.Hourglass_0"], ["Hourglass_1", "progres_picture.Hourglass_1"], ["Hourglass_2", "progres_picture.Hourglass_2"], ["Timer_0", "progres_picture.Timer_0"], ["Timer_1", "progres_picture.Timer_1"], ["Timer_2", "progres_picture.Timer_2"], ["Timer_3", "progres_picture.Timer_3"], ["Timer_4", "progres_picture.Timer_4"], ["Water_level_0", "progres_picture.Water_level_0"], ["Water_level_1", "progres_picture.Water_level_1"], ["Water_level_2", "progres_picture.Water_level_2"], ["Water_level_3", "progres_picture.Water_level_3"], ["YES", "informatio_picture.YES"], ["NO", "informatio_picture.NO"] ] }; /** * @deprecated To be removed in the future */ export const mixbot_display_image_create = { init: function () { this.appendDummyInput('') .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_CREATE_IMAGE) for (let i = 0; i < 5; i++) { let dummyInputObj = this.appendDummyInput(); for (let j = 0; j < 5; j++) { dummyInputObj.appendField(new Blockly.FieldColour('#000', null, { colourOptions: ['#f00', '#000'], columns: 2 }), i + '-' + j); } } this.appendDummyInput() .appendField(`(${Blockly.Msg.MIXLY_DEPRECATED})`); this.setOutput(true); this.setColour(DISPLAY_ONBOARD_HUE); this.setTooltip(Blockly.Msg.MIXLY_MICROBIT_Create_image1); this.setWarningText(Blockly.Msg.MIXLY_DEPRECATED_WARNING_TEXT); } }; export const mixbot_display_bitmap_create = { init: function () { this.appendDummyInput('') .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_CREATE_IMAGE) this.appendDummyInput('') .setAlign(Blockly.inputs.Align.CENTRE) .appendField(new Blockly.FieldBitmap(mixbot_display_bitmap_create.BITMAP, null, { filledColor: '#000', emptyColor: '#5ba5a5', bgColor: '#e5e7f1' }), 'BITMAP'); this.setOutput(true); this.setColour(DISPLAY_ONBOARD_HUE); this.setTooltip(Blockly.Msg.MIXLY_MICROBIT_Create_image1); }, BITMAP: Array.from({ length: 5 }, () => new Array(5).fill(0)) }; export const mixbot_display_get_screen_pixel = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendDummyInput() .appendField(Blockly.Msg.MIXLY_ESP32_JS_MONITOR_GET_SCREEN_BRIGHTNESS); this.setInputsInline(true); this.setOutput(true, Number); this.setTooltip(Blockly.Msg.MIXLY_ESP32_JS_MONITOR_GET_SCREEN_BRIGHTNESS); } }; export const mixbot_display_get_ambientbright = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendDummyInput() .appendField(Blockly.Msg.MIXLY_MIXBOT_AMBIENTBRIGHT); this.setInputsInline(true); this.setOutput(true, Number); } }; export const mixbot_display_bright_screen = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('x') .setCheck(Number) .appendField(Blockly.Msg.MIXLY_ESP32_JS_MONITOR_SET_SCREEN_BRIGHTNESS) this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.MIXLY_ESP32_JS_MONITOR_SET_SCREEN_BRIGHTNESS + ' 0.0-1.0'); } }; export const mixbot_display_rotate = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendDummyInput() .appendField(Blockly.Msg.MIXLY_MIXBOT_SCREEN_ROTATE) .appendField(new Blockly.FieldDropdown(mixbot_display_rotate.OPERATORS), 'OP'); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); }, OPERATORS: [ [Blockly.Msg.mixpy_PL_PIE_SHADOW_N, '0'], [Blockly.Msg.CLOCKWISE + '90' + Blockly.Msg.blockpy_setheading_degree, '1'], [Blockly.Msg.CLOCKWISE + '180' + Blockly.Msg.blockpy_setheading_degree, '2'], [Blockly.Msg.CLOCKWISE + '270' + Blockly.Msg.blockpy_setheading_degree, '3'] ] }; /** * @deprecated To be removed in the future */ export const bitbot_display_image_create = { init: function () { this.appendDummyInput('') .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_CREATE_IMAGE) for (let i = 0; i < 12; i++) { let dummyInputObj = this.appendDummyInput(); for (let j = 0; j < 12; j++) { dummyInputObj.appendField(new Blockly.FieldColour('#000', null, { colourOptions: ['#f00', '#000'], columns: 2 }), i + '-' + j); } } this.appendDummyInput() .appendField(`(${Blockly.Msg.MIXLY_DEPRECATED})`); this.setOutput(true); this.setColour(DISPLAY_ONBOARD_HUE); this.setTooltip(Blockly.Msg.MIXLY_MICROBIT_Create_image1); this.setWarningText(Blockly.Msg.MIXLY_DEPRECATED_WARNING_TEXT); } }; export const bitbot_display_bitmap_create = { init: function () { this.appendDummyInput('') .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_CREATE_IMAGE) this.appendDummyInput('') .setAlign(Blockly.inputs.Align.CENTRE) .appendField(new Blockly.FieldBitmap(bitbot_display_bitmap_create.BITMAP, null, { filledColor: '#000', emptyColor: '#5ba5a5', bgColor: '#e5e7f1' }), 'BITMAP'); this.setOutput(true); this.setColour(DISPLAY_ONBOARD_HUE); this.setTooltip(Blockly.Msg.MIXLY_MICROBIT_Create_image1); }, BITMAP: Array.from({ length: 12 }, () => new Array(12).fill(0)) }; export const onboard_tft_show_image_xy = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .appendField(Blockly.Msg.OLED_BITMAP); this.appendValueInput("x") .setCheck(Number) .appendField('x'); this.appendValueInput("y") .setCheck(Number) .appendField('y'); this.appendValueInput("size") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_NUMBER); this.appendValueInput('VAR') .appendField(Blockly.Msg.HTML_COLOUR); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.OLED_BITMAP_OR_STRING); } }; export const onboard_tft_show_image_or_string_delay = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .setCheck(String) .appendField(Blockly.Msg.OLED_DRAWSTR); this.appendValueInput("x") .setCheck(Number) .appendField('x'); this.appendValueInput("y") .setCheck(Number) .appendField('y'); this.appendValueInput("size") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_TURTLE_WRITE_FONT_NUM); this.appendValueInput("space") .setCheck(Number) .appendField(Blockly.Msg.MICROPYTHON_DISPLAY_FONT_SPACE); this.appendDummyInput("") .appendField(Blockly.Msg.TEXT_CENTER) .appendField(new Blockly.FieldDropdown([ [Blockly.Msg.MICROPYTHON_DISPLAY_YES, "True"], [Blockly.Msg.MICROPYTHON_DISPLAY_NO, "False"] ]), 'center') this.appendValueInput('VAR') .appendField(Blockly.Msg.HTML_COLOUR); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); this.setTooltip(Blockly.Msg.MIXLY_ESP32_SHOW_IMAGE_OR_STRING_DELAY); } }; export const onboard_tft_show_frame_string_delay = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('data') .setCheck(String) .appendField(Blockly.Msg.MIXLY_ESP32_MONITOR_SHOW_FRAME); this.appendValueInput("size") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_TURTLE_WRITE_FONT_NUM); this.appendValueInput("time") .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_SCROLL_INTERVAL); this.appendValueInput('VAR') .appendField(Blockly.Msg.HTML_COLOUR); this.setPreviousStatement(true, null); this.setNextStatement(true, null); this.setInputsInline(true); } }; export const onboard_tft_display_shape_rect = { init: function () { this.jsonInit({ "colour": DISPLAY_ONBOARD_HUE, "args0": [ { "name": "shape", "options": [ [Blockly.Msg.MPYTHON_DISPLAY_HOLLOW, 'rect'], [Blockly.Msg.MPYTHON_DISPLAY_SOLID, 'fill_rect'] ], "type": "field_dropdown" }, { "type": "input_dummy" }, { "name": "x", "type": "input_value", //"check": "Number" }, { "name": "y", "type": "input_value", //"check": "Number" }, { "name": "w", "type": "input_value", //"check": "Number" }, { "name": "h", "type": "input_value", //"check": "Number" }, { "name": "VAR", "type": "input_value", //"check": "Number" } ], "inputsInline": true, "helpUrl": Blockly.Msg.mpython_HELPURL, "tooltip": Blockly.Msg.MPYTHON_DISPLAY_SHAPE_RECT_TOOLTIP, "message0": Blockly.Msg.ONBOARD_TFT_DISPLAY_SHAPE_RECT_MESSAGE0, "nextStatement": null, "previousStatement": null }); } }; export const onboard_tft_display_hvline = { init: function () { this.jsonInit({ "colour": DISPLAY_ONBOARD_HUE, "args0": [ { "name": "dir_h_v", "options": [ [Blockly.Msg.mpython_vertical, '0'], [Blockly.Msg.mpython_horizontal, '1'] ], "type": "field_dropdown" }, { "type": "input_dummy" }, { "name": "x", "type": "input_value", //"check": "Number" }, { "name": "y", "type": "input_value", //"check": "Number" }, { "name": "length", "type": "input_value", //"check": "Number" }, { "name": "VAR", "type": "input_value", //"check": "Number" } ], "inputsInline": true, "helpUrl": Blockly.Msg.mpython_HELPURL, "tooltip": Blockly.Msg.MPYTHON_DISPLAY_HVLINE_TOOLTIP, "message0": Blockly.Msg.ONBOARD_TFT_DISPLAY_HVLINE_MESSAGE0, "nextStatement": null, "previousStatement": null }); } }; export const onboard_tft_display_line = { init: function () { this.jsonInit({ "colour": DISPLAY_ONBOARD_HUE, "args0": [ { "type": "input_dummy" }, { "name": "x1", "type": "input_value", //"check": "Number" }, { "name": "y1", "type": "input_value", //"check": "Number" }, { "name": "x2", "type": "input_value", //"check": "Number" }, { "name": "y2", "type": "input_value", //"check": "Number" }, { "name": "VAR", "type": "input_value", //"check": "Number" } ], "inputsInline": true, "helpUrl": Blockly.Msg.mpython_HELPURL, "tooltip": Blockly.Msg.mpython_display_line_TOOLTIP, "message0": Blockly.Msg.mpython_display_line_MESSAGE0, "nextStatement": null, "previousStatement": null }); } }; export const onboard_tft_get_pixel = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendDummyInput('') .appendField(Blockly.Msg.MIXLY_MICROBIT_PY_STORAGE_GET) this.appendValueInput('x') .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_GET_POINT_X); this.appendValueInput('y') .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_PLOT_POINT_Y); this.appendDummyInput() .appendField(Blockly.Msg.HTML_COLOUR); this.setInputsInline(true); this.setOutput(true, Number); this.setTooltip(Blockly.Msg.MIXLY_ESP32_JS_MONITOR_BRIGHTNESS); } }; export const onboard_tft_bright_point = { init: function () { this.setColour(DISPLAY_ONBOARD_HUE); this.appendValueInput('x') .setCheck(Number) .appendField(Blockly.Msg.MIXLY_LCD_SETCOLOR) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_GET_POINT_X); this.appendValueInput('y') .setCheck(Number) .appendField(Blockly.Msg.MIXLY_MICROBIT_JS_MONITOR_PLOT_POINT_Y); this.appendValueInp