-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathindex.js
217 lines (187 loc) · 5.93 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
//board
let board;
let boardWidth = 360;
let boardHeight = 576;
let context;
//doodler
let doodlerWidth = 46;
let doodlerHeight = 46;
let doodlerX = boardWidth/2 - doodlerWidth/2;
let doodlerY = boardHeight*7/8 - doodlerHeight;
let doodlerRightImg;
let doodlerLeftImg;
let doodler = {
img : null,
x : doodlerX,
y : doodlerY,
width : doodlerWidth,
height : doodlerHeight
}
//physics
let velocityX = 0;
let velocityY = 0; //doodler jump speed
let initialVelocityY = -8; //starting velocity Y
let gravity = 0.4;
//platforms
let platformArray = [];
let platformWidth = 60;
let platformHeight = 18;
let platformImg;
let score = 0;
let maxScore = 0;
let gameOver = false;
window.onload = function() {
board = document.getElementById("board");
board.height = boardHeight;
board.width = boardWidth;
context = board.getContext("2d"); //used for drawing on the board
//draw doodler
// context.fillStyle = "green";
// context.fillRect(doodler.x, doodler.y, doodler.width, doodler.height);
//load images
doodlerRightImg = new Image();
doodlerRightImg.src = "https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/285a3bc5-b7d7-4434-b7cd-6bf3a66f4cee";
doodler.img = doodlerRightImg;
doodlerRightImg.onload = function() {
context.drawImage(doodler.img, doodler.x, doodler.y, doodler.width, doodler.height);
}
doodlerLeftImg = new Image();
doodlerLeftImg.src = "https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/165b34dc-ae2a-4279-889b-3bfecd00a681";
platformImg = new Image();
platformImg.src = "https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/634da07f-7765-4af4-9165-3b807215844b";
velocityY = initialVelocityY;
placePlatforms();
requestAnimationFrame(update);
document.addEventListener("keydown", moveDoodler);
}
function update() {
requestAnimationFrame(update);
if (gameOver) {
return;
}
context.clearRect(0, 0, board.width, board.height);
//doodler
doodler.x += velocityX;
if (doodler.x > boardWidth) {
doodler.x = 0;
}
else if (doodler.x + doodler.width < 0) {
doodler.x = boardWidth;
}
velocityY += gravity;
doodler.y += velocityY;
if (doodler.y > board.height) {
gameOver = true;
}
context.drawImage(doodler.img, doodler.x, doodler.y, doodler.width, doodler.height);
//platforms
for (let i = 0; i < platformArray.length; i++) {
let platform = platformArray[i];
if (velocityY < 0 && doodler.y < boardHeight*3/4) {
platform.y -= initialVelocityY; //slide platform down
}
if (detectCollision(doodler, platform) && velocityY >= 0) {
velocityY = initialVelocityY; //jump
}
context.drawImage(platform.img, platform.x, platform.y, platform.width, platform.height);
}
// clear platforms and add new platform
while (platformArray.length > 0 && platformArray[0].y >= boardHeight) {
platformArray.shift(); //removes first element from the array
newPlatform(); //replace with new platform on top
}
//score
updateScore();
context.fillStyle = "black";
context.font = "16px sans-serif";
context.fillText(score, 5, 20);
if (gameOver) {
context.fillText("Game Over: Press 'Space' to Restart", boardWidth/7, boardHeight*7/8);
}
}
function moveDoodler(e) {
if (e.code == "ArrowRight" || e.code == "KeyD") { //move right
velocityX = 4;
doodler.img = doodlerRightImg;
}
else if (e.code == "ArrowLeft" || e.code == "KeyA") { //move left
velocityX = -4;
doodler.img = doodlerLeftImg;
}
else if (e.code == "Space" && gameOver) {
//reset
doodler = {
img : doodlerRightImg,
x : doodlerX,
y : doodlerY,
width : doodlerWidth,
height : doodlerHeight
}
velocityX = 0;
velocityY = initialVelocityY;
score = 0;
maxScore = 0;
gameOver = false;
placePlatforms();
}
}
function placePlatforms() {
platformArray = [];
//starting platforms
let platform = {
img : platformImg,
x : boardWidth/2,
y : boardHeight - 50,
width : platformWidth,
height : platformHeight
}
platformArray.push(platform);
// platform = {
// img : platformImg,
// x : boardWidth/2,
// y : boardHeight - 150,
// width : platformWidth,
// height : platformHeight
// }
// platformArray.push(platform);
for (let i = 0; i < 6; i++) {
let randomX = Math.floor(Math.random() * boardWidth*3/4); //(0-1) * boardWidth*3/4
let platform = {
img : platformImg,
x : randomX,
y : boardHeight - 75*i - 150,
width : platformWidth,
height : platformHeight
}
platformArray.push(platform);
}
}
function newPlatform() {
let randomX = Math.floor(Math.random() * boardWidth*3/4); //(0-1) * boardWidth*3/4
let platform = {
img : platformImg,
x : randomX,
y : -platformHeight,
width : platformWidth,
height : platformHeight
}
platformArray.push(platform);
}
function detectCollision(a, b) {
return a.x < b.x + b.width && //a's top left corner doesn't reach b's top right corner
a.x + a.width > b.x && //a's top right corner passes b's top left corner
a.y < b.y + b.height && //a's top left corner doesn't reach b's bottom left corner
a.y + a.height > b.y; //a's bottom left corner passes b's top left corner
}
function updateScore() {
let points = Math.floor(50*Math.random()); //(0-1) *50 --> (0-50)
if (velocityY < 0) { //negative going up
maxScore += points;
if (score < maxScore) {
score = maxScore;
}
}
else if (velocityY >= 0) {
maxScore -= points;
}
}