-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
195 lines (163 loc) · 5.64 KB
/
index.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
/**@type {HTMLCanvasElement} */
// alert("INSTRUCTIONS:\nPlayer1:\n 'W' = moveup\n 'S' = movedown\n\nPlayer2:\n 'O' = moveup\n 'L' = movedown")
// -------------------------------- SRJ Changes ----------------------
let startTime;
let elapsedTime = 0;
let timerInterval;
function startStopwatch() {
// Store the current time when starting the stopwatch
startTime = new Date().getTime() - elapsedTime;
// Update the stopwatch display every 10 milliseconds
timerInterval = setInterval(updateStopwatchDisplay, 10);
}
function updateStopwatchDisplay() {
// Calculate the elapsed time since starting the stopwatch
const currentTime = new Date().getTime();
elapsedTime = currentTime - startTime;
// Format the elapsed time
const formattedTime = formatTime(elapsedTime);
// Display the formatted time
document.getElementById('stopwatch').innerText = formattedTime;
}
// Function to format the time in HH:MM:SS format
function formatTime(time) {
const hours = Math.floor(time / (1000 * 60 * 60));
const minutes = Math.floor((time % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((time % (1000 * 60)) / 1000);
const milliseconds = Math.floor((time % 1000) / 10);
return (
pad(hours) + ':' +
pad(minutes) + ':' +
pad(seconds) + ':' +
pad(milliseconds)
);
}
// Function to add leading zeros to single-digit numbers
function pad(number) {
return (number < 10 ? '0' : '') + number;
}
// Function to stop the stopwatch
function stopStopwatch() {
clearInterval(timerInterval);
}
// for game over msg
function showGameOverMessage() {
document.getElementById('gameOverMessage').classList.remove('hidden');
let rematchBtn = document.getElementById('rematchButton');
rematchBtn.focus();
}
// --------------------------------------------------------------
let canvas = document.getElementById('canvas')
let c = canvas.getContext('2d')
let CANVAS_WIDTH = canvas.width
let CANVAS_HEIGHT = canvas.height
let gameOver = false
class Ball {
constructor(x, y, radius, velocityX, velocityY) {
this.x = x
this.y = y
this.radius = radius
this.velocityX = velocityX
this.velocityY = velocityY
}
update() {
if (this.x + this.radius >= CANVAS_WIDTH) {
let ballUpperPart = this.y - this.radius
let ballLowerPart = this.y + this.radius
if ((ballUpperPart > p2.y && ballUpperPart < p2.y+p2.height) || (ballLowerPart > p2.y && ballLowerPart < p2.y+p2.height)) {
this.velocityX *= -1
this.x = CANVAS_WIDTH - this.radius - 1
}
else{
// ! Here
// alert("Player 1 Won The Game")
gameOver = true
}
}
if (this.x - this.radius <= 0) {
let ballUpperPart = this.y - this.radius
let ballLowerPart = this.y + this.radius
if ((ballUpperPart > p1.y && ballUpperPart < p1.y+p1.height) || (ballLowerPart > p1.y && ballLowerPart < p1.y+p1.height)) {
this.velocityX *= -1
this.x = this.radius + 1
}
else{
// ! Here ~ bhai isse dhundne mein 1 ghanta lag gya , kuch cmt maar dia kro yrr
// alert("Player 2 Won The Game")
gameOver = true
}
}
if (this.y + this.radius >= CANVAS_HEIGHT) {
this.velocityY *= -1
this.y = CANVAS_HEIGHT - this.radius - 1
}
if (this.y - this.radius <= 0) {
this.velocityY *= -1
this.y = this.radius + 1
}
this.x += this.velocityX
this.y += this.velocityY
this.render()
}
render() {
c.beginPath();
c.arc(this.x, this.y, this.radius, 0, 2 * Math.PI);
c.fillStyle = 'white';
c.fill();
}
}
let ball = new Ball(
CANVAS_WIDTH / 2,
CANVAS_HEIGHT / 2,
20,
2 * (Math.random() >= 0.5 ? 1 : -1),
2 * (Math.random() >= 0.5 ? 1 : -1)
)
class Player {
constructor(x, y, height, width, velocity) {
this.x = x
this.y = y
this.height = height
this.width = width
this.velocity = velocity
}
update() {
if (this.y + this.velocity >= 0 && this.y + this.height + this.velocity <= CANVAS_HEIGHT) this.y += this.velocity
}
render() {
this.update()
c.fillStyle = 'white'
c.fillRect(this.x, this.y, this.width, this.height)
}
}
let p1 = new Player(0, 50, 180, 20, 10)
let p2 = new Player(CANVAS_WIDTH - 20, 70, 180, 50, 10)
document.querySelector('body').addEventListener('keypress', (e) => {
let key = e.key
console.log(e)
if ((key === 'w' || key === 'W' && p1.velocity > 0) || (key === 's'|| key === 'S' && p1.velocity < 0)) p1.velocity *= -1
if ((key === 'o' || key === 'O' && p2.velocity > 0) || (key === 'l' || key === 'L'&& p2.velocity < 0)) p2.velocity *= -1
})
let ballSpeedAccelerator = 0
function animate() {
c.fillStyle = 'black'
c.fillRect(0, 0, 1280, 720)
ball.update()
p1.render()
p2.render()
if(++ballSpeedAccelerator > 100){
ballSpeedAccelerator = 0
ball.velocityX>0? ball.velocityX++ : ball.velocityX--
ball.velocityY>0? ball.velocityY++ : ball.velocityY--
}
if(!gameOver) requestAnimationFrame(animate)
else{
stopStopwatch();
showGameOverMessage();
// window.location.reload();
}
}
// animate() -> moved to end welcome function ~ HTML file
function welcomeMessage(){
document.getElementById('welcomeMessage').classList.remove('hidden');
}