-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathletter.js
73 lines (66 loc) · 2.03 KB
/
letter.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
/*:::::::::::: REQUIRE :::::::::*/
var inquirer = require("inquirer");
var wordJS = require("./word.js").word;
/*:::::::::::: GLOBAL VARIABLES :::::::::*/
var wrdCnt = wordJS.count + 5;
var nWrd = [];
var wrWd = [];
var letters = wordJS.letters;
letters = JSON.parse(letters);
for (var i = 0; i < letters.length; i++) {
nWrd.push("_");
}
// get user's name
function getLtr(user) {
// recursive function to go through the game.
if (nWrd.toString() !== letters.toString()) {
if (wrdCnt > 0) {
console.log('::::::: Your Word :::::::');
console.log(letters);
console.log(nWrd);
// runs inquirer and asks the user for a letter which replies are
// stored within the variable letter inside of the .then statement
inquirer.prompt([{
name: "letter",
message: "Hey " + user + " Guess A Letter?"
}]).then(function (letter) {
wrdCnt--;
var leT = letter.letter;
if (leT !== ''){
// send the letter chosen to the game logic function.
gameLgc(leT);
getLtr(user);
} else {
console.log('Silly... Enter A Letter!');
getLtr(user);
}
});
function gameLgc(l) {
// if letter chosen is part of the word.
if (letters.includes(l)) {
//loop through the letter array and grab the index if the letter and push that index into the new word array.
for (var i = 0; i < letters.length; i++) {
if (letters[i] === l) {
console.log("YAY CORRECT!!!");
// push the right word to the new word array.
nWrd[i] = l;
}
}
} else {
//push to the wrong word array
wrWd.push(l);
console.log('::::::: Wrong Hahaha :::::::');
console.log('::::::: Letter Dungeon :::::::');
console.log(wrWd);
}
}
} else {
console.log("YOU DEAD");
}
} else {
console.log("YOU WON");
}}
// export the getLtr function
module.exports = {
getLtr: getLtr
}