forked from lvidgen/WebRTC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdraw.js
449 lines (413 loc) · 12.5 KB
/
draw.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
function setDims(ctx, wrp) {
ctx.canvas.width = wrp.clientWidth;
ctx.canvas.height = wrp.clientHeight;
};
function makeCanvas(incoming, conn) {
var wrp = getById("draw_wrapper");
if (incoming) {
var canvas = document.createElement("canvas");
canvas.className = "theircanvas";
wrp.insertBefore(canvas, wrp.lastChild);
} else {
var canvas = crEl("canvas", wrp);
canvas.className = "mycanvas";
var shapebtn = "";
if (document.querySelector("input[name=shaperad]:checked")) {
shapebtn = document.querySelector("input[name=shaperad]:checked").id.replace("rad", "_btn");
}
setCanvasListeners(conn, shapebtn);
}
var ctx = canvas.getContext("2d");
setDims(ctx, wrp);
};
function getCanvas(incoming) {
var whose = incoming ? "theircanvas" : "mycanvas";
var cnvs = getById("draw_wrapper").getElementsByClassName(whose);
cn = cnvs[cnvs.length - 1];
ct = cn.getContext("2d");
return {
cnv: cn,
ctx: ct
};
};
// add event listeners to specify when functions should be triggered
getById("minicloser").onclick = function() {
getById("cnv_cntrls").style.display = "none";
getById("txtwrp").style.display = "none";
};
getById("stroke_col").onchange = checkFont;
getById("cnv_fnt").onchange = checkFont;
getById("fnt_sz").onchange = checkFont;
getById("txtdelete").onpointerdown = endText;
function setCanvasListeners(conn, shapebtn) {
var canvas = getCanvas(false).cnv;
canvas.onmousedown = function(e) {
//getById("cnv_cntrls").style.display="none";
setPosition(e);
};
canvas.onmouseup = function() {
makeCanvas(false, conn);
conn.send({
tag: "make_canvas"
})
};
canvas.style.cursor = "default";
switch (shapebtn) {
case "free_btn":
canvas.onmousemove = function(e) {
makeFree(e, conn)
};
break;
case "line_btn":
canvas.onmousemove = function(e) {
makeLine(e, conn)
};
break;
case "rect_btn":
canvas.onmousemove = function(e) {
makeRect(e, conn)
};
break;
case "circ_btn":
canvas.onmousemove = function(e) {
makeCircle(e, conn)
};
break;
case "text_btn":
canvas.style.cursor = "text";
canvas.onmouseup = function() {};
canvas.onmousedown = function(e) {
setPosition(e);
makeText(e);
};
break;
case "erase_btn":
break;
case "picbg_btn":
break;
case "pdfbg_btn":
break;
case "undo_btn":
break;
}
setTouch(canvas, "touchstart");
setTouch(canvas, "touchmove");
setTouch(canvas, "touchend");
setTouch(canvas, "touchcancel")
};
function showControls(theid, conn) {
if (theid.indexOf("_btn") != -1) {
getById("cnv_cntrls").style.display = "inline-flex";
setCanvasListeners(conn, theid);
var dvs = document.querySelectorAll("#cnv_cntrls > div"),
i = 0,
len = dvs.length;
for (i; i < len; i++) {
dvs[i].style.display = "none";
}
var toshow = [],
nof = getById("nofillcb"),
nol = getById("nolinecb"),
noldv = getById("noline");
nof.checked = false;
nol.checked = false;
noldv.style.display = "none";
switch (theid) {
case "free_btn":
toshow = ["stroke_wt", "stroke_col", "t_style"];
break;
case "line_btn":
toshow = ["stroke_wt", "stroke_col", "t_style"];
break;
case "rect_btn":
toshow = ["stroke_wt", "stroke_col", "fill_col"];
noldv.style.display = "block";
break;
case "circ_btn":
toshow = ["stroke_wt", "stroke_col", "fill_col"];
noldv.style.display = "block";
break;
case "text_btn":
toshow = ["stroke_col", "fnt_sz", "cnv_fnt"];
break;
case "erase_btn":
toshow = ["stroke_wt", "t_style"];
break;
case "picbg_btn":
toshow = ["bkg_ctrls"];
break;
/* not yet :(
case "pdfbg_btn":
getById("cnv_cntrls").style.display="none";
break;
*/
case "undo_btn":
getById("cnv_cntrls").style.display = "none";
break;
};
for (var a = 0; a < toshow.length; a++) {
getById(toshow[a]).parentElement.style.display = "block";
}
var targ = theid.replace("btn", "cntrls");
getById(targ).appendChild(getById("cnv_cntrls"))
}
}
// new position from mouse events
function setPosition(e) {
var canvas = getCanvas().cnv,
rect = canvas.getBoundingClientRect();
pos.x = e.clientX - rect.left;
pos.y = e.clientY - rect.top;
};
//get inputs and send to draw functions/peer
function makeFree(e, conn) {
var canvas = getCanvas().cnv;
if (e.buttons !== 1) return; // if mouse is pressed.....
var rect = canvas.getBoundingClientRect(),
color = getById("stroke_col").value,
wid = getById("stroke_wt").value,
cap_style = getById("t_style").value,
frompos = {
x: pos.x,
y: pos.y
};
setPosition(e);
var topos = {
x: e.clientX - rect.left,
y: e.clientY - rect.top
},
obj = {
tag: "drawfree",
col: color,
width: wid,
cap: cap_style,
frpos: frompos,
tpos: topos
};
conn.send(obj);
drawFree(obj);
};
function makeLine(e, conn) {
if (e.buttons !== 1) return; // if mouse is pressed.....
var canvas = getCanvas().cnv,
rect = canvas.getBoundingClientRect(),
color = getById("stroke_col").value,
wid = getById("stroke_wt").value,
cap_style = getById("t_style").value,
frompos = {
x: pos.x,
y: pos.y
},
topos = {
x: e.clientX - rect.left,
y: e.clientY - rect.top
},
obj = {
tag: "drawline",
col: color,
width: wid,
cap: cap_style,
frpos: frompos,
tpos: topos
};
conn.send(obj)
drawLine(obj);
};
function makeRect(e, conn) {
if (e.buttons !== 1) return; // if mouse is pressed.....
var canvas = getCanvas().cnv,
rect = canvas.getBoundingClientRect(),
outline = getById("stroke_col").value,
wid = getById("stroke_wt").value,
fill = getById("fill_col").value,
nofill = getById("nofillcb").checked,
noline = getById("nolinecb").checked,
topos = {
x: e.clientX - rect.left - pos.x,
y: e.clientY - rect.top - pos.y
},
obj = {
tag: "drawrect",
posx: pos.x,
posy: pos.y,
dx: topos.x,
dy: topos.y,
fl: fill,
linecol: outline,
lwid: wid,
nl: noline,
nf: nofill
}
conn.send(obj);
drawRect(obj);
};
function makeCircle(e, conn) {
if (e.buttons !== 1) return; // if mouse is pressed.....
var canvas = getCanvas().cnv,
rect = canvas.getBoundingClientRect(),
outline = getById("stroke_col").value,
wid = getById("stroke_wt").value,
fill = getById("fill_col").value,
nDeltaX = pos.x - e.clientX + rect.left,
nDeltaY = pos.y - e.clientY + rect.top,
nofill = getById("nofillcb").checked,
noline = getById("nolinecb").checked,
radius = Math.sqrt(nDeltaX * nDeltaX + nDeltaY * nDeltaY),
obj = {
tag: "drawcirc",
posx: pos.x,
posy: pos.y,
rad: radius,
fl: fill,
linecol: outline,
lwid: wid,
nl: noline,
nf: nofill
};
conn.send(obj)
drawCirc(obj);
};
function makeText(e) {
if (e.buttons !== 1) return; // if mouse is pressed.....
var inp = getById("txtinput"),
thebox = getById("txtwrp");
thebox.style.display = "inline-grid";
checkFont();
inp.style.lineHeight = parseFloat(inp.style.fontSize) * .8 + "px";
inp.innerHTML = " ";
setTimeout(function() {
getById("txtinput").focus();
thebox.style.left = pos.x + "px";
thebox.style.top = pos.y - (thebox.clientHeight) + "px";
inp.style.lineHeight = inp.style.fontSize;
}, 0)
};
function checkFont() {
var inpstl = getById("txtinput").style;
inpstl.color = getById("stroke_col").value;
inpstl.fontFamily = getById("cnv_fnt").value;
inpstl.fontSize = getById("fnt_sz").value + "px";
inpstl.lineHeight = inpstl.fontSize;
};
function saveText(conn) {
var inp = getById("txtinput"),
inpstl = inp.style,
fnt = inpstl.fontSize + " " + inpstl.fontFamily,
flstl = inpstl.color,
fs = parseFloat(inpstl.fontSize);
var txtarr = inp.innerHTML.replace(" ", "").split("<br>"),
i = 0,
len = txtarr.length;
for (i; i < len; i++) {
var delta = i * fs,
txt = txtarr[i],
obj = {
tag: "drawtext",
posx: pos.x,
posy: pos.y + delta,
stl: flstl,
fnt: fnt,
tx: txt
};
conn.send({
tag: "make_canvas"
})
conn.send(obj);
drawText(obj);
makeCanvas(conn, false);
};
endText();
};
function endText() {
getById("txtwrp").style.display = "none";
};
getById("clrpicbg_btn").onpointerdown = function() {
getById("bkg").style.backgroundImage = "";
};
function unDoIt() {
var lastone, cvs = getById("draw_wrapper").getElementsByTagName("canvas"),
len = cvs.length;
var lastone = cvs[len - 2];
if (lastone) {
lastone.remove();
}
};
// drawing on canvas
function drawFree(obj, incoming) {
var ctx = getCanvas(incoming).ctx;
ctx.beginPath();
ctx.lineWidth = obj.width;
ctx.lineCap = obj.cap; // rounded end cap
ctx.strokeStyle = obj.col; // hex color of line
ctx.moveTo(obj.frpos.x, obj.frpos.y); // from position
ctx.lineTo(obj.tpos.x, obj.tpos.y);
ctx.stroke();
};
function drawLine(obj, incoming) {
var cnvobj = getCanvas(incoming)
canvas = cnvobj.cnv,
ctx = cnvobj.ctx;
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.beginPath();
ctx.lineWidth = obj.width;
ctx.lineCap = obj.cap; // rounded end cap
ctx.strokeStyle = obj.col; // hex color of line
ctx.moveTo(obj.frpos.x, obj.frpos.y); // from position
ctx.lineTo(obj.tpos.x, obj.tpos.y);
ctx.stroke();
};
function drawRect(obj, incoming) {
var cnvobj = getCanvas(incoming)
canvas = cnvobj.cnv,
ctx = cnvobj.ctx;
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.beginPath();
ctx.strokeStyle = obj.linecol;
ctx.lineWidth = obj.lwid;
ctx.fillStyle = obj.fl;
ctx.rect(obj.posx, obj.posy, obj.dx, obj.dy);
if (!obj.nf) {
ctx.fill();
}
if (!obj.nl) {
ctx.stroke();
}
};
function drawCirc(obj, incoming) {
var cnvobj = getCanvas(incoming)
canvas = cnvobj.cnv,
ctx = cnvobj.ctx;
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.beginPath();
ctx.arc(obj.posx, obj.posy, obj.rad, 0, Math.PI * 2);
ctx.strokeStyle = obj.linecol;
ctx.lineWidth = obj.lwid;
ctx.fillStyle = obj.fl;
if (!obj.nf) {
ctx.fill();
}
if (!obj.nl) {
ctx.stroke();
}
};
function drawText(obj, incoming) {
var ctx = getCanvas(incoming).ctx;
ctx.font = obj.fnt;
ctx.fillStyle = obj.stl;
ctx.fillText(obj.tx, obj.posx, obj.posy)
};
document.body.addEventListener("touchstart", function(e) {
if (e.target.tagName.toLowerCase() == "canvas") {
e.preventDefault();
}
}, false);
document.body.addEventListener("touchend", function(e) {
if (e.target.tagName.toLowerCase() == "canvas") {
e.preventDefault();
}
}, false);
document.body.addEventListener("touchmove", function(e) {
if (e.target.tagName.toLowerCase() == "canvas") {
e.preventDefault();
}
}, false);