mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
12e43e0449
There's only a bug, when pasting consecutively, every time it cuts the area again. There's probably some weird cut call somewhere.
73 lines
2.0 KiB
JavaScript
73 lines
2.0 KiB
JavaScript
//tools container / list, automatically managed when you create a new Tool();
|
|
var tool = {};
|
|
|
|
//class for tools
|
|
class Tool {
|
|
constructor (name, options) {
|
|
|
|
//stores the name in object, only needed for legacy functions from when currentTool was just a string
|
|
this.name = name;
|
|
|
|
//copy options to this object
|
|
if (options.cursor) {
|
|
//passed statically as a string
|
|
if (typeof options.cursor == 'string') this.cursor = options.cursor;
|
|
//passed a function which should be used as a getter function
|
|
if (typeof options.cursor == 'function') Object.defineProperty(this, 'cursor', { get: options.cursor});
|
|
}
|
|
|
|
if (options.imageCursor) this.cursor = "url(\'/pixel-editor/"+options.imageCursor+".png\'), auto";
|
|
|
|
if (options.brushPreview) {
|
|
this.brushPreview = true;
|
|
this.currentBrushSize = 1;
|
|
this.previousBrushSize = 1;
|
|
}
|
|
|
|
//add to tool object so it can be referenced
|
|
tool[name] = this;
|
|
}
|
|
|
|
get brushSize () {
|
|
return this.currentBrushSize;
|
|
}
|
|
|
|
set brushSize (value) {
|
|
this.currentBrushSize = value;
|
|
this.updateCursor();
|
|
}
|
|
|
|
|
|
//switch to this tool (replaced global changeTool())
|
|
switchTo () {
|
|
|
|
console.log('changing tool to',this.name)
|
|
|
|
// Ending any selection in progress
|
|
if (currentTool.name.includes("select") && !this.name.includes("select") && !selectionCanceled) {
|
|
endSelection();
|
|
}
|
|
|
|
//set tool and temp tje tje tpp <--- he's speaking the language of the gods, don't delete
|
|
currentTool = this;
|
|
currentToolTemp = this;
|
|
|
|
var tools = document.getElementById("tools-menu").children;
|
|
|
|
for (var i = 0; i < tools.length; i++) {
|
|
tools[i].classList.remove("selected");
|
|
}
|
|
|
|
let buttonNode = document.getElementById(this.name + "-button");
|
|
//give the button of the selected tool the .selected class if the tool has a button
|
|
if(buttonNode != null && buttonNode.parentNode != null) {
|
|
document.getElementById(this.name+"-button").parentNode.classList.add("selected");
|
|
}
|
|
|
|
//change cursor
|
|
this.updateCursor();
|
|
}
|
|
}
|
|
|
|
|
|
/*global dragging currentTool, currentToolTemp, selectionCanceled, endSelection*/ |