refactoring
This commit is contained in:
parent
40a5b59b8a
commit
b01f0a7c06
61
app.js
61
app.js
@ -391,7 +391,7 @@ class Settings {
|
|||||||
this.form = settingsForm
|
this.form = settingsForm
|
||||||
this.load()
|
this.load()
|
||||||
this.modal = new bootstrap.Modal('#settingsModal')
|
this.modal = new bootstrap.Modal('#settingsModal')
|
||||||
document.getElementById('settingsModal').addEventListener('shown.bs.modal', () => {
|
settingsModal.addEventListener('shown.bs.modal', () => {
|
||||||
resumeButton.focus()
|
resumeButton.focus()
|
||||||
})
|
})
|
||||||
this.init()
|
this.init()
|
||||||
@ -401,6 +401,13 @@ class Settings {
|
|||||||
for (let input of this.form.getElementsByTagName("input")) {
|
for (let input of this.form.getElementsByTagName("input")) {
|
||||||
if (localStorage[input.name]) input.value = localStorage[input.name]
|
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() {
|
init() {
|
||||||
@ -451,11 +458,18 @@ function changeKey(input) {
|
|||||||
|
|
||||||
class Stats {
|
class Stats {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.highScore = Number(localStorage["highScore"]) || 0
|
this.modal = new bootstrap.Modal('#statsModal')
|
||||||
|
this.load()
|
||||||
this.init()
|
this.init()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
load() {
|
||||||
|
this.highScore = Number(localStorage["highScore"]) || 0
|
||||||
|
}
|
||||||
|
|
||||||
init() {
|
init() {
|
||||||
|
this.score = 0
|
||||||
|
this.goal = 0
|
||||||
this.combo = 0
|
this.combo = 0
|
||||||
this.b2b = 0
|
this.b2b = 0
|
||||||
this.startTime = new Date()
|
this.startTime = new Date()
|
||||||
@ -608,6 +622,25 @@ class Stats {
|
|||||||
this.goal -= awardedLineClears
|
this.goal -= awardedLineClears
|
||||||
if (this.goal <= 0) this.level++
|
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", {
|
Stats.prototype.timeFormat = new Intl.DateTimeFormat("fr-FR", {
|
||||||
minute: "2-digit",
|
minute: "2-digit",
|
||||||
@ -632,7 +665,6 @@ let holdQueue = new MinoesTable("holdTable")
|
|||||||
let matrix = new Matrix()
|
let matrix = new Matrix()
|
||||||
let nextQueue = new NextQueue()
|
let nextQueue = new NextQueue()
|
||||||
let playing = false
|
let playing = false
|
||||||
let gameOverModal = new bootstrap.Modal('#gameOverModal')
|
|
||||||
|
|
||||||
function pauseSettings() {
|
function pauseSettings() {
|
||||||
scheduler.clearInterval(fall)
|
scheduler.clearInterval(fall)
|
||||||
@ -663,8 +695,6 @@ function newGame(event) {
|
|||||||
titleHeader.innerHTML = "PAUSE"
|
titleHeader.innerHTML = "PAUSE"
|
||||||
resumeButton.innerHTML = "Reprendre"
|
resumeButton.innerHTML = "Reprendre"
|
||||||
event.target.onsubmit = resume
|
event.target.onsubmit = resume
|
||||||
stats.score = 0
|
|
||||||
stats.goal = 0
|
|
||||||
stats.level = levelInput.valueAsNumber
|
stats.level = levelInput.valueAsNumber
|
||||||
localStorage["startLevel"] = levelInput.value
|
localStorage["startLevel"] = levelInput.value
|
||||||
playing = true
|
playing = true
|
||||||
@ -860,22 +890,11 @@ function gameOver() {
|
|||||||
scheduler.clearInterval(ticktack)
|
scheduler.clearInterval(ticktack)
|
||||||
playing = false
|
playing = false
|
||||||
|
|
||||||
goScoreCell.innerText = stats.score.toLocaleString()
|
stats.show()
|
||||||
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()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function restart() {
|
function restart() {
|
||||||
gameOverModal.hide()
|
stats.modal.hide()
|
||||||
holdQueue.init()
|
holdQueue.init()
|
||||||
stats.init()
|
stats.init()
|
||||||
matrix.init()
|
matrix.init()
|
||||||
@ -886,10 +905,8 @@ function restart() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
window.onbeforeunload = function(event) {
|
window.onbeforeunload = function(event) {
|
||||||
localStorage["highScore"] = stats.highScore
|
stats.save()
|
||||||
for (let input of settings.form.getElementsByTagName("input")) {
|
settings.save()
|
||||||
localStorage[input.name] = input.value
|
|
||||||
}
|
|
||||||
if (playing) return false;
|
if (playing) return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
16
index.html
16
index.html
@ -100,7 +100,7 @@
|
|||||||
<legend class="text-start">Feuille de style</legend>
|
<legend class="text-start">Feuille de style</legend>
|
||||||
<label for="stylesheetSelect" class="col-sm-2 col-form-label text-center">Style</label>
|
<label for="stylesheetSelect" class="col-sm-2 col-form-label text-center">Style</label>
|
||||||
<div class="col-sm-4">
|
<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 selected>Classique</option>
|
||||||
<option>Électro</option>
|
<option>Électro</option>
|
||||||
<option>Pop</option>
|
<option>Pop</option>
|
||||||
@ -215,21 +215,21 @@
|
|||||||
|
|
||||||
</div>
|
</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 modal-dialog-centered">
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header">
|
<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>
|
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body p-0">
|
<div class="modal-body p-0">
|
||||||
<table class="table mb-0">
|
<table class="table mb-0">
|
||||||
<tr><th>Score</th> <td id="goScoreCell"></td> <th>Niveau</th> <td id="goLevelCell"></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="goHighScoreCell"></td> <th>Temps</th> <td id="goTimeCell"></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="gototalClearedLines"></td> <th>Lignes par minutes</th> <td id="gototalClearedLinesPM"></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="goNbQuatris"></td> <th>Pirouettes</th> <td id="goNbTSpin"></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="goMaxCombo"></td> <th>Plus grand bout à bout</th> <td id="goMaxB2B"></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>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user