-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
413 lines (351 loc) · 10.2 KB
/
script.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
let currentColor = '#000000'; // default color
let gridEnabled = true;
//#region TOOLBAR
// modes
const clickBtn = document.querySelector('#click-btn');
const hoverBtn = document.querySelector('#hover-btn');
let isClick = false;
let isHover = false;
clickBtn.addEventListener('click', () => {
clickBtn.classList.toggle('selected');
if (clickBtn.classList.contains('selected')) {
isClick = true;
isHover = false;
hoverBtn.classList.remove('selected');
}
if (!clickBtn.classList.contains('selected')) {
isClick = false;
}
console.log('Click Mode');
enableDrawing(isHover, isClick, gridEnabled);
});
hoverBtn.addEventListener('click', () => {
hoverBtn.classList.toggle('selected');
if (hoverBtn.classList.contains('selected')) {
isHover = true;
isClick = false;
clickBtn.classList.remove('selected');
}
if (!hoverBtn.classList.contains('selected')) {
isHover = false;
}
console.log('Hover Mode');
enableDrawing(isHover, isClick, gridEnabled);
});
// tools
// eraser
let erase = false;
const eraserBtn = document.querySelector('#eraser-btn');
eraserBtn.addEventListener('click', () => {
eraserBtn.classList.toggle('selected');
if (eraserBtn.classList.contains('selected')) {
erase = true;
sketch = false;
darken = false;
lighten = false;
rainbow = false;
sketchBtn.classList.remove('selected');
darkenBtn.classList.remove('selected');
lightenBtn.classList.remove('selected');
rainbowBtn.classList.remove('selected');
}
if (!eraserBtn.classList.contains('selected')) {
erase = false;
}
});
// sketch
let sketch = false;
let shading = 0;
const sketchBtn = document.querySelector('#sketch-btn');
sketchBtn.addEventListener('click', () => {
sketchBtn.classList.toggle('selected');
if (sketchBtn.classList.contains('selected')) {
erase = false;
sketch = true;
darken = false;
lighten = false;
rainbow = false;
eraserBtn.classList.remove('selected');
darkenBtn.classList.remove('selected');
lightenBtn.classList.remove('selected');
rainbowBtn.classList.remove('selected');
}
if (!sketchBtn.classList.contains('selected')) {
sketch = false;
}
});
// darken
let darken = false;
const darkenBtn = document.querySelector('#darken-btn');
darkenBtn.addEventListener('click', () => {
darkenBtn.classList.toggle('selected');
if (darkenBtn.classList.contains('selected')) {
erase = false;
sketch = false;
darken = true;
lighten = false;
rainbow = false;
eraserBtn.classList.remove('selected');
sketchBtn.classList.remove('selected');
lightenBtn.classList.remove('selected');
rainbowBtn.classList.remove('selected');
}
if (!darkenBtn.classList.contains('selected')) {
darken = false;
}
});
// lighten
let lighten = false;
const lightenBtn = document.querySelector('#lighten-btn');
lightenBtn.addEventListener('click', () => {
lightenBtn.classList.toggle('selected');
if (lightenBtn.classList.contains('selected')) {
erase = false;
sketch = false;
darken = false;
lighten = true;
rainbow = false;
eraserBtn.classList.remove('selected');
sketchBtn.classList.remove('selected');
darkenBtn.classList.remove('selected');
rainbowBtn.classList.remove('selected');
}
if (!lightenBtn.classList.contains('selected')) {
lighten = false;
}
});
// rainbow
let rainbow = false;
const rainbowBtn = document.querySelector('#rainbow-btn');
rainbowBtn.addEventListener('click', () => {
rainbowBtn.classList.toggle('selected');
if (rainbowBtn.classList.contains('selected')) {
erase = false;
sketch = false;
darken = false;
lighten = false;
rainbow = true;
eraserBtn.classList.remove('selected');
sketchBtn.classList.remove('selected');
darkenBtn.classList.remove('selected');
lightenBtn.classList.remove('selected');
}
if (!rainbowBtn.classList.contains('selected')) {
rainbow = false;
}
});
// toggle grid
const gridBtn = document.querySelector('#grid-btn');
gridBtn.addEventListener('click', () => {
gridBtn.classList.toggle('selected');
if (gridBtn.classList.contains('selected')) {
gridEnabled = true;
enableDrawing(isHover, isClick, gridEnabled);
}
if (!gridBtn.classList.contains('selected')) {
gridEnabled = false;
enableDrawing(isHover, isClick, gridEnabled);
}
});
// grid size slider
const slider = document.querySelector('.slider');
const gridSizeText = document.querySelector('.grid-size');
gridSizeText.textContent = slider.value + 'x' + slider.value;
slider.addEventListener('input', () => {
gridSizeText.textContent = slider.value + 'x' + slider.value;
});
// color-picker
const colorPicker = document.querySelector('#color-picker');
colorPicker.addEventListener('change', (e) => {
currentColor = e.target.value;
});
// swatches
const swatches = document.querySelectorAll('.swatch');
swatches.forEach((swatch) => {
swatch.addEventListener('click', (e) => {
if (e.altKey) {
e.target.style.backgroundColor = colorPicker.value;
}
});
swatch.addEventListener('click', (e) => {
if (!e.target.style.backgroundColor == '') {
currentColor = e.target.style.backgroundColor;
currentColor = rgbToHex(currentColor);
colorPicker.value = currentColor;
}
});
});
//#endregion
//#region GRID
const gridContainer = document.querySelector('.grid-container');
// initialise default grid
// pixelCount value is from (Num) x Num px, where Num = pixelCount
let pixelCount = 16;
gridContainer.style.gridTemplateColumns = 'repeat(' + pixelCount + ', 1fr)';
for (let i = 0; i < pixelCount * pixelCount; i++) {
const pixelDiv = document.createElement('div');
pixelDiv.classList.add('pixel');
pixelDiv.style.backgroundColor = '#ffffff';
pixelDiv.setAttribute('draggable', false);
pixelDiv.setAttribute('data-shading', 0);
gridContainer.appendChild(pixelDiv);
}
slider.addEventListener('input', () => {
pixelCount = slider.value;
gridContainer.style.gridTemplateColumns = 'repeat(' + pixelCount + ', 1fr)';
while (gridContainer.firstChild) {
gridContainer.removeChild(gridContainer.lastChild);
}
for (let i = 0; i < pixelCount * pixelCount; i++) {
const pixelDiv = document.createElement('div');
pixelDiv.classList.add('pixel');
pixelDiv.style.backgroundColor = '#ffffff';
pixelDiv.setAttribute('draggable', false);
pixelDiv.setAttribute('data-shading', 0);
gridContainer.appendChild(pixelDiv);
}
enableDrawing(isHover, isClick, gridEnabled); // preserve mode
});
// drawing to the grid
function enableDrawing(isHover, isClick, gridEnabled) {
const pixels = document.querySelectorAll('.pixel');
if (gridEnabled == false) {
pixels.forEach((pixel) => {
pixel.style.border = 'none';
});
} else {
pixels.forEach((pixel) => {
pixel.style.border = '1px dotted rgb(245, 245, 245)';
});
}
// hover mode
if (isHover) {
pixels.forEach((pixel) => {
pixel.addEventListener('mouseover', draw);
});
}
// click and drag mode
if (isClick) {
pixels.forEach((pixel) => {
pixel.addEventListener('click', draw);
});
window.addEventListener('mousedown', () => {
pixels.forEach((pixel) => {
pixel.addEventListener('mouseover', draw);
});
});
window.addEventListener('mouseup', () => {
pixels.forEach((pixel) => {
pixel.removeEventListener('mouseover', draw);
});
});
}
// remove all event listeners from pixels if neither are selected
if (!isHover && !isClick) {
pixels.forEach((pixel) => {
pixel.replaceWith(pixel.cloneNode(true));
});
}
}
// main function which draws to pixels
function draw() {
if (sketch) {
if (this.dataset.shading < 0) {
// always keep shade vals for sketch positive
this.setAttribute('data-shading', 0);
}
nextVal = this.dataset.shading; // get current shade val
if (nextVal <= 9) {
nextVal++;
}
this.setAttribute('data-shading', nextVal);
this.style.backgroundColor = darkenColor('rgb(255,255,255)', nextVal);
} else if (erase) {
this.setAttribute('data-shading', 0); // reset shading
this.style.backgroundColor = '#FFFFFF';
} else if (darken) {
nextVal = this.dataset.shading;
if (nextVal <= 9) {
nextVal++;
}
this.setAttribute('data-shading', nextVal);
this.style.backgroundColor = darkenColor(this.style.backgroundColor, nextVal);
} else if (lighten) {
nextVal = this.dataset.shading;
if (nextVal >= -9) {
nextVal--;
}
this.setAttribute('data-shading', nextVal);
this.style.backgroundColor = lightenColor(this.style.backgroundColor, nextVal);
} else if (rainbow) {
this.style.backgroundColor = getRandomColor();
} else this.style.backgroundColor = currentColor;
}
function darkenColor(color, shade) {
color = rgbToHex(color);
colorArray = hexToRGB(color);
if (shade < 0) {
shade = shade * -1; // set shade to positive
}
for (let i = 0; i < colorArray.length; i++) {
if (colorArray[i] > 0) {
if (sketch) {
colorArray[i] = colorArray[i] - shade * 25.5;
} else {
colorArray[i] = colorArray[i] - shade * 5;
}
} else {
colorArray[i] = 0;
}
}
return 'rgb(' + colorArray.toString() + ')';
}
function lightenColor(color, shade) {
color = rgbToHex(color);
colorArray = hexToRGB(color);
if (shade < 0) {
shade = shade * -1; // set shade to positive
}
for (let i = 0; i < colorArray.length; i++) {
if (colorArray[i] < 255) {
colorArray[i] = colorArray[i] + shade * 5;
} else {
colorArray[i] = 255;
}
}
return 'rgb(' + colorArray.toString() + ')';
}
function shadeUp(color, shade) {
return 'rgb(' + hexToRGB(color).toString() + ',' + shade * 0.1 + ')';
}
function getRandomColor() {
let r = randomInteger(255);
let g = randomInteger(255);
let b = randomInteger(255);
return 'rgb(' + r + ',' + g + ',' + b + ')';
}
function randomInteger(max) {
return Math.floor(Math.random() * (max + 1));
}
// thank u stackoverflow :p
function hexToRGB(hex) {
const normal = hex.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i);
if (normal) return normal.slice(1).map((e) => parseInt(e, 16));
const shorthand = hex.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i);
if (shorthand) return shorthand.slice(1).map((e) => 0x11 * parseInt(e, 16));
return null;
}
function rgbToHex(rgb) {
// Choose correct separator
let sep = rgb.indexOf(',') > -1 ? ',' : ' ';
// Turn "rgb(r,g,b)" into [r,g,b]
rgb = rgb.substr(4).split(')')[0].split(sep);
let r = (+rgb[0]).toString(16),
g = (+rgb[1]).toString(16),
b = (+rgb[2]).toString(16);
if (r.length == 1) r = '0' + r;
if (g.length == 1) g = '0' + g;
if (b.length == 1) b = '0' + b;
return '#' + r + g + b;
}
//#endregion