From 085494978fe61c64aae8a77dc03ac459a76c001e Mon Sep 17 00:00:00 2001 From: Emmanuel Schanzer Date: Mon, 2 Feb 2015 08:27:44 -0500 Subject: [PATCH 1/2] add optional color argument to empty-scene --- whalesong/image/private/js-impl.js | 6 ++++-- whalesong/image/private/kernel.js | 10 ++++++---- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/whalesong/image/private/js-impl.js b/whalesong/image/private/js-impl.js index 3ca222d..0b2e35a 100644 --- a/whalesong/image/private/js-impl.js +++ b/whalesong/image/private/js-impl.js @@ -633,12 +633,14 @@ EXPORTS['above/align'] = EXPORTS['empty-scene'] = makePrimitiveProcedure( 'empty-scene', - 2, + plt.baselib.lists.makeList(2, 3), function(MACHINE) { var width = checkNonNegativeReal(MACHINE, 'empty-scene', 0); var height = checkNonNegativeReal(MACHINE, 'empty-scene', 1); - return makeSceneImage(jsnums.toFixnum(width), + var color = (MACHINE.a===3)? checkColor(MACHINE, 'empty-scene', 2) : null; + return makeSceneImage(jsnums.toFixnum(width), jsnums.toFixnum(height), + color, [], true); }); diff --git a/whalesong/image/private/kernel.js b/whalesong/image/private/kernel.js index 7796ebb..992ae5d 100644 --- a/whalesong/image/private/kernel.js +++ b/whalesong/image/private/kernel.js @@ -288,18 +288,19 @@ var isScene = function(x) { ////////////////////////////////////////////////////////////////////// -// SceneImage: primitive-number primitive-number (listof image) -> Scene -var SceneImage = function(width, height, children, withBorder) { +// SceneImage: primitive-number primitive-number color (listof image) -> Scene +var SceneImage = function(width, height, color, children, withBorder) { BaseImage.call(this); this.width = width; this.height = height; this.children = children; // arrayof [image, number, number] this.withBorder = withBorder; + this.color = color; }; SceneImage.prototype = heir(BaseImage.prototype); // add: image primitive-number primitive-number -> Scene -SceneImage.prototype.add = function(anImage, x, y) { +SceneImage.prototype.add = function(anImage, x, color) { return new SceneImage(this.width, this.height, this.children.concat([[anImage, @@ -314,7 +315,8 @@ SceneImage.prototype.render = function(ctx, x, y) { var childImage, childX, childY; // create a clipping region around the boundaries of the Scene ctx.save(); - ctx.fillStyle = "rgba(0,0,0,0)"; + // if no color is defined, default to transparent + ctx.fillStyle = this.color? colorString(this.color) : "rgba(0,0,0,0)"; ctx.fillRect(x, y, this.width, this.height); ctx.restore(); // save the context, reset the path, and clip to the path around the scene edge From 4b9214ff8d4f624e04fac3c69375c4d008649baf Mon Sep 17 00:00:00 2001 From: Emmanuel Schanzer Date: Mon, 2 Feb 2015 08:29:26 -0500 Subject: [PATCH 2/2] whoops --- whalesong/image/private/kernel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whalesong/image/private/kernel.js b/whalesong/image/private/kernel.js index 992ae5d..1282390 100644 --- a/whalesong/image/private/kernel.js +++ b/whalesong/image/private/kernel.js @@ -300,7 +300,7 @@ var SceneImage = function(width, height, color, children, withBorder) { SceneImage.prototype = heir(BaseImage.prototype); // add: image primitive-number primitive-number -> Scene -SceneImage.prototype.add = function(anImage, x, color) { +SceneImage.prototype.add = function(anImage, x, y) { return new SceneImage(this.width, this.height, this.children.concat([[anImage,