2013-09-01 12:49:18 +08:00
|
|
|
(function() {
|
2013-09-01 16:13:52 +08:00
|
|
|
var COMMA = ',',
|
|
|
|
OPEN_PAREN = '(',
|
|
|
|
CLOSE_PAREN = ')',
|
|
|
|
EMPTY_STRING = '',
|
|
|
|
CONTEXT_METHODS = ['clearRect', 'rect', 'restore', 'save', 'setTransform', 'transform'],
|
|
|
|
CONTEXT_PROPERTIES = ['fillStyle', 'lineWidth', 'strokeStyle'];
|
|
|
|
|
2013-09-01 12:49:18 +08:00
|
|
|
/**
|
|
|
|
* Canvas Context constructor
|
|
|
|
* @constructor
|
|
|
|
* @abstract
|
|
|
|
* @memberof Kinetic
|
|
|
|
*/
|
|
|
|
Kinetic.Context = function(canvas) {
|
|
|
|
this.init(canvas);
|
|
|
|
};
|
|
|
|
|
|
|
|
Kinetic.Context.prototype = {
|
|
|
|
init: function(canvas) {
|
|
|
|
this.canvas = canvas;
|
|
|
|
this._context = canvas._canvas.getContext('2d');
|
2013-09-01 16:13:52 +08:00
|
|
|
|
|
|
|
if (Kinetic.enableTrace) {
|
|
|
|
this.traceArr = [];
|
|
|
|
this._enableTrace();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_trace: function(str) {
|
|
|
|
var traceArr = this.traceArr,
|
|
|
|
len;
|
|
|
|
|
|
|
|
traceArr.push(str);
|
|
|
|
len = traceArr.length;
|
|
|
|
|
|
|
|
if (len >= Kinetic.traceArrMax) {
|
|
|
|
traceArr.shift();
|
|
|
|
}
|
2013-09-01 12:49:18 +08:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
* reset canvas context transform
|
|
|
|
* @method
|
|
|
|
* @memberof Kinetic.Context.prototype
|
|
|
|
*/
|
|
|
|
reset: function() {
|
|
|
|
var pixelRatio = this.getCanvas().getPixelRatio();
|
2013-09-01 16:13:52 +08:00
|
|
|
this.setTransform(1 * pixelRatio, 0, 0, 1 * pixelRatio, 0, 0);
|
2013-09-01 12:49:18 +08:00
|
|
|
},
|
|
|
|
getCanvas: function() {
|
|
|
|
return this.canvas;
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* clear canvas
|
|
|
|
* @method
|
|
|
|
* @memberof Kinetic.Context.prototype
|
|
|
|
*/
|
|
|
|
clear: function(clip) {
|
2013-09-01 16:13:52 +08:00
|
|
|
var canvas = this.getCanvas(),
|
2013-09-01 12:49:18 +08:00
|
|
|
pos, size;
|
|
|
|
|
|
|
|
if (clip) {
|
|
|
|
pos = Kinetic.Util._getXY(clip);
|
|
|
|
size = Kinetic.Util._getSize(clip);
|
2013-09-01 16:13:52 +08:00
|
|
|
this.clearRect(pos.x || 0, pos.y || 0, size.width, size.height);
|
2013-09-01 12:49:18 +08:00
|
|
|
}
|
|
|
|
else {
|
2013-09-01 16:13:52 +08:00
|
|
|
this.clearRect(0, 0, canvas.getWidth(), canvas.getHeight());
|
2013-09-01 12:49:18 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* fill shape
|
|
|
|
* @method
|
|
|
|
* @memberof Kinetic.Context.prototype
|
|
|
|
* @param {Kinetic.Shape} shape
|
|
|
|
*/
|
|
|
|
fill: function(shape) {
|
|
|
|
if(shape.getFillEnabled()) {
|
|
|
|
this._fill(shape);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* stroke shape
|
|
|
|
* @method
|
|
|
|
* @memberof Kinetic.Context.prototype
|
|
|
|
* @param {Kinetic.Shape} shape
|
|
|
|
*/
|
|
|
|
stroke: function(shape) {
|
|
|
|
if(shape.getStrokeEnabled()) {
|
|
|
|
this._stroke(shape);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* fill, stroke, and apply shadows
|
|
|
|
* will only be applied to either the fill or stroke. Fill
|
|
|
|
* is given priority over stroke.
|
|
|
|
* @method
|
|
|
|
* @memberof Kinetic.Context.prototype
|
|
|
|
* @param {Kinetic.Shape} shape
|
|
|
|
*/
|
|
|
|
fillStroke: function(shape) {
|
|
|
|
var fillEnabled = shape.getFillEnabled();
|
|
|
|
if(fillEnabled) {
|
|
|
|
this._fill(shape);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(shape.getStrokeEnabled()) {
|
|
|
|
this._stroke(shape, shape.hasShadow() && shape.hasFill() && fillEnabled);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* apply shadow
|
|
|
|
* @method
|
|
|
|
* @memberof Kinetic.Context.prototype
|
|
|
|
* @param {Kinetic.Shape} shape
|
|
|
|
* @param {Function} drawFunc
|
|
|
|
*/
|
|
|
|
applyShadow: function(shape, drawFunc) {
|
2013-09-01 16:13:52 +08:00
|
|
|
context.save();
|
2013-09-01 12:49:18 +08:00
|
|
|
this._applyShadow(shape);
|
|
|
|
drawFunc();
|
2013-09-01 16:13:52 +08:00
|
|
|
context.restore();
|
2013-09-01 12:49:18 +08:00
|
|
|
drawFunc();
|
|
|
|
},
|
|
|
|
_applyLineCap: function(shape) {
|
|
|
|
var lineCap = shape.getLineCap();
|
|
|
|
if(lineCap) {
|
|
|
|
this._context.lineCap = lineCap;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_applyOpacity: function(shape) {
|
|
|
|
var absOpacity = shape.getAbsoluteOpacity();
|
|
|
|
if(absOpacity !== 1) {
|
|
|
|
this._context.globalAlpha = absOpacity;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_applyLineJoin: function(shape) {
|
|
|
|
var lineJoin = shape.getLineJoin();
|
|
|
|
if(lineJoin) {
|
|
|
|
this._context.lineJoin = lineJoin;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_applyAncestorTransforms: function(shape) {
|
|
|
|
var m = shape.getAbsoluteTransform().getMatrix();
|
2013-09-01 16:13:52 +08:00
|
|
|
this.transform(m[0], m[1], m[2], m[3], m[4], m[5]);
|
2013-09-01 12:49:18 +08:00
|
|
|
},
|
|
|
|
_clip: function(container) {
|
|
|
|
var _context = this._context,
|
|
|
|
clipX = container.getClipX() || 0,
|
|
|
|
clipY = container.getClipY() || 0,
|
|
|
|
clipWidth = container.getClipWidth(),
|
|
|
|
clipHeight = container.getClipHeight();
|
|
|
|
|
2013-09-01 16:13:52 +08:00
|
|
|
this.save();
|
2013-09-01 12:49:18 +08:00
|
|
|
this._applyAncestorTransforms(container);
|
|
|
|
_context.beginPath();
|
2013-09-01 16:13:52 +08:00
|
|
|
this.rect(clipX, clipY, clipWidth, clipHeight);
|
2013-09-01 12:49:18 +08:00
|
|
|
_context.clip();
|
|
|
|
this.reset();
|
|
|
|
container._drawChildren(this.getCanvas());
|
2013-09-01 16:13:52 +08:00
|
|
|
this.restore();
|
|
|
|
},
|
|
|
|
// context pass through methods
|
|
|
|
clearRect: function(x, y, width, height) {
|
|
|
|
this._context.clearRect(x, y, width, height);
|
|
|
|
},
|
|
|
|
rect: function(x, y, width, height) {
|
|
|
|
this._context.rect(x, y, width, height);
|
|
|
|
},
|
|
|
|
restore: function() {
|
|
|
|
this._context.restore();
|
|
|
|
},
|
|
|
|
save: function() {
|
|
|
|
this._context.save();
|
|
|
|
},
|
|
|
|
setTransform: function(a, b, c, d, e, f) {
|
|
|
|
this._context.setTransform(a, b, c, d, e, f);
|
|
|
|
},
|
|
|
|
transform: function(a, b, c, d, e, f) {
|
|
|
|
this._context.transform(a, b, c, d, e, f);
|
|
|
|
},
|
|
|
|
_enableTrace: function() {
|
|
|
|
var that = this,
|
|
|
|
len = CONTEXT_METHODS.length,
|
|
|
|
n;
|
|
|
|
|
|
|
|
// methods
|
|
|
|
for (n=0; n<len; n++) {
|
|
|
|
(function(contextMethod) {
|
|
|
|
var method = that[contextMethod],
|
|
|
|
args;
|
|
|
|
|
|
|
|
that[contextMethod] = function() {
|
|
|
|
args = Array.prototype.slice.call(arguments, 0);
|
|
|
|
method.apply(that, arguments);
|
|
|
|
that._trace(contextMethod + OPEN_PAREN + args.join(COMMA) + CLOSE_PAREN);
|
|
|
|
};
|
|
|
|
})(CONTEXT_METHODS[n]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// properties
|
|
|
|
len = CONTEXT_PROPERTIES.length;
|
|
|
|
|
|
|
|
for (n=0; n<len; n++) {
|
|
|
|
|
|
|
|
}
|
2013-09-01 12:49:18 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Kinetic.SceneContext = function(canvas) {
|
|
|
|
Kinetic.Context.call(this, canvas);
|
|
|
|
};
|
|
|
|
|
|
|
|
Kinetic.SceneContext.prototype = {
|
|
|
|
_fillColor: function(shape) {
|
|
|
|
var _context = this._context,
|
|
|
|
fill = shape.getFill();
|
|
|
|
|
|
|
|
_context.fillStyle = fill;
|
|
|
|
shape._fillFunc(_context);
|
|
|
|
},
|
|
|
|
_fillPattern: function(shape) {
|
|
|
|
var _context = this._context,
|
|
|
|
fillPatternImage = shape.getFillPatternImage(),
|
|
|
|
fillPatternX = shape.getFillPatternX(),
|
|
|
|
fillPatternY = shape.getFillPatternY(),
|
|
|
|
fillPatternScale = shape.getFillPatternScale(),
|
|
|
|
fillPatternRotation = shape.getFillPatternRotation(),
|
|
|
|
fillPatternOffset = shape.getFillPatternOffset(),
|
|
|
|
fillPatternRepeat = shape.getFillPatternRepeat();
|
|
|
|
|
|
|
|
if(fillPatternX || fillPatternY) {
|
|
|
|
_context.translate(fillPatternX || 0, fillPatternY || 0);
|
|
|
|
}
|
|
|
|
if(fillPatternRotation) {
|
|
|
|
_context.rotate(fillPatternRotation);
|
|
|
|
}
|
|
|
|
if(fillPatternScale) {
|
|
|
|
_context.scale(fillPatternScale.x, fillPatternScale.y);
|
|
|
|
}
|
|
|
|
if(fillPatternOffset) {
|
|
|
|
_context.translate(-1 * fillPatternOffset.x, -1 * fillPatternOffset.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
_context.fillStyle = _context.createPattern(fillPatternImage, fillPatternRepeat || 'repeat');
|
|
|
|
_context.fill();
|
|
|
|
},
|
|
|
|
_fillLinearGradient: function(shape) {
|
|
|
|
var _context = this._context,
|
|
|
|
start = shape.getFillLinearGradientStartPoint(),
|
|
|
|
end = shape.getFillLinearGradientEndPoint(),
|
|
|
|
colorStops = shape.getFillLinearGradientColorStops(),
|
|
|
|
grd = _context.createLinearGradient(start.x, start.y, end.x, end.y);
|
|
|
|
|
|
|
|
if (colorStops) {
|
|
|
|
// build color stops
|
|
|
|
for(var n = 0; n < colorStops.length; n += 2) {
|
|
|
|
grd.addColorStop(colorStops[n], colorStops[n + 1]);
|
|
|
|
}
|
|
|
|
_context.fillStyle = grd;
|
|
|
|
_context.fill();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_fillRadialGradient: function(shape) {
|
|
|
|
var _context = this._context,
|
|
|
|
start = shape.getFillRadialGradientStartPoint(),
|
|
|
|
end = shape.getFillRadialGradientEndPoint(),
|
|
|
|
startRadius = shape.getFillRadialGradientStartRadius(),
|
|
|
|
endRadius = shape.getFillRadialGradientEndRadius(),
|
|
|
|
colorStops = shape.getFillRadialGradientColorStops(),
|
|
|
|
grd = _context.createRadialGradient(start.x, start.y, startRadius, end.x, end.y, endRadius);
|
|
|
|
|
|
|
|
// build color stops
|
|
|
|
for(var n = 0; n < colorStops.length; n += 2) {
|
|
|
|
grd.addColorStop(colorStops[n], colorStops[n + 1]);
|
|
|
|
}
|
|
|
|
_context.fillStyle = grd;
|
|
|
|
_context.fill();
|
|
|
|
},
|
|
|
|
_fill: function(shape, skipShadow) {
|
|
|
|
var _context = this._context,
|
|
|
|
hasColor = shape.getFill(),
|
|
|
|
hasPattern = shape.getFillPatternImage(),
|
|
|
|
hasLinearGradient = shape.getFillLinearGradientColorStops(),
|
|
|
|
hasRadialGradient = shape.getFillRadialGradientColorStops(),
|
|
|
|
fillPriority = shape.getFillPriority();
|
|
|
|
|
|
|
|
_context.save();
|
|
|
|
|
|
|
|
if(!skipShadow && shape.hasShadow()) {
|
|
|
|
this._applyShadow(shape);
|
|
|
|
}
|
|
|
|
|
|
|
|
// priority fills
|
|
|
|
if(hasColor && fillPriority === 'color') {
|
|
|
|
this._fillColor(shape);
|
|
|
|
}
|
|
|
|
else if(hasPattern && fillPriority === 'pattern') {
|
|
|
|
this._fillPattern(shape);
|
|
|
|
}
|
|
|
|
else if(hasLinearGradient && fillPriority === 'linear-gradient') {
|
|
|
|
this._fillLinearGradient(shape);
|
|
|
|
}
|
|
|
|
else if(hasRadialGradient && fillPriority === 'radial-gradient') {
|
|
|
|
this._fillRadialGradient(shape);
|
|
|
|
}
|
|
|
|
// now just try and fill with whatever is available
|
|
|
|
else if(hasColor) {
|
|
|
|
this._fillColor(shape);
|
|
|
|
}
|
|
|
|
else if(hasPattern) {
|
|
|
|
this._fillPattern(shape);
|
|
|
|
}
|
|
|
|
else if(hasLinearGradient) {
|
|
|
|
this._fillLinearGradient(shape);
|
|
|
|
}
|
|
|
|
else if(hasRadialGradient) {
|
|
|
|
this._fillRadialGradient(shape);
|
|
|
|
}
|
|
|
|
_context.restore();
|
|
|
|
|
|
|
|
if(!skipShadow && shape.hasShadow()) {
|
|
|
|
this._fill(shape, true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_stroke: function(shape, skipShadow) {
|
|
|
|
var _context = this._context,
|
|
|
|
stroke = shape.getStroke(),
|
|
|
|
strokeWidth = shape.getStrokeWidth(),
|
|
|
|
dashArray = shape.getDashArray();
|
|
|
|
|
|
|
|
if(stroke || strokeWidth) {
|
|
|
|
_context.save();
|
|
|
|
if (!shape.getStrokeScaleEnabled()) {
|
|
|
|
_context.setTransform(1, 0, 0, 1, 0, 0);
|
|
|
|
}
|
|
|
|
this._applyLineCap(shape);
|
|
|
|
if(dashArray && shape.getDashArrayEnabled()) {
|
|
|
|
if(_context.setLineDash) {
|
|
|
|
_context.setLineDash(dashArray);
|
|
|
|
}
|
|
|
|
else if('mozDash' in _context) {
|
|
|
|
_context.mozDash = dashArray;
|
|
|
|
}
|
|
|
|
else if('webkitLineDash' in _context) {
|
|
|
|
_context.webkitLineDash = dashArray;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!skipShadow && shape.hasShadow()) {
|
|
|
|
this._applyShadow(shape);
|
|
|
|
}
|
|
|
|
_context.lineWidth = strokeWidth || 2;
|
|
|
|
_context.strokeStyle = stroke || 'black';
|
|
|
|
shape._strokeFunc(_context);
|
|
|
|
_context.restore();
|
|
|
|
|
|
|
|
if(!skipShadow && shape.hasShadow()) {
|
|
|
|
this._stroke(shape, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_applyShadow: function(shape) {
|
|
|
|
var _context = this._context,
|
|
|
|
util, absOpacity, color, blur, offset, shadowOpacity;
|
|
|
|
|
|
|
|
if(shape.hasShadow() && shape.getShadowEnabled()) {
|
|
|
|
util = Kinetic.Util;
|
|
|
|
absOpacity = shape.getAbsoluteOpacity();
|
|
|
|
color = util.get(shape.getShadowColor(), 'black');
|
|
|
|
blur = util.get(shape.getShadowBlur(), 5);
|
|
|
|
shadowOpacity = util.get(shape.getShadowOpacity(), 0);
|
|
|
|
offset = util.get(shape.getShadowOffset(), {
|
|
|
|
x: 0,
|
|
|
|
y: 0
|
|
|
|
});
|
|
|
|
|
|
|
|
if(shadowOpacity) {
|
|
|
|
_context.globalAlpha = shadowOpacity * absOpacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
_context.shadowColor = color;
|
|
|
|
_context.shadowBlur = blur;
|
|
|
|
_context.shadowOffsetX = offset.x;
|
|
|
|
_context.shadowOffsetY = offset.y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Kinetic.Util.extend(Kinetic.SceneContext, Kinetic.Context);
|
|
|
|
|
|
|
|
Kinetic.HitContext = function(canvas) {
|
|
|
|
Kinetic.Context.call(this, canvas);
|
|
|
|
};
|
|
|
|
|
|
|
|
Kinetic.HitContext.prototype = {
|
|
|
|
_fill: function(shape) {
|
|
|
|
var _context = this._context;
|
|
|
|
_context.save();
|
|
|
|
_context.fillStyle = shape.colorKey;
|
|
|
|
shape._fillFuncHit(_context);
|
|
|
|
_context.restore();
|
|
|
|
},
|
|
|
|
_stroke: function(shape) {
|
|
|
|
var _context = this._context,
|
|
|
|
stroke = shape.getStroke(),
|
|
|
|
strokeWidth = shape.getStrokeWidth();
|
|
|
|
|
|
|
|
if(stroke || strokeWidth) {
|
|
|
|
this._applyLineCap(shape);
|
|
|
|
_context.lineWidth = strokeWidth || 2;
|
|
|
|
_context.strokeStyle = shape.colorKey;
|
|
|
|
shape._strokeFuncHit(_context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Kinetic.Util.extend(Kinetic.HitContext, Kinetic.Context);
|
|
|
|
})();
|