2017-04-17 15:10:04 -04:00
|
|
|
const adapter = require('./adapter');
|
|
|
|
const mutationAdapter = require('./mutation-adapter');
|
|
|
|
const xmlEscape = require('../util/xml-escape');
|
2017-05-26 13:50:50 -04:00
|
|
|
const MonitorRecord = require('./monitor-record');
|
2017-09-07 11:51:21 -04:00
|
|
|
const Clone = require('../util/clone');
|
2018-01-08 20:22:18 -05:00
|
|
|
const {Map} = require('immutable');
|
2018-04-10 16:29:51 -04:00
|
|
|
const BlocksExecuteCache = require('./blocks-execute-cache');
|
2018-05-21 11:30:22 -04:00
|
|
|
const log = require('../util/log');
|
2016-06-08 13:44:09 -04:00
|
|
|
|
2016-06-06 15:29:34 -04:00
|
|
|
/**
|
2016-06-08 13:27:01 -04:00
|
|
|
* @fileoverview
|
2016-06-06 15:29:34 -04:00
|
|
|
* Store and mutate the VM block representation,
|
|
|
|
* and handle updates from Scratch Blocks events.
|
|
|
|
*/
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
class Blocks {
|
|
|
|
constructor () {
|
|
|
|
/**
|
|
|
|
* All blocks in the workspace.
|
|
|
|
* Keys are block IDs, values are metadata about the block.
|
|
|
|
* @type {Object.<string, Object>}
|
|
|
|
*/
|
|
|
|
this._blocks = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* All top-level scripts in the workspace.
|
|
|
|
* A list of block IDs that represent scripts (i.e., first block in script).
|
|
|
|
* @type {Array.<String>}
|
|
|
|
*/
|
|
|
|
this._scripts = [];
|
2017-11-20 10:22:51 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Runtime Cache
|
|
|
|
* @type {{inputs: {}, procedureParamNames: {}, procedureDefinitions: {}}}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._cache = {
|
|
|
|
/**
|
|
|
|
* Cache block inputs by block id
|
|
|
|
* @type {object.<string, !Array.<object>>}
|
|
|
|
*/
|
|
|
|
inputs: {},
|
|
|
|
/**
|
|
|
|
* Cache procedure Param Names by block id
|
|
|
|
* @type {object.<string, ?Array.<string>>}
|
|
|
|
*/
|
|
|
|
procedureParamNames: {},
|
|
|
|
/**
|
|
|
|
* Cache procedure definitions by block id
|
|
|
|
* @type {object.<string, ?string>}
|
|
|
|
*/
|
2018-04-10 16:29:51 -04:00
|
|
|
procedureDefinitions: {},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A cache for execute to use and store on. Only available to
|
|
|
|
* execute.
|
|
|
|
* @type {object.<string, object>}
|
|
|
|
*/
|
|
|
|
_executeCached: {}
|
2017-11-20 10:22:51 -05:00
|
|
|
};
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
|
|
|
|
2016-06-08 13:27:01 -04:00
|
|
|
/**
|
2017-04-17 19:42:48 -04:00
|
|
|
* Blockly inputs that represent statements/branch.
|
|
|
|
* are prefixed with this string.
|
|
|
|
* @const{string}
|
2016-06-08 13:27:01 -04:00
|
|
|
*/
|
2017-04-17 19:42:48 -04:00
|
|
|
static get BRANCH_INPUT_PREFIX () {
|
|
|
|
return 'SUBSTACK';
|
|
|
|
}
|
2016-06-08 13:27:01 -04:00
|
|
|
|
|
|
|
/**
|
2017-04-17 19:42:48 -04:00
|
|
|
* Provide an object with metadata for the requested block ID.
|
|
|
|
* @param {!string} blockId ID of block we have stored.
|
|
|
|
* @return {?object} Metadata about the block, if it exists.
|
2016-06-08 13:27:01 -04:00
|
|
|
*/
|
2017-04-17 19:42:48 -04:00
|
|
|
getBlock (blockId) {
|
|
|
|
return this._blocks[blockId];
|
|
|
|
}
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Get all known top-level blocks that start scripts.
|
|
|
|
* @return {Array.<string>} List of block IDs.
|
|
|
|
*/
|
|
|
|
getScripts () {
|
|
|
|
return this._scripts;
|
|
|
|
}
|
2016-06-09 13:26:07 -04:00
|
|
|
|
2017-08-26 13:07:47 -04:00
|
|
|
/**
|
2017-04-17 19:42:48 -04:00
|
|
|
* Get the next block for a particular block
|
|
|
|
* @param {?string} id ID of block to get the next block for
|
|
|
|
* @return {?string} ID of next block in the sequence
|
|
|
|
*/
|
|
|
|
getNextBlock (id) {
|
|
|
|
const block = this._blocks[id];
|
|
|
|
return (typeof block === 'undefined') ? null : block.next;
|
|
|
|
}
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Get the branch for a particular C-shaped block.
|
|
|
|
* @param {?string} id ID for block to get the branch for.
|
|
|
|
* @param {?number} branchNum Which branch to select (e.g. for if-else).
|
|
|
|
* @return {?string} ID of block in the branch.
|
|
|
|
*/
|
|
|
|
getBranch (id, branchNum) {
|
|
|
|
const block = this._blocks[id];
|
|
|
|
if (typeof block === 'undefined') return null;
|
|
|
|
if (!branchNum) branchNum = 1;
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
let inputName = Blocks.BRANCH_INPUT_PREFIX;
|
|
|
|
if (branchNum > 1) {
|
|
|
|
inputName += branchNum;
|
|
|
|
}
|
2016-06-06 15:31:14 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
// Empty C-block?
|
|
|
|
const input = block.inputs[inputName];
|
|
|
|
return (typeof input === 'undefined') ? null : input.block;
|
|
|
|
}
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Get the opcode for a particular block
|
|
|
|
* @param {?object} block The block to query
|
|
|
|
* @return {?string} the opcode corresponding to that block
|
|
|
|
*/
|
|
|
|
getOpcode (block) {
|
|
|
|
return (typeof block === 'undefined') ? null : block.opcode;
|
|
|
|
}
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Get all fields and their values for a block.
|
|
|
|
* @param {?object} block The block to query.
|
|
|
|
* @return {?object} All fields and their values.
|
|
|
|
*/
|
|
|
|
getFields (block) {
|
|
|
|
return (typeof block === 'undefined') ? null : block.fields;
|
|
|
|
}
|
2016-06-09 13:26:07 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Get all non-branch inputs for a block.
|
|
|
|
* @param {?object} block the block to query.
|
2017-11-20 10:22:51 -05:00
|
|
|
* @return {?Array.<object>} All non-branch inputs and their associated blocks.
|
2017-04-17 19:42:48 -04:00
|
|
|
*/
|
|
|
|
getInputs (block) {
|
|
|
|
if (typeof block === 'undefined') return null;
|
2017-11-20 10:22:51 -05:00
|
|
|
let inputs = this._cache.inputs[block.id];
|
|
|
|
if (typeof inputs !== 'undefined') {
|
|
|
|
return inputs;
|
|
|
|
}
|
|
|
|
|
|
|
|
inputs = {};
|
2017-04-17 19:42:48 -04:00
|
|
|
for (const input in block.inputs) {
|
|
|
|
// Ignore blocks prefixed with branch prefix.
|
|
|
|
if (input.substring(0, Blocks.BRANCH_INPUT_PREFIX.length) !==
|
|
|
|
Blocks.BRANCH_INPUT_PREFIX) {
|
|
|
|
inputs[input] = block.inputs[input];
|
|
|
|
}
|
2016-06-09 13:26:07 -04:00
|
|
|
}
|
2017-11-20 10:22:51 -05:00
|
|
|
|
|
|
|
this._cache.inputs[block.id] = inputs;
|
2017-04-17 19:42:48 -04:00
|
|
|
return inputs;
|
2016-06-09 13:26:07 -04:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Get mutation data for a block.
|
|
|
|
* @param {?object} block The block to query.
|
|
|
|
* @return {?object} Mutation for the block.
|
|
|
|
*/
|
|
|
|
getMutation (block) {
|
|
|
|
return (typeof block === 'undefined') ? null : block.mutation;
|
|
|
|
}
|
2016-10-03 17:43:24 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Get the top-level script for a given block.
|
|
|
|
* @param {?string} id ID of block to query.
|
|
|
|
* @return {?string} ID of top-level script block.
|
|
|
|
*/
|
|
|
|
getTopLevelScript (id) {
|
|
|
|
let block = this._blocks[id];
|
|
|
|
if (typeof block === 'undefined') return null;
|
|
|
|
while (block.parent !== null) {
|
|
|
|
block = this._blocks[block.parent];
|
|
|
|
}
|
|
|
|
return block.id;
|
2016-09-08 09:40:53 -04:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Get the procedure definition for a given name.
|
|
|
|
* @param {?string} name Name of procedure to query.
|
|
|
|
* @return {?string} ID of procedure definition.
|
|
|
|
*/
|
|
|
|
getProcedureDefinition (name) {
|
2017-11-20 10:22:51 -05:00
|
|
|
const blockID = this._cache.procedureDefinitions[name];
|
|
|
|
if (typeof blockID !== 'undefined') {
|
|
|
|
return blockID;
|
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
for (const id in this._blocks) {
|
|
|
|
if (!this._blocks.hasOwnProperty(id)) continue;
|
|
|
|
const block = this._blocks[id];
|
2017-11-16 14:17:08 -05:00
|
|
|
if (block.opcode === 'procedures_definition') {
|
2017-10-10 12:19:27 -04:00
|
|
|
const internal = this._getCustomBlockInternal(block);
|
|
|
|
if (internal && internal.mutation.proccode === name) {
|
2017-11-20 10:22:51 -05:00
|
|
|
this._cache.procedureDefinitions[name] = id; // The outer define block id
|
|
|
|
return id;
|
2017-10-10 12:19:27 -04:00
|
|
|
}
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
2016-10-03 17:43:24 -04:00
|
|
|
}
|
2017-11-20 10:22:51 -05:00
|
|
|
|
|
|
|
this._cache.procedureDefinitions[name] = null;
|
2017-04-17 19:42:48 -04:00
|
|
|
return null;
|
2016-10-03 17:43:24 -04:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
2017-11-06 17:28:34 -05:00
|
|
|
* Get names of parameters for the given procedure.
|
2017-04-17 19:42:48 -04:00
|
|
|
* @param {?string} name Name of procedure to query.
|
2017-11-06 17:28:34 -05:00
|
|
|
* @return {?Array.<string>} List of param names for a procedure.
|
2017-04-17 19:42:48 -04:00
|
|
|
*/
|
2017-11-29 12:00:00 -05:00
|
|
|
getProcedureParamNamesAndIds (name) {
|
2017-11-20 10:22:51 -05:00
|
|
|
const cachedNames = this._cache.procedureParamNames[name];
|
|
|
|
if (typeof cachedNames !== 'undefined') {
|
|
|
|
return cachedNames;
|
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
for (const id in this._blocks) {
|
|
|
|
if (!this._blocks.hasOwnProperty(id)) continue;
|
|
|
|
const block = this._blocks[id];
|
2017-11-16 14:17:08 -05:00
|
|
|
if (block.opcode === 'procedures_prototype' &&
|
2017-04-17 19:42:48 -04:00
|
|
|
block.mutation.proccode === name) {
|
2017-11-29 12:00:00 -05:00
|
|
|
const names = JSON.parse(block.mutation.argumentnames);
|
|
|
|
const ids = JSON.parse(block.mutation.argumentids);
|
|
|
|
this._cache.procedureParamNames[name] = [names, ids];
|
|
|
|
return this._cache.procedureParamNames[name];
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
2016-10-13 13:11:26 -04:00
|
|
|
}
|
2017-11-20 10:22:51 -05:00
|
|
|
|
|
|
|
this._cache.procedureParamNames[name] = null;
|
2017-04-17 19:42:48 -04:00
|
|
|
return null;
|
2016-10-13 13:11:26 -04:00
|
|
|
}
|
|
|
|
|
2017-09-07 11:51:21 -04:00
|
|
|
duplicate () {
|
|
|
|
const newBlocks = new Blocks();
|
|
|
|
newBlocks._blocks = Clone.simple(this._blocks);
|
|
|
|
newBlocks._scripts = Clone.simple(this._scripts);
|
|
|
|
return newBlocks;
|
|
|
|
}
|
2017-04-17 19:42:48 -04:00
|
|
|
// ---------------------------------------------------------------------
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
2018-06-01 18:10:25 -04:00
|
|
|
* Create event listener for blocks, variables, and comments. Handles validation and
|
2017-06-15 17:29:15 -04:00
|
|
|
* serves as a generic adapter between the blocks, variables, and the
|
|
|
|
* runtime interface.
|
|
|
|
* @param {object} e Blockly "block" or "variable" event
|
2017-04-17 19:42:48 -04:00
|
|
|
* @param {?Runtime} optRuntime Optional runtime to forward click events to.
|
|
|
|
*/
|
|
|
|
blocklyListen (e, optRuntime) {
|
|
|
|
// Validate event
|
|
|
|
if (typeof e !== 'object') return;
|
2018-06-01 18:10:25 -04:00
|
|
|
if (typeof e.blockId !== 'string' && typeof e.varId !== 'string' &&
|
|
|
|
typeof e.commentId !== 'string') {
|
2017-06-15 17:29:15 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
const stage = optRuntime.getTargetForStage();
|
2016-08-31 11:34:17 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
// UI event: clicked scripts toggle in the runtime.
|
|
|
|
if (e.element === 'stackclick') {
|
|
|
|
if (optRuntime) {
|
2017-07-12 15:43:13 -04:00
|
|
|
optRuntime.toggleScript(e.blockId, {stackClick: true});
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
|
|
|
return;
|
2016-06-08 13:44:09 -04:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
// Block create/update/destroy
|
|
|
|
switch (e.type) {
|
|
|
|
case 'create': {
|
|
|
|
const newBlocks = adapter(e);
|
|
|
|
// A create event can create many blocks. Add them all.
|
|
|
|
for (let i = 0; i < newBlocks.length; i++) {
|
|
|
|
this.createBlock(newBlocks[i]);
|
|
|
|
}
|
|
|
|
break;
|
2016-09-06 10:55:52 -04:00
|
|
|
}
|
2017-04-17 19:42:48 -04:00
|
|
|
case 'change':
|
|
|
|
this.changeBlock({
|
|
|
|
id: e.blockId,
|
|
|
|
element: e.element,
|
|
|
|
name: e.name,
|
|
|
|
value: e.newValue
|
2017-05-10 15:47:06 -04:00
|
|
|
}, optRuntime);
|
2017-04-17 19:42:48 -04:00
|
|
|
break;
|
|
|
|
case 'move':
|
|
|
|
this.moveBlock({
|
|
|
|
id: e.blockId,
|
|
|
|
oldParent: e.oldParentId,
|
|
|
|
oldInput: e.oldInputName,
|
|
|
|
newParent: e.newParentId,
|
|
|
|
newInput: e.newInputName,
|
2018-06-07 10:18:34 -04:00
|
|
|
newCoordinate: e.newCoordinate
|
|
|
|
});
|
2017-04-17 19:42:48 -04:00
|
|
|
break;
|
2018-02-13 18:09:15 -05:00
|
|
|
case 'dragOutside':
|
2018-02-12 10:25:42 -05:00
|
|
|
if (optRuntime) {
|
|
|
|
optRuntime.emitBlockDragUpdate(e.isOutside);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'endDrag':
|
|
|
|
if (optRuntime) {
|
|
|
|
optRuntime.emitBlockDragUpdate(false /* areBlocksOverGui */);
|
2018-02-23 11:57:19 -05:00
|
|
|
|
|
|
|
// Drag blocks onto another sprite
|
|
|
|
if (e.isOutside) {
|
|
|
|
const newBlocks = adapter(e);
|
|
|
|
optRuntime.emitBlockEndDrag(newBlocks);
|
|
|
|
}
|
2018-02-12 10:25:42 -05:00
|
|
|
}
|
|
|
|
break;
|
2017-04-17 19:42:48 -04:00
|
|
|
case 'delete':
|
|
|
|
// Don't accept delete events for missing blocks,
|
|
|
|
// or shadow blocks being obscured.
|
|
|
|
if (!this._blocks.hasOwnProperty(e.blockId) ||
|
|
|
|
this._blocks[e.blockId].shadow) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Inform any runtime to forget about glows on this script.
|
|
|
|
if (optRuntime && this._blocks[e.blockId].topLevel) {
|
|
|
|
optRuntime.quietGlow(e.blockId);
|
|
|
|
}
|
2017-11-15 11:34:20 -05:00
|
|
|
this.deleteBlock(e.blockId);
|
2017-04-17 19:42:48 -04:00
|
|
|
break;
|
2017-06-15 17:29:15 -04:00
|
|
|
case 'var_create':
|
2017-10-25 11:16:42 -04:00
|
|
|
// New variables being created by the user are all global.
|
|
|
|
// Check if this variable exists on the current target or stage.
|
|
|
|
// If not, create it on the stage.
|
|
|
|
// TODO create global and local variables when UI provides a way.
|
2017-11-29 10:43:07 -05:00
|
|
|
if (optRuntime.getEditingTarget()) {
|
|
|
|
if (!optRuntime.getEditingTarget().lookupVariableById(e.varId)) {
|
|
|
|
stage.createVariable(e.varId, e.varName, e.varType);
|
|
|
|
}
|
|
|
|
} else if (!stage.lookupVariableById(e.varId)) {
|
|
|
|
// Since getEditingTarget returned null, we now need to
|
|
|
|
// explicitly check if the stage has the variable, and
|
|
|
|
// create one if not.
|
2017-11-09 17:19:34 -05:00
|
|
|
stage.createVariable(e.varId, e.varName, e.varType);
|
2017-10-25 11:16:42 -04:00
|
|
|
}
|
2017-06-15 17:29:15 -04:00
|
|
|
break;
|
|
|
|
case 'var_rename':
|
|
|
|
stage.renameVariable(e.varId, e.newName);
|
2018-01-22 15:14:43 -05:00
|
|
|
// Update all the blocks that use the renamed variable.
|
|
|
|
if (optRuntime) {
|
2018-01-26 16:58:45 -05:00
|
|
|
const targets = optRuntime.targets;
|
|
|
|
for (let i = 0; i < targets.length; i++) {
|
|
|
|
const currTarget = targets[i];
|
|
|
|
currTarget.blocks.updateBlocksAfterVarRename(e.varId, e.newName);
|
|
|
|
}
|
2018-01-22 15:14:43 -05:00
|
|
|
}
|
2017-06-15 17:29:15 -04:00
|
|
|
break;
|
|
|
|
case 'var_delete':
|
|
|
|
stage.deleteVariable(e.varId);
|
|
|
|
break;
|
2018-06-01 18:10:25 -04:00
|
|
|
case 'comment_create':
|
2018-06-05 15:13:03 -04:00
|
|
|
if (optRuntime && optRuntime.getEditingTarget()) {
|
2018-06-01 18:10:25 -04:00
|
|
|
const currTarget = optRuntime.getEditingTarget();
|
|
|
|
currTarget.createComment(e.commentId, e.blockId, e.text,
|
|
|
|
e.xy.x, e.xy.y, e.width, e.height, e.minimized);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'comment_change':
|
2018-06-05 15:13:03 -04:00
|
|
|
if (optRuntime && optRuntime.getEditingTarget()) {
|
2018-06-01 18:10:25 -04:00
|
|
|
const currTarget = optRuntime.getEditingTarget();
|
|
|
|
if (!currTarget.comments.hasOwnProperty(e.commentId)) {
|
|
|
|
log.warn(`Cannot change comment with id ${e.commentId} because it does not exist.`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const comment = currTarget.comments[e.commentId];
|
|
|
|
const change = e.newContents_;
|
2018-06-07 10:09:38 -04:00
|
|
|
if (change.hasOwnProperty('minimized')) {
|
|
|
|
comment.minimized = change.minimized;
|
|
|
|
break;
|
|
|
|
} else if (change.hasOwnProperty('width') && change.hasOwnProperty('height')){
|
|
|
|
comment.width = change.width;
|
|
|
|
comment.height = change.height;
|
|
|
|
break;
|
|
|
|
} else if (change.hasOwnProperty('text')) {
|
|
|
|
comment.text = change.text;
|
2018-06-01 18:10:25 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
log.warn(`Unrecognized comment change: ${
|
|
|
|
JSON.stringify(change)} for comment with id: ${e.commentId}.`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'comment_move':
|
2018-06-05 15:13:03 -04:00
|
|
|
if (optRuntime && optRuntime.getEditingTarget()) {
|
2018-06-01 18:10:25 -04:00
|
|
|
const currTarget = optRuntime.getEditingTarget();
|
2018-06-05 15:13:03 -04:00
|
|
|
if (currTarget && !currTarget.comments.hasOwnProperty(e.commentId)) {
|
2018-06-01 18:10:25 -04:00
|
|
|
log.warn(`Cannot change comment with id ${e.commentId} because it does not exist.`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const comment = currTarget.comments[e.commentId];
|
|
|
|
const newCoord = e.newCoordinate_;
|
2018-06-05 15:12:25 -04:00
|
|
|
comment.x = newCoord.x;
|
|
|
|
comment.y = newCoord.y;
|
2018-06-01 18:10:25 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'comment_delete':
|
2018-06-05 15:13:03 -04:00
|
|
|
if (optRuntime && optRuntime.getEditingTarget()) {
|
2018-06-01 18:10:25 -04:00
|
|
|
const currTarget = optRuntime.getEditingTarget();
|
|
|
|
if (!currTarget.comments.hasOwnProperty(e.commentId)) {
|
|
|
|
// If we're in this state, we have probably received
|
|
|
|
// a delete event from a workspace that we switched from
|
|
|
|
// (e.g. a delete event for a comment on sprite a's workspace
|
|
|
|
// when switching from sprite a to sprite b)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
delete currTarget.comments[e.commentId];
|
|
|
|
if (e.blockId) {
|
|
|
|
const block = currTarget.blocks.getBlock(e.blockId);
|
|
|
|
if (!block) {
|
|
|
|
log.warn(`Could not find block referenced by comment with id: ${e.commentId}`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
delete block.comment;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2016-09-15 13:51:40 -04:00
|
|
|
}
|
2016-08-31 11:34:17 -04:00
|
|
|
}
|
2016-06-08 13:44:09 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
// ---------------------------------------------------------------------
|
2016-06-08 13:44:09 -04:00
|
|
|
|
2017-11-20 10:22:51 -05:00
|
|
|
/**
|
|
|
|
* Reset all runtime caches.
|
|
|
|
*/
|
|
|
|
resetCache () {
|
|
|
|
this._cache.inputs = {};
|
|
|
|
this._cache.procedureParamNames = {};
|
|
|
|
this._cache.procedureDefinitions = {};
|
2018-04-10 16:29:51 -04:00
|
|
|
this._cache._executeCached = {};
|
2017-11-20 10:22:51 -05:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Block management: create blocks and scripts from a `create` event
|
|
|
|
* @param {!object} block Blockly create event to be processed
|
|
|
|
*/
|
|
|
|
createBlock (block) {
|
|
|
|
// Does the block already exist?
|
|
|
|
// Could happen, e.g., for an unobscured shadow.
|
|
|
|
if (this._blocks.hasOwnProperty(block.id)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Create new block.
|
|
|
|
this._blocks[block.id] = block;
|
|
|
|
// Push block id to scripts array.
|
|
|
|
// Blocks are added as a top-level stack if they are marked as a top-block
|
|
|
|
// (if they were top-level XML in the event).
|
|
|
|
if (block.topLevel) {
|
|
|
|
this._addScript(block.id);
|
|
|
|
}
|
2017-11-20 10:22:51 -05:00
|
|
|
|
|
|
|
this.resetCache();
|
2016-06-08 13:27:01 -04:00
|
|
|
}
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Block management: change block field values
|
|
|
|
* @param {!object} args Blockly change event to be processed
|
2017-05-11 15:23:11 -04:00
|
|
|
* @param {?Runtime} optRuntime Optional runtime to allow changeBlock to change VM state.
|
2017-04-17 19:42:48 -04:00
|
|
|
*/
|
2017-05-10 15:47:06 -04:00
|
|
|
changeBlock (args, optRuntime) {
|
2017-04-17 19:42:48 -04:00
|
|
|
// Validate
|
2017-05-08 09:53:16 -04:00
|
|
|
if (['field', 'mutation', 'checkbox'].indexOf(args.element) === -1) return;
|
2017-04-17 19:42:48 -04:00
|
|
|
const block = this._blocks[args.id];
|
|
|
|
if (typeof block === 'undefined') return;
|
2017-05-22 13:38:29 -04:00
|
|
|
const wasMonitored = block.isMonitored;
|
2017-05-08 09:53:16 -04:00
|
|
|
switch (args.element) {
|
|
|
|
case 'field':
|
2017-04-17 19:42:48 -04:00
|
|
|
// Update block value
|
|
|
|
if (!block.fields[args.name]) return;
|
2017-11-21 16:48:48 -05:00
|
|
|
if (args.name === 'VARIABLE' || args.name === 'LIST' ||
|
|
|
|
args.name === 'BROADCAST_OPTION') {
|
2017-06-27 19:15:07 -04:00
|
|
|
// Get variable name using the id in args.value.
|
|
|
|
const variable = optRuntime.getEditingTarget().lookupVariableById(args.value);
|
|
|
|
if (variable) {
|
|
|
|
block.fields[args.name].value = variable.name;
|
|
|
|
block.fields[args.name].id = args.value;
|
|
|
|
}
|
|
|
|
} else {
|
2018-01-08 20:22:18 -05:00
|
|
|
// Changing the value in a dropdown
|
2017-06-27 19:15:07 -04:00
|
|
|
block.fields[args.name].value = args.value;
|
2018-01-08 20:22:18 -05:00
|
|
|
|
2018-01-10 17:50:48 -05:00
|
|
|
if (!optRuntime){
|
2018-01-08 20:22:18 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-01-10 17:50:48 -05:00
|
|
|
const flyoutBlock = block.shadow && block.parent ? this._blocks[block.parent] : block;
|
|
|
|
if (flyoutBlock.isMonitored) {
|
2018-01-08 20:22:18 -05:00
|
|
|
optRuntime.requestUpdateMonitor(Map({
|
2018-01-10 17:50:48 -05:00
|
|
|
id: flyoutBlock.id,
|
|
|
|
params: this._getBlockParams(flyoutBlock)
|
2018-01-08 20:22:18 -05:00
|
|
|
}));
|
|
|
|
}
|
2017-06-27 19:15:07 -04:00
|
|
|
}
|
2017-05-08 09:53:16 -04:00
|
|
|
break;
|
|
|
|
case 'mutation':
|
2017-04-17 19:42:48 -04:00
|
|
|
block.mutation = mutationAdapter(args.value);
|
2017-05-08 09:53:16 -04:00
|
|
|
break;
|
2018-01-09 14:55:46 -05:00
|
|
|
case 'checkbox': {
|
2017-05-08 09:53:16 -04:00
|
|
|
block.isMonitored = args.value;
|
2018-01-08 20:22:18 -05:00
|
|
|
if (!optRuntime) {
|
|
|
|
break;
|
2017-11-16 17:19:51 -05:00
|
|
|
}
|
2018-01-08 20:22:18 -05:00
|
|
|
|
2018-05-08 14:09:18 -04:00
|
|
|
// Variable blocks may be sprite specific depending on the owner of the variable
|
|
|
|
let isSpriteLocalVariable = false;
|
|
|
|
if (block.opcode === 'data_variable') {
|
|
|
|
isSpriteLocalVariable = !optRuntime.getEditingTarget().isStage &&
|
|
|
|
optRuntime.getEditingTarget().variables[block.fields.VARIABLE.id];
|
|
|
|
} else if (block.opcode === 'data_listcontents') {
|
|
|
|
isSpriteLocalVariable = !optRuntime.getEditingTarget().isStage &&
|
|
|
|
optRuntime.getEditingTarget().variables[block.fields.LIST.id];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const isSpriteSpecific = isSpriteLocalVariable ||
|
|
|
|
(optRuntime.monitorBlockInfo.hasOwnProperty(block.opcode) &&
|
|
|
|
optRuntime.monitorBlockInfo[block.opcode].isSpriteSpecific);
|
2018-01-08 20:22:18 -05:00
|
|
|
block.targetId = isSpriteSpecific ? optRuntime.getEditingTarget().id : null;
|
2018-04-10 16:29:51 -04:00
|
|
|
|
2018-01-08 20:22:18 -05:00
|
|
|
if (wasMonitored && !block.isMonitored) {
|
2017-05-15 10:12:25 -04:00
|
|
|
optRuntime.requestRemoveMonitor(block.id);
|
2018-01-08 20:22:18 -05:00
|
|
|
} else if (!wasMonitored && block.isMonitored) {
|
2017-05-24 15:42:29 -04:00
|
|
|
optRuntime.requestAddMonitor(MonitorRecord({
|
2017-05-22 13:38:29 -04:00
|
|
|
id: block.id,
|
2017-11-14 18:25:54 -05:00
|
|
|
targetId: block.targetId,
|
2017-11-13 16:28:50 -05:00
|
|
|
spriteName: block.targetId ? optRuntime.getTargetById(block.targetId).getName() : null,
|
2017-05-22 13:38:29 -04:00
|
|
|
opcode: block.opcode,
|
2017-05-23 09:55:42 -04:00
|
|
|
params: this._getBlockParams(block),
|
2017-05-22 13:38:29 -04:00
|
|
|
// @todo(vm#565) for numerical values with decimals, some countries use comma
|
2018-05-08 14:09:18 -04:00
|
|
|
value: '',
|
|
|
|
mode: block.opcode === 'data_listcontents' ? 'list' : 'default'
|
2017-05-19 17:28:00 -04:00
|
|
|
}));
|
2017-05-10 15:47:06 -04:00
|
|
|
}
|
2017-05-08 09:53:16 -04:00
|
|
|
break;
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
2018-01-09 14:55:46 -05:00
|
|
|
}
|
2017-11-20 10:22:51 -05:00
|
|
|
|
|
|
|
this.resetCache();
|
2016-10-03 17:43:24 -04:00
|
|
|
}
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Block management: move blocks from parent to parent
|
|
|
|
* @param {!object} e Blockly move event to be processed
|
|
|
|
*/
|
2018-06-07 10:18:34 -04:00
|
|
|
moveBlock (e) {
|
2017-04-17 19:42:48 -04:00
|
|
|
if (!this._blocks.hasOwnProperty(e.id)) {
|
|
|
|
return;
|
|
|
|
}
|
2016-10-13 17:15:49 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
// Move coordinate changes.
|
|
|
|
if (e.newCoordinate) {
|
|
|
|
this._blocks[e.id].x = e.newCoordinate.x;
|
|
|
|
this._blocks[e.id].y = e.newCoordinate.y;
|
|
|
|
}
|
2016-08-31 11:34:29 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
// Remove from any old parent.
|
|
|
|
if (typeof e.oldParent !== 'undefined') {
|
|
|
|
const oldParent = this._blocks[e.oldParent];
|
|
|
|
if (typeof e.oldInput !== 'undefined' &&
|
|
|
|
oldParent.inputs[e.oldInput].block === e.id) {
|
|
|
|
// This block was connected to the old parent's input.
|
|
|
|
oldParent.inputs[e.oldInput].block = null;
|
|
|
|
} else if (oldParent.next === e.id) {
|
|
|
|
// This block was connected to the old parent's next connection.
|
|
|
|
oldParent.next = null;
|
|
|
|
}
|
|
|
|
this._blocks[e.id].parent = null;
|
2016-06-08 13:27:01 -04:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
// Has the block become a top-level block?
|
|
|
|
if (typeof e.newParent === 'undefined') {
|
|
|
|
this._addScript(e.id);
|
2016-10-23 17:55:31 -04:00
|
|
|
} else {
|
2017-04-17 19:42:48 -04:00
|
|
|
// Remove script, if one exists.
|
|
|
|
this._deleteScript(e.id);
|
|
|
|
// Otherwise, try to connect it in its new place.
|
|
|
|
if (typeof e.newInput === 'undefined') {
|
|
|
|
// Moved to the new parent's next connection.
|
|
|
|
this._blocks[e.newParent].next = e.id;
|
|
|
|
} else {
|
|
|
|
// Moved to the new parent's input.
|
|
|
|
// Don't obscure the shadow block.
|
|
|
|
let oldShadow = null;
|
|
|
|
if (this._blocks[e.newParent].inputs.hasOwnProperty(e.newInput)) {
|
|
|
|
oldShadow = this._blocks[e.newParent].inputs[e.newInput].shadow;
|
|
|
|
}
|
|
|
|
this._blocks[e.newParent].inputs[e.newInput] = {
|
|
|
|
name: e.newInput,
|
|
|
|
block: e.id,
|
|
|
|
shadow: oldShadow
|
|
|
|
};
|
2016-09-08 09:40:01 -04:00
|
|
|
}
|
2017-04-17 19:42:48 -04:00
|
|
|
this._blocks[e.id].parent = e.newParent;
|
2016-06-08 13:27:01 -04:00
|
|
|
}
|
2017-11-20 10:22:51 -05:00
|
|
|
this.resetCache();
|
2016-06-08 13:27:01 -04:00
|
|
|
}
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-05-22 13:38:29 -04:00
|
|
|
|
2017-05-08 09:53:16 -04:00
|
|
|
/**
|
|
|
|
* Block management: run all blocks.
|
|
|
|
* @param {!object} runtime Runtime to run all blocks in.
|
|
|
|
*/
|
|
|
|
runAllMonitored (runtime) {
|
|
|
|
Object.keys(this._blocks).forEach(blockId => {
|
|
|
|
if (this.getBlock(blockId).isMonitored) {
|
2017-11-13 16:28:50 -05:00
|
|
|
const targetId = this.getBlock(blockId).targetId;
|
|
|
|
runtime.addMonitorScript(blockId, targetId ? runtime.getTargetById(targetId) : null);
|
2017-05-08 09:53:16 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
2017-11-15 11:55:22 -05:00
|
|
|
* Block management: delete blocks and their associated scripts. Does nothing if a block
|
|
|
|
* with the given ID does not exist.
|
2017-11-15 11:34:20 -05:00
|
|
|
* @param {!string} blockId Id of block to delete
|
2017-04-17 19:42:48 -04:00
|
|
|
*/
|
2017-11-15 11:34:20 -05:00
|
|
|
deleteBlock (blockId) {
|
2017-04-17 19:42:48 -04:00
|
|
|
// @todo In runtime, stop threads running on this script.
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
// Get block
|
2017-11-15 11:34:20 -05:00
|
|
|
const block = this._blocks[blockId];
|
2017-11-15 11:55:22 -05:00
|
|
|
if (!block) {
|
|
|
|
// No block with the given ID exists
|
|
|
|
return;
|
|
|
|
}
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
// Delete children
|
|
|
|
if (block.next !== null) {
|
2017-11-15 11:34:20 -05:00
|
|
|
this.deleteBlock(block.next);
|
2016-06-08 13:27:01 -04:00
|
|
|
}
|
2017-04-17 19:42:48 -04:00
|
|
|
|
|
|
|
// Delete inputs (including branches)
|
|
|
|
for (const input in block.inputs) {
|
|
|
|
// If it's null, the block in this input moved away.
|
|
|
|
if (block.inputs[input].block !== null) {
|
2017-11-15 11:34:20 -05:00
|
|
|
this.deleteBlock(block.inputs[input].block);
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
|
|
|
// Delete obscured shadow blocks.
|
|
|
|
if (block.inputs[input].shadow !== null &&
|
|
|
|
block.inputs[input].shadow !== block.inputs[input].block) {
|
2017-11-15 11:34:20 -05:00
|
|
|
this.deleteBlock(block.inputs[input].shadow);
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
2016-09-06 10:55:52 -04:00
|
|
|
}
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
// Delete any script starting with this block.
|
2017-11-15 11:34:20 -05:00
|
|
|
this._deleteScript(blockId);
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
// Delete block itself.
|
2017-11-15 11:34:20 -05:00
|
|
|
delete this._blocks[blockId];
|
2017-11-20 10:22:51 -05:00
|
|
|
|
|
|
|
this.resetCache();
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2018-01-26 16:58:45 -05:00
|
|
|
/**
|
|
|
|
* Keep blocks up to date after a variable gets renamed.
|
|
|
|
* @param {string} varId The id of the variable that was renamed
|
|
|
|
* @param {string} newName The new name of the variable that was renamed
|
|
|
|
*/
|
|
|
|
updateBlocksAfterVarRename (varId, newName) {
|
|
|
|
const blocks = this._blocks;
|
|
|
|
for (const blockId in blocks) {
|
|
|
|
let varOrListField = null;
|
|
|
|
if (blocks[blockId].fields.VARIABLE) {
|
|
|
|
varOrListField = blocks[blockId].fields.VARIABLE;
|
|
|
|
} else if (blocks[blockId].fields.LIST) {
|
|
|
|
varOrListField = blocks[blockId].fields.LIST;
|
|
|
|
}
|
|
|
|
if (varOrListField) {
|
|
|
|
const currFieldId = varOrListField.id;
|
|
|
|
if (varId === currFieldId) {
|
|
|
|
varOrListField.value = newName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-20 09:50:57 -04:00
|
|
|
/**
|
|
|
|
* Keep blocks up to date after they are shared between targets.
|
|
|
|
* @param {boolean} isStage If the new target is a stage.
|
|
|
|
*/
|
|
|
|
updateTargetSpecificBlocks (isStage) {
|
|
|
|
const blocks = this._blocks;
|
|
|
|
for (const blockId in blocks) {
|
|
|
|
if (isStage && blocks[blockId].opcode === 'event_whenthisspriteclicked') {
|
|
|
|
blocks[blockId].opcode = 'event_whenstageclicked';
|
|
|
|
} else if (!isStage && blocks[blockId].opcode === 'event_whenstageclicked') {
|
|
|
|
blocks[blockId].opcode = 'event_whenthisspriteclicked';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-05 14:35:52 -05:00
|
|
|
/**
|
|
|
|
* Update blocks after a sound, costume, or backdrop gets renamed.
|
|
|
|
* Any block referring to the old name of the asset should get updated
|
|
|
|
* to refer to the new name.
|
|
|
|
* @param {string} oldName The old name of the asset that was renamed.
|
|
|
|
* @param {string} newName The new name of the asset that was renamed.
|
|
|
|
* @param {string} assetType String representation of the kind of asset
|
2018-02-05 16:54:58 -05:00
|
|
|
* that was renamed. This can be one of 'sprite','costume', 'sound', or
|
|
|
|
* 'backdrop'.
|
2018-02-05 14:35:52 -05:00
|
|
|
*/
|
|
|
|
updateAssetName (oldName, newName, assetType) {
|
|
|
|
let getAssetField;
|
|
|
|
if (assetType === 'costume') {
|
|
|
|
getAssetField = this._getCostumeField.bind(this);
|
|
|
|
} else if (assetType === 'sound') {
|
|
|
|
getAssetField = this._getSoundField.bind(this);
|
|
|
|
} else if (assetType === 'backdrop') {
|
|
|
|
getAssetField = this._getBackdropField.bind(this);
|
2018-02-05 16:54:58 -05:00
|
|
|
} else if (assetType === 'sprite') {
|
|
|
|
getAssetField = this._getSpriteField.bind(this);
|
2018-02-05 14:35:52 -05:00
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const blocks = this._blocks;
|
|
|
|
for (const blockId in blocks) {
|
|
|
|
const assetField = getAssetField(blockId);
|
|
|
|
if (assetField && assetField.value === oldName) {
|
|
|
|
assetField.value = newName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to retrieve a costume menu field from a block given its id.
|
|
|
|
* @param {string} blockId A unique identifier for a block
|
|
|
|
* @return {?object} The costume menu field of the block with the given block id.
|
|
|
|
* Null if either a block with the given id doesn't exist or if a costume menu field
|
|
|
|
* does not exist on the block with the given id.
|
|
|
|
*/
|
|
|
|
_getCostumeField (blockId) {
|
|
|
|
const block = this.getBlock(blockId);
|
|
|
|
if (block && block.fields.hasOwnProperty('COSTUME')) {
|
|
|
|
return block.fields.COSTUME;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to retrieve a sound menu field from a block given its id.
|
|
|
|
* @param {string} blockId A unique identifier for a block
|
|
|
|
* @return {?object} The sound menu field of the block with the given block id.
|
|
|
|
* Null, if either a block with the given id doesn't exist or if a sound menu field
|
|
|
|
* does not exist on the block with the given id.
|
|
|
|
*/
|
|
|
|
_getSoundField (blockId) {
|
|
|
|
const block = this.getBlock(blockId);
|
|
|
|
if (block && block.fields.hasOwnProperty('SOUND_MENU')) {
|
|
|
|
return block.fields.SOUND_MENU;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to retrieve a backdrop menu field from a block given its id.
|
|
|
|
* @param {string} blockId A unique identifier for a block
|
|
|
|
* @return {?object} The backdrop menu field of the block with the given block id.
|
|
|
|
* Null, if either a block with the given id doesn't exist or if a backdrop menu field
|
|
|
|
* does not exist on the block with the given id.
|
|
|
|
*/
|
|
|
|
_getBackdropField (blockId) {
|
|
|
|
const block = this.getBlock(blockId);
|
|
|
|
if (block && block.fields.hasOwnProperty('BACKDROP')) {
|
|
|
|
return block.fields.BACKDROP;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-02-05 16:54:58 -05:00
|
|
|
/**
|
|
|
|
* Helper function to retrieve a sprite menu field from a block given its id.
|
|
|
|
* @param {string} blockId A unique identifier for a block
|
|
|
|
* @return {?object} The sprite menu field of the block with the given block id.
|
|
|
|
* Null, if either a block with the given id doesn't exist or if a sprite menu field
|
|
|
|
* does not exist on the block with the given id.
|
|
|
|
*/
|
|
|
|
_getSpriteField (blockId) {
|
|
|
|
const block = this.getBlock(blockId);
|
|
|
|
if (!block) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
const spriteMenuNames = ['TOWARDS', 'TO', 'OBJECT', 'VIDEOONMENU2',
|
|
|
|
'DISTANCETOMENU', 'TOUCHINGOBJECTMENU', 'CLONE_OPTION'];
|
|
|
|
for (let i = 0; i < spriteMenuNames.length; i++) {
|
|
|
|
const menuName = spriteMenuNames[i];
|
|
|
|
if (block.fields.hasOwnProperty(menuName)) {
|
|
|
|
return block.fields[menuName];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
// ---------------------------------------------------------------------
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Encode all of `this._blocks` as an XML string usable
|
|
|
|
* by a Blockly/scratch-blocks workspace.
|
2018-05-21 13:51:43 -04:00
|
|
|
* @param {object<string, Comment>} comments Map of comments referenced by id
|
2017-04-17 19:42:48 -04:00
|
|
|
* @return {string} String of XML representing this object's blocks.
|
|
|
|
*/
|
2018-05-21 11:30:22 -04:00
|
|
|
toXML (comments) {
|
|
|
|
return this._scripts.map(script => this.blockToXML(script, comments)).join();
|
2016-08-31 11:38:45 -04:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Recursively encode an individual block and its children
|
|
|
|
* into a Blockly/scratch-blocks XML string.
|
|
|
|
* @param {!string} blockId ID of block to encode.
|
2018-05-21 13:51:43 -04:00
|
|
|
* @param {object<string, Comment>} comments Map of comments referenced by id
|
2017-04-17 19:42:48 -04:00
|
|
|
* @return {string} String of XML representing this block and any children.
|
|
|
|
*/
|
2018-05-21 11:30:22 -04:00
|
|
|
blockToXML (blockId, comments) {
|
2017-04-17 19:42:48 -04:00
|
|
|
const block = this._blocks[blockId];
|
|
|
|
// Encode properties of this block.
|
|
|
|
const tagName = (block.shadow) ? 'shadow' : 'block';
|
2017-04-19 17:36:33 -04:00
|
|
|
let xmlString =
|
|
|
|
`<${tagName}
|
|
|
|
id="${block.id}"
|
|
|
|
type="${block.opcode}"
|
2017-08-26 13:07:47 -04:00
|
|
|
${block.topLevel ? `x="${block.x}" y="${block.y}"` : ''}
|
2017-04-19 17:36:33 -04:00
|
|
|
>`;
|
2018-05-21 11:30:22 -04:00
|
|
|
const commentId = block.comment;
|
|
|
|
if (commentId) {
|
|
|
|
if (comments) {
|
|
|
|
if (comments.hasOwnProperty(commentId)) {
|
|
|
|
xmlString += comments[commentId].toXML();
|
|
|
|
} else {
|
|
|
|
log.warn(`Could not find comment with id: ${commentId} in provided comment descriptions.`);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.warn(`Cannot serialize comment with id: ${commentId}; no comment descriptions provided.`);
|
|
|
|
}
|
|
|
|
}
|
2017-04-17 19:42:48 -04:00
|
|
|
// Add any mutation. Must come before inputs.
|
|
|
|
if (block.mutation) {
|
|
|
|
xmlString += this.mutationToXML(block.mutation);
|
|
|
|
}
|
|
|
|
// Add any inputs on this block.
|
|
|
|
for (const input in block.inputs) {
|
|
|
|
if (!block.inputs.hasOwnProperty(input)) continue;
|
|
|
|
const blockInput = block.inputs[input];
|
|
|
|
// Only encode a value tag if the value input is occupied.
|
|
|
|
if (blockInput.block || blockInput.shadow) {
|
|
|
|
xmlString += `<value name="${blockInput.name}">`;
|
|
|
|
if (blockInput.block) {
|
2018-05-21 11:30:22 -04:00
|
|
|
xmlString += this.blockToXML(blockInput.block, comments);
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
|
|
|
if (blockInput.shadow && blockInput.shadow !== blockInput.block) {
|
|
|
|
// Obscured shadow.
|
2018-05-21 11:30:22 -04:00
|
|
|
xmlString += this.blockToXML(blockInput.shadow, comments);
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
|
|
|
xmlString += '</value>';
|
2016-09-06 10:55:52 -04:00
|
|
|
}
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
|
|
|
// Add any fields on this block.
|
|
|
|
for (const field in block.fields) {
|
|
|
|
if (!block.fields.hasOwnProperty(field)) continue;
|
|
|
|
const blockField = block.fields[field];
|
2017-11-13 14:24:30 -05:00
|
|
|
xmlString += `<field name="${blockField.name}"`;
|
|
|
|
const fieldId = blockField.id;
|
|
|
|
if (fieldId) {
|
|
|
|
xmlString += ` id="${fieldId}"`;
|
|
|
|
}
|
|
|
|
const varType = blockField.variableType;
|
|
|
|
if (typeof varType === 'string') {
|
|
|
|
xmlString += ` variabletype="${varType}"`;
|
|
|
|
}
|
2017-04-17 19:42:48 -04:00
|
|
|
let value = blockField.value;
|
|
|
|
if (typeof value === 'string') {
|
|
|
|
value = xmlEscape(blockField.value);
|
2016-09-06 10:55:52 -04:00
|
|
|
}
|
2017-11-13 14:24:30 -05:00
|
|
|
xmlString += `>${value}</field>`;
|
2016-08-31 11:38:45 -04:00
|
|
|
}
|
2017-04-17 19:42:48 -04:00
|
|
|
// Add blocks connected to the next connection.
|
|
|
|
if (block.next) {
|
2018-05-21 11:30:22 -04:00
|
|
|
xmlString += `<next>${this.blockToXML(block.next, comments)}</next>`;
|
2016-09-13 17:51:17 -04:00
|
|
|
}
|
2017-04-17 19:42:48 -04:00
|
|
|
xmlString += `</${tagName}>`;
|
|
|
|
return xmlString;
|
2016-08-31 11:38:45 -04:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Recursively encode a mutation object to XML.
|
|
|
|
* @param {!object} mutation Object representing a mutation.
|
|
|
|
* @return {string} XML string representing a mutation.
|
|
|
|
*/
|
|
|
|
mutationToXML (mutation) {
|
|
|
|
let mutationString = `<${mutation.tagName}`;
|
|
|
|
for (const prop in mutation) {
|
|
|
|
if (prop === 'children' || prop === 'tagName') continue;
|
|
|
|
const mutationValue = (typeof mutation[prop] === 'string') ?
|
|
|
|
xmlEscape(mutation[prop]) : mutation[prop];
|
|
|
|
mutationString += ` ${prop}="${mutationValue}"`;
|
|
|
|
}
|
|
|
|
mutationString += '>';
|
|
|
|
for (let i = 0; i < mutation.children.length; i++) {
|
|
|
|
mutationString += this.mutationToXML(mutation.children[i]);
|
|
|
|
}
|
|
|
|
mutationString += `</${mutation.tagName}>`;
|
|
|
|
return mutationString;
|
2016-10-03 17:43:24 -04:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
// ---------------------------------------------------------------------
|
2017-05-23 09:55:42 -04:00
|
|
|
/**
|
|
|
|
* Helper to serialize block fields and input fields for reporting new monitors
|
|
|
|
* @param {!object} block Block to be paramified.
|
|
|
|
* @return {!object} object of param key/values.
|
|
|
|
*/
|
|
|
|
_getBlockParams (block) {
|
|
|
|
const params = {};
|
|
|
|
for (const key in block.fields) {
|
|
|
|
params[key] = block.fields[key].value;
|
|
|
|
}
|
|
|
|
for (const inputKey in block.inputs) {
|
|
|
|
const inputBlock = this._blocks[block.inputs[inputKey].block];
|
|
|
|
for (const key in inputBlock.fields) {
|
|
|
|
params[key] = inputBlock.fields[key].value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return params;
|
|
|
|
}
|
2016-08-31 11:38:45 -04:00
|
|
|
|
2017-10-10 12:19:27 -04:00
|
|
|
/**
|
|
|
|
* Helper to get the corresponding internal procedure definition block
|
|
|
|
* @param {!object} defineBlock Outer define block.
|
|
|
|
* @return {!object} internal definition block which has the mutation.
|
|
|
|
*/
|
|
|
|
_getCustomBlockInternal (defineBlock) {
|
|
|
|
if (defineBlock.inputs && defineBlock.inputs.custom_block) {
|
|
|
|
return this._blocks[defineBlock.inputs.custom_block.block];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Helper to add a stack to `this._scripts`.
|
|
|
|
* @param {?string} topBlockId ID of block that starts the script.
|
|
|
|
*/
|
|
|
|
_addScript (topBlockId) {
|
|
|
|
const i = this._scripts.indexOf(topBlockId);
|
|
|
|
if (i > -1) return; // Already in scripts.
|
|
|
|
this._scripts.push(topBlockId);
|
|
|
|
// Update `topLevel` property on the top block.
|
|
|
|
this._blocks[topBlockId].topLevel = true;
|
|
|
|
}
|
2016-06-06 15:29:34 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Helper to remove a script from `this._scripts`.
|
|
|
|
* @param {?string} topBlockId ID of block that starts the script.
|
|
|
|
*/
|
|
|
|
_deleteScript (topBlockId) {
|
|
|
|
const i = this._scripts.indexOf(topBlockId);
|
|
|
|
if (i > -1) this._scripts.splice(i, 1);
|
|
|
|
// Update `topLevel` property on the top block.
|
|
|
|
if (this._blocks[topBlockId]) this._blocks[topBlockId].topLevel = false;
|
|
|
|
}
|
|
|
|
}
|
2016-06-08 13:27:01 -04:00
|
|
|
|
2018-04-10 16:29:51 -04:00
|
|
|
/**
|
|
|
|
* A private method shared with execute to build an object containing the block
|
|
|
|
* information execute needs and that is reset when other cached Blocks info is
|
|
|
|
* reset.
|
|
|
|
* @param {Blocks} blocks Blocks containing the expected blockId
|
|
|
|
* @param {string} blockId blockId for the desired execute cache
|
2018-05-07 10:31:28 -04:00
|
|
|
* @param {function} CacheType constructor for cached block information
|
2018-04-10 16:29:51 -04:00
|
|
|
* @return {object} execute cache object
|
|
|
|
*/
|
2018-05-07 10:31:28 -04:00
|
|
|
BlocksExecuteCache.getCached = function (blocks, blockId, CacheType) {
|
2018-04-10 16:29:51 -04:00
|
|
|
let cached = blocks._cache._executeCached[blockId];
|
|
|
|
if (typeof cached !== 'undefined') {
|
|
|
|
return cached;
|
|
|
|
}
|
|
|
|
|
2018-05-04 12:33:42 -04:00
|
|
|
const block = blocks.getBlock(blockId);
|
|
|
|
if (typeof block === 'undefined') return null;
|
|
|
|
|
2018-05-07 10:31:28 -04:00
|
|
|
if (typeof CacheType === 'undefined') {
|
|
|
|
cached = {
|
|
|
|
opcode: blocks.getOpcode(block),
|
|
|
|
fields: blocks.getFields(block),
|
|
|
|
inputs: blocks.getInputs(block),
|
|
|
|
mutation: blocks.getMutation(block)
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
cached = new CacheType(blocks, {
|
|
|
|
opcode: blocks.getOpcode(block),
|
|
|
|
fields: blocks.getFields(block),
|
|
|
|
inputs: blocks.getInputs(block),
|
|
|
|
mutation: blocks.getMutation(block)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-10 16:29:51 -04:00
|
|
|
blocks._cache._executeCached[blockId] = cached;
|
|
|
|
return cached;
|
|
|
|
};
|
|
|
|
|
2016-06-08 13:27:01 -04:00
|
|
|
module.exports = Blocks;
|