mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-09 19:41:37 +00:00
* Replace various `scene` pass-arounds with global scene variable * Modify tests * Add scene back to `fade[in|out]()` calls Co-authored-by: Moka <54149968+MokaStitcher@users.noreply.github.com> * Fix Bug Superfan ME test Co-authored-by: Moka <54149968+MokaStitcher@users.noreply.github.com> * Re-enable fixed test Co-authored-by: Moka <54149968+MokaStitcher@users.noreply.github.com> * Rename `gScene` to `globalScene` * Move `globalScene` to its own file to fix import/async issues * Fix `SelectModifierPhase` tests * Fix ME tests by removing `scene` from `expect()`s * Resolve merge issues * Remove tsdocs referencing `scene` params Remove missed instances of `.scene` * Remove unnecessary `globalScene` usage in `loading-scene.ts` * Fix merge conflicts * Attempt to fix circular import issue * Found the source of the import issue * Fix merge issues --------- Co-authored-by: Moka <54149968+MokaStitcher@users.noreply.github.com>
48 lines
1.0 KiB
TypeScript
48 lines
1.0 KiB
TypeScript
import type { ModalConfig } from "./modal-ui-handler";
|
|
import { ModalUiHandler } from "./modal-ui-handler";
|
|
import { addTextObject, TextStyle } from "./text";
|
|
import type { Mode } from "./ui";
|
|
|
|
export default class SessionReloadModalUiHandler extends ModalUiHandler {
|
|
constructor(mode: Mode | null = null) {
|
|
super(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.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 ]);
|
|
}
|
|
}
|