-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
201 lines (172 loc) · 6.87 KB
/
game.html
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
<!DOCTYPE html>
<html lang="en" onkeypress="jump()" onclick="jump()">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amasaurus Game 1.3</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div id="warning-message">
Mohon putar ponsel Anda secara horizontal untuk mengakses halaman ini.
</div>
<div id="container" style="display: none;">
<div class="score-container">
<div class="score" id="score">Score: 0</div>
<div class="highscore" id="highscore">Highscore: 0</div>
<div class="lives" id="lives">Lives: 4</div>
</div>
<div id="box">
<div id="roadContainer">
<img src="road.png" alt="road" id="road" />
</div>
<img src="kaktus.png" alt="kaktus" id="cactus" />
<img src="dino.png" alt="dino" id="dino" />
</div>
</div>
<div class="buton">
<button class="btn-style" id="music-toggle"><i class="fa-solid fa-music"></i></button>
<button class="btn-style" id="play-again" style="display: none;"><i class="fa-solid fa-rotate-right"></i></button>
<button class="btn-style" id="main-menu" style="display: none;"><i class="fa-solid fa-house"></i></button>
<button class="btn-style" id="pause" onclick="pauseGame()"><i class="fa-solid fa-pause"></i></button>
</div>
<audio id="bg-music" loop autoplay>
<source src="ambatukam.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<script>
const musicToggle = document.getElementById('music-toggle');
const container = document.getElementById('container');
const warningMessage = document.getElementById('warning-message');
const bgMusic = document.getElementById('bg-music');
const playAgainBtn = document.getElementById('play-again');
const mainMenuBtn = document.getElementById('main-menu');
const pauseBtn = document.getElementById('pause');
let gamePaused = false;
let interval = null;
let score = 0;
let highscore = parseInt(localStorage.getItem('highscore')) || 0;
const playerScore = document.getElementById("score");
const highscoreDisplay = document.getElementById('highscore');
highscoreDisplay.textContent = `Highscore: ${highscore}`;
function handleOrientationChange() {
if (window.innerWidth > window.innerHeight) {
container.style.display = 'block';
warningMessage.style.display = 'none';
musicToggle.style.display = 'block';
playAgainBtn.style.display = 'none';
mainMenuBtn.style.display = 'none';
pauseBtn.style.display = 'block';
} else {
container.style.display = 'none';
warningMessage.style.display = 'block';
playAgainBtn.style.display = 'none';
musicToggle.style.display = 'none';
mainMenuBtn.style.display = 'none';
pauseBtn.style.display = 'none';
}
}
handleOrientationChange();
window.addEventListener('resize', handleOrientationChange);
musicToggle.addEventListener('click', function () {
if (bgMusic.paused) {
bgMusic.play();
} else {
bgMusic.pause();
}
});
mainMenuBtn.addEventListener('click', function () {
window.location.href = "index.html";
});
playAgainBtn.addEventListener('click', function () {
location.reload();
});
function pauseGame() {
if (!gamePaused) {
clearInterval(interval);
gamePaused = true;
pauseBtn.innerHTML = '<i class="fa-solid fa-play"></i>'; // Change icon to "play" when paused
} else {
interval = setInterval(jumlahScore, 100);
gamePaused = false;
pauseBtn.innerHTML = '<i class="fa-solid fa-pause"></i>'; // Change icon to "pause" when resumed
}
}
document.addEventListener('keydown', function (event) {
if (event.code === 'Space' && !gamePaused) {
jump();
}
});
let char = document.getElementById("dino");
const cactus = document.getElementById("cactus");
document.addEventListener('click', function () {
if (!gamePaused) {
jump();
}
});
document.addEventListener('touchstart', function () {
if (!gamePaused) {
jump();
}
});
let jumlahScore = () => {
if (!gamePaused) {
score++;
playerScore.innerHTML = `Score : ${score}`;
if (score > highscore) {
highscore = score;
localStorage.setItem('highscore', highscore);
highscoreDisplay.textContent = `Highscore: ${highscore}`;
}
}
};
function jump() {
if (!gamePaused && char.classList != "animate") {
char.classList.add("animate");
setTimeout(function () {
char.classList.remove('animate')
}, 500);
let score = 0;
interval = setInterval(jumlahScore, 100);
}
};
// Tambahkan variabel global untuk menyimpan jumlah nyawa
let lives = 4;
const livesDisplay = document.getElementById('lives');
const ifHitCactus = setInterval(function () {
if (!gamePaused) {
const charTop = parseInt(window.getComputedStyle(char).getPropertyValue("top"));
const cactusLeft = parseInt(window.getComputedStyle(cactus).getPropertyValue("left"));
if (cactusLeft < 185 && cactusLeft > 0 && charTop >= 100) {
cactus.style.animation = "none";
cactus.style.display = "none";
// Kurangi jumlah nyawa
lives--;
livesDisplay.textContent = `Lives: ${lives}`;
// Reset cactus position and animation
setTimeout(() => {
cactus.style.left = "850px";
cactus.style.animation = "cactus 1s infinite linear";
cactus.style.display = "block";
}, 100);
// Kurangi skor sebesar 10% saat nyawa digunakan
score -= Math.ceil(score * 0.1);
playerScore.textContent = `Score : ${score}`;
// Jika nyawa habis, tampilkan pesan game over
if (lives <= 0) {
clearInterval(interval);
document.getElementById('container').innerHTML += `<div id="game-over-message">Ambasaurus kamu nabrak kaktus.<br>Final Score: ${score}</div>`;
document.getElementById('dino').style.display = 'none';
playAgainBtn.style.display = 'block';
mainMenuBtn.style.display = 'block';
pauseBtn.style.display = 'none';
}
}
}
}, 10);
</script>
</body>
</html>