-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
98 lines (98 loc) · 3.72 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
//Example script
const words = ["hello", "world", "words"]; //Add custom words as an array
let currentLine = 1;
let won = false;
let currentWord = words[Math.floor(Math.random() * words.length)];
let currentWordArray = currentWord.split("");
const generateNewWord = () => {
currentWord = words[Math.floor(Math.random() * words.length)];
currentWordArray = currentWord.split("");
currentInput = [];
currentLine = 1;
won = false;
for (let line = 1; line < 7; line++) {
for (let column = 0; column < 5; column++) {
const box = document.getElementById(line + "_" + (column + 1));
box.innerHTML = "";
box.setAttribute("class", "");
}
};
};
let currentInput = [];
let keypressed = {};
const processInput = (keyPressed) => {
let key = keyPressed.key.toLowerCase();
if (keyPressed.code == "Backspace") {
currentInput.pop();
addInput();
} else if (keyPressed.code == "Enter") {
enterInput();
revealAnswers();
} else if (currentInput.length < 5) {
checkValidChar(keyPressed);
addInput();
};
};
function addInput() {
if (won == false) {
updateUI(currentLine);
};
};
function checkValidChar(keyPressed) {
let key = keyPressed.code;
if (key == "KeyA" || key == "KeyB" || key == "KeyC" || key == "KeyD" || key == "KeyE" || key == "KeyF" || key == "KeyG" || key == "KeyH" || key == "KeyI" || key == "KeyJ" || key == "KeyK" || key == "KeyL" || key == "KeyM" || key == "KeyN" || key == "KeyO" || key == "KeyP" || key == "KeyQ" || key == "KeyR" || key == "KeyS" || key == "KeyT" || key == "KeyU" || key == "KeyV" || key == "KeyW" || key == "KeyX" || key == "KeyY" || key == "KeyZ") {
currentInput.push(keyPressed.key.toLowerCase());
};
};
function enterInput() {
if (won == true) { return; };
if (currentInput.length == 5 && currentLine != 7) {
checkAnswers(currentLine);
currentLine += 1;
currentInput = [];
} else {
alert("Your word is not long enough!");
};
};
function revealAnswers() {
if (currentLine == 7 && won === false) {
alert("The correct answer was \"" + currentWord + "\"");
};
};
document.addEventListener("keydown", processInput, false);
function updateUI(currentLine) {
for (let clearBox = 1; clearBox < 6; clearBox++) {
let currentClearBox = document.getElementById(currentLine + "_" + clearBox);
currentClearBox.innerHTML = "";
};
for (let box = 1; box < currentInput.length + 1; box++) {
let currentBox = document.getElementById(currentLine + "_" + box);
currentBox.innerHTML = currentInput[box - 1].toUpperCase();
};
};
function checkAnswers(currentLine) {
for (let box = 1; box < 6; box++) {
let currentBox = document.getElementById(currentLine + "_" + box);
currentBox.setAttribute("class", "box-incorrect");
if (currentInput[box - 1] == currentWordArray[box - 1]) {
currentBox.setAttribute("class", "box-correct");
} else {
for (let arrayIndex = 0; arrayIndex < 5; arrayIndex++) {
if (currentInput[box - 1] == currentWordArray[arrayIndex]) {
currentBox.setAttribute("class", "box-yellow");
};
};
};
if (box == 5) {
let box1 = document.getElementById(currentLine + "_1").innerHTML.toLowerCase();
let box2 = document.getElementById(currentLine + "_2").innerHTML.toLowerCase();
let box3 = document.getElementById(currentLine + "_3").innerHTML.toLowerCase();
let box4 = document.getElementById(currentLine + "_4").innerHTML.toLowerCase();
let box5 = document.getElementById(currentLine + "_5").innerHTML.toLowerCase();
if (box1 === currentWordArray[0] && box2 === currentWordArray[1] && box3 === currentWordArray[2] && box4 === currentWordArray[3] && box5 === currentWordArray[4]) {
alert("Correct!");
won = true;
};
};
};
};