2013-09-28 23:10:12 +04:00
|
|
|
/**
|
2012-08-31 12:45:07 +04:00
|
|
|
* @provide pskl.drawingtools.SimplePen
|
|
|
|
*
|
|
|
|
* @require pskl.utils
|
|
|
|
*/
|
|
|
|
(function() {
|
2013-08-10 14:11:16 +04:00
|
|
|
var ns = $.namespace("pskl.drawingtools");
|
2012-08-31 12:45:07 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
ns.SimplePen = function() {
|
|
|
|
this.toolId = "tool-pen";
|
|
|
|
this.helpText = "Pen tool";
|
2012-09-16 02:47:24 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
this.previousCol = null;
|
|
|
|
this.previousRow = null;
|
2012-08-31 12:45:07 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
};
|
2012-09-02 19:49:28 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
pskl.utils.inherit(ns.SimplePen, ns.BaseTool);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
|
|
|
ns.SimplePen.prototype.applyToolAt = function(col, row, color, frame, overlay) {
|
|
|
|
if (frame.containsPixel(col, row)) {
|
|
|
|
frame.setPixel(col, row, color);
|
|
|
|
}
|
|
|
|
this.previousCol = col;
|
|
|
|
this.previousRow = row;
|
|
|
|
};
|
2012-08-31 12:45:07 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
ns.SimplePen.prototype.moveToolAt = function(col, row, color, frame, overlay) {
|
|
|
|
if((Math.abs(col - this.previousCol) > 1) || (Math.abs(row - this.previousRow) > 1)) {
|
|
|
|
// The pen movement is too fast for the mousemove frequency, there is a gap between the
|
|
|
|
// current point and the previously drawn one.
|
|
|
|
// We fill the gap by calculating missing dots (simple linear interpolation) and draw them.
|
|
|
|
var interpolatedPixels = this.getLinePixels_(col, this.previousCol, row, this.previousRow);
|
|
|
|
for(var i=0, l=interpolatedPixels.length; i<l; i++) {
|
|
|
|
var coords = interpolatedPixels[i];
|
|
|
|
this.applyToolAt(coords.col, coords.row, color, frame, overlay);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this.applyToolAt(col, row, color, frame, overlay);
|
|
|
|
}
|
2012-09-02 19:49:28 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
this.previousCol = col;
|
|
|
|
this.previousRow = row;
|
|
|
|
};
|
2012-08-31 12:45:07 +04:00
|
|
|
})();
|