2016-06-30 17:06:50 -04:00
|
|
|
var Promise = require('promise');
|
|
|
|
|
2016-06-09 11:45:58 -04:00
|
|
|
function Scratch3ControlBlocks(runtime) {
|
|
|
|
/**
|
|
|
|
* The runtime instantiating this block package.
|
|
|
|
* @type {Runtime}
|
|
|
|
*/
|
|
|
|
this.runtime = runtime;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve the block primitives implemented by this package.
|
|
|
|
* @return {Object.<string, Function>} Mapping of opcode to Function.
|
|
|
|
*/
|
|
|
|
Scratch3ControlBlocks.prototype.getPrimitives = function() {
|
|
|
|
return {
|
|
|
|
'control_repeat': this.repeat,
|
2016-07-01 11:25:26 -04:00
|
|
|
'control_repeat_until': this.repeatUntil,
|
2016-06-09 11:45:58 -04:00
|
|
|
'control_forever': this.forever,
|
|
|
|
'control_wait': this.wait,
|
2016-06-10 10:36:05 -04:00
|
|
|
'control_if': this.if,
|
2016-06-10 10:40:15 -04:00
|
|
|
'control_if_else': this.ifElse,
|
2016-06-09 11:45:58 -04:00
|
|
|
'control_stop': this.stop
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-06-10 10:36:05 -04:00
|
|
|
Scratch3ControlBlocks.prototype.repeat = function(args, util) {
|
2016-06-09 11:45:58 -04:00
|
|
|
// Initialize loop
|
|
|
|
if (util.stackFrame.loopCounter === undefined) {
|
2016-06-10 10:36:05 -04:00
|
|
|
util.stackFrame.loopCounter = parseInt(args.TIMES);
|
2016-06-09 11:45:58 -04:00
|
|
|
}
|
2016-07-01 10:50:31 -04:00
|
|
|
// Only execute once per frame.
|
|
|
|
// When the substack finishes, `repeat` will be executed again and
|
|
|
|
// the second branch will be taken, yielding for the rest of the frame.
|
|
|
|
if (!util.stackFrame.executed) {
|
|
|
|
util.stackFrame.executed = true;
|
|
|
|
// Decrease counter
|
|
|
|
util.stackFrame.loopCounter--;
|
|
|
|
// If we still have some left, start the substack
|
|
|
|
if (util.stackFrame.loopCounter >= 0) {
|
|
|
|
util.startSubstack();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
util.stackFrame.executed = false;
|
|
|
|
util.yieldFrame();
|
2016-06-09 11:45:58 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-07-01 11:25:26 -04:00
|
|
|
Scratch3ControlBlocks.prototype.repeatUntil = function(args, util) {
|
|
|
|
// Only execute once per frame.
|
|
|
|
// When the substack finishes, `repeat` will be executed again and
|
|
|
|
// the second branch will be taken, yielding for the rest of the frame.
|
|
|
|
if (!util.stackFrame.executedInFrame) {
|
|
|
|
util.stackFrame.executedInFrame = true;
|
|
|
|
// If the condition is true, start the substack.
|
|
|
|
if (!args.CONDITION) {
|
|
|
|
util.startSubstack();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
util.stackFrame.executedInFrame = false;
|
|
|
|
util.yieldFrame();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-06-10 10:36:05 -04:00
|
|
|
Scratch3ControlBlocks.prototype.forever = function(args, util) {
|
2016-07-01 10:50:31 -04:00
|
|
|
// Only execute once per frame.
|
|
|
|
// When the substack finishes, `forever` will be executed again and
|
|
|
|
// the second branch will be taken, yielding for the rest of the frame.
|
2016-07-01 11:25:26 -04:00
|
|
|
if (!util.stackFrame.executedInFrame) {
|
|
|
|
util.stackFrame.executedInFrame = true;
|
2016-07-01 10:44:43 -04:00
|
|
|
util.startSubstack();
|
|
|
|
} else {
|
2016-07-01 11:25:26 -04:00
|
|
|
util.stackFrame.executedInFrame = false;
|
2016-07-01 10:44:43 -04:00
|
|
|
util.yieldFrame();
|
|
|
|
}
|
2016-06-09 11:45:58 -04:00
|
|
|
};
|
|
|
|
|
2016-06-30 17:06:50 -04:00
|
|
|
Scratch3ControlBlocks.prototype.wait = function(args) {
|
|
|
|
return new Promise(function(resolve) {
|
|
|
|
setTimeout(function() {
|
|
|
|
resolve();
|
|
|
|
}, 1000 * args.DURATION);
|
|
|
|
});
|
2016-06-10 10:36:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
Scratch3ControlBlocks.prototype.if = function(args, util) {
|
|
|
|
// Only execute one time. `if` will be returned to
|
|
|
|
// when the substack finishes, but it shouldn't execute again.
|
2016-07-01 11:25:26 -04:00
|
|
|
if (util.stackFrame.executedInFrame === undefined) {
|
|
|
|
util.stackFrame.executedInFrame = true;
|
2016-06-10 10:36:05 -04:00
|
|
|
if (args.CONDITION) {
|
|
|
|
util.startSubstack();
|
|
|
|
}
|
|
|
|
}
|
2016-06-09 11:45:58 -04:00
|
|
|
};
|
|
|
|
|
2016-06-10 10:40:15 -04:00
|
|
|
Scratch3ControlBlocks.prototype.ifElse = function(args, util) {
|
|
|
|
// Only execute one time. `ifElse` will be returned to
|
|
|
|
// when the substack finishes, but it shouldn't execute again.
|
|
|
|
if (util.stackFrame.executed === undefined) {
|
|
|
|
util.stackFrame.executed = true;
|
|
|
|
if (args.CONDITION) {
|
|
|
|
util.startSubstack(1);
|
|
|
|
} else {
|
|
|
|
util.startSubstack(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-06-09 11:45:58 -04:00
|
|
|
Scratch3ControlBlocks.prototype.stop = function() {
|
|
|
|
// @todo - don't use this.runtime
|
|
|
|
this.runtime.stopAll();
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Scratch3ControlBlocks;
|