mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
57 lines
1.4 KiB
JavaScript
57 lines
1.4 KiB
JavaScript
/*
|
|
* @provide pskl.drawingtools.Move
|
|
*
|
|
* @require pskl.utils
|
|
*/
|
|
(function() {
|
|
var ns = $.namespace("pskl.drawingtools");
|
|
|
|
ns.Move = function() {
|
|
this.toolId = "tool-move"
|
|
|
|
// Stroke's first point coordinates (set in applyToolAt)
|
|
this.startCol = null;
|
|
this.startRow = null;
|
|
};
|
|
|
|
pskl.utils.inherit(ns.Move, ns.BaseTool);
|
|
|
|
/**
|
|
* @override
|
|
*/
|
|
ns.Move.prototype.applyToolAt = function(col, row, color, drawer) {
|
|
this.startCol = col;
|
|
this.startRow = row;
|
|
this.frameClone = drawer.frame.clone();
|
|
};
|
|
|
|
ns.Move.prototype.moveToolAt = function(col, row, color, drawer) {
|
|
var colDiff = col - this.startCol, rowDiff = row - this.startRow;
|
|
if (colDiff != 0 || rowDiff != 0) {
|
|
this.shiftFrame(colDiff, rowDiff, drawer.frame, this.frameClone);
|
|
drawer.renderFrame();
|
|
}
|
|
};
|
|
|
|
ns.Move.prototype.shiftFrame = function (colDiff, rowDiff, frame, reference) {
|
|
var color;
|
|
for (var col = 0 ; col < frame.getWidth() ; col++) {
|
|
for (var row = 0 ; row < frame.getHeight() ; row++) {
|
|
if (reference.containsPixel(col - colDiff, row - rowDiff)) {
|
|
color = reference.getPixel(col - colDiff, row - rowDiff);
|
|
} else {
|
|
color = Constants.TRANSPARENT_COLOR;
|
|
}
|
|
frame.setPixel(col, row, color)
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* @override
|
|
*/
|
|
ns.Move.prototype.releaseToolAt = function(col, row, color, drawer) {
|
|
this.moveToolAt(col, row, color, drawer);
|
|
};
|
|
})();
|