-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.js
183 lines (148 loc) · 3.78 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
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
var buttonColors = ["red", "blue", "green", "yellow"];
var gamePattern = [];
var userClickPattern = [];
var level = 0;
var started = false;
$(document).ready(function() {
buttonSlides();
});
$(document).click(function() {
if (!musicOn) {
playMusic();
musicOn = true;
}
if (!started) {
setTimeout(function() {
$("#level-title").text("Level " + level);
$("#heading").text("lick the nebulae - remember the sequence")
nextSequence();
}, 1500);
started = true;
}
});
var musicOn = false;
var gameMusic = new Audio("sounds/nebulaGoat.mp3");
var gameOverMusic = new Audio("sounds/gameOver.mp3");
$(".btn").click(function() {
var userChosenColor = $(this).attr("id");
userClickPattern.push(userChosenColor);
playSound(userChosenColor);
animatePress(userChosenColor);
checkAnswer(userClickPattern.length - 1);
});
function checkAnswer(currentLevel) {
if (level != 0) {
if (gamePattern[currentLevel] === userClickPattern[currentLevel]) {
if (userClickPattern.length === gamePattern.length) {
setTimeout(function() {
nextSequence();
}, 1000);
}
} else {
$("body").addClass("game-over");
$("#level-title").text("YOU DEAD NOW");
$("#heading").text("You have brought shame to your family")
$(".btn").animate({
opacity: '0'
}, 3000);
$("#score").text("Your Comeptence: Level " + level);
stopMusic();
buttonReset();
setTimeout(function() {
gameOverMusic.load();
startOver();
}, 7000);
}
}
}
function nextSequence() {
userClickPattern = [];
level++;
$("#level-title").text("Level " + level);
var randomNumber = Math.round(Math.random() * 3);
var randomChosenColor = buttonColors[randomNumber];
gamePattern.push(randomChosenColor);
buttonAnimation(randomChosenColor);
playSound(randomChosenColor);
}
function startOver() {
$("body").removeClass("game-over");
level = 0;
started = false;
gamePattern = [];
$("#level-title").text("Welcome to Nebula Goat");
$("#heading").text("lick the screen to play again");
buttonSlides();
playMusic();
}
function playSound(name) {
var audio = new Audio("sounds/" + name + ".mp3")
audio.play();
}
function playMusic() {
gameMusic.play();
musicOn == true;
}
function stopMusic() {
gameMusic.pause();
gameOverMusic.play();
}
function buttonAnimation(currentColor) {
$("#" + currentColor).fadeOut(100).fadeIn(100).fadeOut(100).fadeIn(100).fadeOut(100).fadeIn(100);
}
function animatePress(currentColor) {
$("#" + currentColor).fadeOut(50).fadeIn(50).fadeOut(50).fadeIn(50);
$("#" + currentColor).addClass("pressed");
// $("#" + currentColor).effect("shake", {
// times: 4
// }, 1000);
setTimeout(function() {
$("#" + currentColor).removeClass("pressed");
}, 300);
}
function buttonSlides() {
setTimeout(function() {
$("#red").animate({
right: '0',
opacity: '1'
}, "slow");
}, 400);
$("#green").animate({
left: '0',
opacity: '1'
}, "slow");
setTimeout(function() {
$("#blue").animate({
right: '0',
top: '0',
opacity: '1'
}, "slow");
}, 800);
setTimeout(function() {
$("#yellow").animate({
left: '0',
top: '0',
opacity: '1'
}, "slow");
}, 600);
}
function buttonReset() {
$("#red").animate({
right: '0',
opacity: '0'
}, "slow");
$("#green").animate({
left: '0',
opacity: '0'
}, "slow");
$("#blue").animate({
right: '0',
top: '0',
opacity: '0'
}, "slow");
$("#yellow").animate({
left: '0',
top: '0',
opacity: '0'
}, "slow");
}