-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
404 lines (346 loc) · 10.9 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
var colorList = [];
var colors = {"colors":[]};
var questions = 0, correct = 0;
var curColor = null;
var colorDiv = null;
var textBox = null;
var answerBox = null;
var constReveals = [' ', '-', '\'']
var revealedLetters = [];
var totalLetters = [];
var textBoxes = [];
var correct = 0, incorrect = 0, lateCorrect = 0;
var guesses = 0, incorrectGuesses = 0, correctGuesses = 0;
var totalQuestions = 0;
var totalLettersRevealed = 0;
var focusDirection = false; // false == backwards, true == forwards
var nextKeys = ["ArrowRight", "Tab"]
var prevKeys = ["ArrowLeft", "Backspace"]
var startTime = null, finalTime = null;
var timerInterval = null;
var baseURL = null;
var barShown = false;
var packs = [];
class LetterBox extends HTMLElement {
constructor() {
super();
this.index = textBoxes.length;
textBoxes.push(this);
this._value = '';
}
static get observedAttributes() {
return ['value'];
}
attributeChangedCallback(name, oldValue, newValue) {
if (name === 'value') {
this._value = newValue;
if (this.inputElement) {
this.inputElement.value = newValue;
}
}
}
FocusLast(){
if(this.index == 0) return;
textBoxes[this.index - 1].inputElement.focus();
focusDirection = false;
}
FocusNext(){
if(this.index >= (textBoxes.length - 1)) return;
textBoxes[this.index + 1].inputElement.focus();
focusDirection = true;
}
OnFocus(){
if(this.inputElement.readOnly){
if(focusDirection)
this.FocusNext();
else
this.FocusLast();
return;
}
// this.inputElement.select();
}
get value() {
return this.inputElement ? this.inputElement.value : this._value;
}
set value(val) {
this.setAttribute('value', val);
}
connectedCallback() {
const input = document.createElement('input');
input.type = 'text';
input.classList.add('letterBox');
input.maxLength = 1;
this.appendChild(input);
this.inputElement = input;
if(this._value){
input.value = this._value;
input.readOnly = true;
}
input.addEventListener('input', (e) => {
this.value = input.value;
if(input.value.length == 1 && this.index != textBoxes.length - 1){
this.FocusNext();
}else if(input.value.length == 0 && this.index != 0){
this.FocusLast()
}
});
input.addEventListener('focus', () => {
this.OnFocus();
});
input.addEventListener('keydown', (e) => {
if(prevKeys.includes(e.key) && this.index != 0){
e.preventDefault()
if(e.key == "Backspace") this.inputElement.value = "";
this.FocusLast();
}else if(nextKeys.includes(e.key) && this.index != textBoxes.length){
e.preventDefault()
this.FocusNext();
}else if(e.key == "Enter"){
Check()
}else if(e.key == "End"){
GiveUp();
}else if(e.key.length == 1){
e.preventDefault()
this.inputElement.value = e.key;
this.FocusNext();
}
});
if(this.index == 0){
focusDirection = true;
this.OnFocus();
this.inputElement.focus();
}
}
};
customElements.define('letter-box', LetterBox);
function FormatTime(diff) {
const minutes = String(Math.floor((diff / (1000 * 60)) % 60)).padStart(2, '0');
const seconds = String(Math.floor((diff / 1000) % 60)).padStart(2, '0');
const milliseconds = String(Math.floor((diff % 1000)/10)).padStart(2, '0');
return `${minutes}:${seconds}:${milliseconds}`;
}
function TimerChange() {
document.getElementById("timerBox").innerHTML = FormatTime(new Date() - startTime);
}
function RevealLetter(){
if(totalLetters.length - revealedLetters.length <= Math.max(2, Math.ceil(totalLetters.length * .33))){
return;
}
let reveal = totalLetters[Randrange(0, totalLetters.length)];
while(revealedLetters.includes(reveal)){
reveal = totalLetters[Randrange(0, totalLetters.length)];
}
revealedLetters.push(reveal);
}
function DrawWord(){
let child = answerBox.lastElementChild;
while (child) {
answerBox.removeChild(child);
child = answerBox.lastElementChild;
}
textBoxes = [];
RevealLetter();
let word = document.createElement('div');
word.classList.add("wordBox");
for (let i = 0; i < curColor.name.length; i++) {
let letter = curColor.name[i]
if(letter.trim() === '' || letter === " "){
answerBox.appendChild(word);
word = document.createElement('div');
word.classList.add("wordBox");
const br = document.createElement('div');
br.classList.add("spacingBox")
answerBox.appendChild(br);
}else{
const box = document.createElement('letter-box');
if(revealedLetters.includes(letter) || constReveals.includes(letter)){
box.value = letter;
box.disabled = true;
}
word.appendChild(box);
}
}
answerBox.appendChild(word);
}
function Randrange(min, max){
return Math.round((Math.random() * (max - 1)) + min)
}
function EndGame(){
let incorrectSlider = document.getElementById("incorrectSlider");
let correctSlider = document.getElementById("correctSlider");
let percent = (correct/totalQuestions) * 100;
let extraTime = FormatTime(totalLettersRevealed * 10000);
let actualTime = FormatTime(new Date() - startTime);
finalTime = FormatTime((new Date() - startTime) + (totalLettersRevealed * 10000));
// document.body.style = `background-image: linear-gradient(.25turn, #000000, #EEEEEE, #000000);`;
clearInterval(timerInterval);
document.getElementById("main").hidden = true;
document.getElementById("done").hidden = false;
document.getElementById("incorrect").innerHTML = `You had ${incorrect} incorrect colors out of ${totalQuestions}`
document.getElementById("correct").innerHTML = `You had ${correct} correct colors out of ${totalQuestions}`
document.getElementById("realTime").innerHTML = `Real time: ${actualTime}`
document.getElementById("penalty").innerHTML = `Penalty: ${extraTime}`
document.getElementById("total").innerHTML = `Total Time: ${finalTime}`
incorrectSlider.max = totalQuestions;
incorrectSlider.value = incorrect;
correctSlider.max = totalQuestions;
correctSlider.value = correct;
}
function HideBar(){
let bar = document.getElementById("topBar");
let but = document.getElementById("topBarBut");
bar.style = barShown ? "height: 0%;" : "height: 6%;";
but.style = barShown ? "transform: rotate(0deg);" : "transform: rotate(90);";
barShown = !barShown;
}
function GenColor(){
const bgCenter = "rgba(0, 0, 0, .3)";
if(colorList.length == (colors.colors.length - totalQuestions)){
GoTo("results");
return;
}
guesses = 0;
curColor = colorList[Randrange(0, colorList.length)]
curColor.name = curColor.name.toLowerCase();
// document.body.style = `background-image: linear-gradient(.25turn, ${curColor.code}, ${bgCenter}, ${bgCenter}, ${curColor.code});`;
document.getElementById("question").style = `background-color: ${curColor.code};`
colorDiv.style.backgroundColor = curColor.code;
revealedLetters = [];
totalLetters = [];
packs = [];
for(let i = 0; i < curColor.name.length; i++){
let char = curColor.name[i];
if(!totalLetters.includes(char) && !constReveals.includes(char)){
totalLetters.push(char);
}
}
colorList = colorList.filter(element => element !== curColor);
DrawWord();
document.getElementById("colorCount").innerHTML = `${colors.colors.length-colorList.length}/${totalQuestions}`
}
function GetJson(pack){
const request = new XMLHttpRequest();
request.open("GET", "/ColorPacks/" + pack, false); // `false` makes the request synchronous
request.send(null);
if (request.status === 200) {
return request.responseText;
}
return null;
}
function GetPacks(){
colors = {"colors":[]};
packs = [];
if(document.getElementById("og").checked){
packs.push("og.json");
}
if(document.getElementById("firstExpansion").checked){
packs.push("firstExpansion.json");
}
for(const pack in packs){
let tmp = JSON.parse(GetJson(packs[pack]));
if(tmp){
for(let i = 0; i < tmp.colors.length; i++){
colors.colors.push(tmp.colors[i]);
}
}
}
}
function OnLoad(){
if(window.location.href.split('#')[1]){
window.location.href = window.location.href.split('#')[0];
}
baseURL = window.location.href.split('#')[0];
colorDiv = document.getElementById("colorBox")
answerBox = document.getElementById("answerBox")
let penaltyPopup = document.getElementById("penaltyPopup");
let penaltyText = document.getElementById("penalty");
penaltyText.addEventListener("mouseenter", function(){
penaltyPopup.classList.add("popupEnabled");
penaltyPopup.classList.remove("popupDisabled");
});
penaltyText.addEventListener("mouseleave", function(){
penaltyPopup.classList.remove("popupEnabled");
penaltyPopup.classList.add("popupDisabled");
});
GoTo("home");
}
function GoTo(hash){
window.location.href = baseURL + '#' + hash;
}
function Start(){
GetPacks();
colorList = colors.colors;
correct = 0;
incorrect = 0;
lateCorrect = 0;
totalLettersRevealed = 0;
totalQuestions = colors.colors.length;
GenColor()
document.getElementById("home").hidden = true;
document.getElementById("main").hidden = false;
startTime = new Date();
timerInterval = setInterval(TimerChange, 10);
}
function ToHome(){
document.getElementById("home").hidden = false;
document.getElementById("done").hidden = true;
}
function ReadBoxes(){
let text = "";
for(let i = 0; i < textBoxes.length; i++){
text += textBoxes[i].inputElement.value;
}
return text;
}
function ButtonCheck(){
CheckAnswer(ReadBoxes());
}
function GiveUp(){
revealedLetters = totalLetters + constReveals;
DrawWord();
guesses = 99999;
}
function Check(){
let text = ReadBoxes();
if(text.length != curColor.name.replace(/\s+/g, '').length){
return;
}
CheckAnswer(text);
}
function CheckAnswer(text){
guesses++;
if(text.toLowerCase() == curColor.name.toLowerCase().replace(/\s+/g, '')){
if(guesses <= 99){
correct++;
correctGuesses++;
if(guesses <= 15) lateCorrect++;
totalLettersRevealed += (revealedLetters.length - 1);
}else{
incorrect++;
incorrectGuesses++;
}
GenColor()
}else{
DrawWord()
}
}
window.addEventListener('hashchange', function (e) {
var hash = window.location.hash;
if(hash === '#results'){
document.getElementById("home").hidden = true;
document.getElementById("done").hidden = false;
document.getElementById("main").hidden = true;
EndGame();
}else if(hash === '#home'){
if(timerInterval) clearInterval(timerInterval);
// ToHome();
document.getElementById("home").hidden = false;
document.getElementById("done").hidden = true;
document.getElementById("main").hidden = true;
}else if(hash === '#game'){
document.getElementById("home").hidden = true;
document.getElementById("done").hidden = true;
document.getElementById("main").hidden = false;
Start();
}
});