-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.pack.js
281 lines (243 loc) · 9.79 KB
/
index.pack.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
const width = 28
const grid = document.querySelector('.grid')
const scoreDisplay = document.getElementById('score')
let squares = []
let score = 0
// 0 - pacdots
// 1 - wall
// 2 - ghost lair
// 3 - powerpellets
// 4 - empty
const layout = [
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1,
1,3,1,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,0,1,1,1,1,3,1,
1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,
1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,
1,1,1,1,1,1,0,1,1,4,4,4,4,4,4,4,4,4,4,1,1,0,1,1,1,1,1,1,
1,1,1,1,1,1,0,1,1,4,1,1,1,2,2,1,1,1,4,1,1,0,1,1,1,1,1,1,
1,1,1,1,1,1,0,1,1,4,1,2,2,2,2,2,2,1,4,1,1,0,1,1,1,1,1,1,
4,4,4,4,4,4,0,0,0,4,1,2,2,2,2,2,2,1,4,0,0,0,4,4,4,4,4,4,
1,1,1,1,1,1,0,1,1,4,1,2,2,2,2,2,2,1,4,1,1,0,1,1,1,1,1,1,
1,1,1,1,1,1,0,1,1,4,1,1,1,1,1,1,1,1,4,1,1,0,1,1,1,1,1,1,
1,1,1,1,1,1,0,1,1,4,1,1,1,1,1,1,1,1,4,1,1,0,1,1,1,1,1,1,
1,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,1,
1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1,
1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,0,1,1,1,1,0,1,
1,3,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3,1,
1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,0,1,1,0,1,1,1,
1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,0,1,1,0,1,1,1,
1,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,1,
1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,
1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
]
//create board
function createBoard() {
//for loop
for (let i = 0; i < layout.length; i++) {
//create a square
const square = document.createElement('div')
//put square in grid
grid.appendChild(square)
//put square in squares array
squares.push(square)
if (layout[i] === 0) {
squares[i].classList.add('pac-dot')
} else if (layout[i] === 1) {
squares[i].classList.add('wall')
} else if (layout[i] === 2) {
squares[i].classList.add('ghost-lair')
} else if (layout[i] === 3) {
squares[i].classList.add('power-pellet')
}
}
}
createBoard()
// down - 40
// up key - 38
// left - 37
// right - 39
//starting position of pacman
let pacmanCurrentIndex = 490
squares[pacmanCurrentIndex].classList.add('pacman', "pacmanRight")
const pacMouthSize = (squares[0].offsetWidth)/2.5
// style the pac man mouth, once sizing is calculated
document.addEventListener("DOMContentLoaded", function(event) {
squares[pacmanCurrentIndex].style.border = `${pacMouthSize}px solid rgb(252, 234, 63)`;
});
function control(e) {
squares[pacmanCurrentIndex].classList.remove('pacman', "pacmanTop", "pacmanBottom", "pacmanRight", "pacmanLeft")
squares[pacmanCurrentIndex].style.border = "0";
switch(e.keyCode) {
case 40:
console.log('pressed down')
if (
!squares[pacmanCurrentIndex + width].classList.contains('wall') &&
!squares[pacmanCurrentIndex + width].classList.contains('ghost-lair') &&
pacmanCurrentIndex + width < width * width
)
pacmanCurrentIndex += width
squares[pacmanCurrentIndex].classList.add('pacmanBottom')
break
case 38:
console.log('pressed up')
if (
!squares[pacmanCurrentIndex - width].classList.contains('wall') &&
!squares[pacmanCurrentIndex - width].classList.contains('ghost-lair') &&
pacmanCurrentIndex - width >=0
)
pacmanCurrentIndex -= width
squares[pacmanCurrentIndex].classList.add('pacmanTop')
break
case 37:
console.log('pressed left')
if(
!squares[pacmanCurrentIndex -1].classList.contains('wall') &&
!squares[pacmanCurrentIndex -1].classList.contains('ghost-lair') &&
pacmanCurrentIndex % width !==0
)
pacmanCurrentIndex -=1
if (pacmanCurrentIndex === 364) {
pacmanCurrentIndex = 391
}
squares[pacmanCurrentIndex].classList.add('pacmanLeft')
break
case 39:
console.log('pressed right')
if(
!squares[pacmanCurrentIndex +1].classList.contains('wall') &&
!squares[pacmanCurrentIndex +1].classList.contains('ghost-lair') &&
pacmanCurrentIndex % width < width -1
)
pacmanCurrentIndex +=1
if (pacmanCurrentIndex === 391) {
pacmanCurrentIndex = 364
}
squares[pacmanCurrentIndex].classList.add('pacmanRight')
break
}
squares[pacmanCurrentIndex].style.border = `${pacMouthSize}px solid rgb(252, 234, 63)`;
squares[pacmanCurrentIndex].classList.add('pacman')
pacDotEaten()
powerPelletEaten()
checkForWin()
checkForGameOver()
}
document.addEventListener('keyup', control)
function pacDotEaten() {
if (squares[pacmanCurrentIndex].classList.contains('pac-dot')) {
squares[pacmanCurrentIndex].classList.remove('pac-dot')
score++
scoreDisplay.innerHTML = score
}
}
function powerPelletEaten() {
//if square pacman is in contains a power pellet
if (squares[pacmanCurrentIndex].classList.contains("power-pellet")){
//remove class of power-pellet from square
squares[pacmanCurrentIndex].classList.remove("power-pellet")
//add a score of 10
score +=10
//change each of the four ghosts to isScared
ghosts.forEach(ghost => ghost.isScared = true)
//use setTimeout to unscare ghosts after 10 seconds
setTimeout(unScareGhosts, 10000)
}
}
function unScareGhosts() {
ghosts.forEach(ghost => ghost.isScared = false)
}
class Ghost {
constructor(className, startIndex, speed) {
this.className = className
this.startIndex = startIndex
this.speed = speed
this.currentIndex = startIndex
this.isScared = false
this.timerId = NaN
}
}
const ghosts = [
new Ghost('blinky', 348, 250),
new Ghost('pinky', 376, 400),
new Ghost('inky', 351, 300),
new Ghost('clyde', 379, 500)
]
//draw my ghosts onto my grid
ghosts.forEach(ghost => {
squares[ghost.currentIndex].classList.add(ghost.className)
squares[ghost.currentIndex].classList.add('ghost')
})
//move the ghosts
ghosts.forEach(ghost => moveGhost(ghost))
function moveGhost(ghost) {
console.log('moved ghost')
const directions = [-1, +1, -width, +width]
let direction = directions[Math.floor(Math.random() * directions.length)]
console.log(direction)
ghost.timerId = setInterval(function() {
//all our code
//if the next square does NOT contain a wall and does not contain a ghost
if (
!squares[ghost.currentIndex + direction].classList.contains("wall") &&
!squares[ghost.currentIndex + direction].classList.contains("ghost")
){
//remove any ghost
squares[ghost.currentIndex].classList.remove(ghost.className)
squares[ghost.currentIndex].classList.remove('ghost', 'scared-ghost')
//add direction to current Index
ghost.currentIndex += direction
//add ghost class
squares[ghost.currentIndex].classList.add(ghost.className)
squares[ghost.currentIndex].classList.add('ghost')
} else direction = directions[Math.floor(Math.random() * directions.length)] //get a new direction if cant move
//if the ghost is currently scared
if (ghost.isScared) {
squares[ghost.currentIndex].classList.add('scared-ghost')
}
//if the ghost is current scared AND pacman is on it
if (ghost.isScared &&
squares[ghost.currentIndex].classList.contains('pacman')){
//remove classnames - ghost.className, 'ghost', 'scared-ghost'
squares[ghost.currentIndex].classList.remove(ghost.className, "ghost", "scared-ghost")
// change ghosts currentIndex back to its startIndex
ghost.currentIndex = ghost.startIndex
//add a score of 100
score += 100
//re-add classnames of ghost.className and 'ghost' to the ghosts new postion
squares[ghost.currentIndex].classList.add(ghost.className, "ghost")
}
checkForGameOver()
}, ghost.speed )
}
//check for game over
function checkForGameOver() {
//if the square pacman is in contains a ghost AND the square does NOT contain a scared ghost
if(squares[pacmanCurrentIndex].classList.contains("ghost") &&
!squares[pacmanCurrentIndex].classList.contains("scared-ghost")){
//for each ghost - we need to stop it moving
ghosts.forEach(ghost => clearInterval(ghost.timerId))
//remove eventlistener from our control function
document.removeEventListener('keyup', control)
//tell user the game is over
scoreDisplay.innerHTML = " Game Over"
}
}
//check for win
function checkForWin() {
if (score === 274) {
//stop each ghost
ghosts.forEach(ghost => clearInterval(ghost.timerId))
//remove the eventListener for the control function
document.removeEventListener('keyup', control)
//tell our user we have won
scoreDisplay.innerHTML = " You Win!"
}
}