2012-09-02 02:44:55 +04:00
|
|
|
/*
|
2012-09-02 15:19:20 +04:00
|
|
|
* @provide pskl.drawingtools.Stroke
|
2012-09-02 02:44:55 +04:00
|
|
|
*
|
|
|
|
* @require pskl.utils
|
|
|
|
*/
|
|
|
|
(function() {
|
|
|
|
var ns = $.namespace("pskl.drawingtools");
|
|
|
|
|
|
|
|
ns.Stroke = function() {
|
|
|
|
this.toolId = "tool-stroke"
|
|
|
|
|
|
|
|
// Stroke's first point coordinates (set in applyToolAt)
|
|
|
|
this.startCol = null;
|
|
|
|
this.startRow = null;
|
|
|
|
|
|
|
|
this.canvasOverlay = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
pskl.utils.inherit(ns.Stroke, ns.BaseTool);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
2012-09-04 16:10:16 +04:00
|
|
|
ns.Stroke.prototype.applyToolAt = function(col, row, color, drawer) {
|
2012-09-02 02:44:55 +04:00
|
|
|
this.startCol = col;
|
|
|
|
this.startRow = row;
|
|
|
|
|
|
|
|
// When drawing a stroke we don't change the model instantly, since the
|
|
|
|
// user can move his cursor to change the stroke direction and length
|
|
|
|
// dynamically. Instead we draw the (preview) stroke in a fake canvas that
|
|
|
|
// overlay the drawing canvas.
|
|
|
|
// We wait for the releaseToolAt callback to impact both the
|
|
|
|
// frame model and canvas rendering.
|
|
|
|
|
|
|
|
// The fake canvas where we will draw the preview of the stroke:
|
|
|
|
// Drawing the first point of the stroke in the fake overlay canvas:
|
2012-09-08 17:21:22 +04:00
|
|
|
drawer.overlayFrame.setPixel(col, row, color);
|
2012-09-04 16:10:16 +04:00
|
|
|
drawer.renderOverlay();
|
2012-09-02 02:44:55 +04:00
|
|
|
};
|
|
|
|
|
2012-09-04 16:10:16 +04:00
|
|
|
ns.Stroke.prototype.moveToolAt = function(col, row, color, drawer) {
|
2012-09-06 02:35:02 +04:00
|
|
|
drawer.clearOverlay();
|
|
|
|
|
2012-09-02 02:44:55 +04:00
|
|
|
// When the user moussemove (before releasing), we dynamically compute the
|
|
|
|
// pixel to draw the line and draw this line in the overlay canvas:
|
2012-09-04 16:10:16 +04:00
|
|
|
var strokePoints = this.getLinePixels_(this.startCol, col, this.startRow, row);
|
2012-09-02 02:44:55 +04:00
|
|
|
|
|
|
|
// Drawing current stroke:
|
2012-09-02 03:41:49 +04:00
|
|
|
for(var i = 0; i< strokePoints.length; i++) {
|
|
|
|
|
|
|
|
if(color == Constants.TRANSPARENT_COLOR) {
|
|
|
|
// When mousemoving the stroke tool, we draw in the canvas overlay above the drawing canvas.
|
|
|
|
// If the stroke color is transparent, we won't be
|
|
|
|
// able to see it during the movement.
|
|
|
|
// We set it to a semi-opaque white during the tool mousemove allowing to see colors below the stroke.
|
|
|
|
// When the stroke tool will be released, It will draw a transparent stroke,
|
|
|
|
// eg deleting the equivalent of a stroke.
|
2012-09-03 22:45:25 +04:00
|
|
|
color = Constants.SELECTION_TRANSPARENT_COLOR;
|
2012-09-02 03:41:49 +04:00
|
|
|
}
|
2012-09-08 17:21:22 +04:00
|
|
|
drawer.overlayFrame.setPixel(strokePoints[i].col, strokePoints[i].row, color);
|
2012-09-02 02:44:55 +04:00
|
|
|
}
|
2012-09-06 02:36:45 +04:00
|
|
|
drawer.renderOverlay();
|
2012-09-02 02:44:55 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
2012-09-04 16:10:16 +04:00
|
|
|
ns.Stroke.prototype.releaseToolAt = function(col, row, color, drawer) {
|
2012-09-02 15:19:20 +04:00
|
|
|
// If the stroke tool is released outside of the canvas, we cancel the stroke:
|
|
|
|
// TODO: Mutualize this check in common method
|
2012-09-05 00:18:00 +04:00
|
|
|
if(drawer.frame.containsPixel(col, row)) {
|
2012-09-04 16:10:16 +04:00
|
|
|
// The user released the tool to draw a line. We will compute the pixel coordinate, impact
|
|
|
|
// the model and draw them in the drawing canvas (not the fake overlay anymore)
|
|
|
|
var strokePoints = this.getLinePixels_(this.startCol, col, this.startRow, row);
|
|
|
|
for(var i = 0; i< strokePoints.length; i++) {
|
|
|
|
// Change model:
|
2012-09-06 02:40:27 +04:00
|
|
|
drawer.frame.setPixel(strokePoints[i].col, strokePoints[i].row, color);
|
2012-09-04 16:10:16 +04:00
|
|
|
}
|
2012-09-02 02:44:55 +04:00
|
|
|
// Draw in canvas:
|
|
|
|
// TODO: Remove that when we have the centralized redraw loop
|
2012-09-04 16:10:16 +04:00
|
|
|
drawer.renderFrame();
|
|
|
|
}
|
2012-09-02 02:44:55 +04:00
|
|
|
// For now, we are done with the stroke tool and don't need an overlay anymore:
|
2012-09-04 16:10:16 +04:00
|
|
|
drawer.clearOverlay();
|
2012-09-02 02:44:55 +04:00
|
|
|
};
|
|
|
|
})();
|