2024-03-21 17:12:05 +00:00
|
|
|
import BattleScene from "../battle-scene";
|
|
|
|
import { DailyRunScoreboard } from "./daily-run-scoreboard";
|
2024-06-01 13:56:32 +01:00
|
|
|
import OptionSelectUiHandler from "./settings/option-select-ui-handler";
|
2024-03-21 17:12:05 +00:00
|
|
|
import { Mode } from "./ui";
|
|
|
|
import * as Utils from "../utils";
|
2024-03-21 18:53:35 +00:00
|
|
|
import { TextStyle, addTextObject } from "./text";
|
2024-05-16 09:37:40 +01:00
|
|
|
import { getBattleCountSplashMessage, getSplashMessages } from "../data/splash-messages";
|
2024-04-30 15:53:00 +01:00
|
|
|
import i18next from "i18next";
|
2024-03-21 17:12:05 +00:00
|
|
|
|
|
|
|
export default class TitleUiHandler extends OptionSelectUiHandler {
|
|
|
|
private titleContainer: Phaser.GameObjects.Container;
|
|
|
|
private dailyRunScoreboard: DailyRunScoreboard;
|
2024-03-24 01:33:57 +00:00
|
|
|
private playerCountLabel: Phaser.GameObjects.Text;
|
2024-04-06 23:29:17 +01:00
|
|
|
private splashMessage: string;
|
|
|
|
private splashMessageText: Phaser.GameObjects.Text;
|
2024-03-21 17:12:05 +00:00
|
|
|
|
2024-05-30 00:14:32 +01:00
|
|
|
private titleStatsTimer: NodeJS.Timeout;
|
2024-03-24 01:33:57 +00:00
|
|
|
|
2024-03-21 17:12:05 +00:00
|
|
|
constructor(scene: BattleScene, mode: Mode = Mode.TITLE) {
|
|
|
|
super(scene, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
setup() {
|
|
|
|
super.setup();
|
|
|
|
|
|
|
|
const ui = this.getUi();
|
|
|
|
|
|
|
|
this.titleContainer = this.scene.add.container(0, -(this.scene.game.canvas.height / 6));
|
|
|
|
this.titleContainer.setAlpha(0);
|
|
|
|
ui.add(this.titleContainer);
|
|
|
|
|
2024-05-23 16:03:10 +01:00
|
|
|
const logo = this.scene.add.image((this.scene.game.canvas.width / 6) / 2, 8, "logo");
|
2024-03-21 17:12:05 +00:00
|
|
|
logo.setOrigin(0.5, 0);
|
|
|
|
this.titleContainer.add(logo);
|
|
|
|
|
2024-03-23 20:30:52 +00:00
|
|
|
this.dailyRunScoreboard = new DailyRunScoreboard(this.scene, 1, 44);
|
2024-05-23 16:03:10 +01:00
|
|
|
this.dailyRunScoreboard.setup();
|
2024-03-21 17:12:05 +00:00
|
|
|
|
|
|
|
this.titleContainer.add(this.dailyRunScoreboard);
|
2024-03-21 18:53:35 +00:00
|
|
|
|
2024-05-28 21:51:33 +01:00
|
|
|
this.playerCountLabel = addTextObject(this.scene, (this.scene.game.canvas.width / 6) - 2, (this.scene.game.canvas.height / 6) - 109, `? ${i18next.t("menu:playersOnline")}`, TextStyle.MESSAGE, { fontSize: "54px" });
|
2024-03-24 01:33:57 +00:00
|
|
|
this.playerCountLabel.setOrigin(1, 0);
|
|
|
|
this.titleContainer.add(this.playerCountLabel);
|
|
|
|
|
2024-05-23 16:03:10 +01:00
|
|
|
this.splashMessageText = addTextObject(this.scene, logo.x + 64, logo.y + logo.displayHeight - 8, "", TextStyle.MONEY, { fontSize: "54px" });
|
2024-04-06 23:29:17 +01:00
|
|
|
this.splashMessageText.setOrigin(0.5, 0.5);
|
2024-05-23 16:03:10 +01:00
|
|
|
this.splashMessageText.setAngle(-20);
|
2024-04-06 23:29:17 +01:00
|
|
|
this.titleContainer.add(this.splashMessageText);
|
|
|
|
|
|
|
|
const originalSplashMessageScale = this.splashMessageText.scale;
|
2024-03-21 18:53:35 +00:00
|
|
|
|
|
|
|
this.scene.tweens.add({
|
2024-04-06 23:29:17 +01:00
|
|
|
targets: this.splashMessageText,
|
2024-03-21 18:53:35 +00:00
|
|
|
duration: Utils.fixedInt(350),
|
|
|
|
scale: originalSplashMessageScale * 1.25,
|
|
|
|
loop: -1,
|
|
|
|
yoyo: true,
|
2024-05-23 16:03:10 +01:00
|
|
|
});
|
2024-03-21 17:12:05 +00:00
|
|
|
}
|
|
|
|
|
2024-04-06 23:29:17 +01:00
|
|
|
updateTitleStats(): void {
|
2024-05-23 16:03:10 +01:00
|
|
|
Utils.apiFetch("game/titlestats")
|
2024-03-24 01:33:57 +00:00
|
|
|
.then(request => request.json())
|
2024-04-06 23:29:17 +01:00
|
|
|
.then(stats => {
|
2024-04-30 15:53:00 +01:00
|
|
|
this.playerCountLabel.setText(`${stats.playerCount} ${i18next.t("menu:playersOnline")}`);
|
2024-05-23 16:03:10 +01:00
|
|
|
if (this.splashMessage === getBattleCountSplashMessage()) {
|
|
|
|
this.splashMessageText.setText(getBattleCountSplashMessage().replace("{COUNT}", stats.battleCount.toLocaleString("en-US")));
|
|
|
|
}
|
2024-05-02 13:44:10 +01:00
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
console.error("Failed to fetch title stats:\n", err);
|
2024-04-06 23:29:17 +01:00
|
|
|
});
|
2024-03-24 01:33:57 +00:00
|
|
|
}
|
|
|
|
|
2024-03-21 17:12:05 +00:00
|
|
|
show(args: any[]): boolean {
|
|
|
|
const ret = super.show(args);
|
|
|
|
|
|
|
|
if (ret) {
|
2024-05-16 09:37:40 +01:00
|
|
|
this.splashMessage = Utils.randItem(getSplashMessages());
|
2024-05-23 16:03:10 +01:00
|
|
|
this.splashMessageText.setText(this.splashMessage.replace("{COUNT}", "?"));
|
2024-03-21 18:53:35 +00:00
|
|
|
|
2024-03-21 17:12:05 +00:00
|
|
|
const ui = this.getUi();
|
|
|
|
|
|
|
|
this.dailyRunScoreboard.update();
|
|
|
|
|
2024-04-06 23:29:17 +01:00
|
|
|
this.updateTitleStats();
|
2024-03-24 01:33:57 +00:00
|
|
|
|
2024-05-08 20:47:03 +01:00
|
|
|
this.titleStatsTimer = setInterval(() => this.updateTitleStats(), 60000);
|
2024-03-24 01:33:57 +00:00
|
|
|
|
2024-03-21 17:12:05 +00:00
|
|
|
this.scene.tweens.add({
|
|
|
|
targets: [ this.titleContainer, ui.getMessageHandler().bg ],
|
|
|
|
duration: Utils.fixedInt(325),
|
|
|
|
alpha: (target: any) => target === this.titleContainer ? 1 : 0,
|
2024-05-23 16:03:10 +01:00
|
|
|
ease: "Sine.easeInOut"
|
2024-03-21 17:12:05 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
clear(): void {
|
|
|
|
super.clear();
|
|
|
|
|
|
|
|
const ui = this.getUi();
|
|
|
|
|
2024-04-06 23:29:17 +01:00
|
|
|
clearInterval(this.titleStatsTimer);
|
|
|
|
this.titleStatsTimer = null;
|
2024-03-24 01:33:57 +00:00
|
|
|
|
2024-03-21 17:12:05 +00:00
|
|
|
this.scene.tweens.add({
|
|
|
|
targets: [ this.titleContainer, ui.getMessageHandler().bg ],
|
|
|
|
duration: Utils.fixedInt(325),
|
|
|
|
alpha: (target: any) => target === this.titleContainer ? 0 : 1,
|
2024-05-23 16:03:10 +01:00
|
|
|
ease: "Sine.easeInOut"
|
2024-03-21 17:12:05 +00:00
|
|
|
});
|
|
|
|
}
|
2024-05-23 16:03:10 +01:00
|
|
|
}
|