-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
183 lines (176 loc) · 5.68 KB
/
app.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
// ~ Hitik Saini
//Creating variables for canvas(the game screen)
let canvas = document.getElementById('mycanvas');
let ctx = canvas.getContext('2d');
let ballRadius = 10;
let x = canvas.width/2;
let y = canvas.height - 30;
//this is for the movement of the ball in the screen
let dx = 2;
let dy = -2;
//create the paddle
let paddleHeight = 12;
let paddleWidth = 72;
//specify starting point of paddle
let paddleX = (canvas.width-paddleWidth)/2;
//holding variables for right and left arrows on keyboard
let rightPressed=false;
let leftPressed=false;
//holding variables for bricks
let brickRowCount = 4;
let brickColumnCount = 7;
let brickWidth = 72;
let brickHeight = 24;
let brickPadding = 12;
let brickOffsetTop = 32;
let brickOffsetLeft = 32;
//to have a score based on the bricks broken
let score = 0;
//arrays for the bricks
let bricks = [];
//nested loop for rows and cols of bricks
for (i =0; i<brickColumnCount; i++){
bricks[i] = [];
for(j=0; j<brickRowCount; j++){
//set the x and y position of the bricks
bricks[i][j] = { x: 0, y: 0, status: 1};
}
}
//track the user actions like mouse movement or keypad arrows < >
document.addEventListener('keydown', keyDownHandler, false);
document.addEventListener('keyup', keyUpHandler, false);
document.addEventListener("mousemove", mouseMoveHandler, false);
//Anchor paddle movement to mouse movement
function mouseMoveHandler(e) {
var relativeX = e.clientX - canvas.offsetLeft;
if(relativeX > 0 && relativeX < canvas.width) {
paddleX = relativeX - paddleWidth/2;
}
}
//for the movement through keypad < > arrows
function keyDownHandler(e){
if(e.keyCode === 39){
rightPressed = true;
}
else if (e.keyCode === 37){
leftPressed = true;
}
}
function keyUpHandler(e){
if(e.keyCode === 39){
rightPressed = false;
}
else if (e.keyCode === 37){
leftPressed = false;
}
}
function drawBall(){
ctx.beginPath();
ctx.arc(x,y,ballRadius,0,Math.PI*2); //centered at (x,y) position with radius r = ballRadius starting at 0 = startAngle, ending at Math.PI*2 = endAngle (in Radians)
ctx.fillStyle = '#fff';
ctx.fill();
ctx.closePath();
}
//Create a function to create the paddle
function drawPaddle(){
ctx.beginPath();
ctx.rect(paddleX,canvas.height-paddleHeight,paddleWidth,paddleHeight); //centered at (x,y) position with radius r = ballRadius starting at 0 = startAngle, ending at Math.PI*2 = endAngle (in Radians)
ctx.fillStyle = '#0e9aa7';
ctx.fill();
ctx.closePath();
}
//Create a function to draw the bricks
function drawBricks(){
for(c=0; c < brickColumnCount; c++){
for(r=0; r < brickRowCount; r++){
if(bricks[c][r].status === 1){
let brickX = (c* (brickWidth + brickPadding)) + brickOffsetLeft;
let brickY = (r* (brickHeight+brickPadding)) + brickOffsetTop;
bricks[c][r].x=brickX;
bricks[c][r].y=brickY;
ctx.beginPath();
ctx.rect(brickX, brickY, brickWidth, brickHeight);
ctx.fillStyle = '#0e9aa7';
ctx.fill();
ctx.closePath();
}
}
}
}
//Create function to keep track of score
function drawScore(){
ctx.font = '1.7rem Arial';
ctx.fillStyle = '#fff';
ctx.fillText('score: '+ score, 8, 20); //position score at 8,20 on the x,y axis of the canvas
}
//Collision dections for the bricks
function collisionDetection(){
for(c=0; c<brickColumnCount;c++){
for(r=0; r<brickRowCount; r++){
let b = bricks[c][r];
if(b.status === 1){
if(x > b.x && x < b.x + brickWidth && y > b.y && y < b.y + brickHeight){
dy = -dy;
b.status = 0;
score++;
if (score === brickRowCount*brickColumnCount){
alert('Congratulations! You win.');
document.location.reload();
}
}
}
}
}
}
function draw(){
//clear each instance of the canvas so a new circle can be drawn
ctx.clearRect(0,0,canvas.width, canvas.height);
drawScore();
drawBricks();
drawBall();
drawPaddle();
collisionDetection();
//Calculate collision detections
//left and right walls
if(x + dx > canvas.width - ballRadius || x + dx < ballRadius) {
dx = -dx;
}
//top walls
if(y + dy < ballRadius){
dy = -dy;
}
else if (y + dy > canvas.height-ballRadius){
//detect paddle hits
if(x > paddleX && x < paddleX + paddleWidth){
dy=-dy;
}
//if no paddle hit, body of canvas is hit ==> game over
else {
alert('GAME OVER!! Press OK to Play Again');
document.location.reload();
}
}
//bottom wall
if (y + dy > canvas.height - ballRadius || y + dy < ballRadius){
dy = -dy;
}
//Make paddle move
if(rightPressed && paddleX <canvas.width-paddleWidth){
paddleX += 7;
}
else if(leftPressed && paddleX > 0){
paddleX -= 7;
}
//Making the ball move
x +=dx; //update x movement every frame
y +=dy; //update y movement every frame
}
//Create an infinite loop that creates the ball
//paints the ball on the canvas every 10 milliseconds.
setInterval(draw, 10)
//Concept used in this project:-
//Using HTML Canvas
//Understanding HTML Coordinates
//Web APIs - https://developer.mozilla.org/en-US/docs/Web/API
// Drawing shapes with Canvas: https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API/Tutorial
//MDN BrickerBreaker Tutorial https://developer.mozilla.org/en-US/docs/Games/Tutorials/2D_Breakout_game_pure_JavaScript