Merge pull request from scratchfoundation/gonfunko-style

style: copy style changes from gonfunko/modern-blockly
This commit is contained in:
Christopher Willis-Ford 2024-10-11 13:41:28 -07:00 committed by GitHub
commit afa7acc4a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 693 additions and 284 deletions

View file

@ -45,7 +45,10 @@ class Blocks {
* @type {{inputs: {}, procedureParamNames: {}, procedureDefinitions: {}}} * @type {{inputs: {}, procedureParamNames: {}, procedureDefinitions: {}}}
* @private * @private
*/ */
Object.defineProperty(this, '_cache', {writable: true, enumerable: false}); Object.defineProperty(this, '_cache', {
writable: true,
enumerable: false
});
this._cache = { this._cache = {
/** /**
* Cache block inputs by block id * Cache block inputs by block id
@ -123,13 +126,13 @@ class Blocks {
} }
/** /**
* Get the next block for a particular block * Get the next block for a particular block
* @param {?string} id ID of block to get the next block for * @param {?string} id ID of block to get the next block for
* @return {?string} ID of next block in the sequence * @return {?string} ID of next block in the sequence
*/ */
getNextBlock (id) { getNextBlock (id) {
const block = this._blocks[id]; const block = this._blocks[id];
return (typeof block === 'undefined') ? null : block.next; return typeof block === 'undefined' ? null : block.next;
} }
/** /**
@ -150,7 +153,7 @@ class Blocks {
// Empty C-block? // Empty C-block?
const input = block.inputs[inputName]; const input = block.inputs[inputName];
return (typeof input === 'undefined') ? null : input.block; return typeof input === 'undefined' ? null : input.block;
} }
/** /**
@ -159,7 +162,7 @@ class Blocks {
* @return {?string} the opcode corresponding to that block * @return {?string} the opcode corresponding to that block
*/ */
getOpcode (block) { getOpcode (block) {
return (typeof block === 'undefined') ? null : block.opcode; return typeof block === 'undefined' ? null : block.opcode;
} }
/** /**
@ -168,7 +171,7 @@ class Blocks {
* @return {?object} All fields and their values. * @return {?object} All fields and their values.
*/ */
getFields (block) { getFields (block) {
return (typeof block === 'undefined') ? null : block.fields; return typeof block === 'undefined' ? null : block.fields;
} }
/** /**
@ -186,8 +189,10 @@ class Blocks {
inputs = {}; inputs = {};
for (const input in block.inputs) { for (const input in block.inputs) {
// Ignore blocks prefixed with branch prefix. // Ignore blocks prefixed with branch prefix.
if (input.substring(0, Blocks.BRANCH_INPUT_PREFIX.length) !== if (
Blocks.BRANCH_INPUT_PREFIX) { input.substring(0, Blocks.BRANCH_INPUT_PREFIX.length) !==
Blocks.BRANCH_INPUT_PREFIX
) {
inputs[input] = block.inputs[input]; inputs[input] = block.inputs[input];
} }
} }
@ -202,7 +207,7 @@ class Blocks {
* @return {?object} Mutation for the block. * @return {?object} Mutation for the block.
*/ */
getMutation (block) { getMutation (block) {
return (typeof block === 'undefined') ? null : block.mutation; return typeof block === 'undefined' ? null : block.mutation;
} }
/** /**
@ -231,7 +236,9 @@ class Blocks {
} }
for (const id in this._blocks) { for (const id in this._blocks) {
if (!Object.prototype.hasOwnProperty.call(this._blocks, id)) continue; if (!Object.prototype.hasOwnProperty.call(this._blocks, id)) {
continue;
}
const block = this._blocks[id]; const block = this._blocks[id];
if (block.opcode === 'procedures_definition') { if (block.opcode === 'procedures_definition') {
const internal = this._getCustomBlockInternal(block); const internal = this._getCustomBlockInternal(block);
@ -267,10 +274,14 @@ class Blocks {
} }
for (const id in this._blocks) { for (const id in this._blocks) {
if (!Object.prototype.hasOwnProperty.call(this._blocks, id)) continue; if (!Object.prototype.hasOwnProperty.call(this._blocks, id)) {
continue;
}
const block = this._blocks[id]; const block = this._blocks[id];
if (block.opcode === 'procedures_prototype' && if (
block.mutation.proccode === name) { block.opcode === 'procedures_prototype' &&
block.mutation.proccode === name
) {
const names = JSON.parse(block.mutation.argumentnames); const names = JSON.parse(block.mutation.argumentnames);
const ids = JSON.parse(block.mutation.argumentids); const ids = JSON.parse(block.mutation.argumentids);
const defaults = JSON.parse(block.mutation.argumentdefaults); const defaults = JSON.parse(block.mutation.argumentdefaults);
@ -301,8 +312,11 @@ class Blocks {
blocklyListen (e) { blocklyListen (e) {
// Validate event // Validate event
if (typeof e !== 'object') return; if (typeof e !== 'object') return;
if (typeof e.blockId !== 'string' && typeof e.varId !== 'string' && if (
typeof e.commentId !== 'string') { typeof e.blockId !== 'string' &&
typeof e.varId !== 'string' &&
typeof e.commentId !== 'string'
) {
return; return;
} }
const stage = this.runtime.getTargetForStage(); const stage = this.runtime.getTargetForStage();
@ -357,8 +371,13 @@ class Blocks {
case 'delete': case 'delete':
// Don't accept delete events for missing blocks, // Don't accept delete events for missing blocks,
// or shadow blocks being obscured. // or shadow blocks being obscured.
if (!Object.prototype.hasOwnProperty.call(this._blocks, e.blockId) || if (
this._blocks[e.blockId].shadow) { !Object.prototype.hasOwnProperty.call(
this._blocks,
e.blockId
) ||
this._blocks[e.blockId].shadow
) {
return; return;
} }
// Inform any runtime to forget about glows on this script. // Inform any runtime to forget about glows on this script.
@ -375,9 +394,18 @@ class Blocks {
// into a state where a local var was requested for the stage, // into a state where a local var was requested for the stage,
// create a stage (global) var after checking for name conflicts // create a stage (global) var after checking for name conflicts
// on all the sprites. // on all the sprites.
if (e.isLocal && editingTarget && !editingTarget.isStage && !e.isCloud) { if (
e.isLocal &&
editingTarget &&
!editingTarget.isStage &&
!e.isCloud
) {
if (!editingTarget.lookupVariableById(e.varId)) { if (!editingTarget.lookupVariableById(e.varId)) {
editingTarget.createVariable(e.varId, e.varName, e.varType); editingTarget.createVariable(
e.varId,
e.varName,
e.varType
);
this.emitProjectChanged(); this.emitProjectChanged();
} }
} else { } else {
@ -386,23 +414,45 @@ class Blocks {
return; return;
} }
// Check for name conflicts in all of the targets // Check for name conflicts in all of the targets
const allTargets = this.runtime.targets.filter(t => t.isOriginal); const allTargets = this.runtime.targets.filter(
t => t.isOriginal
);
for (const target of allTargets) { for (const target of allTargets) {
if (target.lookupVariableByNameAndType(e.varName, e.varType, true)) { if (
target.lookupVariableByNameAndType(
e.varName,
e.varType,
true
)
) {
return; return;
} }
} }
stage.createVariable(e.varId, e.varName, e.varType, e.isCloud); stage.createVariable(
e.varId,
e.varName,
e.varType,
e.isCloud
);
this.emitProjectChanged(); this.emitProjectChanged();
} }
break; break;
case 'var_rename': case 'var_rename':
if (editingTarget && Object.prototype.hasOwnProperty.call(editingTarget.variables, e.varId)) { if (
editingTarget &&
Object.prototype.hasOwnProperty.call(
editingTarget.variables,
e.varId
)
) {
// This is a local variable, rename on the current target // This is a local variable, rename on the current target
editingTarget.renameVariable(e.varId, e.newName); editingTarget.renameVariable(e.varId, e.newName);
// Update all the blocks on the current target that use // Update all the blocks on the current target that use
// this variable // this variable
editingTarget.blocks.updateBlocksAfterVarRename(e.varId, e.newName); editingTarget.blocks.updateBlocksAfterVarRename(
e.varId,
e.newName
);
} else { } else {
// This is a global variable // This is a global variable
stage.renameVariable(e.varId, e.newName); stage.renameVariable(e.varId, e.newName);
@ -410,14 +460,23 @@ class Blocks {
const targets = this.runtime.targets; const targets = this.runtime.targets;
for (let i = 0; i < targets.length; i++) { for (let i = 0; i < targets.length; i++) {
const currTarget = targets[i]; const currTarget = targets[i];
currTarget.blocks.updateBlocksAfterVarRename(e.varId, e.newName); currTarget.blocks.updateBlocksAfterVarRename(
e.varId,
e.newName
);
} }
} }
this.emitProjectChanged(); this.emitProjectChanged();
break; break;
case 'var_delete': { case 'var_delete': {
const target = (editingTarget && Object.prototype.hasOwnProperty.call(editingTarget.variables, e.varId)) ? const target =
editingTarget : stage; editingTarget &&
Object.prototype.hasOwnProperty.call(
editingTarget.variables,
e.varId
) ?
editingTarget :
stage;
target.deleteVariable(e.varId); target.deleteVariable(e.varId);
this.emitProjectChanged(); this.emitProjectChanged();
break; break;
@ -425,11 +484,21 @@ class Blocks {
case 'comment_create': case 'comment_create':
if (this.runtime.getEditingTarget()) { if (this.runtime.getEditingTarget()) {
const currTarget = this.runtime.getEditingTarget(); const currTarget = this.runtime.getEditingTarget();
currTarget.createComment(e.commentId, e.blockId, e.text, currTarget.createComment(
e.xy.x, e.xy.y, e.width, e.height, e.minimized); e.commentId,
e.blockId,
e.text,
e.xy.x,
e.xy.y,
e.width,
e.height,
e.minimized
);
if (currTarget.comments[e.commentId].x === null && if (
currTarget.comments[e.commentId].y === null) { currTarget.comments[e.commentId].x === null &&
currTarget.comments[e.commentId].y === null
) {
// Block comments imported from 2.0 projects are imported with their // Block comments imported from 2.0 projects are imported with their
// x and y coordinates set to null so that scratch-blocks can // x and y coordinates set to null so that scratch-blocks can
// auto-position them. If we are receiving a create event for these // auto-position them. If we are receiving a create event for these
@ -445,8 +514,15 @@ class Blocks {
case 'comment_change': case 'comment_change':
if (this.runtime.getEditingTarget()) { if (this.runtime.getEditingTarget()) {
const currTarget = this.runtime.getEditingTarget(); const currTarget = this.runtime.getEditingTarget();
if (!Object.prototype.hasOwnProperty.call(currTarget.comments, e.commentId)) { if (
log.warn(`Cannot change comment with id ${e.commentId} because it does not exist.`); !Object.prototype.hasOwnProperty.call(
currTarget.comments,
e.commentId
)
) {
log.warn(
`Cannot change comment with id ${e.commentId} because it does not exist.`
);
return; return;
} }
const comment = currTarget.comments[e.commentId]; const comment = currTarget.comments[e.commentId];
@ -468,8 +544,16 @@ class Blocks {
case 'comment_move': case 'comment_move':
if (this.runtime.getEditingTarget()) { if (this.runtime.getEditingTarget()) {
const currTarget = this.runtime.getEditingTarget(); const currTarget = this.runtime.getEditingTarget();
if (currTarget && !Object.prototype.hasOwnProperty.call(currTarget.comments, e.commentId)) { if (
log.warn(`Cannot change comment with id ${e.commentId} because it does not exist.`); currTarget &&
!Object.prototype.hasOwnProperty.call(
currTarget.comments,
e.commentId
)
) {
log.warn(
`Cannot move comment with id ${e.commentId} because it does not exist.`
);
return; return;
} }
const comment = currTarget.comments[e.commentId]; const comment = currTarget.comments[e.commentId];
@ -483,7 +567,12 @@ class Blocks {
case 'comment_delete': case 'comment_delete':
if (this.runtime.getEditingTarget()) { if (this.runtime.getEditingTarget()) {
const currTarget = this.runtime.getEditingTarget(); const currTarget = this.runtime.getEditingTarget();
if (!Object.prototype.hasOwnProperty.call(currTarget.comments, e.commentId)) { if (
!Object.prototype.hasOwnProperty.call(
currTarget.comments,
e.commentId
)
) {
// If we're in this state, we have probably received // If we're in this state, we have probably received
// a delete event from a workspace that we switched from // a delete event from a workspace that we switched from
// (e.g. a delete event for a comment on sprite a's workspace // (e.g. a delete event for a comment on sprite a's workspace
@ -494,7 +583,9 @@ class Blocks {
if (e.blockId) { if (e.blockId) {
const block = currTarget.blocks.getBlock(e.blockId); const block = currTarget.blocks.getBlock(e.blockId);
if (!block) { if (!block) {
log.warn(`Could not find block referenced by comment with id: ${e.commentId}`); log.warn(
`Could not find block referenced by comment with id: ${e.commentId}`
);
return; return;
} }
delete block.comment; delete block.comment;
@ -562,7 +653,9 @@ class Blocks {
*/ */
changeBlock (args) { changeBlock (args) {
// Validate // Validate
if (['field', 'mutation', 'checkbox'].indexOf(args.element) === -1) return; if (['field', 'mutation', 'checkbox'].indexOf(args.element) === -1) {
return;
}
let block = this._blocks[args.id]; let block = this._blocks[args.id];
if (typeof block === 'undefined') return; if (typeof block === 'undefined') return;
switch (args.element) { switch (args.element) {
@ -576,13 +669,17 @@ class Blocks {
// 3. the checkbox should become unchecked if we're not already // 3. the checkbox should become unchecked if we're not already
// monitoring current minute // monitoring current minute
// Update block value // Update block value
if (!block.fields[args.name]) return; if (!block.fields[args.name]) return;
if (args.name === 'VARIABLE' || args.name === 'LIST' || if (
args.name === 'BROADCAST_OPTION') { args.name === 'VARIABLE' ||
args.name === 'LIST' ||
args.name === 'BROADCAST_OPTION'
) {
// Get variable name using the id in args.value. // Get variable name using the id in args.value.
const variable = this.runtime.getEditingTarget().lookupVariableById(args.value); const variable = this.runtime
.getEditingTarget()
.lookupVariableById(args.value);
if (variable) { if (variable) {
block.fields[args.name].value = variable.name; block.fields[args.name].value = variable.name;
block.fields[args.name].id = args.value; block.fields[args.name].id = args.value;
@ -596,19 +693,26 @@ class Blocks {
// TODO: (#1787) // TODO: (#1787)
if (block.opcode === 'sensing_of_object_menu') { if (block.opcode === 'sensing_of_object_menu') {
if (block.fields.OBJECT.value === '_stage_') { if (block.fields.OBJECT.value === '_stage_') {
this._blocks[block.parent].fields.PROPERTY.value = 'backdrop #'; this._blocks[block.parent].fields.PROPERTY.value =
'backdrop #';
} else { } else {
this._blocks[block.parent].fields.PROPERTY.value = 'x position'; this._blocks[block.parent].fields.PROPERTY.value =
'x position';
} }
this.runtime.requestBlocksUpdate(); this.runtime.requestBlocksUpdate();
} }
const flyoutBlock = block.shadow && block.parent ? this._blocks[block.parent] : block; const flyoutBlock =
block.shadow && block.parent ?
this._blocks[block.parent] :
block;
if (flyoutBlock.isMonitored) { if (flyoutBlock.isMonitored) {
this.runtime.requestUpdateMonitor(Map({ this.runtime.requestUpdateMonitor(
id: flyoutBlock.id, Map({
params: this._getBlockParams(flyoutBlock) id: flyoutBlock.id,
})); params: this._getBlockParams(flyoutBlock)
})
);
} }
} }
break; break;
@ -619,14 +723,20 @@ class Blocks {
// A checkbox usually has a one to one correspondence with the monitor // A checkbox usually has a one to one correspondence with the monitor
// block but in the case of monitored reporters that have arguments, // block but in the case of monitored reporters that have arguments,
// map the old id to a new id, creating a new monitor block if necessary // map the old id to a new id, creating a new monitor block if necessary
if (block.fields && Object.keys(block.fields).length > 0 && if (
block.opcode !== 'data_variable' && block.opcode !== 'data_listcontents') { block.fields &&
Object.keys(block.fields).length > 0 &&
block.opcode !== 'data_variable' &&
block.opcode !== 'data_listcontents'
) {
// This block has an argument which needs to get separated out into // This block has an argument which needs to get separated out into
// multiple monitor blocks with ids based on the selected argument // multiple monitor blocks with ids based on the selected argument
const newId = getMonitorIdForBlockWithArgs(block.id, block.fields);
// Note: we're not just constantly creating a longer and longer id everytime we check // Note: we're not just constantly creating a longer and longer id everytime we check
// the checkbox because we're using the id of the block in the flyout as the base // the checkbox because we're using the id of the block in the flyout as the base
const newId = getMonitorIdForBlockWithArgs(
block.id,
block.fields
);
// check if a block with the new id already exists, otherwise create // check if a block with the new id already exists, otherwise create
let newBlock = this.runtime.monitorBlocks.getBlock(newId); let newBlock = this.runtime.monitorBlocks.getBlock(newId);
@ -645,19 +755,31 @@ class Blocks {
// Variable blocks may be sprite specific depending on the owner of the variable // Variable blocks may be sprite specific depending on the owner of the variable
let isSpriteLocalVariable = false; let isSpriteLocalVariable = false;
if (block.opcode === 'data_variable') { if (block.opcode === 'data_variable') {
isSpriteLocalVariable = !(this.runtime.getTargetForStage().variables[block.fields.VARIABLE.id]); isSpriteLocalVariable =
!this.runtime.getTargetForStage().variables[
block.fields.VARIABLE.id
];
} else if (block.opcode === 'data_listcontents') { } else if (block.opcode === 'data_listcontents') {
isSpriteLocalVariable = !(this.runtime.getTargetForStage().variables[block.fields.LIST.id]); isSpriteLocalVariable =
!this.runtime.getTargetForStage().variables[
block.fields.LIST.id
];
} }
const isSpriteSpecific = isSpriteLocalVariable || const isSpriteSpecific =
(Object.prototype.hasOwnProperty.call(this.runtime.monitorBlockInfo, block.opcode) && isSpriteLocalVariable ||
this.runtime.monitorBlockInfo[block.opcode].isSpriteSpecific); (Object.prototype.hasOwnProperty.call(
this.runtime.monitorBlockInfo,
block.opcode
) &&
this.runtime.monitorBlockInfo[block.opcode]
.isSpriteSpecific);
if (isSpriteSpecific) { if (isSpriteSpecific) {
// If creating a new sprite specific monitor, the only possible target is // If creating a new sprite specific monitor, the only possible target is
// the current editing one b/c you cannot dynamically create monitors. // the current editing one b/c you cannot dynamically create monitors.
// Also, do not change the targetId if it has already been assigned // Also, do not change the targetId if it has already been assigned
block.targetId = block.targetId || this.runtime.getEditingTarget().id; block.targetId =
block.targetId || this.runtime.getEditingTarget().id;
} else { } else {
block.targetId = null; block.targetId = null;
} }
@ -667,16 +789,25 @@ class Blocks {
} else if (!wasMonitored && block.isMonitored) { } else if (!wasMonitored && block.isMonitored) {
// Tries to show the monitor for specified block. If it doesn't exist, add the monitor. // Tries to show the monitor for specified block. If it doesn't exist, add the monitor.
if (!this.runtime.requestShowMonitor(block.id)) { if (!this.runtime.requestShowMonitor(block.id)) {
this.runtime.requestAddMonitor(MonitorRecord({ this.runtime.requestAddMonitor(
id: block.id, MonitorRecord({
targetId: block.targetId, id: block.id,
spriteName: block.targetId ? this.runtime.getTargetById(block.targetId).getName() : null, targetId: block.targetId,
opcode: block.opcode, spriteName: block.targetId ?
params: this._getBlockParams(block), this.runtime
// @todo(vm#565) for numerical values with decimals, some countries use comma .getTargetById(block.targetId)
value: '', .getName() :
mode: block.opcode === 'data_listcontents' ? 'list' : 'default' null,
})); opcode: block.opcode,
params: this._getBlockParams(block),
// @todo(vm#565) for numerical values with decimals, some countries use comma
value: '',
mode:
block.opcode === 'data_listcontents' ?
'list' :
'default'
})
);
} }
} }
break; break;
@ -705,8 +836,8 @@ class Blocks {
// Move coordinate changes. // Move coordinate changes.
if (e.newCoordinate) { if (e.newCoordinate) {
didChange =
didChange = (block.x !== e.newCoordinate.x) || (block.y !== e.newCoordinate.y); block.x !== e.newCoordinate.x || block.y !== e.newCoordinate.y;
block.x = e.newCoordinate.x; block.x = e.newCoordinate.x;
block.y = e.newCoordinate.y; block.y = e.newCoordinate.y;
@ -715,8 +846,10 @@ class Blocks {
// Remove from any old parent. // Remove from any old parent.
if (typeof e.oldParent !== 'undefined') { if (typeof e.oldParent !== 'undefined') {
const oldParent = this._blocks[e.oldParent]; const oldParent = this._blocks[e.oldParent];
if (typeof e.oldInput !== 'undefined' && if (
oldParent.inputs[e.oldInput].block === e.id) { typeof e.oldInput !== 'undefined' &&
oldParent.inputs[e.oldInput].block === e.id
) {
// This block was connected to the old parent's input. // This block was connected to the old parent's input.
oldParent.inputs[e.oldInput].block = null; oldParent.inputs[e.oldInput].block = null;
} else if (oldParent.next === e.id) { } else if (oldParent.next === e.id) {
@ -741,8 +874,14 @@ class Blocks {
// Moved to the new parent's input. // Moved to the new parent's input.
// Don't obscure the shadow block. // Don't obscure the shadow block.
let oldShadow = null; let oldShadow = null;
if (Object.prototype.hasOwnProperty.call(this._blocks[e.newParent].inputs, e.newInput)) { if (
oldShadow = this._blocks[e.newParent].inputs[e.newInput].shadow; Object.prototype.hasOwnProperty.call(
this._blocks[e.newParent].inputs,
e.newInput
)
) {
oldShadow =
this._blocks[e.newParent].inputs[e.newInput].shadow;
} }
// If the block being attached is itself a shadow, make sure to set // If the block being attached is itself a shadow, make sure to set
@ -764,7 +903,6 @@ class Blocks {
if (didChange) this.emitProjectChanged(); if (didChange) this.emitProjectChanged();
} }
/** /**
* Block management: run all blocks. * Block management: run all blocks.
* @param {!object} runtime Runtime to run all blocks in. * @param {!object} runtime Runtime to run all blocks in.
@ -777,7 +915,9 @@ class Blocks {
const targetId = this.getBlock(blockId).targetId; const targetId = this.getBlock(blockId).targetId;
return { return {
blockId, blockId,
target: targetId ? runtime.getTargetById(targetId) : null target: targetId ?
runtime.getTargetById(targetId) :
null
}; };
}); });
} }
@ -816,8 +956,10 @@ class Blocks {
this.deleteBlock(block.inputs[input].block); this.deleteBlock(block.inputs[input].block);
} }
// Delete obscured shadow blocks. // Delete obscured shadow blocks.
if (block.inputs[input].shadow !== null && if (
block.inputs[input].shadow !== block.inputs[input].block) { block.inputs[input].shadow !== null &&
block.inputs[input].shadow !== block.inputs[input].block
) {
this.deleteBlock(block.inputs[input].shadow); this.deleteBlock(block.inputs[input].shadow);
} }
} }
@ -863,7 +1005,10 @@ class Blocks {
} else if (blocks[blockId].fields.LIST) { } else if (blocks[blockId].fields.LIST) {
varOrListField = blocks[blockId].fields.LIST; varOrListField = blocks[blockId].fields.LIST;
varType = Variable.LIST_TYPE; varType = Variable.LIST_TYPE;
} else if (optIncludeBroadcast && blocks[blockId].fields.BROADCAST_OPTION) { } else if (
optIncludeBroadcast &&
blocks[blockId].fields.BROADCAST_OPTION
) {
varOrListField = blocks[blockId].fields.BROADCAST_OPTION; varOrListField = blocks[blockId].fields.BROADCAST_OPTION;
varType = Variable.BROADCAST_MESSAGE_TYPE; varType = Variable.BROADCAST_MESSAGE_TYPE;
} }
@ -875,10 +1020,12 @@ class Blocks {
type: varType type: varType
}); });
} else { } else {
allReferences[currVarId] = [{ allReferences[currVarId] = [
referencingField: varOrListField, {
type: varType referencingField: varOrListField,
}]; type: varType
}
];
} }
} }
} }
@ -915,9 +1062,15 @@ class Blocks {
updateTargetSpecificBlocks (isStage) { updateTargetSpecificBlocks (isStage) {
const blocks = this._blocks; const blocks = this._blocks;
for (const blockId in blocks) { for (const blockId in blocks) {
if (isStage && blocks[blockId].opcode === 'event_whenthisspriteclicked') { if (
isStage &&
blocks[blockId].opcode === 'event_whenthisspriteclicked'
) {
blocks[blockId].opcode = 'event_whenstageclicked'; blocks[blockId].opcode = 'event_whenstageclicked';
} else if (!isStage && blocks[blockId].opcode === 'event_whenstageclicked') { } else if (
!isStage &&
blocks[blockId].opcode === 'event_whenstageclicked'
) {
blocks[blockId].opcode = 'event_whenthisspriteclicked'; blocks[blockId].opcode = 'event_whenthisspriteclicked';
} }
} }
@ -967,10 +1120,12 @@ class Blocks {
let blockUpdated = false; let blockUpdated = false;
for (const blockId in blocks) { for (const blockId in blocks) {
const block = blocks[blockId]; const block = blocks[blockId];
if (block.opcode === 'sensing_of' && if (
block.opcode === 'sensing_of' &&
block.fields.PROPERTY.value === oldName && block.fields.PROPERTY.value === oldName &&
// If block and shadow are different, it means a block is inserted to OBJECT, and should be ignored. // If block and shadow are different, it means a block is inserted to OBJECT, and should be ignored.
block.inputs.OBJECT.block === block.inputs.OBJECT.shadow) { block.inputs.OBJECT.block === block.inputs.OBJECT.shadow
) {
const inputBlock = this.getBlock(block.inputs.OBJECT.block); const inputBlock = this.getBlock(block.inputs.OBJECT.block);
if (inputBlock.fields.OBJECT.value === targetName) { if (inputBlock.fields.OBJECT.value === targetName) {
block.fields.PROPERTY.value = newName; block.fields.PROPERTY.value = newName;
@ -991,7 +1146,10 @@ class Blocks {
*/ */
_getCostumeField (blockId) { _getCostumeField (blockId) {
const block = this.getBlock(blockId); const block = this.getBlock(blockId);
if (block && Object.prototype.hasOwnProperty.call(block.fields, 'COSTUME')) { if (
block &&
Object.prototype.hasOwnProperty.call(block.fields, 'COSTUME')
) {
return block.fields.COSTUME; return block.fields.COSTUME;
} }
return null; return null;
@ -1006,7 +1164,10 @@ class Blocks {
*/ */
_getSoundField (blockId) { _getSoundField (blockId) {
const block = this.getBlock(blockId); const block = this.getBlock(blockId);
if (block && Object.prototype.hasOwnProperty.call(block.fields, 'SOUND_MENU')) { if (
block &&
Object.prototype.hasOwnProperty.call(block.fields, 'SOUND_MENU')
) {
return block.fields.SOUND_MENU; return block.fields.SOUND_MENU;
} }
return null; return null;
@ -1021,7 +1182,10 @@ class Blocks {
*/ */
_getBackdropField (blockId) { _getBackdropField (blockId) {
const block = this.getBlock(blockId); const block = this.getBlock(blockId);
if (block && Object.prototype.hasOwnProperty.call(block.fields, 'BACKDROP')) { if (
block &&
Object.prototype.hasOwnProperty.call(block.fields, 'BACKDROP')
) {
return block.fields.BACKDROP; return block.fields.BACKDROP;
} }
return null; return null;
@ -1039,8 +1203,15 @@ class Blocks {
if (!block) { if (!block) {
return null; return null;
} }
const spriteMenuNames = ['TOWARDS', 'TO', 'OBJECT', 'VIDEOONMENU2', const spriteMenuNames = [
'DISTANCETOMENU', 'TOUCHINGOBJECTMENU', 'CLONE_OPTION']; 'TOWARDS',
'TO',
'OBJECT',
'VIDEOONMENU2',
'DISTANCETOMENU',
'TOUCHINGOBJECTMENU',
'CLONE_OPTION'
];
for (let i = 0; i < spriteMenuNames.length; i++) { for (let i = 0; i < spriteMenuNames.length; i++) {
const menuName = spriteMenuNames[i]; const menuName = spriteMenuNames[i];
if (Object.prototype.hasOwnProperty.call(block.fields, menuName)) { if (Object.prototype.hasOwnProperty.call(block.fields, menuName)) {
@ -1059,7 +1230,9 @@ class Blocks {
* @return {string} String of XML representing this object's blocks. * @return {string} String of XML representing this object's blocks.
*/ */
toXML (comments) { toXML (comments) {
return this._scripts.map(script => this.blockToXML(script, comments)).join(); return this._scripts
.map(script => this.blockToXML(script, comments))
.join();
} }
/** /**
@ -1076,9 +1249,8 @@ class Blocks {
// this early exit allows the project to load. // this early exit allows the project to load.
if (!block) return; if (!block) return;
// Encode properties of this block. // Encode properties of this block.
const tagName = (block.shadow) ? 'shadow' : 'block'; const tagName = block.shadow ? 'shadow' : 'block';
let xmlString = let xmlString = `<${tagName}
`<${tagName}
id="${block.id}" id="${block.id}"
type="${block.opcode}" type="${block.opcode}"
${block.topLevel ? `x="${block.x}" y="${block.y}"` : ''} ${block.topLevel ? `x="${block.x}" y="${block.y}"` : ''}
@ -1089,10 +1261,14 @@ class Blocks {
if (Object.prototype.hasOwnProperty.call(comments, commentId)) { if (Object.prototype.hasOwnProperty.call(comments, commentId)) {
xmlString += comments[commentId].toXML(); xmlString += comments[commentId].toXML();
} else { } else {
log.warn(`Could not find comment with id: ${commentId} in provided comment descriptions.`); log.warn(
`Could not find comment with id: ${commentId} in provided comment descriptions.`
);
} }
} else { } else {
log.warn(`Cannot serialize comment with id: ${commentId}; no comment descriptions provided.`); log.warn(
`Cannot serialize comment with id: ${commentId}; no comment descriptions provided.`
);
} }
} }
// Add any mutation. Must come before inputs. // Add any mutation. Must come before inputs.
@ -1101,7 +1277,9 @@ class Blocks {
} }
// Add any inputs on this block. // Add any inputs on this block.
for (const input in block.inputs) { for (const input in block.inputs) {
if (!Object.prototype.hasOwnProperty.call(block.inputs, input)) continue; if (!Object.prototype.hasOwnProperty.call(block.inputs, input)) {
continue;
}
const blockInput = block.inputs[input]; const blockInput = block.inputs[input];
// Only encode a value tag if the value input is occupied. // Only encode a value tag if the value input is occupied.
if (blockInput.block || blockInput.shadow) { if (blockInput.block || blockInput.shadow) {
@ -1109,7 +1287,10 @@ class Blocks {
if (blockInput.block) { if (blockInput.block) {
xmlString += this.blockToXML(blockInput.block, comments); xmlString += this.blockToXML(blockInput.block, comments);
} }
if (blockInput.shadow && blockInput.shadow !== blockInput.block) { if (
blockInput.shadow &&
blockInput.shadow !== blockInput.block
) {
// Obscured shadow. // Obscured shadow.
xmlString += this.blockToXML(blockInput.shadow, comments); xmlString += this.blockToXML(blockInput.shadow, comments);
} }
@ -1118,7 +1299,9 @@ class Blocks {
} }
// Add any fields on this block. // Add any fields on this block.
for (const field in block.fields) { for (const field in block.fields) {
if (!Object.prototype.hasOwnProperty.call(block.fields, field)) continue; if (!Object.prototype.hasOwnProperty.call(block.fields, field)) {
continue;
}
const blockField = block.fields[field]; const blockField = block.fields[field];
xmlString += `<field name="${blockField.name}"`; xmlString += `<field name="${blockField.name}"`;
const fieldId = blockField.id; const fieldId = blockField.id;
@ -1137,7 +1320,10 @@ class Blocks {
} }
// Add blocks connected to the next connection. // Add blocks connected to the next connection.
if (block.next) { if (block.next) {
xmlString += `<next>${this.blockToXML(block.next, comments)}</next>`; xmlString += `<next>${this.blockToXML(
block.next,
comments
)}</next>`;
} }
xmlString += `</${tagName}>`; xmlString += `</${tagName}>`;
return xmlString; return xmlString;
@ -1152,8 +1338,10 @@ class Blocks {
let mutationString = `<${mutation.tagName}`; let mutationString = `<${mutation.tagName}`;
for (const prop in mutation) { for (const prop in mutation) {
if (prop === 'children' || prop === 'tagName') continue; if (prop === 'children' || prop === 'tagName') continue;
let mutationValue = (typeof mutation[prop] === 'string') ? let mutationValue =
xmlEscape(mutation[prop]) : mutation[prop]; typeof mutation[prop] === 'string' ?
xmlEscape(mutation[prop]) :
mutation[prop];
// Handle dynamic extension blocks // Handle dynamic extension blocks
if (prop === 'blockInfo') { if (prop === 'blockInfo') {

File diff suppressed because it is too large Load diff