-
-
Notifications
You must be signed in to change notification settings - Fork 484
Expand file tree
/
Copy pathboard.js
More file actions
497 lines (437 loc) · 14.6 KB
/
Copy pathboard.js
File metadata and controls
497 lines (437 loc) · 14.6 KB
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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
/**
* WHITEBOPHIR
*********************************************************
* @licstart The following is the entire license notice for the
* JavaScript code in this page.
*
* Copyright (C) 2013 Ophir LOJKINE
*
*
* The JavaScript code in this page is free software: you can
* redistribute it and/or modify it under the terms of the GNU
* General Public License (GNU GPL) as published by the Free Software
* Foundation, either version 3 of the License, or (at your option)
* any later version. The code is distributed WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
*
* As additional permission under GNU GPL version 3 section 7, you
* may distribute non-source (e.g., minimized or compacted) forms of
* that code without the copy of the GNU GPL normally required by
* section 4, provided you include this license notice and a URL
* through which recipients can access the Corresponding Source.
*
* @licend
*/
var Tools = {};
Tools.board = document.getElementById("board");
Tools.svg = document.getElementById("canvas");
Tools.socket = io.connect('', {
"reconnectionDelay": 100, //Make the xhr connections as fast as possible
"timeout": 1000 * 60 * 20 // Timeout after 20 minutes
});
Tools.curTool = null;
Tools.boardName = (function () {
var path = window.location.pathname.split("/");
return path[path.length - 1];
})();
//Get the board as soon as the page is loaded
Tools.socket.emit("getboard", Tools.boardName);
Tools.HTML = {
template: new Minitpl("#tools > .tool"),
addTool: function (toolName, toolIcon, toolShortcut) {
var callback = function () {
Tools.change(toolName);
};
window.addEventListener("keydown", function (e) {
if (e.key === toolShortcut && !e.target.matches("input[type=text], textarea")) {
Tools.change(toolName);
document.activeElement.blur();
}
});
return this.template.add(function (elem) {
elem.addEventListener("click", callback);
elem.id = "toolID-" + toolName;
elem.getElementsByClassName("tool-name")[0].textContent = Tools.i18n.t(toolName);
elem.getElementsByClassName("tool-icon")[0].textContent = toolIcon;
elem.title =
Tools.i18n.t(toolName) + " (" +
Tools.i18n.t("keyboard shortcut") + ": " +
toolShortcut + ")";
});
},
changeTool: function (oldToolName, newToolName) {
var oldTool = document.getElementById("toolID-" + oldToolName);
var newTool = document.getElementById("toolID-" + newToolName);
if (oldTool) oldTool.classList.remove("curTool");
if (newTool) newTool.classList.add("curTool");
},
addStylesheet: function (href) {
//Adds a css stylesheet to the html or svg document
var link = document.createElement("link");
link.href = href;
link.rel = "stylesheet";
link.type = "text/css";
document.head.appendChild(link);
}
};
Tools.list = {}; // An array of all known tools. {"toolName" : {toolObject}}
Tools.add = function (newTool) {
if (newTool.name in Tools.list) {
console.log("Tools.add: The tool '" + newTool.name + "' is already" +
"in the list. Updating it...");
}
//Format the new tool correctly
Tools.applyHooks(Tools.toolHooks, newTool);
//Add the tool to the list
Tools.list[newTool.name] = newTool;
if (newTool.stylesheet) {
Tools.HTML.addStylesheet(newTool.stylesheet);
}
//Add the tool to the GUI
Tools.HTML.addTool(newTool.name, newTool.icon, newTool.shortcut);
//There may be pending messages for the tool
var pending = Tools.pendingMessages[newTool.name];
if (pending) {
console.log("Drawing pending messages for '%s'.", newTool.name);
var msg;
while (msg = pending.shift()) {
//Transmit the message to the tool (precising that it comes from the network)
newTool.draw(msg, false);
}
}
};
Tools.change = function (toolName) {
if (!(toolName in Tools.list)) {
throw new Error("Trying to select a tool that has never been added!");
}
var newtool = Tools.list[toolName];
//Update the GUI
var curToolName = (Tools.curTool) ? Tools.curTool.name : "";
try {
Tools.HTML.changeTool(curToolName, toolName);
} catch (e) {
console.error("Unable to update the GUI with the new tool. " + e);
}
Tools.svg.style.cursor = newtool.mouseCursor || "auto";
Tools.board.title = Tools.i18n.t(newtool.helpText || "");
//There is not necessarily already a curTool
if (Tools.curTool !== null) {
//It's useless to do anything if the new tool is already selected
if (newtool === Tools.curTool) return;
//Remove the old event listeners
for (var event in Tools.curTool.compiledListeners) {
var listener = Tools.curTool.compiledListeners[event];
Tools.board.removeEventListener(event, listener);
}
//Call the callbacks of the old tool
Tools.curTool.onquit(newtool);
}
//Add the new event listeners
for (var event in newtool.compiledListeners) {
var listener = newtool.compiledListeners[event];
Tools.board.addEventListener(event, listener, { 'passive': false });
}
//Call the start callback of the new tool
newtool.onstart(Tools.curTool);
Tools.prevToolName = curToolName;
Tools.curTool = newtool;
};
Tools.send = function (data, toolName) {
toolName = toolName || Tools.curTool.name;
var d = data;
d.tool = toolName;
Tools.applyHooks(Tools.messageHooks, d);
var message = {
"board": Tools.boardName,
"data": d
}
Tools.socket.emit('broadcast', message);
};
Tools.drawAndSend = function (data) {
Tools.curTool.draw(data, true);
Tools.send(data);
};
//Object containing the messages that have been received before the corresponding tool
//is loaded. keys : the name of the tool, values : array of messages for this tool
Tools.pendingMessages = {};
// Send a message to the corresponding tool
function messageForTool(message) {
var name = message.tool,
tool = Tools.list[name];
if (tool) {
Tools.applyHooks(Tools.messageHooks, message);
tool.draw(message, false);
} else {
///We received a message destinated to a tool that we don't have
//So we add it to the pending messages
if (!Tools.pendingMessages[name]) Tools.pendingMessages[name] = [message];
else Tools.pendingMessages[name].push(message);
}
}
// Apply the function to all arguments by batches
function batchCall(fn, args) {
var BATCH_SIZE = 1024;
if (args.length === 0) {
return Promise.resolve();
} else {
var batch = args.slice(0, BATCH_SIZE);
var rest = args.slice(BATCH_SIZE);
return Promise.all(batch.map(fn))
.then(function () {
return new Promise(requestAnimationFrame);
}).then(batchCall.bind(null, fn, rest));
}
}
// Call messageForTool recursively on the message and its children
function handleMessage(message) {
//Check if the message is in the expected format
if (!message.tool && !message._children) {
console.error("Received a badly formatted message (no tool). ", message);
}
if (message.tool) messageForTool(message);
if (message._children) return batchCall(handleMessage, message._children);
else return Promise.resolve();
}
//Receive draw instructions from the server
Tools.socket.on("broadcast", function (msg) {
handleMessage(msg).finally(function afterload() {
var loadingEl = document.getElementById("loadingMessage");
loadingEl.classList.add("hidden");
});
});
Tools.socket.on("reconnect", function onReconnection() {
Tools.socket.emit('joinboard', Tools.boardName);
});
Tools.unreadMessagesCount = 0;
Tools.newUnreadMessage = function () {
Tools.unreadMessagesCount++;
updateDocumentTitle();
};
window.addEventListener("focus", function () {
Tools.unreadMessagesCount = 0;
updateDocumentTitle();
});
function updateDocumentTitle() {
document.title =
(Tools.unreadMessagesCount ? '(' + Tools.unreadMessagesCount + ') ' : '') +
Tools.boardName +
" | WBO";
}
(function () {
// Scroll and hash handling
var scrollTimeout, lastStateUpdate = Date.now();
window.addEventListener("scroll", function onScroll() {
var x = window.scrollX / Tools.getScale(),
y = window.scrollY / Tools.getScale();
clearTimeout(scrollTimeout);
scrollTimeout = setTimeout(function updateHistory() {
var hash = '#' + (x | 0) + ',' + (y | 0) + ',' + Tools.getScale().toFixed(1);
if (Date.now() - lastStateUpdate > 5000 && hash != window.location.hash) {
window.history.pushState({}, "", hash);
lastStateUpdate = Date.now();
} else {
window.history.replaceState({}, "", hash);
}
}, 100);
});
function setScrollFromHash() {
var coords = window.location.hash.slice(1).split(',');
var x = coords[0] | 0;
var y = coords[1] | 0;
var scale = parseFloat(coords[2]);
resizeCanvas({ x: x, y: y });
Tools.setScale(scale);
window.scrollTo(x * scale, y * scale);
}
window.addEventListener("hashchange", setScrollFromHash, false);
window.addEventListener("popstate", setScrollFromHash, false);
window.addEventListener("DOMContentLoaded", setScrollFromHash, false);
})();
//List of hook functions that will be applied to messages before sending or drawing them
function resizeCanvas(m) {
//Enlarge the canvas whenever something is drawn near its border
var x = m.x | 0, y = m.y | 0
var MAX_BOARD_SIZE = 65536; // Maximum value for any x or y on the board
if (x > Tools.svg.width.baseVal.value - 2000) {
Tools.svg.width.baseVal.value = Math.min(x + 2000, MAX_BOARD_SIZE);
}
if (y > Tools.svg.height.baseVal.value - 2000) {
Tools.svg.height.baseVal.value = Math.min(y + 2000, MAX_BOARD_SIZE);
}
}
function updateUnreadCount(m) {
if (document.hidden && ["child", "update"].indexOf(m.type) === -1) {
Tools.newUnreadMessage();
}
}
Tools.messageHooks = [resizeCanvas, updateUnreadCount];
Tools.scale = 1.0;
var scaleTimeout = null;
Tools.setScale = function setScale(scale) {
if (isNaN(scale)) scale = 1;
scale = Math.max(0.1, Math.min(10, scale));
Tools.svg.style.willChange = 'transform';
Tools.svg.style.transform = 'scale(' + scale + ')';
clearTimeout(scaleTimeout);
scaleTimeout = setTimeout(function () {
Tools.svg.style.willChange = 'auto';
}, 1000);
Tools.scale = scale;
return scale;
}
Tools.getScale = function getScale() {
return Tools.scale;
}
//List of hook functions that will be applied to tools before adding them
Tools.toolHooks = [
function checkToolAttributes(tool) {
if (typeof (tool.name) !== "string") throw "A tool must have a name";
if (typeof (tool.listeners) !== "object") {
tool.listeners = {};
}
if (typeof (tool.onstart) !== "function") {
tool.onstart = function () { };
}
if (typeof (tool.onquit) !== "function") {
tool.onquit = function () { };
}
},
function compileListeners(tool) {
//compile listeners into compiledListeners
var listeners = tool.listeners;
//A tool may provide precompiled listeners
var compiled = tool.compiledListeners || {};
tool.compiledListeners = compiled;
function compile(listener) { //closure
return (function listen(evt) {
var x = evt.pageX / Tools.getScale(),
y = evt.pageY / Tools.getScale();
return listener(x, y, evt, false);
});
}
function compileTouch(listener) { //closure
return (function touchListen(evt) {
//Currently, we don't handle multitouch
if (evt.changedTouches.length === 1) {
//evt.preventDefault();
var touch = evt.changedTouches[0];
var x = touch.pageX / Tools.getScale(),
y = touch.pageY / Tools.getScale();
return listener(x, y, evt, true);
}
return true;
});
}
if (listeners.press) {
compiled["mousedown"] = compile(listeners.press);
compiled["touchstart"] = compileTouch(listeners.press);
}
if (listeners.move) {
compiled["mousemove"] = compile(listeners.move);
compiled["touchmove"] = compileTouch(listeners.move);
}
if (listeners.release) {
var release = compile(listeners.release),
releaseTouch = compileTouch(listeners.release);
compiled["mouseup"] = release;
compiled["mouseleave"] = release;
compiled["touchleave"] = releaseTouch;
compiled["touchend"] = releaseTouch;
compiled["touchcancel"] = releaseTouch;
}
}
];
Tools.applyHooks = function (hooks, object) {
//Apply every hooks on the object
hooks.forEach(function (hook) {
hook(object);
});
};
// Utility functions
Tools.generateUID = function (prefix, suffix) {
var uid = Date.now().toString(36); //Create the uids in chronological order
uid += (Math.round(Math.random() * 36)).toString(36); //Add a random character at the end
if (prefix) uid = prefix + uid;
if (suffix) uid = uid + suffix;
return uid;
};
Tools.createSVGElement = function (name) {
return document.createElementNS(Tools.svg.namespaceURI, name);
};
Tools.positionElement = function (elem, x, y) {
elem.style.top = y + "px";
elem.style.left = x + "px";
};
Tools.getColor = (function color() {
var chooser = document.getElementById("chooseColor");
// Init with a random color
var clrs = ["#001f3f", "#0074D9", "#7FDBFF", "#39CCCC", "#3D9970",
"#2ECC40", "#01FF70", "#FFDC00", "#FF851B", "#FF4136",
"#85144b", "#F012BE", "#B10DC9", "#111111", "#AAAAAA"];
chooser.value = clrs[Math.random() * clrs.length | 0];
return function () { return chooser.value; };
})();
Tools.getSize = (function size() {
var chooser = document.getElementById("chooseSize");
var sizeIndicator = document.getElementById("sizeIndicator");
function update() {
chooser.value = Math.max(1, Math.min(50, chooser.value | 0));
sizeIndicator.r.baseVal.value = chooser.value;
}
update();
chooser.onchange = chooser.oninput = update;
return function () { return chooser.value; };
})();
Tools.getOpacity = (function opacity() {
var chooser = document.getElementById("chooseOpacity");
var opacityIndicator = document.getElementById("opacityIndicator");
function update() {
opacityIndicator.setAttribute("opacity", chooser.value);
}
update();
chooser.onchange = chooser.oninput = update;
return function () {
return Math.max(0.1, Math.min(1, chooser.value));
};
})();
Tools.i18n = (function i18n() {
var translations = JSON.parse(document.getElementById("translations").text);
return {
"t": function translate(s) {
return translations[s] || s;
}
};
})();
//Scale the canvas on load
Tools.svg.width.baseVal.value = document.body.clientWidth;
Tools.svg.height.baseVal.value = document.body.clientHeight;
/*********** Polyfills ***********/
if (!window.performance || !window.performance.now) {
window.performance = {
"now": Date.now
}
}
if (!Math.hypot) {
Math.hypot = function (x, y) {
//The true Math.hypot accepts any number of parameters
return Math.sqrt(x * x + y * y);
}
}
/**
What does a "tool" object look like?
newtool = {
"name" : "SuperTool",
"listeners" : {
"press" : function(x,y,evt){...},
"move" : function(x,y,evt){...},
"release" : function(x,y,evt){...},
},
"draw" : function(data, isLocal){
//Print the data on Tools.svg
},
"onstart" : function(oldTool){...},
"onquit" : function(newTool){...},
"stylesheet" : "style.css",
}
*/