GrandTabernacleAutoVI/public_html/js/leaderboard.js
Killian Marty 5759f39bb8 final code
2024-01-01 12:55:28 +01:00

62 lines
No EOL
2 KiB
JavaScript

class LeaderBoard {
constructor(idCanvas) {
this.canvas = document.getElementById(idCanvas);
this.ctx = this.canvas.getContext("2d");
this.nbjoueur=0
this.px=10;
this.py=10;
}
ReloadAff() {
let LBplayers=[];
players.forEach((p) => {
if(p != null && (p.id >0 || p.kill>0 || p.death>0)) {
LBplayers.push(p);
}
})
LBplayers.push(player);
LBplayers.sort(function (a, b) {
return b.kill - a.kill;
});
// tableau du leaderboard (le fonc "blanc")
this.ctx.fillStyle = 'rgba(255, 255, 255, 0.7)';
this.ctx.fillRect(this.px, this.py, this.px+240, this.py+100+LBplayers.length*20);
this.nbjoueur=0;
this.ctx.font = '20px Arial';
this.ctx.fillStyle = '#000000';
this.ctx.fillText('Leaderboard', this.px+80, this.py+30);
// lignes noires
this.ctx.strokeStyle = '#000000';
this.ctx.lineWidth = 2;
this.ctx.beginPath();
this.ctx.moveTo(this.px, this.py+50);
this.ctx.lineTo(this.px+250, this.py+50);
this.ctx.moveTo(this.px, this.py+100);
this.ctx.lineTo(this.px+250, this.py+100);
this.ctx.stroke();
//donnee user
this.ctx.fillStyle = '#000000';
this.ctx.font = '15px Arial';
this.ctx.fillText('#', this.px+10, this.py+80);
this.ctx.fillText('Username', this.px+30, this.py+80);
this.ctx.fillText('K', this.px+180, this.py+80);
this.ctx.fillText('D', this.px+200, this.py+80);
this.ctx.fillText('K/D', this.px+220, this.py+80);
this.ctx.font = '10px Arial';
LBplayers.forEach((p) => {
if(p != null) {
this.ctx.fillText((this.nbjoueur+1), this.px+10, this.py+120+20*this.nbjoueur);
this.ctx.fillText(p.name, this.px+30, this.py+120+20*this.nbjoueur);
this.ctx.fillText(p.kill, this.px+180, this.py+120+20*this.nbjoueur);
this.ctx.fillText(p.id>0 ? p.death : "-", this.px+200, this.py+120+20*this.nbjoueur);
this.ctx.fillText(p.id>0 ? Math.round(10*p.kill/p.death)/10 : "-", this.px+220, this.py+120+20*this.nbjoueur);
this.nbjoueur++;
}
});
}
}