mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-11 16:16:15 +00:00
47 lines
1.0 KiB
TypeScript
47 lines
1.0 KiB
TypeScript
|
import BattleScene from "../battle-scene";
|
||
|
import { ModalConfig, ModalUiHandler } from "./modal-ui-handler";
|
||
|
import { addTextObject, TextStyle } from "./text";
|
||
|
import { Mode } from "./ui";
|
||
|
|
||
|
export default class SessionReloadModalUiHandler extends ModalUiHandler {
|
||
|
constructor(scene: BattleScene, mode?: Mode) {
|
||
|
super(scene, mode);
|
||
|
}
|
||
|
|
||
|
getModalTitle(): string {
|
||
|
return '';
|
||
|
}
|
||
|
|
||
|
getWidth(): number {
|
||
|
return 160;
|
||
|
}
|
||
|
|
||
|
getHeight(): number {
|
||
|
return 32;
|
||
|
}
|
||
|
|
||
|
getMargin(): [number, number, number, number] {
|
||
|
return [ 0, 0, 48, 0 ];
|
||
|
}
|
||
|
|
||
|
getButtonLabels(): string[] {
|
||
|
return [ ];
|
||
|
}
|
||
|
|
||
|
setup(): void {
|
||
|
super.setup();
|
||
|
|
||
|
const label = addTextObject(this.scene, this.getWidth() / 2, this.getHeight() / 2, 'Your session is out of date.\nYour data will be reloaded…', TextStyle.WINDOW, { fontSize: '48px', align: 'center' });
|
||
|
label.setOrigin(0.5, 0.5);
|
||
|
|
||
|
this.modalContainer.add(label);
|
||
|
}
|
||
|
|
||
|
show(args: any[]): boolean {
|
||
|
const config: ModalConfig = {
|
||
|
buttonActions: []
|
||
|
};
|
||
|
|
||
|
return super.show([ config ]);
|
||
|
}
|
||
|
}
|