-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
113 lines (103 loc) · 3.61 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
const kartu = document.querySelectorAll('.kartu');
const hasilSkor = document.querySelector('.skor');
const rank = document.querySelector('.rank span');
const wrongAudio = document.querySelector('.wrong');
const correctAudio = document.querySelector('.correct');
const warningAudio = document.querySelector('.warning');
const progress = document.querySelector('progress');
const container = document.querySelector('.container');
const restart = document.querySelector('.restart');
const tmblRestart = document.querySelector('.tombol-restart');
// variable
let skor = 0;
let kesalahan = 0;
// array gambar
const arrGambar = ['ae', 'evos', 'aura', 'btr', 'rrq', 'onic'];
arrGambar.forEach(valArrGambar => arrGambar.push(valArrGambar));
// mulai
function mulaiGame(kartu) {
restart.style.display = 'none';
kartu.forEach((valBukaKartu, indexBukaKartu) => {
valBukaKartu.style.order = acakRandomKartu();
valBukaKartu.classList.replace('kartu', arrGambar[indexBukaKartu]);
});
setTimeout(function () {
kartu.forEach((valTutupKartu, indexTutupKartu) => {
valTutupKartu.classList.replace(arrGambar[indexTutupKartu], 'kartu');
valTutupKartu.addEventListener('click', bukaKartu);
});
}, 1500);
}
mulaiGame(kartu);
// acak kartu
function acakRandomKartu() {
return Math.round((Math.random() * kartu.length) + 1);
}
// check hasil kartu
let arrCheck = [];
let arrCheckIndex = [];
function bukaKartu() {
const index = this.dataset.indexNumber;
arrCheck.push(arrGambar[index]);
arrCheckIndex.push(index);
this.classList.replace('kartu', arrGambar[index]);
this.removeEventListener('click', bukaKartu);
hasilKartu(kartu, arrCheckIndex[0], arrCheckIndex[1]);
gameSelesai();
}
function hasilKartu(a1, a2, a3) {
if (arrCheck.length == 2 && arrCheckIndex.length == 2) {
if (arrCheck[0] == arrCheck[1]) {
correctAudio.play();
setTimeout(() => {
a1[a2].style.opacity = '50%';
a1[a3].style.opacity = '50%';
}, 500);
skor += 16.6666667;
hasilSkor.innerText = Math.floor(skor);
progress.value = Math.floor(skor);
} else {
wrongAudio.play();
kesalahan++;
setTimeout(() => {
a1[a2].classList.replace(a1[a2].classList.item(0), 'kartu');
a1[a3].classList.replace(a1[a3].classList.item(0), 'kartu');
a1[a2].addEventListener('click', bukaKartu);
a1[a3].addEventListener('click', bukaKartu);
}, 500);
}
arrCheck = [];
arrCheckIndex = [];
}
}
// selesai game
function gameSelesai() {
let grade = '';
if (skor >= 100) {
if (kesalahan == 0) grade = 'Sangat Bagus';
else if (kesalahan <= 2) grade = 'Bagus';
else if (kesalahan <= 4) grade = 'Normal';
else if (kesalahan <= 6) grade = 'Buruk';
else grade = 'Sangat Buruk';
setTimeout(function () {
container.style.display = 'none';
rank.innerText = grade;
restart.removeAttribute('style');
}, 500);
}
tmblRestart.addEventListener('click', restartGame);
}
function restartGame() {
skor = 0;
hasilSkor.innerText = skor;
kesalahan = 0;
progress.value = skor;
container.removeAttribute('style');
restart.style.display = 'none';
for (let i = 0; i < kartu.length; i++) {
kartu[i].removeAttribute('style');
kartu[i].classList.replace(kartu[i].classList.item(0), 'kartu');
mulaiGame(kartu);
kartu[i].style.order = acakRandomKartu();
}
}