-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
196 lines (158 loc) · 4.45 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
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
const cellSize = 15;
const boardHeight = 20;
const boardWidth = 30;
const playerHeight = 4;
let isSinglePlayer = true;
let playerX = 1;
let playerY = boardHeight / 2 - playerHeight / 2;
let player2X = boardWidth - 2;
let player2Y = boardHeight / 2 - playerHeight / 2;
let ballX = boardWidth / 2;
let ballY = boardHeight / 2;
let ballVelX = 1;
let ballVelY = 1;
let intervalId;
let scorePlayer1 = 0;
let scorePlayer2 = 0;
const containerDiv = document.createElement('div');
containerDiv.className = 'container';
document.body.appendChild(containerDiv);
function createCell(x, y) {
const cell = document.createElement('div');
cell.className = "square";
containerDiv.appendChild(cell);
cell.style.width = cellSize + 'px';
cell.style.height = cellSize + 'px';
cell.style.top = cellSize * y + 'px';
cell.style.left = cellSize * x + 'px';
cell.dataset.x = x;
cell.dataset.y = y;
}
function drawBoard(maxX, maxY) {
for (let x = 0; x < maxX; x++) {
for (let y = 0; y < maxY; y++) {
createCell(x, y);
}
}
}
function setActive(x, y) {
const cell = document.querySelector(`[data-x="${x}"][data-y="${y}"]`);
if (cell) {
cell.classList.add('active');
}
}
function setUnActive(x, y) {
const cell = document.querySelector(`[data-x="${x}"][data-y="${y}"]`);
cell.classList.remove('active');
}
function drawPlayer(playerX, playerY) {
for (let y = playerY; y < playerY + playerHeight; y++) {
setActive(playerX, y);
}
}
function drawBall(ballX, ballY) {
setActive(ballX, ballY);
}
function clearAll() {
const elements = document.querySelectorAll('.active');
for (let i = 0; i < elements.length; i++) {
elements[i].classList.remove('active');
}
}
function moveBall() {
ballX += ballVelX;
ballY += ballVelY;
const nextCell = document.querySelector(`[data-x="${ballX}"][data-y="${ballY}"]`);
if (ballY < 0 || ballY >= boardHeight) {
ballVelY *= -1;
ballY += ballVelY;
}
if ((ballX < 0 || ballX >= boardWidth)) {
gameOver();
}
if (nextCell && nextCell.classList.contains('active')) {
ballVelX *= -1;
ballX += ballVelX;
}
}
function stop() {
clearInterval(intervalId);
}
function start() {
stop();
intervalId = setInterval(tick, 100);
isSinglePlayer = document.querySelector('#comp').checked;
document.querySelector('form').style.display = 'none';
if (isSinglePlayer) {
document.querySelector('.player2name').textContent = `Computer:`;
}
}
function winner() {
if (ballX >= boardWidth) {
scorePlayer1++;
}
if (ballX < 0) {
scorePlayer2++;
}
document.querySelector('.player1 .score').innerHTML = scorePlayer1;
document.querySelector('.player2 .score').innerHTML = scorePlayer2;
}
const btnStart = document.querySelector('.btn');
btnStart.addEventListener('click', start);
function reset() {
playerX = 1;
playerY = boardHeight / 2 - playerHeight / 2;
player2X = boardWidth - 2;
player2Y = boardHeight / 2 - playerHeight / 2;
ballX = boardWidth / 2;
ballY = boardHeight / 2;
ballVelX = Math.random() > 0.5 ? 1 : -1;
ballVelY = Math.random() > 0.5 ? 1 : -1;
}
function tick() {
clearAll();
if (isSinglePlayer) {
if (player2Y + playerHeight < ballY && player2Y < boardHeight - playerHeight) {
player2Y += 2;
}
if (player2Y > ballY) {
player2Y -= 2;
}
}
drawPlayer(playerX, playerY);
drawPlayer(player2X, player2Y);
moveBall();
drawBall(ballX, ballY);
}
function gameOver() {
stop();
winner();
reset();
tick();
document.querySelector('form').style.display = 'block';
}
function main() {
drawBoard(boardWidth, boardHeight);
drawPlayer(playerX, playerY);
drawPlayer(player2X, player2Y);
drawBall(ballX, ballY);
// intervalId = setInterval(tick, 100);
document.addEventListener("keydown", (e) => {
// console.log(e.keyCode);
if (e.keyCode === 87 && playerY > 0) {
playerY--;
}
if (e.keyCode === 83 && playerY < boardHeight - playerHeight) {
playerY++;
}
if (!isSinglePlayer) {
if (e.keyCode === 38 && player2Y > 0) {
player2Y--;
}
if (e.keyCode === 40 && player2Y < boardHeight - playerHeight) {
player2Y++;
}
}
});
}
window.onload = main;