-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.js
81 lines (72 loc) · 2.06 KB
/
game.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
let buttonColors = ['red', 'blue', 'green', 'yellow'];
let userClickedPattern = [];
let gamePattern = [];
let gameon = false;
let level = 0;
//this function makes sound
function soundMaker(chosenColor) {
let audio = new Audio(`sounds/${chosenColor}.mp3`);
audio.play();
}
//makes the button flash
function blink(chosenColor) {
$(`.${chosenColor}`).fadeOut(100).fadeIn(100);
soundMaker(chosenColor);
}
//animates the button clicks
function animatePress(currentColor) {
$(`#${currentColor}`).addClass('pressed');
setTimeout(() => {
$(`#${currentColor}`).removeClass('pressed');
}, 100)
}
//produces the next Sequence of Pattern
function nextSequence() {
userClickedPattern = [];
level++;
$('h1').text(`Level ${level}`);
let randomNumber = Math.floor(Math.random() * 4);
let randomChosenColor = buttonColors[randomNumber];
gamePattern.push(randomChosenColor);
blink(randomChosenColor);
}
//event listener for starting keypress
$(document).on('keypress', () => {
if (!gameon){
gameon = true;
$('h1').text(`Level ${level}`);
nextSequence();
}
})
//gameOver function initialises the vairables
function gameOver(){
gameon = false;
gamePattern = [];
level = 0;
}
//matches the user answer with the game Pattern
function checkAnswer(currentLevel) {
if(userClickedPattern[currentLevel] === gamePattern[currentLevel]){
if(gamePattern.length === userClickedPattern.length){
setTimeout(() => {
nextSequence();
}, 1000);
}
}else{
soundMaker("wrong");
$("body").addClass("game-over");
$("#level-title").text("Game Over, Press Any Key to Restart");
setTimeout(() => {
$("body").removeClass('game-over');
}, 200);
gameOver();
}
}
//event listener for button clicks
$('.btn').on('click', (event) => {
let userChosenColor = $(event.target).attr('id');
userClickedPattern.push(userChosenColor);
animatePress(userChosenColor);
soundMaker(userChosenColor);
checkAnswer(userClickedPattern.length-1);
});