pokerogue/src/ui/ability-bar.ts

101 lines
2.4 KiB
TypeScript
Raw Normal View History

2023-04-27 06:14:15 +01:00
import BattleScene from "../battle-scene";
2024-03-01 01:08:50 +00:00
import Pokemon from "../field/pokemon";
2023-04-27 06:14:15 +01:00
import { TextStyle, addTextObject } from "./text";
import i18next from "i18next";
2023-04-27 06:14:15 +01:00
const hiddenX = -118;
const shownX = 0;
const baseY = -116;
2023-04-27 06:14:15 +01:00
export default class AbilityBar extends Phaser.GameObjects.Container {
private bg: Phaser.GameObjects.Image;
private abilityBarText: Phaser.GameObjects.Text;
2023-04-27 06:14:15 +01:00
private tween: Phaser.Tweens.Tween;
private autoHideTimer: NodeJS.Timeout;
2023-04-27 06:14:15 +01:00
public shown: boolean;
constructor(scene: BattleScene) {
super(scene, hiddenX, baseY);
2023-04-27 06:14:15 +01:00
}
setup(): void {
this.bg = this.scene.add.image(0, 0, "ability_bar_left");
2023-04-27 06:14:15 +01:00
this.bg.setOrigin(0, 0);
this.add(this.bg);
this.abilityBarText = addTextObject(this.scene, 15, 3, "", TextStyle.MESSAGE, { fontSize: "72px" });
this.abilityBarText.setOrigin(0, 0);
this.abilityBarText.setWordWrapWidth(600, true);
this.add(this.abilityBarText);
2023-04-27 06:14:15 +01:00
this.setVisible(false);
this.shown = false;
}
showAbility(pokemon: Pokemon, passive: boolean = false): void {
this.abilityBarText.setText(`${i18next.t("fightUiHandler:abilityFlyInText", { pokemonName: pokemon.name, passive: passive ? i18next.t("fightUiHandler:passive") : "", abilityName: !passive ? pokemon.getAbility().name : pokemon.getPassiveAbility().name })}`);
2023-04-27 06:14:15 +01:00
if (this.shown) {
return;
}
(this.scene as BattleScene).fieldUI.bringToTop(this);
2023-04-27 06:14:15 +01:00
this.y = baseY + ((this.scene as BattleScene).currentBattle.double ? 14 : 0);
2023-04-27 06:14:15 +01:00
this.tween = this.scene.tweens.add({
targets: this,
x: shownX,
2023-04-27 06:14:15 +01:00
duration: 500,
ease: "Sine.easeOut",
2024-04-09 17:08:38 +01:00
onComplete: () => {
this.tween = null;
this.resetAutoHideTimer();
}
2023-04-27 06:14:15 +01:00
});
2024-05-24 00:45:04 +01:00
2023-04-27 06:14:15 +01:00
this.setVisible(true);
this.shown = true;
}
hide(): void {
if (!this.shown) {
return;
}
if (this.autoHideTimer) {
2024-04-09 17:08:38 +01:00
clearInterval(this.autoHideTimer);
}
2024-04-09 17:08:38 +01:00
if (this.tween) {
2023-04-27 06:14:15 +01:00
this.tween.stop();
}
2023-04-27 06:14:15 +01:00
this.tween = this.scene.tweens.add({
targets: this,
x: -91,
duration: 500,
ease: "Sine.easeIn",
2023-04-27 06:14:15 +01:00
onComplete: () => {
this.tween = null;
this.setVisible(false);
}
});
this.shown = false;
}
2024-04-09 17:08:38 +01:00
resetAutoHideTimer(): void {
if (this.autoHideTimer) {
2024-04-09 17:08:38 +01:00
clearInterval(this.autoHideTimer);
}
2024-04-09 17:08:38 +01:00
this.autoHideTimer = setTimeout(() => {
this.hide();
this.autoHideTimer = null;
}, 2500);
}
}