2016-12-30 10:19:58 -05:00
|
|
|
/**
|
|
|
|
* @fileoverview
|
|
|
|
* Partial implementation of a SB3 serializer and deserializer. Parses provided
|
|
|
|
* JSON and then generates all needed scratch-vm runtime structures.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var package = require('../../package.json');
|
2017-01-27 20:05:54 -05:00
|
|
|
var Blocks = require('../engine/blocks');
|
|
|
|
var RenderedTarget = require('../sprites/rendered-target');
|
|
|
|
var Sprite = require('../sprites/sprite');
|
|
|
|
var Variable = require('../engine/variable');
|
|
|
|
var List = require('../engine/list');
|
2016-12-30 10:19:58 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Serializes the specified VM runtime.
|
|
|
|
* @param {!Runtime} runtime VM runtime instance to be serialized.
|
|
|
|
* @return {string} Serialized runtime instance.
|
|
|
|
*/
|
|
|
|
var serialize = function (runtime) {
|
|
|
|
// Fetch targets
|
|
|
|
var obj = Object.create(null);
|
|
|
|
obj.targets = runtime.targets;
|
|
|
|
|
|
|
|
// Assemble metadata
|
|
|
|
var meta = Object.create(null);
|
|
|
|
meta.semver = '3.0.0';
|
|
|
|
meta.vm = package.version;
|
|
|
|
|
|
|
|
// Attach full user agent string to metadata if available
|
|
|
|
meta.agent = null;
|
|
|
|
if (typeof navigator !== 'undefined') meta.agent = navigator.userAgent;
|
|
|
|
|
|
|
|
// Assemble payload and return
|
|
|
|
obj.meta = meta;
|
|
|
|
return obj;
|
|
|
|
};
|
|
|
|
|
2017-01-27 20:05:54 -05:00
|
|
|
/**
|
|
|
|
* Parse a single "Scratch object" and create all its in-memory VM objects.
|
|
|
|
* @param {!Object} object From-JSON "Scratch object:" sprite, stage, watcher.
|
|
|
|
* @param {!Runtime} runtime Runtime object to load all structures into.
|
|
|
|
* @return {?Target} Target created (stage or sprite).
|
|
|
|
*/
|
2017-02-07 18:38:44 -05:00
|
|
|
var parseScratchObject = function (object, runtime) {
|
2017-01-27 20:05:54 -05:00
|
|
|
if (!object.hasOwnProperty('name')) {
|
|
|
|
// Watcher/monitor - skip this object until those are implemented in VM.
|
|
|
|
// @todo
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Blocks container for this object.
|
|
|
|
var blocks = new Blocks();
|
|
|
|
|
|
|
|
// @todo: For now, load all Scratch objects (stage/sprites) as a Sprite.
|
|
|
|
var sprite = new Sprite(blocks, runtime);
|
|
|
|
|
|
|
|
// Sprite/stage name from JSON.
|
|
|
|
if (object.hasOwnProperty('name')) {
|
|
|
|
sprite.name = object.name;
|
|
|
|
}
|
|
|
|
if (object.hasOwnProperty('blocks')) {
|
|
|
|
for (blockId in object.blocks) {
|
|
|
|
blocks.createBlock(object.blocks[blockId]);
|
|
|
|
}
|
|
|
|
console.log(blocks);
|
|
|
|
}
|
|
|
|
// Costumes from JSON.
|
|
|
|
if (object.hasOwnProperty('costumes') || object.hasOwnProperty('costume')) {
|
|
|
|
for (var i = 0; i < object.costumeCount; i++) {
|
2017-02-07 18:15:11 -05:00
|
|
|
var costume = object.costumes[i];
|
2017-01-27 20:05:54 -05:00
|
|
|
// @todo: Make sure all the relevant metadata is being pulled out.
|
|
|
|
sprite.costumes.push({
|
|
|
|
skin: costume.skin,
|
2017-02-07 20:12:55 -05:00
|
|
|
name: costume.name,
|
2017-01-27 20:05:54 -05:00
|
|
|
bitmapResolution: costume.bitmapResolution,
|
|
|
|
rotationCenterX: costume.rotationCenterX,
|
|
|
|
rotationCenterY: costume.rotationCenterY
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Sounds from JSON
|
|
|
|
if (object.hasOwnProperty('sounds')) {
|
|
|
|
for (var s = 0; s < object.sounds.length; s++) {
|
|
|
|
var sound = object.sounds[s];
|
|
|
|
sprite.sounds.push({
|
|
|
|
format: sound.format,
|
|
|
|
fileUrl: sound.fileUrl,
|
|
|
|
rate: sound.rate,
|
|
|
|
sampleCount: sound.sampleCount,
|
|
|
|
soundID: sound.soundID,
|
2017-02-09 10:44:28 -05:00
|
|
|
name: sound.name,
|
|
|
|
md5: sound.md5
|
2017-01-27 20:05:54 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Create the first clone, and load its run-state from JSON.
|
|
|
|
var target = sprite.createClone();
|
|
|
|
// Add it to the runtime's list of targets.
|
|
|
|
runtime.targets.push(target);
|
|
|
|
// Load target properties from JSON.
|
|
|
|
if (object.hasOwnProperty('variables')) {
|
|
|
|
for (var j = 0; j < object.variables.length; j++) {
|
|
|
|
var variable = object.variables[j];
|
|
|
|
target.variables[variable.name] = new Variable(
|
|
|
|
variable.name,
|
|
|
|
variable.value,
|
|
|
|
variable.isPersistent
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (object.hasOwnProperty('lists')) {
|
|
|
|
for (var k = 0; k < object.lists.length; k++) {
|
|
|
|
var list = object.lists[k];
|
|
|
|
// @todo: monitor properties.
|
|
|
|
target.lists[list.listName] = new List(
|
|
|
|
list.listName,
|
|
|
|
list.contents
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (object.hasOwnProperty('x')) {
|
|
|
|
target.x = object.x;
|
|
|
|
}
|
|
|
|
if (object.hasOwnProperty('y')) {
|
|
|
|
target.y = object.y;
|
|
|
|
}
|
|
|
|
if (object.hasOwnProperty('direction')) {
|
|
|
|
target.direction = object.direction;
|
|
|
|
}
|
|
|
|
if (object.hasOwnProperty('size')) {
|
|
|
|
target.size = object.size;
|
|
|
|
}
|
|
|
|
if (object.hasOwnProperty('visible')) {
|
|
|
|
target.visible = object.visible;
|
|
|
|
}
|
|
|
|
if (object.hasOwnProperty('currentCostume')) {
|
|
|
|
target.currentCostume = object.currentCostume;
|
|
|
|
}
|
|
|
|
if (object.hasOwnProperty('rotationStyle')) {
|
|
|
|
target.rotationStyle = object.rotationStyle;
|
|
|
|
}
|
2017-02-07 18:38:44 -05:00
|
|
|
if (object.hasOwnProperty('isStage')) {
|
|
|
|
target.isStage = object.isStage;
|
2017-01-27 20:05:54 -05:00
|
|
|
}
|
2017-02-07 18:38:44 -05:00
|
|
|
target.updateAllDrawableProperties();
|
|
|
|
|
2017-01-27 20:05:54 -05:00
|
|
|
console.log("returning target:");
|
|
|
|
console.log(target);
|
|
|
|
return target;
|
|
|
|
};
|
|
|
|
|
2016-12-30 10:19:58 -05:00
|
|
|
/**
|
|
|
|
* Deserializes the specified representation of a VM runtime and loads it into
|
|
|
|
* the provided runtime instance.
|
|
|
|
* @param {string} json Stringified JSON representation of a VM runtime.
|
|
|
|
* @param {Runtime} runtime Runtime instance
|
|
|
|
*/
|
|
|
|
var deserialize = function (json, runtime) {
|
2017-01-27 20:05:54 -05:00
|
|
|
for (var i = 0; i < json.targets.length; i++) {
|
|
|
|
parseScratchObject(json.targets[i], runtime);
|
|
|
|
}
|
2016-12-30 10:19:58 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
serialize: serialize,
|
|
|
|
deserialize: deserialize
|
|
|
|
};
|