piskel/js/drawingtools/selectiontools/RectangleSelect.js

52 lines
1.3 KiB
JavaScript
Raw Normal View History

/*
2012-09-14 22:12:21 +04:00
* @provide pskl.drawingtools.RectangleSelect
*
* @require pskl.utils
*/
(function() {
var ns = $.namespace("pskl.drawingtools");
2012-09-14 22:12:21 +04:00
ns.RectangleSelect = function() {
this.toolId = "tool-rectangle-select";
2012-09-15 22:25:45 +04:00
this.helpText = "Rectangle selection tool";
2012-09-14 22:12:21 +04:00
ns.BaseSelect.call(this);
};
2012-09-14 22:12:21 +04:00
pskl.utils.inherit(ns.RectangleSelect, ns.BaseSelect);
/**
* @override
*/
ns.RectangleSelect.prototype.onSelectStart_ = function (col, row, color, frame, overlay) {
// Drawing the first point of the rectangle in the fake overlay canvas:
overlay.setPixel(col, row, color);
};
/**
* When creating the rectangle selection, we clear the current overlayFrame and
* redraw the current rectangle based on the orgin coordinate and
* the current mouse coordiinate in sprite.
* @override
*/
ns.RectangleSelect.prototype.onSelect_ = function (col, row, color, frame, overlay) {
overlay.clear();
if(this.startCol == col &&this.startRow == row) {
$.publish(Events.SELECTION_DISMISSED);
} else {
var selection = new pskl.selection.RectangularSelection(
this.startCol, this.startRow, col, row);
$.publish(Events.SELECTION_CREATED, [selection]);
2012-09-14 00:57:32 +04:00
}
};
/**
* @override
*/
ns.RectangleSelect.prototype.onSelectEnd_ = function (col, row, color, frame, overlay) {
2013-05-28 01:42:53 +04:00
this.onSelect_(col, row, color, frame, overlay);
2012-09-14 00:57:32 +04:00
};
})();