var currentMouseEvent; var lastMouseMovePos; //mousedown - start drawing window.addEventListener("mousedown", function (mouseEvent) { // Saving the event in case something else needs it currentMouseEvent = mouseEvent; canDraw = true; //if no document has been created yet, or this is a dialog open, or the currentLayer is locked if (!documentCreated || dialogueOpen || currentLayer.isLocked || !currentLayer.isVisible) return; //prevent right mouse clicks and such, which will open unwanted menus //mouseEvent.preventDefault(); lastMouseClickPos = getCursorPosition(mouseEvent); dragging = true; //left or right click ? if (mouseEvent.which == 1) { if (spacePressed) currentTool = tool.pan; else if (mouseEvent.altKey) currentTool = tool.eyedropper; else if (mouseEvent.target.className == 'drawingCanvas' && (currentTool.name == 'pencil' || currentTool.name == 'eraser' || currentTool.name == 'rectangle' || currentTool.name == 'ellipse' || currentTool.name === 'line')) new HistoryStateEditCanvas(); else if (currentTool.name == 'moveselection') { if (!cursorInSelectedArea() && ((mouseEvent.target.id == 'canvas-view') || mouseEvent.target.className == 'drawingCanvas')) { tool.pencil.switchTo(); canDraw = false; } } if (!currentLayer.isLocked && !currentLayer.isVisible && canDraw) { draw(mouseEvent); } } else if (mouseEvent.which == 2) { currentTool = tool.pan; } else if (currentTool.name == 'pencil' && mouseEvent.which == 3) { currentTool = tool.resizebrush; tool.pencil.previousBrushSize = tool.pencil.brushSize; } else if (currentTool.name == 'eraser' && mouseEvent.which == 3) { currentTool = tool.resizeeraser; tool.eraser.previousBrushSize = tool.eraser.brushSize; } // TODO: [ELLIPSE] Do we need similar logic related to ellipse? else if (currentTool.name == 'rectangle' && mouseEvent.which == 3) { currentTool = tool.resizerectangle; tool.rectangle.previousBrushSize = tool.rectangle.brushSize; } else if (currentTool.name == 'line' && mouseEvent.which == 3) { currentTool = tool.resizeline; tool.line.previousBrushSize = tool.line.brushSize; } if (currentTool.name == 'eyedropper' && mouseEvent.target.className == 'drawingCanvas') eyedropperPreview.style.display = 'block'; return false; }, false); //mouseup - end drawing window.addEventListener("mouseup", function (mouseEvent) { // Saving the event in case something else needs it currentMouseEvent = mouseEvent; closeMenu(); if (currentLayer != null && !isChildOfByClass(mouseEvent.target, "layers-menu-entry")) { currentLayer.closeOptionsMenu(); } // If the user finished placing down a line, clear the tmp canvas and copy the data to the current layer if (currentTool.name === "line") { const tmpCanvas = document.getElementById('tmp-canvas'); currentLayer.context.drawImage(tmpCanvas, 0, 0); const tmpContext = tmpCanvas.getContext('2d'); tmpContext.clearRect(0, 0, tmpCanvas.width, tmpCanvas.height); } if (!documentCreated || dialogueOpen || !currentLayer.isVisible || currentLayer.isLocked) return; if (currentTool.name == 'eyedropper' && mouseEvent.target.className == 'drawingCanvas') { var cursorLocation = getCursorPosition(mouseEvent); var selectedColor = getEyedropperColor(cursorLocation); var newColor = rgbToHex(selectedColor[0],selectedColor[1],selectedColor[2]); currentGlobalColor = "#" + newColor; for (let i=1; i64) brushPreview.classList.remove('dark'); else brushPreview.classList.add('dark'); currentLayer.updateLayerPreview(); } // Decided to write a different implementation in case of differences between the brush and the eraser tool else if (currentTool.name == 'eraser') { //hide brush preview outside of canvas / canvas view if (mouseEvent.target.className == 'drawingCanvas' || mouseEvent.target.className == 'drawingCanvas') brushPreview.style.visibility = 'visible'; else brushPreview.style.visibility = 'hidden'; //draw line to current pixel if (dragging) { if (mouseEvent.target.className == 'drawingCanvas' || mouseEvent.target.className == 'drawingCanvas') { line(Math.floor(lastMouseClickPos[0]/zoom),Math.floor(lastMouseClickPos[1]/zoom),Math.floor(cursorLocation[0]/zoom),Math.floor(cursorLocation[1]/zoom), currentTool.brushSize); lastMouseClickPos = cursorLocation; } } currentLayer.updateLayerPreview(); } else if (currentTool.name == 'rectangle') { //hide brush preview outside of canvas / canvas view if (mouseEvent.target.className == 'drawingCanvas'|| mouseEvent.target.className == 'drawingCanvas') brushPreview.style.visibility = 'visible'; else brushPreview.style.visibility = 'hidden'; if (!isDrawingRect && dragging) { startRectDrawing(mouseEvent); } else if (dragging){ updateRectDrawing(mouseEvent); } } else if (currentTool.name == 'ellipse') { //hide brush preview outside of canvas / canvas view if (mouseEvent.target.className == 'drawingCanvas'|| mouseEvent.target.className == 'drawingCanvas') brushPreview.style.visibility = 'visible'; else brushPreview.style.visibility = 'hidden'; if (!isDrawingEllipse && dragging) { startEllipseDrawing(mouseEvent); } else if (dragging){ updateEllipseDrawing(mouseEvent); } } else if (currentTool.name == 'pan' && dragging) { // Setting first layer position layers[0].setCanvasOffset(layers[0].canvas.offsetLeft + (cursorLocation[0] - lastMouseClickPos[0]), layers[0].canvas.offsetTop + (cursorLocation[1] - lastMouseClickPos[1])); // Copying that position to the other layers for (let i=1; i127) eyedropperPreview.classList.remove('dark'); else eyedropperPreview.classList.add('dark'); } else if (currentTool.name == 'resizebrush' && dragging) { //get new brush size based on x distance from original clicking location var distanceFromClick = cursorLocation[0] - lastMouseClickPos[0]; //var roundingAmount = 20 - Math.round(distanceFromClick/10); //this doesnt work in reverse... because... it's not basing it off of the brush size which it should be var brushSizeChange = Math.round(distanceFromClick/10); var newBrushSize = tool.pencil.previousBrushSize + brushSizeChange; //set the brush to the new size as long as its bigger than 1 tool.pencil.brushSize = Math.max(1,newBrushSize); //fix offset so the cursor stays centered tool.pencil.moveBrushPreview(lastMouseClickPos); currentTool.updateCursor(); } else if (currentTool.name == 'resizeeraser' && dragging) { //get new brush size based on x distance from original clicking location var distanceFromClick = cursorLocation[0] - lastMouseClickPos[0]; //var roundingAmount = 20 - Math.round(distanceFromClick/10); //this doesnt work in reverse... because... it's not basing it off of the brush size which it should be var eraserSizeChange = Math.round(distanceFromClick/10); var newEraserSizeChange = tool.eraser.previousBrushSize + eraserSizeChange; //set the brush to the new size as long as its bigger than 1 tool.eraser.brushSize = Math.max(1,newEraserSizeChange); //fix offset so the cursor stays centered tool.eraser.moveBrushPreview(lastMouseClickPos); currentTool.updateCursor(); } else if (currentTool.name == 'resizerectangle' && dragging) { //get new brush size based on x distance from original clicking location var distanceFromClick = cursorLocation[0] - lastMouseClickPos[0]; //var roundingAmount = 20 - Math.round(distanceFromClick/10); //this doesnt work in reverse... because... it's not basing it off of the brush size which it should be var rectangleSizeChange = Math.round(distanceFromClick/10); // TODO: [ELLIPSE] Do we need similar logic related to ellipse? var newRectangleSize = tool.rectangle.previousBrushSize + rectangleSizeChange; //set the brush to the new size as long as its bigger than 1 // TODO: [ELLIPSE] Do we need similar logic related to ellipse? tool.rectangle.brushSize = Math.max(1,newRectangleSize); //fix offset so the cursor stays centered // TODO: [ELLIPSE] Do we need similar logic related to ellipse? tool.rectangle.moveBrushPreview(lastMouseClickPos); currentTool.updateCursor(); } else if (currentTool.name == 'resizeline' && dragging) { //get new brush size based on x distance from original clicking location var distanceFromClick = cursorLocation[0] - lastMouseClickPos[0]; //var roundingAmount = 20 - Math.round(distanceFromClick/10); //this doesnt work in reverse... because... it's not basing it off of the brush size which it should be var lineSizeChange = Math.round(distanceFromClick/10); var newLineSize = tool.line.previousBrushSize + lineSizeChange; //set the brush to the new size as long as its bigger than 1 tool.line.brushSize = Math.max(1, newLineSize); //fix offset so the cursor stays centered tool.line.moveBrushPreview(lastMouseClickPos); currentTool.updateCursor(); } else if (currentTool.name == 'rectselect') { if (dragging && !isRectSelecting && mouseEvent.target.className == 'drawingCanvas') { isRectSelecting = true; startRectSelection(mouseEvent); } else if (dragging && isRectSelecting) { updateRectSelection(mouseEvent); } else if (isRectSelecting) { endRectSelection(); } } else if (currentTool.name == 'moveselection') { // Updating the cursor (move if inside rect, cross if not) currentTool.updateCursor(); // If I'm dragging, I move the preview if (dragging && cursorInSelectedArea()) { updateMovePreview(getCursorPosition(mouseEvent)); } } else if (currentTool.name === "line") { if (mouseEvent.target.className == 'drawingCanvas'|| mouseEvent.target.className == 'drawingCanvas') { brushPreview.style.visibility = 'visible'; } else { brushPreview.style.visibility = 'hidden'; } if (dragging) { if (mouseEvent.target.className == 'drawingCanvas' || mouseEvent.target.className == 'drawingCanvas') { diagLine(lastMouseClickPos, zoom, cursorLocation); } } currentLayer.updateLayerPreview(); } } if (mouseEvent.target.className == 'drawingCanvas') currentTool.updateCursor(); else canvasView.style.cursor = 'default'; } //mousewheel scroll canvasView.addEventListener("wheel", function(mouseEvent){ let mode; if (mouseEvent.deltaY < 0){ mode = 'in'; } else if (mouseEvent.deltaY > 0) { mode = 'out'; } // Changing zoom and position of the first layer changeZoom(mode, getCursorPosition(mouseEvent)); for (let i=1; i