2016-09-12 13:14:16 -04:00
|
|
|
var Cast = require('../util/cast');
|
|
|
|
|
2016-06-09 11:45:58 -04:00
|
|
|
function Scratch3EventBlocks(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.
|
|
|
|
*/
|
|
|
|
Scratch3EventBlocks.prototype.getPrimitives = function() {
|
|
|
|
return {
|
2016-08-23 18:14:05 -04:00
|
|
|
'event_broadcast': this.broadcast,
|
|
|
|
'event_broadcastandwait': this.broadcastAndWait,
|
|
|
|
'event_whengreaterthan': this.hatGreaterThanPredicate
|
2016-06-09 11:45:58 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-08-23 18:14:05 -04:00
|
|
|
Scratch3EventBlocks.prototype.getHats = function () {
|
|
|
|
return {
|
|
|
|
'event_whenflagclicked': {
|
|
|
|
restartExistingThreads: true
|
|
|
|
},
|
2016-09-03 16:33:45 -04:00
|
|
|
'event_whenkeypressed': {
|
2016-08-23 18:14:05 -04:00
|
|
|
restartExistingThreads: false
|
|
|
|
},
|
|
|
|
'event_whenthisspriteclicked': {
|
|
|
|
restartExistingThreads: true
|
|
|
|
},
|
|
|
|
'event_whenbackdropswitchesto': {
|
|
|
|
restartExistingThreads: true
|
2016-09-08 09:40:27 -04:00
|
|
|
},
|
2016-08-23 18:14:05 -04:00
|
|
|
'event_whengreaterthan': {
|
|
|
|
restartExistingThreads: false,
|
2016-08-29 10:26:26 -04:00
|
|
|
edgeActivated: true
|
2016-08-23 18:14:05 -04:00
|
|
|
},
|
|
|
|
'event_whenbroadcastreceived': {
|
|
|
|
restartExistingThreads: true
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
2016-06-09 11:45:58 -04:00
|
|
|
|
2016-08-23 18:14:05 -04:00
|
|
|
Scratch3EventBlocks.prototype.hatGreaterThanPredicate = function (args, util) {
|
2016-09-12 13:14:16 -04:00
|
|
|
var option = Cast.toString(args.WHENGREATERTHANMENU).toLowerCase();
|
|
|
|
var value = Cast.toNumber(args.VALUE);
|
2016-08-23 18:14:05 -04:00
|
|
|
// @todo: Other cases :)
|
2016-09-12 13:14:16 -04:00
|
|
|
if (option == 'timer') {
|
|
|
|
return util.ioQuery('clock', 'projectTimer') > value;
|
2016-08-23 18:14:05 -04:00
|
|
|
}
|
|
|
|
return false;
|
2016-06-09 11:45:58 -04:00
|
|
|
};
|
|
|
|
|
2016-08-23 18:14:05 -04:00
|
|
|
Scratch3EventBlocks.prototype.broadcast = function(args, util) {
|
2016-09-12 13:14:16 -04:00
|
|
|
var broadcastOption = Cast.toString(args.BROADCAST_OPTION);
|
2016-08-29 10:26:26 -04:00
|
|
|
util.startHats('event_whenbroadcastreceived', {
|
2016-09-12 13:14:16 -04:00
|
|
|
'BROADCAST_OPTION': broadcastOption
|
2016-08-23 18:14:05 -04:00
|
|
|
});
|
2016-06-09 11:45:58 -04:00
|
|
|
};
|
|
|
|
|
2016-08-23 18:14:05 -04:00
|
|
|
Scratch3EventBlocks.prototype.broadcastAndWait = function (args, util) {
|
2016-09-12 13:14:16 -04:00
|
|
|
var broadcastOption = Cast.toString(args.BROADCAST_OPTION);
|
2016-08-29 10:26:26 -04:00
|
|
|
// Have we run before, starting threads?
|
|
|
|
if (!util.stackFrame.startedThreads) {
|
|
|
|
// No - start hats for this broadcast.
|
|
|
|
util.stackFrame.startedThreads = util.startHats(
|
2016-08-23 18:14:05 -04:00
|
|
|
'event_whenbroadcastreceived', {
|
2016-09-12 13:14:16 -04:00
|
|
|
'BROADCAST_OPTION': broadcastOption
|
2016-08-23 18:14:05 -04:00
|
|
|
}
|
|
|
|
);
|
2016-08-29 10:26:26 -04:00
|
|
|
if (util.stackFrame.startedThreads.length == 0) {
|
2016-08-23 18:14:05 -04:00
|
|
|
// Nothing was started.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// We've run before; check if the wait is still going on.
|
2016-08-29 10:01:31 -04:00
|
|
|
var instance = this;
|
2016-08-29 10:26:26 -04:00
|
|
|
var waiting = util.stackFrame.startedThreads.some(function(thread) {
|
2016-08-29 10:01:31 -04:00
|
|
|
return instance.runtime.isActiveThread(thread);
|
|
|
|
});
|
2016-08-23 18:14:05 -04:00
|
|
|
if (waiting) {
|
2016-10-17 23:23:16 -04:00
|
|
|
util.yield();
|
2016-08-23 18:14:05 -04:00
|
|
|
}
|
2016-06-09 11:45:58 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Scratch3EventBlocks;
|