-
Notifications
You must be signed in to change notification settings - Fork 33
/
sketch.js
361 lines (298 loc) · 9.72 KB
/
sketch.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
// Coding Challenge 121: Logo
// https://youtu.be/i-k04yzfMpw
let canvas;
let editor;
let editor_bg;
let turtle;
let recentreBtn;
let bgcolorBtn;
let draggingCanvas = false;
let dragStartMousePos = new p5.Vector();
let dragStartCanvasOffset = new p5.Vector();
let allCases;
let bgcolor = "#6040e6";
let resizingEditor = false;
// Used for scaling drawings to fit the canvas
let canvasScrollX = 0;
let canvasScrollY = 0;
let canvasScaleX = 1;
let canvasScaleY = 1;
let drawingBounds = new BoundingBox();
let drawingBoundsFirstPoint = true;
let centerAnimation = null;
let primary_keywords = ['fd', 'bd', 'rt', 'lt'];
let secondary_keywords = ['color', 'colorrgb', 'pensize', 'repeat', 'pu', 'pd'];
function syntaxHighlight(code) {
let tokens = code.split(/(\[\s*\d+\s+\d+\s+\d+\s*\])|(\[)|(\])|(\s+)/).filter(x => (x !== undefined && x != ''));
let newHTML = '';
for (i of tokens) {
if (primary_keywords.includes(i)) { // #f48771
newHTML += `<strong><span style="color: #be5046">${i}</span></strong>`;
}
else if (secondary_keywords.includes(i)) {
newHTML += `<span style="color: #15c1c1">${i}</span>`;
}
else if (['[', ']'].includes(i)) {
newHTML += `<span style="color: #ffffff">${i}</span>`;
}
else if (/#[a-zA-z0-9]/.test(i) || /\[\s*\d+\s+\d+\s+\d+\s*\]/.test(i)) {
newHTML += `<em><span style="color: #c678dd">${i}</span></em>`;
}
else if (parseInt(i) !== NaN) {
newHTML += `<span style="color: #f5be4a">${i}</span>`;
}
else {
newHTML += `<span style="color: #cccccc">${i}</span>`;
}
}
return newHTML;
}
function showError(start,end)
{
let text = editor.value();
start = (start > 0) ? start + 1 : start;
end = (start < text.length) ? end - 1 : end;
let beforeErr= text.substring(0,start);
let afterErr = text.substring(end);
let err = text.substring(start,end);
let bg_text = `${syntaxHighlight(beforeErr)}<mark>${err}</mark>${syntaxHighlight(afterErr)}`;
editor_bg.html(bg_text);
}
/*
* Returns a function that waits for `delay` milliseconds and if it had not been called again, invokes `func`
* If it _is_ called again within `delay` milliseconds, `func` is *not* invoked (yet) and the timer is reset.
*/
function debounce(func, delay) {
let timeout;
return () => {
clearTimeout(timeout);
timeout = setTimeout(() => {
func();
timeout = null;
}, delay);
}
}
function canvasResized() {
scaleToFitBoundingBox(drawingBounds, true);
}
const debouncedCanvasResized = debounce(canvasResized, 300);
function preload() {
loadJSON("./assets/tests.json", createTestDataView);
}
function getCanvasSize() {
const bounds = select("#logo-canvas").elt.getBoundingClientRect();
return { width: bounds.width, height: bounds.height };
}
function updateEditorOverlayMargin() {
const editorBounds = select('#editor-container').elt.getBoundingClientRect();
editor_bg.elt.style.right = `${editorBounds.width - editor.elt.scrollWidth - 3}px`;
}
function windowResized() {
const canvasSize = getCanvasSize();
resizeCanvas(canvasSize.width, canvasSize.height);
updateResizeHandlePosition();
debouncedCanvasResized();
goTurtle();
updateEditorOverlayMargin();
}
function setup() {
const canvasSize = getCanvasSize();
canvas = createCanvas(canvasSize.width, canvasSize.height);
div = document.querySelector("#logo-canvas");
div.appendChild(canvas.elt);
// Use a setTimeout with length 0 to call windowResized immediately after the DOM has updated (since we are dynamically injecting a canvas element)
setTimeout(() => {
windowResized();
scaleToFitBoundingBox(drawingBounds);
}, 0);
angleMode(DEGREES);
background(bgcolor);
canvas.mousePressed(function () {
if (mouseIsPressed) {
draggingCanvas = true;
dragStartMousePos = new p5.Vector(mouseX, mouseY);
dragStartCanvasOffset = new p5.Vector(canvasScrollX, canvasScrollY);
}
});
canvas.mouseMoved(function () {
if (mouseIsPressed && draggingCanvas) {
canvasScrollX = dragStartCanvasOffset.x + dragStartMousePos.x - mouseX;
canvasScrollY = dragStartCanvasOffset.y + dragStartMousePos.y - mouseY;
goTurtle();
}
});
canvas.mouseReleased(function () {
draggingCanvas = false;
});
recentreBtn = document.querySelector("#recentre");
bgcolorBtn = document.querySelector("#bgcolor");
recentreBtn.onclick = function () {
scaleToFitBoundingBox(drawingBounds, true);
}
bgcolorBtn.onclick = function () {
let r = floor(random(0, 255));
let g = floor(random(0, 255));
let b = floor(random(0, 255));
let hexR = `${r <= 15 ? '0' : ''}${r.toString(16)}`;
let hexG = `${g <= 15 ? '0' : ''}${g.toString(16)}`;
let hexB = `${b <= 15 ? '0' : ''}${b.toString(16)}`;
let col = `#${hexR}${hexG}${hexB}`;
bgcolor = col;
goTurtle();
}
editor = select("#code");
setDefaultDrawing();
editor.input(() => {
updateEditorContent();
goTurtle();
});
editor_bg = select("#code_bg");
scaleToFitBoundingBox(drawingBounds); // This also redraws (it has to in order to measure the size of the drawing)
updateEditorContent();
editor.elt.addEventListener('scroll', ev => {
select('#code_bg').elt.scrollTop = editor.elt.scrollTop;
}, { passive: true }); // The 'passive: true' parameter increases performance when scrolling by making it impossible to cancel the scroll events
}
function scaleToFitBoundingBox(boundingBox, animate = false) {
// If it's already animating, wait for it to finish
if (centerAnimation !== null) return;
// Run this once first so we can measure the size of the drawing
goTurtle();
// 15% padding around the drawing in the canvas
let drawingPadding = Math.min(width, height) * 0.15;
let scale = Math.min((width - drawingPadding) / (boundingBox.width), (height - drawingPadding) / (boundingBox.height));
centerAnimation = new Animation(
{ // Starting values
scaleX: canvasScaleX,
scaleY: canvasScaleY,
scrollX: canvasScrollX,
scrollY: canvasScrollY
},
{ // Ending values
scaleX: scale,
scaleY: scale,
scrollX: (drawingBounds.x * scale - width * .5),
scrollY: (drawingBounds.y * scale - height * .5)
},
500, // Duration
values => { // Update callback
canvasScaleX = values.scaleX;
canvasScaleY = values.scaleY;
canvasScrollX = values.scrollX;
canvasScrollY = values.scrollY;
goTurtle();
},
() => { // Finished callback
centerAnimation = null;
},
'EASE_IN_OUT_QUART' // Easing function
);
if (!animate)
centerAnimation.skip();
}
function afterCommandExecuted() {
if (turtle.pen) {
if (drawingBoundsFirstPoint) {
drawingBounds.reset();
drawingBounds.move(turtle.x, turtle.y);
drawingBoundsFirstPoint = false;
} else {
drawingBounds.includePoint(turtle.x, turtle.y);
drawingBounds.includePoint(turtle.prevX, turtle.prevY);
}
}
}
function goTurtle() {
turtle = new Turtle(0, 0, 0);
drawingBoundsFirstPoint = true;
background(bgcolor);
push();
translate(-canvasScrollX, -canvasScrollY);
scale(canvasScaleX, canvasScaleY);
push();
turtle.reset();
let code = editor.value();
let parser = new Parser(code, afterCommandExecuted);
try {
let commands = parser.parse();
for (let cmd of commands) {
cmd.execute();
}
} catch (err) {
showError(err.startIndex,err.endIndex);
}
pop();
pop();
}
/**
* Writes the Logo code for the default drawing to the textarea
* Called on page load
* Also called when selecting the default item from the #testdata dropdown
*/
function setDefaultDrawing() {
editor.value("pu lt 90 fd 100 lt 90 fd 250 rt 90 rt 90 pd fd 500 rt 90 fd 150 rt 90 fd 500 rt 90 fd 150");
}
function createTestDataView(cases) {
let selector = select("#testdata");
selector.option("Logo Default", -1);
for (i = 0; i < cases.length; i++) {
selector.option(cases[i].name, i);
}
// because why not do it here
selector.changed(function () {
let val = parseInt(selector.value());
if (val < 0) {
// Use the default drawing
setDefaultDrawing();
} else {
// Use a drawing from tests.json
editor.value(cases[val].code);
}
// Reset default parameters for turtle
turtle.strokeColor = 255;
turtle.dir = 0;
turtle.x = 0;
turtle.y = 0;
// Reset default parameters for camera
canvasScrollX = 0;
canvasScrollY = 0;
canvasScaleX = 1;
canvasScaleY = 1;
// Move and scale the drawing to fit on-screen
scaleToFitBoundingBox(drawingBounds);
updateEditorOverlayMargin();
updateEditorContent();
});
}
function updateResizeHandlePosition() {
const resizeHandle = select('#resize-handle').elt;
const editorBounds = select('#editor-container').elt.getBoundingClientRect();
resizeHandle.style.top = `${editorBounds.top - 8}px`;
resizeHandle.style.width = `${editorBounds.width}px`;
}
function updateEditorSize(mouseY) {
const resizeHandleBounds = select('#resize-handle').elt.getBoundingClientRect();
const editorBounds = select('#editor-container').elt.getBoundingClientRect();
select('#editor-container').elt.style.height = `${editorBounds.bottom - mouseY - 8}px`;
windowResized();
updateResizeHandlePosition();
}
function updateEditorContent() {
editor_bg.html(syntaxHighlight(editor.value()));
}
function resizeHandleMouseDown(ev) {
resizingEditor = true;
ev.preventDefault();
return false;
}
function windowMouseMove(ev) {
if (resizingEditor)
updateEditorSize(ev.clientY);
}
function windowMouseUp() {
resizingEditor = false;
updateResizeHandlePosition();
}
document.getElementById('resize-handle').addEventListener('mousedown', resizeHandleMouseDown);
document.addEventListener('mousemove', windowMouseMove);
document.addEventListener('mouseup', windowMouseUp);