2017-11-03 11:46:57 -04:00
|
|
|
const BlockUtility = require('./block-utility');
|
2018-04-10 16:29:51 -04:00
|
|
|
const BlocksExecuteCache = require('./blocks-execute-cache');
|
2017-04-17 15:10:04 -04:00
|
|
|
const log = require('../util/log');
|
|
|
|
const Thread = require('./thread');
|
2017-05-19 17:28:00 -04:00
|
|
|
const {Map} = require('immutable');
|
2017-12-08 12:19:11 -05:00
|
|
|
const cast = require('../util/cast');
|
2016-06-17 15:10:12 -04:00
|
|
|
|
2017-11-03 11:46:57 -04:00
|
|
|
/**
|
|
|
|
* Single BlockUtility instance reused by execute for every pritimive ran.
|
|
|
|
* @const
|
|
|
|
*/
|
|
|
|
const blockUtility = new BlockUtility();
|
|
|
|
|
2017-11-09 17:27:49 -05:00
|
|
|
/**
|
|
|
|
* Profiler frame name for block functions.
|
|
|
|
* @const {string}
|
|
|
|
*/
|
|
|
|
const blockFunctionProfilerFrame = 'blockFunction';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Profiler frame ID for 'blockFunction'.
|
|
|
|
* @type {number}
|
|
|
|
*/
|
|
|
|
let blockFunctionProfilerId = -1;
|
|
|
|
|
2016-08-23 18:12:32 -04:00
|
|
|
/**
|
|
|
|
* Utility function to determine if a value is a Promise.
|
|
|
|
* @param {*} value Value to check for a Promise.
|
2017-02-01 15:59:50 -05:00
|
|
|
* @return {boolean} True if the value appears to be a Promise.
|
2016-08-23 18:12:32 -04:00
|
|
|
*/
|
2017-04-17 15:10:04 -04:00
|
|
|
const isPromise = function (value) {
|
2017-11-03 11:40:20 -04:00
|
|
|
return (
|
|
|
|
value !== null &&
|
|
|
|
typeof value === 'object' &&
|
|
|
|
typeof value.then === 'function'
|
|
|
|
);
|
2016-08-23 18:12:32 -04:00
|
|
|
};
|
|
|
|
|
2017-11-03 11:43:19 -04:00
|
|
|
/**
|
|
|
|
* Handle any reported value from the primitive, either directly returned
|
|
|
|
* or after a promise resolves.
|
|
|
|
* @param {*} resolvedValue Value eventually returned from the primitive.
|
|
|
|
* @param {!Sequencer} sequencer Sequencer stepping the thread for the ran
|
|
|
|
* primitive.
|
|
|
|
* @param {!Thread} thread Thread containing the primitive.
|
|
|
|
* @param {!string} currentBlockId Id of the block in its thread for value from
|
|
|
|
* the primitive.
|
2017-11-03 11:46:57 -04:00
|
|
|
* @param {!string} opcode opcode used to identify a block function primitive.
|
2017-11-03 11:43:19 -04:00
|
|
|
* @param {!boolean} isHat Is the current block a hat?
|
|
|
|
*/
|
|
|
|
// @todo move this to callback attached to the thread when we have performance
|
|
|
|
// metrics (dd)
|
|
|
|
const handleReport = function (
|
2017-11-03 11:46:57 -04:00
|
|
|
resolvedValue, sequencer, thread, currentBlockId, opcode, isHat) {
|
2017-11-03 11:43:19 -04:00
|
|
|
thread.pushReportedValue(resolvedValue);
|
|
|
|
if (isHat) {
|
|
|
|
// Hat predicate was evaluated.
|
|
|
|
if (sequencer.runtime.getIsEdgeActivatedHat(opcode)) {
|
|
|
|
// If this is an edge-activated hat, only proceed if the value is
|
|
|
|
// true and used to be false, or the stack was activated explicitly
|
|
|
|
// via stack click
|
|
|
|
if (!thread.stackClick) {
|
|
|
|
const oldEdgeValue = sequencer.runtime.updateEdgeActivatedValue(
|
|
|
|
currentBlockId,
|
|
|
|
resolvedValue
|
|
|
|
);
|
|
|
|
const edgeWasActivated = !oldEdgeValue && resolvedValue;
|
|
|
|
if (!edgeWasActivated) {
|
|
|
|
sequencer.retireThread(thread);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (!resolvedValue) {
|
|
|
|
// Not an edge-activated hat: retire the thread
|
|
|
|
// if predicate was false.
|
|
|
|
sequencer.retireThread(thread);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// In a non-hat, report the value visually if necessary if
|
|
|
|
// at the top of the thread stack.
|
|
|
|
if (typeof resolvedValue !== 'undefined' && thread.atStackTop()) {
|
|
|
|
if (thread.stackClick) {
|
|
|
|
sequencer.runtime.visualReport(currentBlockId, resolvedValue);
|
|
|
|
}
|
|
|
|
if (thread.updateMonitor) {
|
2017-11-13 16:28:50 -05:00
|
|
|
const targetId = sequencer.runtime.monitorBlocks.getBlock(currentBlockId).targetId;
|
2017-11-14 18:25:54 -05:00
|
|
|
if (targetId && !sequencer.runtime.getTargetById(targetId)) {
|
|
|
|
// Target no longer exists
|
|
|
|
return;
|
|
|
|
}
|
2017-11-03 11:43:19 -04:00
|
|
|
sequencer.runtime.requestUpdateMonitor(Map({
|
|
|
|
id: currentBlockId,
|
2017-11-13 16:28:50 -05:00
|
|
|
spriteName: targetId ? sequencer.runtime.getTargetById(targetId).getName() : null,
|
2018-05-09 11:39:14 -04:00
|
|
|
value: resolvedValue
|
2017-11-03 11:43:19 -04:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Finished any yields.
|
|
|
|
thread.status = Thread.STATUS_RUNNING;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-04-10 16:29:51 -04:00
|
|
|
/**
|
2018-04-16 17:35:56 -04:00
|
|
|
* A convenience constant to help make use of the recursiveCall argument easier
|
|
|
|
* to read.
|
2018-04-10 16:29:51 -04:00
|
|
|
* @const {boolean}
|
|
|
|
*/
|
|
|
|
const RECURSIVE = true;
|
|
|
|
|
2018-04-16 17:35:56 -04:00
|
|
|
/**
|
2018-05-07 11:09:45 -04:00
|
|
|
* A execute.js internal representation of a block to reduce the time spent in
|
|
|
|
* execute as the same blocks are called the most.
|
|
|
|
*
|
|
|
|
* With the help of the Blocks class create a mutable copy of block
|
|
|
|
* information. The members of BlockCached derived values of block information
|
|
|
|
* that does not need to be reevaluated until a change in Blocks. Since Blocks
|
|
|
|
* handles where the cache instance is stored, it drops all cache versions of a
|
|
|
|
* block when any change happens to it. This way we can quickly execute blocks
|
|
|
|
* and keep perform the right action according to the current block information
|
|
|
|
* in the editor.
|
|
|
|
*
|
|
|
|
* @param {Blocks} blockContainer the related Blocks instance
|
|
|
|
* @param {object} cached default set of cached values
|
2018-04-16 17:35:56 -04:00
|
|
|
*/
|
2018-05-07 11:09:45 -04:00
|
|
|
class BlockCached {
|
|
|
|
constructor (blockContainer, cached) {
|
|
|
|
/**
|
|
|
|
* Block operation code for this block.
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
this.opcode = cached.opcode;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Original block object containing argument values for static fields.
|
|
|
|
* @type {object}
|
|
|
|
*/
|
|
|
|
this.fields = cached.fields;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Original block object containing argument values for executable inputs.
|
|
|
|
* @type {object}
|
|
|
|
*/
|
|
|
|
this.inputs = cached.inputs;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Procedure mutation.
|
|
|
|
* @type {?object}
|
|
|
|
*/
|
|
|
|
this.mutation = cached.mutation;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is the opcode a hat (event responder) block.
|
|
|
|
* @type {boolean}
|
|
|
|
*/
|
|
|
|
this._isHat = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The block opcode's implementation function.
|
|
|
|
* @type {?function}
|
|
|
|
*/
|
|
|
|
this._blockFunction = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is the block function defined for this opcode?
|
|
|
|
* @type {boolean}
|
|
|
|
*/
|
|
|
|
this._definedBlockFunction = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is this block a block with no function but a static value to return.
|
|
|
|
* @type {boolean}
|
|
|
|
*/
|
|
|
|
this._isShadowBlock = false;
|
2018-05-07 10:31:28 -04:00
|
|
|
|
2018-05-07 11:09:45 -04:00
|
|
|
/**
|
|
|
|
* The static value of this block if it is a shadow block.
|
|
|
|
* @type {?any}
|
|
|
|
*/
|
|
|
|
this._shadowValue = null;
|
2018-05-07 10:31:28 -04:00
|
|
|
|
2018-05-07 11:09:45 -04:00
|
|
|
/**
|
|
|
|
* A copy of the block's fields that may be modified.
|
|
|
|
* @type {object}
|
|
|
|
*/
|
|
|
|
this._fields = Object.assign({}, this.fields);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A copy of the block's inputs that may be modified.
|
|
|
|
* @type {object}
|
|
|
|
*/
|
|
|
|
this._inputs = Object.assign({}, this.inputs);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An arguments object for block implementations. All executions of this
|
|
|
|
* specific block will use this objecct.
|
|
|
|
* @type {object}
|
|
|
|
*/
|
|
|
|
this._argValues = {
|
|
|
|
mutation: this.mutation
|
2018-05-07 10:31:28 -04:00
|
|
|
};
|
|
|
|
|
2018-05-07 11:09:45 -04:00
|
|
|
const {runtime} = blockUtility.sequencer;
|
|
|
|
|
|
|
|
const {opcode, fields, inputs} = this;
|
|
|
|
|
|
|
|
// Assign opcode isHat and blockFunction data to avoid dynamic lookups.
|
|
|
|
this._isHat = runtime.getIsHat(opcode);
|
|
|
|
this._blockFunction = runtime.getOpcodeFunction(opcode);
|
|
|
|
this._definedBlockFunction = typeof this._blockFunction !== 'undefined';
|
2018-05-07 10:31:28 -04:00
|
|
|
|
2018-05-07 11:09:45 -04:00
|
|
|
// Store the current shadow value if there is a shadow value.
|
|
|
|
const fieldKeys = Object.keys(fields);
|
|
|
|
this._isShadowBlock = (
|
|
|
|
!this._definedBlockFunction &&
|
|
|
|
fieldKeys.length === 1 &&
|
|
|
|
Object.keys(inputs).length === 0
|
|
|
|
);
|
|
|
|
this._shadowValue = this._isShadowBlock && fields[fieldKeys[0]].value;
|
|
|
|
|
|
|
|
// Store the static fields onto _argValues.
|
|
|
|
for (const fieldName in fields) {
|
|
|
|
if (
|
|
|
|
fieldName === 'VARIABLE' ||
|
|
|
|
fieldName === 'LIST' ||
|
|
|
|
fieldName === 'BROADCAST_OPTION'
|
|
|
|
) {
|
|
|
|
this._argValues[fieldName] = {
|
|
|
|
id: fields[fieldName].id,
|
|
|
|
name: fields[fieldName].value
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
this._argValues[fieldName] = fields[fieldName].value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove custom_block. It is not part of block execution.
|
|
|
|
delete this._inputs.custom_block;
|
|
|
|
|
|
|
|
if ('BROADCAST_INPUT' in this._inputs) {
|
|
|
|
// BROADCAST_INPUT is called BROADCAST_OPTION in the args and is an
|
|
|
|
// object with an unchanging shape.
|
|
|
|
this._argValues.BROADCAST_OPTION = {
|
|
|
|
id: null,
|
|
|
|
name: null
|
|
|
|
};
|
|
|
|
|
|
|
|
// We can go ahead and compute BROADCAST_INPUT if it is a shadow
|
|
|
|
// value.
|
|
|
|
const broadcastInput = this._inputs.BROADCAST_INPUT;
|
|
|
|
if (broadcastInput.block === broadcastInput.shadow) {
|
|
|
|
// Shadow dropdown menu is being used.
|
|
|
|
// Get the appropriate information out of it.
|
|
|
|
const shadow = blockContainer.getBlock(broadcastInput.shadow);
|
|
|
|
const broadcastField = shadow.fields.BROADCAST_OPTION;
|
|
|
|
this._argValues.BROADCAST_OPTION.id = broadcastField.id;
|
|
|
|
this._argValues.BROADCAST_OPTION.name = broadcastField.value;
|
|
|
|
|
|
|
|
// Evaluating BROADCAST_INPUT here we do not need to do so
|
|
|
|
// later.
|
|
|
|
delete this._inputs.BROADCAST_INPUT;
|
|
|
|
}
|
2018-05-07 10:31:28 -04:00
|
|
|
}
|
|
|
|
}
|
2018-05-07 11:09:45 -04:00
|
|
|
}
|
2018-04-16 17:35:56 -04:00
|
|
|
|
2016-06-17 15:10:12 -04:00
|
|
|
/**
|
|
|
|
* Execute a block.
|
|
|
|
* @param {!Sequencer} sequencer Which sequencer is executing.
|
|
|
|
* @param {!Thread} thread Thread which to read and execute.
|
2018-04-10 16:29:51 -04:00
|
|
|
* @param {boolean} recursiveCall is execute called from another execute call?
|
2016-06-17 15:10:12 -04:00
|
|
|
*/
|
2018-04-10 16:29:51 -04:00
|
|
|
const execute = function (sequencer, thread, recursiveCall) {
|
2017-04-17 15:10:04 -04:00
|
|
|
const runtime = sequencer.runtime;
|
2016-10-13 17:15:49 -04:00
|
|
|
|
2018-05-07 10:31:28 -04:00
|
|
|
// sequencer and thread are the same objects during a recursive set of
|
|
|
|
// execute operations.
|
|
|
|
if (recursiveCall !== RECURSIVE) {
|
|
|
|
blockUtility.sequencer = sequencer;
|
|
|
|
blockUtility.thread = thread;
|
|
|
|
}
|
|
|
|
|
2017-02-11 09:26:23 -05:00
|
|
|
// Current block to execute is the one on the top of the stack.
|
2017-04-17 15:10:04 -04:00
|
|
|
const currentBlockId = thread.peekStack();
|
|
|
|
const currentStackFrame = thread.peekStackFrame();
|
2017-02-11 09:26:23 -05:00
|
|
|
|
2018-04-10 16:29:51 -04:00
|
|
|
let blockContainer = thread.blockContainer;
|
2018-05-07 10:31:28 -04:00
|
|
|
let blockCached = BlocksExecuteCache.getCached(blockContainer, currentBlockId, BlockCached);
|
2018-05-04 12:33:42 -04:00
|
|
|
if (blockCached === null) {
|
2016-10-13 17:15:49 -04:00
|
|
|
blockContainer = runtime.flyoutBlocks;
|
2018-05-04 12:33:42 -04:00
|
|
|
blockCached = BlocksExecuteCache.getCached(blockContainer, currentBlockId, BlockCached);
|
2017-02-11 09:26:23 -05:00
|
|
|
// Stop if block or target no longer exists.
|
2018-05-04 12:33:42 -04:00
|
|
|
if (blockCached === null) {
|
2017-02-11 09:26:23 -05:00
|
|
|
// No block found: stop the thread; script no longer exists.
|
|
|
|
sequencer.retireThread(thread);
|
|
|
|
return;
|
|
|
|
}
|
2016-10-13 17:15:49 -04:00
|
|
|
}
|
2017-02-11 09:26:23 -05:00
|
|
|
|
2018-04-10 16:29:51 -04:00
|
|
|
const opcode = blockCached.opcode;
|
|
|
|
const inputs = blockCached._inputs;
|
|
|
|
const blockFunction = blockCached._blockFunction;
|
|
|
|
const isHat = blockCached._isHat;
|
|
|
|
|
2016-09-12 13:14:16 -04:00
|
|
|
// Hats and single-field shadows are implemented slightly differently
|
|
|
|
// from regular blocks.
|
2018-04-18 12:24:39 -04:00
|
|
|
// For hats: if they have an associated block function, it's treated as a
|
|
|
|
// predicate; if not, execution will proceed as a no-op. For single-field
|
|
|
|
// shadows: If the block has a single field, and no inputs, immediately
|
|
|
|
// return the value of the field.
|
2018-04-10 16:29:51 -04:00
|
|
|
if (!blockCached._definedBlockFunction) {
|
|
|
|
if (!opcode) {
|
|
|
|
log.warn(`Could not get opcode for block: ${currentBlockId}`);
|
2016-09-12 13:14:16 -04:00
|
|
|
return;
|
2017-02-11 09:26:23 -05:00
|
|
|
}
|
2018-04-10 16:29:51 -04:00
|
|
|
|
|
|
|
if (recursiveCall === RECURSIVE && blockCached._isShadowBlock) {
|
2017-02-11 09:26:23 -05:00
|
|
|
// One field and no inputs - treat as arg.
|
2018-04-10 16:29:51 -04:00
|
|
|
thread.pushReportedValue(blockCached._shadowValue);
|
|
|
|
thread.status = Thread.STATUS_RUNNING;
|
|
|
|
} else if (isHat) {
|
|
|
|
// Skip through the block (hat with no predicate).
|
|
|
|
return;
|
2016-09-12 13:14:16 -04:00
|
|
|
} else {
|
2017-04-17 15:10:04 -04:00
|
|
|
log.warn(`Could not get implementation for opcode: ${opcode}`);
|
2016-08-23 18:12:32 -04:00
|
|
|
}
|
2017-02-11 09:26:23 -05:00
|
|
|
thread.requestScriptGlowInFrame = true;
|
|
|
|
return;
|
2016-06-17 17:18:44 -04:00
|
|
|
}
|
|
|
|
|
2018-05-04 12:39:48 -04:00
|
|
|
// Update values for arguments (inputs).
|
2018-05-07 10:31:28 -04:00
|
|
|
const argValues = blockCached._argValues;
|
2016-06-09 13:27:30 -04:00
|
|
|
|
2018-05-04 12:39:48 -04:00
|
|
|
// Fields are set during blockCached initialization.
|
2016-06-09 13:28:50 -04:00
|
|
|
|
|
|
|
// Recursively evaluate input blocks.
|
2017-04-17 15:10:04 -04:00
|
|
|
for (const inputName in inputs) {
|
|
|
|
const input = inputs[inputName];
|
|
|
|
const inputBlockId = input.block;
|
2016-06-20 14:24:00 -04:00
|
|
|
// Is there no value for this input waiting in the stack frame?
|
2018-04-16 17:35:56 -04:00
|
|
|
if (inputBlockId !== null && currentStackFrame.waitingReporter === null) {
|
2016-06-20 14:24:00 -04:00
|
|
|
// If there's not, we need to evaluate the block.
|
2016-10-17 23:23:16 -04:00
|
|
|
// Push to the stack to evaluate the reporter block.
|
|
|
|
thread.pushStack(inputBlockId);
|
|
|
|
// Save name of input for `Thread.pushReportedValue`.
|
|
|
|
currentStackFrame.waitingReporter = inputName;
|
|
|
|
// Actually execute the block.
|
2018-04-10 16:29:51 -04:00
|
|
|
execute(sequencer, thread, RECURSIVE);
|
2016-10-17 23:23:16 -04:00
|
|
|
if (thread.status === Thread.STATUS_PROMISE_WAIT) {
|
2018-05-04 12:17:44 -04:00
|
|
|
// Create a reported value on the stack frame to store the
|
|
|
|
// already built values.
|
|
|
|
currentStackFrame.reported = {};
|
2018-04-18 12:24:39 -04:00
|
|
|
// Waiting for the block to resolve, store the current argValues
|
|
|
|
// onto a member of the currentStackFrame that can be used once
|
|
|
|
// the nested block resolves to rebuild argValues up to this
|
|
|
|
// point.
|
2018-04-10 16:29:51 -04:00
|
|
|
for (const _inputName in inputs) {
|
2018-04-18 12:24:39 -04:00
|
|
|
// We are waiting on the nested block at inputName so we
|
|
|
|
// don't need to store any more inputs.
|
2018-04-10 16:29:51 -04:00
|
|
|
if (_inputName === inputName) break;
|
|
|
|
if (_inputName === 'BROADCAST_INPUT') {
|
2018-04-16 17:35:56 -04:00
|
|
|
currentStackFrame.reported[_inputName] = argValues.BROADCAST_OPTION.name;
|
2018-04-10 16:29:51 -04:00
|
|
|
} else {
|
|
|
|
currentStackFrame.reported[_inputName] = argValues[_inputName];
|
|
|
|
}
|
|
|
|
}
|
2016-06-17 15:10:12 -04:00
|
|
|
return;
|
|
|
|
}
|
2017-02-11 09:26:23 -05:00
|
|
|
|
|
|
|
// Execution returned immediately,
|
|
|
|
// and presumably a value was reported, so pop the stack.
|
|
|
|
currentStackFrame.waitingReporter = null;
|
|
|
|
thread.popStack();
|
2016-06-17 15:10:12 -04:00
|
|
|
}
|
2018-04-18 12:24:39 -04:00
|
|
|
|
2018-04-10 16:29:51 -04:00
|
|
|
let inputValue;
|
2018-04-16 17:35:56 -04:00
|
|
|
if (currentStackFrame.waitingReporter === null) {
|
2018-04-10 16:29:51 -04:00
|
|
|
inputValue = currentStackFrame.justReported;
|
2018-04-16 17:35:56 -04:00
|
|
|
currentStackFrame.justReported = null;
|
2018-04-10 16:29:51 -04:00
|
|
|
} else if (currentStackFrame.waitingReporter === inputName) {
|
|
|
|
inputValue = currentStackFrame.justReported;
|
|
|
|
currentStackFrame.waitingReporter = null;
|
2018-04-16 17:35:56 -04:00
|
|
|
currentStackFrame.justReported = null;
|
2018-04-18 12:24:39 -04:00
|
|
|
// We have rebuilt argValues with all the stored values in the
|
|
|
|
// currentStackFrame from the nested block's promise resolving.
|
2018-05-04 12:17:44 -04:00
|
|
|
// Using the reported value from the block we waited on, unset the
|
|
|
|
// value. The next execute needing to store reported values will
|
|
|
|
// creates its own temporary storage.
|
|
|
|
currentStackFrame.reported = null;
|
2018-04-10 16:29:51 -04:00
|
|
|
} else if (typeof currentStackFrame.reported[inputName] !== 'undefined') {
|
|
|
|
inputValue = currentStackFrame.reported[inputName];
|
|
|
|
}
|
2018-05-07 10:31:28 -04:00
|
|
|
|
2017-12-08 12:19:11 -05:00
|
|
|
if (inputName === 'BROADCAST_INPUT') {
|
|
|
|
const broadcastInput = inputs[inputName];
|
|
|
|
// Check if something is plugged into the broadcast block, or
|
|
|
|
// if the shadow dropdown menu is being used.
|
2018-05-07 10:31:28 -04:00
|
|
|
if (broadcastInput.block !== broadcastInput.shadow) {
|
2017-12-08 12:19:11 -05:00
|
|
|
// Something is plugged into the broadcast input.
|
|
|
|
// Cast it to a string. We don't need an id here.
|
2018-05-07 10:31:28 -04:00
|
|
|
argValues.BROADCAST_OPTION.id = null;
|
|
|
|
argValues.BROADCAST_OPTION.name = cast.toString(inputValue);
|
2017-12-08 12:19:11 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
argValues[inputName] = inputValue;
|
|
|
|
}
|
2016-06-09 13:27:30 -04:00
|
|
|
}
|
|
|
|
|
2017-04-17 15:10:04 -04:00
|
|
|
let primitiveReportedValue = null;
|
2017-11-09 17:27:49 -05:00
|
|
|
if (runtime.profiler !== null) {
|
|
|
|
if (blockFunctionProfilerId === -1) {
|
|
|
|
blockFunctionProfilerId = runtime.profiler.idByName(blockFunctionProfilerFrame);
|
|
|
|
}
|
|
|
|
// The method commented below has its code inlined underneath to reduce
|
|
|
|
// the bias recorded for the profiler's calls in this time sensitive
|
|
|
|
// execute function.
|
|
|
|
//
|
|
|
|
// runtime.profiler.start(blockFunctionProfilerId, opcode);
|
|
|
|
runtime.profiler.records.push(
|
|
|
|
runtime.profiler.START, blockFunctionProfilerId, opcode, performance.now());
|
|
|
|
}
|
2017-11-03 11:46:57 -04:00
|
|
|
primitiveReportedValue = blockFunction(argValues, blockUtility);
|
2017-11-09 17:27:49 -05:00
|
|
|
if (runtime.profiler !== null) {
|
|
|
|
// runtime.profiler.stop(blockFunctionProfilerId);
|
|
|
|
runtime.profiler.records.push(runtime.profiler.STOP, performance.now());
|
|
|
|
}
|
2016-06-24 11:14:22 -04:00
|
|
|
|
2018-04-10 16:29:51 -04:00
|
|
|
if (recursiveCall !== RECURSIVE && typeof primitiveReportedValue === 'undefined') {
|
2016-09-08 09:40:53 -04:00
|
|
|
// No value reported - potentially a command block.
|
|
|
|
// Edge-activated hats don't request a glow; all commands do.
|
|
|
|
thread.requestScriptGlowInFrame = true;
|
|
|
|
}
|
|
|
|
|
2016-06-24 11:14:22 -04:00
|
|
|
// If it's a promise, wait until promise resolves.
|
2016-08-23 18:12:32 -04:00
|
|
|
if (isPromise(primitiveReportedValue)) {
|
2016-06-28 13:39:44 -04:00
|
|
|
if (thread.status === Thread.STATUS_RUNNING) {
|
|
|
|
// Primitive returned a promise; automatically yield thread.
|
2016-10-17 23:23:16 -04:00
|
|
|
thread.status = Thread.STATUS_PROMISE_WAIT;
|
2016-06-28 13:39:44 -04:00
|
|
|
}
|
|
|
|
// Promise handlers
|
2017-04-17 15:10:04 -04:00
|
|
|
primitiveReportedValue.then(resolvedValue => {
|
2017-11-03 11:46:57 -04:00
|
|
|
handleReport(resolvedValue, sequencer, thread, currentBlockId, opcode, isHat);
|
2016-10-23 17:55:31 -04:00
|
|
|
if (typeof resolvedValue === 'undefined') {
|
2017-04-17 17:15:19 -04:00
|
|
|
let stackFrame;
|
|
|
|
let nextBlockId;
|
2017-02-20 03:20:21 -05:00
|
|
|
do {
|
|
|
|
// In the case that the promise is the last block in the current thread stack
|
|
|
|
// We need to pop out repeatedly until we find the next block.
|
2017-04-17 15:10:04 -04:00
|
|
|
const popped = thread.popStack();
|
2017-02-20 03:20:21 -05:00
|
|
|
if (popped === null) {
|
|
|
|
return;
|
|
|
|
}
|
2017-04-17 17:15:19 -04:00
|
|
|
nextBlockId = thread.target.blocks.getNextBlock(popped);
|
2017-02-20 04:40:32 -05:00
|
|
|
if (nextBlockId !== null) {
|
|
|
|
// A next block exists so break out this loop
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Investigate the next block and if not in a loop,
|
|
|
|
// then repeat and pop the next item off the stack frame
|
2017-04-17 17:15:19 -04:00
|
|
|
stackFrame = thread.peekStackFrame();
|
2017-02-20 04:40:32 -05:00
|
|
|
} while (stackFrame !== null && !stackFrame.isLoop);
|
|
|
|
|
2016-10-17 23:23:16 -04:00
|
|
|
thread.pushStack(nextBlockId);
|
2016-10-23 17:55:31 -04:00
|
|
|
} else {
|
|
|
|
thread.popStack();
|
2016-10-17 23:23:16 -04:00
|
|
|
}
|
2017-04-17 15:10:04 -04:00
|
|
|
}, rejectionReason => {
|
2016-06-24 11:19:38 -04:00
|
|
|
// Promise rejected: the primitive had some error.
|
|
|
|
// Log it and proceed.
|
2016-10-23 18:01:11 -04:00
|
|
|
log.warn('Primitive rejected promise: ', rejectionReason);
|
2016-10-17 23:23:16 -04:00
|
|
|
thread.status = Thread.STATUS_RUNNING;
|
|
|
|
thread.popStack();
|
2016-06-28 13:39:44 -04:00
|
|
|
});
|
2016-06-24 11:14:22 -04:00
|
|
|
} else if (thread.status === Thread.STATUS_RUNNING) {
|
2018-04-10 16:29:51 -04:00
|
|
|
if (recursiveCall === RECURSIVE) {
|
2018-04-18 12:24:39 -04:00
|
|
|
// In recursive calls (where execute calls execute) handleReport
|
|
|
|
// simplifies to just calling thread.pushReportedValue.
|
2018-04-10 16:29:51 -04:00
|
|
|
thread.pushReportedValue(primitiveReportedValue);
|
|
|
|
} else {
|
|
|
|
handleReport(primitiveReportedValue, sequencer, thread, currentBlockId, opcode, isHat);
|
|
|
|
}
|
2016-06-20 14:11:21 -04:00
|
|
|
}
|
2016-06-09 13:27:30 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = execute;
|