mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
114 lines
3.2 KiB
JavaScript
114 lines
3.2 KiB
JavaScript
(function () {
|
|
var ns = $.namespace('pskl.tools.drawing');
|
|
/**
|
|
* Abstract shape tool class, parent to all shape tools (rectangle, circle).
|
|
* Shape tools should override only the draw method
|
|
*/
|
|
ns.ShapeTool = function() {
|
|
// Shapes's first point coordinates (set in applyToolAt)
|
|
this.startCol = null;
|
|
this.startRow = null;
|
|
|
|
this.tooltipDescriptors = [
|
|
{key : 'shift', description : 'Keep 1 to 1 ratio'}
|
|
];
|
|
};
|
|
|
|
pskl.utils.inherit(ns.ShapeTool, ns.BaseTool);
|
|
|
|
/**
|
|
* @override
|
|
*/
|
|
ns.ShapeTool.prototype.applyToolAt = function(col, row, frame, overlay, event) {
|
|
$.publish(Events.DRAG_START, [col, row]);
|
|
this.startCol = col;
|
|
this.startRow = row;
|
|
|
|
// Drawing the first point of the rectangle in the fake overlay canvas:
|
|
overlay.setPixel(col, row, this.getToolColor());
|
|
};
|
|
|
|
ns.ShapeTool.prototype.moveToolAt = function(col, row, frame, overlay, event) {
|
|
var coords = this.getCoordinates_(col, row, event);
|
|
$.publish(Events.CURSOR_MOVED, [coords.col, coords.row]);
|
|
|
|
overlay.clear();
|
|
var color = this.getToolColor();
|
|
if (color == Constants.TRANSPARENT_COLOR) {
|
|
color = Constants.SELECTION_TRANSPARENT_COLOR;
|
|
}
|
|
|
|
// draw in overlay
|
|
this.draw(coords.col, coords.row, color, overlay);
|
|
};
|
|
|
|
/**
|
|
* @override
|
|
*/
|
|
ns.ShapeTool.prototype.releaseToolAt = function(col, row, frame, overlay, event) {
|
|
overlay.clear();
|
|
var coords = this.getCoordinates_(col, row, event);
|
|
var color = this.getToolColor();
|
|
this.draw(coords.col, coords.row, color, frame);
|
|
|
|
$.publish(Events.DRAG_END);
|
|
this.raiseSaveStateEvent({
|
|
col : coords.col,
|
|
row : coords.row,
|
|
startCol : this.startCol,
|
|
startRow : this.startRow,
|
|
color : color
|
|
});
|
|
};
|
|
|
|
/**
|
|
* @override
|
|
*/
|
|
ns.ShapeTool.prototype.replay = function(frame, replayData) {
|
|
this.startCol = replayData.startCol;
|
|
this.startRow = replayData.startRow;
|
|
this.draw(replayData.col, replayData.row, replayData.color, frame);
|
|
};
|
|
|
|
/**
|
|
* Transform the current coordinates based on the original event
|
|
* @param {Number} col current col/x coordinate in the frame
|
|
* @param {Number} row current row/y coordinate in the frame
|
|
* @param {Event} event current event (can be mousemove, mouseup ...)
|
|
* @return {Object} {row : Number, col : Number}
|
|
*/
|
|
ns.ShapeTool.prototype.getCoordinates_ = function(col, row, event) {
|
|
if (event.shiftKey) {
|
|
return this.getScaledCoordinates_(col, row);
|
|
} else {
|
|
return {col : col, row : row};
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Transform the coordinates to preserve a square 1:1 ratio from the origin of the shape
|
|
* @param {Number} col current col/x coordinate in the frame
|
|
* @param {Number} row current row/y coordinate in the frame
|
|
* @return {Object} {row : Number, col : Number}
|
|
*/
|
|
ns.ShapeTool.prototype.getScaledCoordinates_ = function(col, row) {
|
|
var dX = this.startCol - col;
|
|
var absX = Math.abs(dX);
|
|
|
|
var dY = this.startRow - row;
|
|
var absY = Math.abs(dY);
|
|
|
|
var delta = Math.min(absX, absY);
|
|
row = this.startRow - ((dY / absY) * delta);
|
|
col = this.startCol - ((dX / absX) * delta);
|
|
|
|
return {
|
|
col : col,
|
|
row : row
|
|
};
|
|
};
|
|
|
|
ns.ShapeTool.prototype.draw = Constants.ABSTRACT_FUNCTION;
|
|
|
|
})();
|