2017-04-17 15:10:04 -04:00
|
|
|
const Cast = require('../util/cast');
|
|
|
|
const Clone = require('../util/clone');
|
|
|
|
const Color = require('../util/color');
|
|
|
|
const MathUtil = require('../util/math-util');
|
|
|
|
const RenderedTarget = require('../sprites/rendered-target');
|
2017-01-19 14:26:38 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {object} PenState - the pen state associated with a particular target.
|
|
|
|
* @property {Boolean} penDown - tracks whether the pen should draw for this target.
|
|
|
|
* @property {number} hue - the current hue of the pen.
|
|
|
|
* @property {number} shade - the current shade of the pen.
|
|
|
|
* @property {PenAttributes} penAttributes - cached pen attributes for the renderer. This is the authoritative value for
|
|
|
|
* diameter but not for pen color.
|
|
|
|
*/
|
|
|
|
|
2017-01-20 14:26:18 -05:00
|
|
|
/**
|
|
|
|
* Host for the Pen-related blocks in Scratch 3.0
|
|
|
|
* @param {Runtime} runtime - the runtime instantiating this block package.
|
|
|
|
* @constructor
|
|
|
|
*/
|
2017-04-17 19:42:48 -04:00
|
|
|
class Scratch3PenBlocks {
|
|
|
|
constructor (runtime) {
|
|
|
|
/**
|
|
|
|
* The runtime instantiating this block package.
|
|
|
|
* @type {Runtime}
|
|
|
|
*/
|
|
|
|
this.runtime = runtime;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The ID of the renderer Drawable corresponding to the pen layer.
|
|
|
|
* @type {int}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._penDrawableId = -1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The ID of the renderer Skin corresponding to the pen layer.
|
|
|
|
* @type {int}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._penSkinId = -1;
|
|
|
|
|
|
|
|
this._onTargetMoved = this._onTargetMoved.bind(this);
|
|
|
|
}
|
|
|
|
|
2017-01-20 14:26:18 -05:00
|
|
|
/**
|
2017-04-17 19:42:48 -04:00
|
|
|
* The default pen state, to be used when a target has no existing pen state.
|
|
|
|
* @type {PenState}
|
2017-01-20 14:26:18 -05:00
|
|
|
*/
|
2017-04-17 19:42:48 -04:00
|
|
|
static get DEFAULT_PEN_STATE () {
|
|
|
|
return {
|
|
|
|
penDown: false,
|
|
|
|
hue: 120,
|
|
|
|
shade: 50,
|
|
|
|
penAttributes: {
|
|
|
|
color4f: [0, 0, 1, 1],
|
|
|
|
diameter: 1
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2017-01-20 14:26:18 -05:00
|
|
|
|
|
|
|
/**
|
2017-04-17 19:42:48 -04:00
|
|
|
* Place the pen layer in front of the backdrop but behind everything else.
|
|
|
|
* We should probably handle this somewhere else... somewhere central that knows about pen, backdrop, video, etc.
|
|
|
|
* Maybe it should be in the GUI?
|
2017-01-20 14:26:18 -05:00
|
|
|
* @type {int}
|
|
|
|
*/
|
2017-04-17 19:42:48 -04:00
|
|
|
static get PEN_ORDER () {
|
|
|
|
return 1;
|
|
|
|
}
|
2017-01-20 14:26:18 -05:00
|
|
|
|
|
|
|
/**
|
2017-04-17 19:42:48 -04:00
|
|
|
* The minimum and maximum allowed pen size.
|
|
|
|
* @type {{min: number, max: number}}
|
2017-01-20 14:26:18 -05:00
|
|
|
*/
|
2017-04-17 19:42:48 -04:00
|
|
|
static get PEN_SIZE_RANGE () {
|
|
|
|
return {min: 1, max: 255};
|
|
|
|
}
|
2017-01-20 14:26:18 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* The key to load & store a target's pen-related state.
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
static get STATE_KEY () {
|
|
|
|
return 'Scratch.pen';
|
|
|
|
}
|
2017-01-20 14:26:18 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Clamp a pen size value to the range allowed by the pen.
|
|
|
|
* @param {number} requestedSize - the requested pen size.
|
|
|
|
* @returns {number} the clamped size.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_clampPenSize (requestedSize) {
|
|
|
|
return MathUtil.clamp(
|
|
|
|
requestedSize,
|
|
|
|
Scratch3PenBlocks.PEN_SIZE_RANGE.min,
|
|
|
|
Scratch3PenBlocks.PEN_SIZE_RANGE.max
|
|
|
|
);
|
2017-01-19 14:26:38 -05:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Retrieve the ID of the renderer "Skin" corresponding to the pen layer. If
|
|
|
|
* the pen Skin doesn't yet exist, create it.
|
|
|
|
* @returns {int} the Skin ID of the pen layer, or -1 on failure.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_getPenLayerID () {
|
|
|
|
if (this._penSkinId < 0 && this.runtime.renderer) {
|
|
|
|
this._penSkinId = this.runtime.renderer.createPenSkin();
|
|
|
|
this._penDrawableId = this.runtime.renderer.createDrawable();
|
|
|
|
this.runtime.renderer.setDrawableOrder(this._penDrawableId, Scratch3PenBlocks.PEN_ORDER);
|
|
|
|
this.runtime.renderer.updateDrawableProperties(this._penDrawableId, {skinId: this._penSkinId});
|
|
|
|
}
|
|
|
|
return this._penSkinId;
|
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* @param {Target} target - collect pen state for this target. Probably, but not necessarily, a RenderedTarget.
|
|
|
|
* @returns {PenState} the mutable pen state associated with that target. This will be created if necessary.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_getPenState (target) {
|
|
|
|
let penState = target.getCustomState(Scratch3PenBlocks.STATE_KEY);
|
|
|
|
if (!penState) {
|
|
|
|
penState = Clone.simple(Scratch3PenBlocks.DEFAULT_PEN_STATE);
|
|
|
|
target.setCustomState(Scratch3PenBlocks.STATE_KEY, penState);
|
|
|
|
}
|
|
|
|
return penState;
|
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Handle a target which has moved. This only fires when the pen is down.
|
|
|
|
* @param {RenderedTarget} target - the target which has moved.
|
|
|
|
* @param {number} oldX - the previous X position.
|
|
|
|
* @param {number} oldY - the previous Y position.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_onTargetMoved (target, oldX, oldY) {
|
|
|
|
const penSkinId = this._getPenLayerID();
|
|
|
|
if (penSkinId >= 0) {
|
|
|
|
const penState = this._getPenState(target);
|
|
|
|
this.runtime.renderer.penLine(penSkinId, penState.penAttributes, oldX, oldY, target.x, target.y);
|
|
|
|
this.runtime.requestRedraw();
|
|
|
|
}
|
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Update the cached RGB color from the hue & shade values in the provided PenState object.
|
|
|
|
* @param {PenState} penState - the pen state to update.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_updatePenColor (penState) {
|
|
|
|
let rgb = Color.hsvToRgb({h: penState.hue * 180 / 100, s: 1, v: 1});
|
|
|
|
const shade = (penState.shade > 100) ? 200 - penState.shade : penState.shade;
|
|
|
|
if (shade < 50) {
|
|
|
|
rgb = Color.mixRgb(Color.RGB_BLACK, rgb, (10 + shade) / 60);
|
|
|
|
} else {
|
|
|
|
rgb = Color.mixRgb(rgb, Color.RGB_WHITE, (shade - 50) / 60);
|
|
|
|
}
|
|
|
|
penState.penAttributes.color4f[0] = rgb.r / 255.0;
|
|
|
|
penState.penAttributes.color4f[1] = rgb.g / 255.0;
|
|
|
|
penState.penAttributes.color4f[2] = rgb.b / 255.0;
|
|
|
|
penState.penAttributes.color4f[3] = 1;
|
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Wrap a pen hue or shade values to the range [0,200).
|
|
|
|
* @param {number} value - the pen hue or shade value to the proper range.
|
|
|
|
* @returns {number} the wrapped value.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_wrapHueOrShade (value) {
|
|
|
|
value = value % 200;
|
|
|
|
if (value < 0) value += 200;
|
|
|
|
return value;
|
2017-01-19 14:26:38 -05:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Retrieve the block primitives implemented by this package.
|
|
|
|
* @return {object.<string, Function>} Mapping of opcode to Function.
|
|
|
|
*/
|
|
|
|
getPrimitives () {
|
|
|
|
return {
|
|
|
|
pen_clear: this.clear,
|
|
|
|
pen_stamp: this.stamp,
|
|
|
|
pen_pendown: this.penDown,
|
|
|
|
pen_penup: this.penUp,
|
|
|
|
pen_setpencolortocolor: this.setPenColorToColor,
|
|
|
|
pen_changepencolorby: this.changePenHueBy,
|
|
|
|
pen_setpencolortonum: this.setPenHueToNumber,
|
|
|
|
pen_changepenshadeby: this.changePenShadeBy,
|
|
|
|
pen_setpenshadeto: this.setPenShadeToNumber,
|
|
|
|
pen_changepensizeby: this.changePenSizeBy,
|
|
|
|
pen_setpensizeto: this.setPenSizeTo
|
|
|
|
};
|
2017-01-19 14:26:38 -05:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* The pen "clear" block clears the pen layer's contents.
|
|
|
|
*/
|
|
|
|
clear () {
|
|
|
|
const penSkinId = this._getPenLayerID();
|
|
|
|
if (penSkinId >= 0) {
|
|
|
|
this.runtime.renderer.penClear(penSkinId);
|
|
|
|
this.runtime.requestRedraw();
|
|
|
|
}
|
2017-01-20 14:26:18 -05:00
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* The pen "stamp" block stamps the current drawable's image onto the pen layer.
|
|
|
|
* @param {object} args - the block arguments.
|
|
|
|
* @param {object} util - utility object provided by the runtime.
|
|
|
|
*/
|
|
|
|
stamp (args, util) {
|
|
|
|
const penSkinId = this._getPenLayerID();
|
|
|
|
if (penSkinId >= 0) {
|
|
|
|
const target = util.target;
|
|
|
|
this.runtime.renderer.penStamp(penSkinId, target.drawableID);
|
|
|
|
this.runtime.requestRedraw();
|
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* The pen "pen down" block causes the target to leave pen trails on future motion.
|
|
|
|
* @param {object} args - the block arguments.
|
|
|
|
* @param {object} util - utility object provided by the runtime.
|
|
|
|
*/
|
|
|
|
penDown (args, util) {
|
|
|
|
const target = util.target;
|
|
|
|
const penState = this._getPenState(target);
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
if (!penState.penDown) {
|
|
|
|
penState.penDown = true;
|
|
|
|
target.addListener(RenderedTarget.EVENT_TARGET_MOVED, this._onTargetMoved);
|
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
const penSkinId = this._getPenLayerID();
|
|
|
|
if (penSkinId >= 0) {
|
|
|
|
this.runtime.renderer.penPoint(penSkinId, penState.penAttributes, target.x, target.y);
|
|
|
|
this.runtime.requestRedraw();
|
|
|
|
}
|
2017-01-20 14:26:18 -05:00
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* The pen "pen up" block stops the target from leaving pen trails.
|
|
|
|
* @param {object} args - the block arguments.
|
|
|
|
* @param {object} util - utility object provided by the runtime.
|
|
|
|
*/
|
|
|
|
penUp (args, util) {
|
2017-04-17 15:10:04 -04:00
|
|
|
const target = util.target;
|
2017-04-17 19:42:48 -04:00
|
|
|
const penState = this._getPenState(target);
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
if (penState.penDown) {
|
|
|
|
penState.penDown = false;
|
|
|
|
target.removeListener(RenderedTarget.EVENT_TARGET_MOVED, this._onTargetMoved);
|
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* The pen "set pen color to {color}" block sets the pen to a particular RGB color.
|
|
|
|
* @param {object} args - the block arguments.
|
|
|
|
* @property {int} COLOR - the color to set, expressed as a 24-bit RGB value (0xRRGGBB).
|
|
|
|
* @param {object} util - utility object provided by the runtime.
|
|
|
|
*/
|
|
|
|
setPenColorToColor (args, util) {
|
|
|
|
const penState = this._getPenState(util.target);
|
|
|
|
const rgb = Cast.toRgbColorObject(args.COLOR);
|
|
|
|
const hsv = Color.rgbToHsv(rgb);
|
|
|
|
|
|
|
|
penState.hue = 200 * hsv.h / 360;
|
|
|
|
penState.shade = 50 * hsv.v;
|
|
|
|
penState.penAttributes.color4f[0] = rgb.r / 255.0;
|
|
|
|
penState.penAttributes.color4f[1] = rgb.g / 255.0;
|
|
|
|
penState.penAttributes.color4f[2] = rgb.b / 255.0;
|
|
|
|
if (rgb.hasOwnProperty('a')) { // Will there always be an 'a'?
|
|
|
|
penState.penAttributes.color4f[3] = rgb.a / 255.0;
|
|
|
|
} else {
|
|
|
|
penState.penAttributes.color4f[3] = 1;
|
|
|
|
}
|
2017-01-20 14:26:18 -05:00
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* The pen "change pen color by {number}" block rotates the hue of the pen by the given amount.
|
|
|
|
* @param {object} args - the block arguments.
|
|
|
|
* @property {number} COLOR - the amount of desired hue rotation.
|
|
|
|
* @param {object} util - utility object provided by the runtime.
|
|
|
|
*/
|
|
|
|
changePenHueBy (args, util) {
|
|
|
|
const penState = this._getPenState(util.target);
|
|
|
|
penState.hue = this._wrapHueOrShade(penState.hue + Cast.toNumber(args.COLOR));
|
|
|
|
this._updatePenColor(penState);
|
2017-01-19 14:26:38 -05:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* The pen "set pen color to {number}" block sets the hue of the pen.
|
|
|
|
* @param {object} args - the block arguments.
|
|
|
|
* @property {number} COLOR - the desired hue.
|
|
|
|
* @param {object} util - utility object provided by the runtime.
|
|
|
|
*/
|
|
|
|
setPenHueToNumber (args, util) {
|
|
|
|
const penState = this._getPenState(util.target);
|
|
|
|
penState.hue = this._wrapHueOrShade(Cast.toNumber(args.COLOR));
|
|
|
|
this._updatePenColor(penState);
|
2017-01-27 07:49:32 -05:00
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* The pen "change pen shade by {number}" block changes the "shade" of the pen, related to the HSV value.
|
|
|
|
* @param {object} args - the block arguments.
|
|
|
|
* @property {number} SHADE - the amount of desired shade change.
|
|
|
|
* @param {object} util - utility object provided by the runtime.
|
|
|
|
*/
|
|
|
|
changePenShadeBy (args, util) {
|
|
|
|
const penState = this._getPenState(util.target);
|
|
|
|
penState.shade = this._wrapHueOrShade(penState.shade + Cast.toNumber(args.SHADE));
|
|
|
|
this._updatePenColor(penState);
|
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* The pen "set pen shade to {number}" block sets the "shade" of the pen, related to the HSV value.
|
|
|
|
* @param {object} args - the block arguments.
|
|
|
|
* @property {number} SHADE - the amount of desired shade change.
|
|
|
|
* @param {object} util - utility object provided by the runtime.
|
|
|
|
*/
|
|
|
|
setPenShadeToNumber (args, util) {
|
|
|
|
const penState = this._getPenState(util.target);
|
|
|
|
penState.shade = this._wrapHueOrShade(Cast.toNumber(args.SHADE));
|
|
|
|
this._updatePenColor(penState);
|
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* The pen "change pen size by {number}" block changes the pen size by the given amount.
|
|
|
|
* @param {object} args - the block arguments.
|
|
|
|
* @property {number} SIZE - the amount of desired size change.
|
|
|
|
* @param {object} util - utility object provided by the runtime.
|
|
|
|
*/
|
|
|
|
changePenSizeBy (args, util) {
|
|
|
|
const penAttributes = this._getPenState(util.target).penAttributes;
|
|
|
|
penAttributes.diameter = this._clampPenSize(penAttributes.diameter + Cast.toNumber(args.SIZE));
|
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* The pen "set pen size to {number}" block sets the pen size to the given amount.
|
|
|
|
* @param {object} args - the block arguments.
|
|
|
|
* @property {number} SIZE - the amount of desired size change.
|
|
|
|
* @param {object} util - utility object provided by the runtime.
|
|
|
|
*/
|
|
|
|
setPenSizeTo (args, util) {
|
|
|
|
const penAttributes = this._getPenState(util.target).penAttributes;
|
|
|
|
penAttributes.diameter = this._clampPenSize(Cast.toNumber(args.SIZE));
|
|
|
|
}
|
|
|
|
}
|
2017-01-19 14:26:38 -05:00
|
|
|
|
|
|
|
module.exports = Scratch3PenBlocks;
|