mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-03 12:16:22 +00:00
696ff6eae3
* Initial challenge framework * Add type localisation * Change how challenges are tracked Also fixes the difficulty total text * MVP Renames challenge types, temporarily hides difficulty, and implements challenge saving. * Attempt to fix one legal pokemon in a double battle * Make monotype ignore type changing effects * Make isOfType correctly detect normal types * Try to fix double battles again * Make challenge function more like classic * Add helper function for fainted or not allowed * Add framework for fresh start challenge and improve comments * Try to fix evolution issues * Make form changing items only usable from rewards screen * Update localisation * Additional localisation change * Add achievements for completing challenges * Fix initialisation bug with challenge achievements * Add support for gamemode specific fixed battles Also make monogen challenges face the e4 of their generation * Add better support for mobile in challenges * Localise illegal evolution/form change message * Update achievement names * Make alternate forms count for monogen * Update monotype achievement icons * Add more comments * Improve comments * Fix mid battle form changes * Reorder mode list * Remove currently unused localisation entry * Add type overrides for monotype challenges Meloetta always counts for psychic and castform always counts for normal * Change how form changes are handled Now attempts a switch at the start of each turn instead of immediately * Add start button to challenge select screen * Make starter select back out to challenge screen if using challenges * Fix daily runs * Update tests to new game mode logic
59 lines
1.2 KiB
TypeScript
59 lines
1.2 KiB
TypeScript
import BattleScene from "../battle-scene";
|
|
import { TextStyle, getTextColor } from "./text";
|
|
import { Mode } from "./ui";
|
|
import {Button} from "../enums/buttons";
|
|
|
|
/**
|
|
* A basic abstract class to act as a holder and processor for UI elements.
|
|
*/
|
|
export default abstract class UiHandler {
|
|
protected scene: BattleScene;
|
|
protected mode: integer;
|
|
protected cursor: integer = 0;
|
|
public active: boolean = false;
|
|
|
|
/**
|
|
* @param {BattleScene} scene The same scene as everything else.
|
|
* @param {Mode} mode The mode of the UI element. These should be unique.
|
|
*/
|
|
constructor(scene: BattleScene, mode: Mode) {
|
|
this.scene = scene;
|
|
this.mode = mode;
|
|
}
|
|
|
|
abstract setup(): void;
|
|
|
|
show(_args: any[]): boolean {
|
|
this.active = true;
|
|
|
|
return true;
|
|
}
|
|
|
|
abstract processInput(button: Button): boolean;
|
|
|
|
getUi() {
|
|
return this.scene.ui;
|
|
}
|
|
|
|
getTextColor(style: TextStyle, shadow: boolean = false): string {
|
|
return getTextColor(style, shadow, this.scene.uiTheme);
|
|
}
|
|
|
|
getCursor(): integer {
|
|
return this.cursor;
|
|
}
|
|
|
|
setCursor(cursor: integer): boolean {
|
|
const changed = this.cursor !== cursor;
|
|
if (changed) {
|
|
this.cursor = cursor;
|
|
}
|
|
|
|
return changed;
|
|
}
|
|
|
|
clear() {
|
|
this.active = false;
|
|
}
|
|
}
|