2017-05-24 18:30:29 -04:00
|
|
|
const StringUtil = require('../util/string-util');
|
2017-04-17 15:10:04 -04:00
|
|
|
const log = require('../util/log');
|
2017-03-27 15:04:44 -04:00
|
|
|
|
|
|
|
/**
|
2017-09-11 09:42:16 -04:00
|
|
|
* Initialize a costume from an asset asynchronously.
|
2017-03-27 15:04:44 -04:00
|
|
|
* Do not call this unless there is a renderer attached.
|
|
|
|
* @param {!object} costume - the Scratch costume object.
|
|
|
|
* @property {int} skinId - the ID of the costume's render skin, once installed.
|
|
|
|
* @property {number} rotationCenterX - the X component of the costume's origin.
|
|
|
|
* @property {number} rotationCenterY - the Y component of the costume's origin.
|
|
|
|
* @property {number} [bitmapResolution] - the resolution scale for a bitmap costume.
|
2017-09-11 09:42:16 -04:00
|
|
|
* @param {!Asset} costumeAsset - the asset of the costume loaded from storage.
|
2017-03-27 15:04:44 -04:00
|
|
|
* @param {!Runtime} runtime - Scratch runtime, used to access the storage module.
|
|
|
|
* @returns {?Promise} - a promise which will resolve after skinId is set, or null on error.
|
|
|
|
*/
|
2017-09-11 09:42:16 -04:00
|
|
|
const loadCostumeFromAsset = function (costume, costumeAsset, runtime) {
|
|
|
|
costume.assetId = costumeAsset.assetId;
|
|
|
|
if (!runtime.renderer) {
|
|
|
|
log.error('No rendering module present; cannot load costume: ', costume.name);
|
|
|
|
return costume;
|
2017-03-27 15:04:44 -04:00
|
|
|
}
|
2017-04-20 18:30:38 -04:00
|
|
|
const AssetType = runtime.storage.AssetType;
|
2017-04-17 15:10:04 -04:00
|
|
|
const rotationCenter = [
|
2017-03-27 15:04:44 -04:00
|
|
|
costume.rotationCenterX / costume.bitmapResolution,
|
|
|
|
costume.rotationCenterY / costume.bitmapResolution
|
|
|
|
];
|
2017-09-07 11:51:21 -04:00
|
|
|
if (costumeAsset.assetType === AssetType.ImageVector) {
|
|
|
|
costume.skinId = runtime.renderer.createSVGSkin(costumeAsset.decodeText(), rotationCenter);
|
|
|
|
return costume;
|
2017-04-03 15:58:13 -04:00
|
|
|
}
|
2017-03-27 15:04:44 -04:00
|
|
|
|
2017-09-07 11:51:21 -04:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const imageElement = new Image();
|
|
|
|
const onError = function () {
|
2017-09-11 15:15:30 -04:00
|
|
|
// eslint-disable-next-line no-use-before-define
|
2017-09-07 11:51:21 -04:00
|
|
|
removeEventListeners();
|
|
|
|
reject();
|
|
|
|
};
|
|
|
|
const onLoad = function () {
|
2017-09-11 15:15:30 -04:00
|
|
|
// eslint-disable-next-line no-use-before-define
|
2017-09-07 11:51:21 -04:00
|
|
|
removeEventListeners();
|
|
|
|
resolve(imageElement);
|
|
|
|
};
|
|
|
|
const removeEventListeners = function () {
|
|
|
|
imageElement.removeEventListener('error', onError);
|
|
|
|
imageElement.removeEventListener('load', onLoad);
|
|
|
|
};
|
|
|
|
imageElement.addEventListener('error', onError);
|
|
|
|
imageElement.addEventListener('load', onLoad);
|
|
|
|
imageElement.src = costumeAsset.encodeDataURI();
|
|
|
|
}).then(imageElement => {
|
|
|
|
costume.skinId = runtime.renderer.createBitmapSkin(imageElement, costume.bitmapResolution, rotationCenter);
|
|
|
|
return costume;
|
|
|
|
});
|
2017-03-27 15:04:44 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load a costume's asset into memory asynchronously.
|
|
|
|
* Do not call this unless there is a renderer attached.
|
|
|
|
* @param {string} md5ext - the MD5 and extension of the costume to be loaded.
|
|
|
|
* @param {!object} costume - the Scratch costume object.
|
|
|
|
* @property {int} skinId - the ID of the costume's render skin, once installed.
|
|
|
|
* @property {number} rotationCenterX - the X component of the costume's origin.
|
|
|
|
* @property {number} rotationCenterY - the Y component of the costume's origin.
|
|
|
|
* @property {number} [bitmapResolution] - the resolution scale for a bitmap costume.
|
|
|
|
* @param {!Runtime} runtime - Scratch runtime, used to access the storage module.
|
|
|
|
* @returns {?Promise} - a promise which will resolve after skinId is set, or null on error.
|
|
|
|
*/
|
2017-04-17 15:10:04 -04:00
|
|
|
const loadCostume = function (md5ext, costume, runtime) {
|
2017-03-27 15:04:44 -04:00
|
|
|
if (!runtime.storage) {
|
|
|
|
log.error('No storage module present; cannot load costume asset: ', md5ext);
|
2017-04-03 15:58:13 -04:00
|
|
|
return Promise.resolve(costume);
|
2017-03-27 15:04:44 -04:00
|
|
|
}
|
2017-03-31 11:26:20 -04:00
|
|
|
|
2017-04-20 18:30:38 -04:00
|
|
|
const AssetType = runtime.storage.AssetType;
|
2017-05-24 18:30:29 -04:00
|
|
|
const idParts = StringUtil.splitFirst(md5ext, '.');
|
2017-04-17 15:10:04 -04:00
|
|
|
const md5 = idParts[0];
|
2017-05-24 18:30:29 -04:00
|
|
|
const ext = idParts[1].toLowerCase();
|
|
|
|
const assetType = (ext === 'svg') ? AssetType.ImageVector : AssetType.ImageBitmap;
|
2017-03-27 15:04:44 -04:00
|
|
|
|
2017-09-11 09:42:16 -04:00
|
|
|
return runtime.storage.load(assetType, md5, ext).then(costumeAsset => {
|
|
|
|
costume.dataFormat = ext;
|
|
|
|
return loadCostumeFromAsset(costume, costumeAsset, runtime);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-01-23 10:35:46 -05:00
|
|
|
/**
|
|
|
|
* Load an "old text" costume's asset into memory asynchronously.
|
|
|
|
* "Old text" costumes are ones who have a text part from Scratch 1.4.
|
|
|
|
* See the issue LLK/scratch-vm#672 for more information.
|
|
|
|
* Do not call this unless there is a renderer attached.
|
|
|
|
* @param {string} baseMD5ext - the MD5 and extension of the base layer of the costume to be loaded.
|
|
|
|
* @param {string} textMD5ext - the MD5 and extension of the text layer of the costume to be loaded.
|
|
|
|
* @param {!object} costume - the Scratch costume object.
|
|
|
|
* @property {int} skinId - the ID of the costume's render skin, once installed.
|
|
|
|
* @property {number} rotationCenterX - the X component of the costume's origin.
|
|
|
|
* @property {number} rotationCenterY - the Y component of the costume's origin.
|
|
|
|
* @property {number} [bitmapResolution] - the resolution scale for a bitmap costume.
|
|
|
|
* @param {!Runtime} runtime - Scratch runtime, used to access the storage module.
|
2018-01-23 11:07:03 -05:00
|
|
|
* @returns {?Promise} - a promise which will resolve after skinId is set, or null on error.
|
2018-01-23 10:35:46 -05:00
|
|
|
*/
|
2018-01-23 15:10:39 -05:00
|
|
|
const loadOldTextCostume = function (baseMD5ext, textMD5ext, costume, runtime) {
|
|
|
|
// @todo should [bitmapResolution] (in the documentation comment) not be optional? After all, the resulting image
|
|
|
|
// is always a bitmap.
|
2018-01-23 10:35:46 -05:00
|
|
|
|
|
|
|
if (!runtime.storage) {
|
|
|
|
log.error('No storage module present; cannot load costume asset: ', baseMD5ext, textMD5ext);
|
|
|
|
return Promise.resolve(costume);
|
|
|
|
}
|
|
|
|
|
|
|
|
const [baseMD5, baseExt] = StringUtil.splitFirst(baseMD5ext, '.');
|
|
|
|
const [textMD5, textExt] = StringUtil.splitFirst(textMD5ext, '.');
|
|
|
|
|
|
|
|
if (baseExt === 'svg' || textExt === 'svg') {
|
|
|
|
log.error('Old text costumes should never be SVGs');
|
|
|
|
return Promise.resolve(costume);
|
|
|
|
}
|
|
|
|
|
|
|
|
const assetType = runtime.storage.AssetType.ImageBitmap;
|
|
|
|
|
|
|
|
// @todo should this be in a separate function, which could also be used by loadCostume?
|
2017-04-17 15:10:04 -04:00
|
|
|
const rotationCenter = [
|
2017-03-27 15:04:44 -04:00
|
|
|
costume.rotationCenterX / costume.bitmapResolution,
|
|
|
|
costume.rotationCenterY / costume.bitmapResolution
|
|
|
|
];
|
|
|
|
|
2018-01-23 15:10:39 -05:00
|
|
|
// @todo what should the assetId be? Probably unset, since we'll be doing image processing (which will produce
|
|
|
|
// a completely new image)?
|
2018-01-23 10:35:46 -05:00
|
|
|
// @todo what about the dataFormat? This depends on how the image processing is implemented.
|
2017-04-03 15:58:13 -04:00
|
|
|
|
2018-01-23 10:35:46 -05:00
|
|
|
return Promise.all([
|
|
|
|
runtime.storage.load(assetType, baseMD5, baseExt),
|
|
|
|
runtime.storage.load(assetType, textMD5, textExt)
|
2018-01-23 15:10:39 -05:00
|
|
|
])
|
|
|
|
.then(costumeAssets => (
|
|
|
|
new Promise((resolve, reject) => {
|
|
|
|
const baseImageElement = new Image();
|
|
|
|
const textImageElement = new Image();
|
2018-01-23 10:35:46 -05:00
|
|
|
|
2018-01-23 15:10:39 -05:00
|
|
|
let loadedOne = false;
|
|
|
|
|
|
|
|
const onError = function () {
|
|
|
|
// eslint-disable-next-line no-use-before-define
|
|
|
|
removeEventListeners();
|
|
|
|
reject();
|
|
|
|
};
|
|
|
|
const onLoad = function () {
|
|
|
|
if (loadedOne) {
|
|
|
|
// eslint-disable-next-line no-use-before-define
|
|
|
|
removeEventListeners();
|
|
|
|
resolve([baseImageElement, textImageElement]);
|
|
|
|
} else {
|
|
|
|
loadedOne = true;
|
|
|
|
}
|
|
|
|
};
|
2018-01-23 17:34:28 -05:00
|
|
|
|
2018-01-23 15:10:39 -05:00
|
|
|
const removeEventListeners = function () {
|
|
|
|
baseImageElement.removeEventListener('error', onError);
|
|
|
|
textImageElement.removeEventListener('error', onError);
|
|
|
|
baseImageElement.removeEventListener('load', onLoad);
|
|
|
|
textImageElement.removeEventListener('load', onLoad);
|
|
|
|
};
|
|
|
|
|
|
|
|
baseImageElement.addEventListener('error', onError);
|
|
|
|
textImageElement.addEventListener('error', onError);
|
|
|
|
baseImageElement.addEventListener('load', onLoad);
|
|
|
|
textImageElement.addEventListener('load', onLoad);
|
|
|
|
|
|
|
|
const [baseAsset, textAsset] = costumeAssets;
|
|
|
|
|
|
|
|
baseImageElement.src = baseAsset.encodeDataURI();
|
|
|
|
textImageElement.src = textAsset.encodeDataURI();
|
|
|
|
})
|
|
|
|
))
|
|
|
|
.then(imageElements => {
|
|
|
|
const [baseImageElement, textImageElement] = imageElements;
|
|
|
|
|
|
|
|
const canvas = document.createElement('canvas');
|
|
|
|
canvas.width = baseImageElement.width;
|
|
|
|
canvas.height = baseImageElement.height;
|
|
|
|
|
|
|
|
const ctx = canvas.getContext('2d');
|
|
|
|
ctx.drawImage(baseImageElement, 0, 0);
|
|
|
|
ctx.drawImage(textImageElement, 0, 0);
|
|
|
|
|
2018-01-23 17:34:28 -05:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
canvas.toBlob(blob => {
|
|
|
|
const reader = new FileReader();
|
|
|
|
const onError = function() {
|
|
|
|
// eslint-disable-next-line no-use-before-define
|
|
|
|
removeEventListeners();
|
|
|
|
reject();
|
|
|
|
};
|
|
|
|
const onLoad = function () {
|
|
|
|
// eslint-disable-next-line no-use-before-define
|
|
|
|
removeEventListeners();
|
|
|
|
costume.assetId = runtime.storage.builtinHelper.cache(
|
|
|
|
assetType,
|
|
|
|
runtime.storage.DataFormat.PNG,
|
|
|
|
new Buffer(reader.result)
|
|
|
|
);
|
|
|
|
costume.skinId = runtime.renderer.createBitmapSkin(
|
|
|
|
canvas, costume.bitmapResolution, rotationCenter
|
|
|
|
);
|
|
|
|
resolve(costume);
|
|
|
|
};
|
|
|
|
const removeEventListeners = function () {
|
|
|
|
reader.removeEventListener('error', onError);
|
|
|
|
reader.removeEventListener('load', onLoad);
|
|
|
|
};
|
|
|
|
reader.addEventListener('error', onError);
|
|
|
|
reader.addEventListener('load', onLoad);
|
|
|
|
reader.readAsArrayBuffer(blob);
|
|
|
|
}, 'image/png');
|
|
|
|
});
|
2018-01-23 15:10:39 -05:00
|
|
|
});
|
2017-03-27 15:04:44 -04:00
|
|
|
};
|
|
|
|
|
2017-09-11 09:42:16 -04:00
|
|
|
module.exports = {
|
|
|
|
loadCostume,
|
2018-01-23 10:35:46 -05:00
|
|
|
loadCostumeFromAsset,
|
|
|
|
loadOldTextCostume
|
2017-09-11 09:42:16 -04:00
|
|
|
};
|