mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
cache the set of actively monitored blocks
Projects can have 100's of potentially monitored blocks. Caching the set of monitored blocks can save time in Runtime._step every frame.
This commit is contained in:
parent
de86eb3f19
commit
a3f9aa1e22
1 changed files with 26 additions and 7 deletions
|
@ -63,7 +63,14 @@ class Blocks {
|
||||||
* execute.
|
* execute.
|
||||||
* @type {object.<string, object>}
|
* @type {object.<string, object>}
|
||||||
*/
|
*/
|
||||||
_executeCached: {}
|
_executeCached: {},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A cache of block IDs and targets to start threads on as they are
|
||||||
|
* actively monitored.
|
||||||
|
* @type {Array<{blockId: string, target: Target}>}
|
||||||
|
*/
|
||||||
|
_monitored: null
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -491,6 +498,7 @@ class Blocks {
|
||||||
this._cache.procedureParamNames = {};
|
this._cache.procedureParamNames = {};
|
||||||
this._cache.procedureDefinitions = {};
|
this._cache.procedureDefinitions = {};
|
||||||
this._cache._executeCached = {};
|
this._cache._executeCached = {};
|
||||||
|
this._cache._monitored = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -667,12 +675,23 @@ class Blocks {
|
||||||
* @param {!object} runtime Runtime to run all blocks in.
|
* @param {!object} runtime Runtime to run all blocks in.
|
||||||
*/
|
*/
|
||||||
runAllMonitored (runtime) {
|
runAllMonitored (runtime) {
|
||||||
Object.keys(this._blocks).forEach(blockId => {
|
if (this._cache._monitored === null) {
|
||||||
if (this.getBlock(blockId).isMonitored) {
|
this._cache._monitored = Object.keys(this._blocks)
|
||||||
const targetId = this.getBlock(blockId).targetId;
|
.filter(blockId => this.getBlock(blockId).isMonitored)
|
||||||
runtime.addMonitorScript(blockId, targetId ? runtime.getTargetById(targetId) : null);
|
.map(blockId => {
|
||||||
}
|
const targetId = this.getBlock(blockId).targetId;
|
||||||
});
|
return {
|
||||||
|
blockId,
|
||||||
|
target: targetId ? runtime.getTargetById(targetId) : null
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const monitored = this._cache._monitored;
|
||||||
|
for (let i = 0; i < monitored.length; i++) {
|
||||||
|
const {blockId, target} = monitored[i];
|
||||||
|
runtime.addMonitorScript(blockId, target);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue