refactoring

This commit is contained in:
Adrien MALINGREY 2023-04-25 12:16:34 +02:00
parent 40a5b59b8a
commit b01f0a7c06
2 changed files with 47 additions and 30 deletions

61
app.js

@ -391,7 +391,7 @@ class Settings {
this.form = settingsForm
this.load()
this.modal = new bootstrap.Modal('#settingsModal')
document.getElementById('settingsModal').addEventListener('shown.bs.modal', () => {
settingsModal.addEventListener('shown.bs.modal', () => {
resumeButton.focus()
})
this.init()
@ -401,6 +401,13 @@ class Settings {
for (let input of this.form.getElementsByTagName("input")) {
if (localStorage[input.name]) input.value = localStorage[input.name]
}
document.selectedStyleSheetSet=stylesheetSelect.value
}
save() {
for (let input of this.form.getElementsByTagName("input")) {
localStorage[input.name] = input.value
}
}
init() {
@ -451,11 +458,18 @@ function changeKey(input) {
class Stats {
constructor() {
this.highScore = Number(localStorage["highScore"]) || 0
this.modal = new bootstrap.Modal('#statsModal')
this.load()
this.init()
}
load() {
this.highScore = Number(localStorage["highScore"]) || 0
}
init() {
this.score = 0
this.goal = 0
this.combo = 0
this.b2b = 0
this.startTime = new Date()
@ -608,6 +622,25 @@ class Stats {
this.goal -= awardedLineClears
if (this.goal <= 0) this.level++
}
show() {
let time = stats.time
statsModalScoreCell.innerText = this.score.toLocaleString()
statsModalHighScoreCell.innerText = this.highScore.toLocaleString()
statsModalLevelCell.innerText = this.level
statsModalTimeCell.innerText = this.timeFormat.format(time)
statsModaltotalClearedLines.innerText = this.totalClearedLines
statsModaltotalClearedLinesPM.innerText = (stats.totalClearedLines * 60000 / time).toFixed(2)
statsModalNbQuatris.innerText = this.nbQuatris
statsModalNbTSpin.innerText = this.nbTSpin
statsModalMaxCombo.innerText = this.maxCombo
statsModalMaxB2B.innerText = this.maxB2B
this.modal.show()
}
save() {
localStorage["highScore"] = this.highScore
}
}
Stats.prototype.timeFormat = new Intl.DateTimeFormat("fr-FR", {
minute: "2-digit",
@ -632,7 +665,6 @@ let holdQueue = new MinoesTable("holdTable")
let matrix = new Matrix()
let nextQueue = new NextQueue()
let playing = false
let gameOverModal = new bootstrap.Modal('#gameOverModal')
function pauseSettings() {
scheduler.clearInterval(fall)
@ -663,8 +695,6 @@ function newGame(event) {
titleHeader.innerHTML = "PAUSE"
resumeButton.innerHTML = "Reprendre"
event.target.onsubmit = resume
stats.score = 0
stats.goal = 0
stats.level = levelInput.valueAsNumber
localStorage["startLevel"] = levelInput.value
playing = true
@ -860,22 +890,11 @@ function gameOver() {
scheduler.clearInterval(ticktack)
playing = false
goScoreCell.innerText = stats.score.toLocaleString()
goHighScoreCell.innerText = stats.highScore.toLocaleString()
goLevelCell.innerText = stats.level
let time = stats.time
goTimeCell.innerText = stats.timeFormat.format(time)
gototalClearedLines.innerText = stats.totalClearedLines
gototalClearedLinesPM.innerText = (stats.totalClearedLines * 60000 / time).toFixed(2)
goNbQuatris.innerText = stats.nbQuatris
goNbTSpin.innerText = stats.nbTSpin
goMaxCombo.innerText = stats.maxCombo
goMaxB2B.innerText = stats.maxB2B
gameOverModal.show()
stats.show()
}
function restart() {
gameOverModal.hide()
stats.modal.hide()
holdQueue.init()
stats.init()
matrix.init()
@ -886,10 +905,8 @@ function restart() {
}
window.onbeforeunload = function(event) {
localStorage["highScore"] = stats.highScore
for (let input of settings.form.getElementsByTagName("input")) {
localStorage[input.name] = input.value
}
stats.save()
settings.save()
if (playing) return false;
}

@ -100,7 +100,7 @@
<legend class="text-start">Feuille de style</legend>
<label for="stylesheetSelect" class="col-sm-2 col-form-label text-center">Style</label>
<div class="col-sm-4">
<select id="stylesheetSelect" class="form-select" onclick="document.selectedStyleSheetSet=stylesheetSelect.value">
<select id="stylesheetSelect" class="form-select" onclick="document.selectedStyleSheetSet=this.value">
<option selected>Classique</option>
<option>Électro</option>
<option>Pop</option>
@ -215,21 +215,21 @@
</div>
<div class="modal fade" id="GameOverModal" tabindex="-1">
<div class="modal fade" id="statsModal" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title w-100 text-center">Fin</h1>
<h2 class="modal-title w-100 text-center">Fin</h2>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body p-0">
<table class="table mb-0">
<tr><th>Score</th> <td id="goScoreCell"></td> <th>Niveau</th> <td id="goLevelCell"></td> </tr>
<tr><th>Meilleur score</th> <td id="goHighScoreCell"></td> <th>Temps</th> <td id="goTimeCell"></td> </tr>
<tr><th>Lignes</th> <td id="gototalClearedLines"></td> <th>Lignes par minutes</th> <td id="gototalClearedLinesPM"></td> </tr>
<tr><th>Quatris</th> <td id="goNbQuatris"></td> <th>Pirouettes</th> <td id="goNbTSpin"></td> </tr>
<tr><th>Plus grand enchaînement</th> <td id="goMaxCombo"></td> <th>Plus grand bout à bout</th> <td id="goMaxB2B"></td> </tr>
<tr><th>Score</th> <td id="statsModalScoreCell"></td> <th>Niveau</th> <td id="statsModalLevelCell"></td> </tr>
<tr><th>Meilleur score</th> <td id="statsModalHighScoreCell"></td> <th>Temps</th> <td id="statsModalTimeCell"></td> </tr>
<tr><th>Lignes</th> <td id="statsModaltotalClearedLines"></td> <th>Lignes par minutes</th> <td id="statsModaltotalClearedLinesPM"></td> </tr>
<tr><th>Quatris</th> <td id="statsModalNbQuatris"></td> <th>Pirouettes</th> <td id="statsModalNbTSpin"></td> </tr>
<tr><th>Plus grand enchaînement</th> <td id="statsModalMaxCombo"></td> <th>Plus grand bout à bout</th> <td id="statsModalMaxB2B"></td> </tr>
</table>
</div>
<div class="modal-footer">