pokerogue/src/ui/egg-hatch-scene-handler.ts

59 lines
1.5 KiB
TypeScript
Raw Normal View History

import BattleScene from "../battle-scene";
2024-02-20 00:24:39 -05:00
import { EggHatchPhase } from "../egg-hatch-phase";
import { Mode } from "./ui";
import UiHandler from "./ui-handler";
import {Button} from "../enums/buttons";
export default class EggHatchSceneHandler extends UiHandler {
public eggHatchContainer: Phaser.GameObjects.Container;
constructor(scene: BattleScene) {
super(scene, Mode.EGG_HATCH_SCENE);
}
setup() {
this.eggHatchContainer = this.scene.add.container(0, -this.scene.game.canvas.height / 6);
this.scene.fieldUI.add(this.eggHatchContainer);
const eggLightraysAnimFrames = this.scene.anims.generateFrameNames("egg_lightrays", { start: 0, end: 3 });
2024-05-24 22:57:28 -04:00
if (!(this.scene.anims.exists("egg_lightrays"))) {
this.scene.anims.create({
key: "egg_lightrays",
frames: eggLightraysAnimFrames,
frameRate: 32
});
}
}
2023-12-30 18:41:25 -05:00
show(_args: any[]): boolean {
super.show(_args);
this.getUi().showText(null, 0);
2023-12-30 18:41:25 -05:00
2024-04-06 21:48:48 -04:00
this.scene.setModifiersVisible(false);
2023-12-30 18:41:25 -05:00
return true;
}
processInput(button: Button): boolean {
2024-02-20 00:24:39 -05:00
if (button === Button.ACTION || button === Button.CANCEL) {
2024-02-20 07:12:03 -05:00
const phase = this.scene.getCurrentPhase();
if (phase instanceof EggHatchPhase && phase.trySkip()) {
2024-02-20 00:24:39 -05:00
return true;
}
2024-02-20 00:24:39 -05:00
}
return this.scene.ui.getMessageHandler().processInput(button);
}
setCursor(_cursor: integer): boolean {
return false;
}
clear() {
super.clear();
this.eggHatchContainer.removeAll(true);
this.getUi().hideTooltip();
}
}