1 // Copyright 2016 Paul Hänsch
3 // This file is part of Confetti.
5 // Confetti is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU Affero General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Confetti is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU Affero General Public License for more details.
15 // You should have received a copy of the GNU Affero General Public License
16 // along with Confetti. If not, see <http://www.gnu.org/licenses/>.
19 dbg = document.getElementById("jsdebug")
20 canvas = document.getElementById("canvas")
21 data=document.getElementById("image_serialize")
23 image = canvas.getContext("2d")
27 // start and current coordinates of a draw
28 // serves for tracking, whether path ends close to its beginning
32 function setstroke(w) {
34 data.value += " stroke-width " + image.lineWidth
40 data.value += " stroke " + c + "F"
44 if ( body.clientWidth >= 800 ){
45 return Math.floor(cscaleW * (x - canvas.offsetLeft))
47 return Math.floor(cscaleW * (x - canvas.offsetLeft + window.pageXOffset))
51 if ( body.clientWidth >= 800 ){
52 return Math.floor(cscaleH * (y - canvas.offsetTop))
54 return Math.floor(cscaleH * (y - canvas.offsetTop + window.pageYOffset))
60 cux=relX(x), cuy=relY(y)
62 image.lineTo( cux, cuy )
65 image_serialize += " " + cux + "," + cuy
69 function drawstart(x, y) {
72 cscaleW = canvas.width / canvas.clientWidth
73 cscaleH = canvas.height / canvas.clientHeight
75 stx=relX(x), sty=relY(y)
77 setstroke(document.querySelector('input[name="penwidth"]:checked').value);
78 setcol(document.querySelector('input[name="color"]:checked').value);
81 draw(x, y) // why must this not use relative Coords ???
83 image_serialize = " polyline"
88 // if path ends close to beginning ( < 50 px); then close path and fill
89 if ( false && mouse == 1 && Math.sqrt( Math.pow(stx - cux, 2) + Math.pow(sty - cuy, 2)) <= 50 && c !== "#FFF" ){
90 image.lineTo( stx, sty )
93 image.globalAlpha = .5
97 image_serialize += " " + stx + "," + sty
98 data.value += " fill " + c + "8" + image_serialize
99 } else if (mouse == 1) {
100 data.value += " fill #0000 " + image_serialize
102 dbg.innerHTML = " stx: " + stx + " cux: " + cux + " sty: " + sty + " cuy: " + cuy
109 window.addEventListener( 'mouseup', function() { drawstop() } )
110 canvas.addEventListener( 'mousedown', function(e) { drawstart(e.clientX, e.clientY) } )
111 canvas.addEventListener( 'mousemove', function(e) { draw(e.clientX, e.clientY) } )
113 window.addEventListener( 'touchend', function() { drawstop() } )
114 canvas.addEventListener( 'touchstart', function(e) { drawstart(e.touches[0].clientX, e.touches[0].clientY) } )
115 canvas.addEventListener( 'touchmove', function(e) { e.preventDefault(); draw(e.touches[0].clientX, e.touches[0].clientY) } )