pixel-editor/js/tools/EraserTool.js

45 lines
1.3 KiB
JavaScript
Raw Normal View History

2021-11-01 15:02:18 +03:00
class EraserTool extends ResizableTool {
2021-10-27 11:43:51 +03:00
constructor(name, options, switchFunction) {
super(name, options);
Events.on('click', this.mainButton, switchFunction, this);
Events.on('click', this.biggerButton, this.increaseSize.bind(this));
Events.on('click', this.smallerButton, this.decreaseSize.bind(this));
}
onStart(mousePos) {
super.onStart(mousePos);
new HistoryState().EditCanvas();
2021-10-27 11:43:51 +03:00
}
onDrag(mousePos, cursorTarget) {
super.onDrag(mousePos);
if (cursorTarget === undefined)
return;
//draw line to current pixel
if (cursorTarget.className == 'drawingCanvas' || cursorTarget.className == 'drawingCanvas') {
currFile.currentLayer.drawLine(Math.floor(this.prevMousePos[0]/currFile.zoom),
Math.floor(this.prevMousePos[1]/currFile.zoom),
Math.floor(this.currMousePos[0]/currFile.zoom),
Math.floor(this.currMousePos[1]/currFile.zoom),
2021-10-27 11:43:51 +03:00
this.currSize
);
}
currFile.currentLayer.updateLayerPreview();
2021-10-27 11:43:51 +03:00
}
onEnd(mousePos) {
super.onEnd(mousePos);
this.endMousePos = mousePos;
}
onSelect() {
super.onSelect();
}
onDeselect() {
super.onDeselect();
}
}