mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-20 16:42:45 +02:00
197 lines
5.9 KiB
TypeScript
197 lines
5.9 KiB
TypeScript
import type { InputFieldConfig } from "./form-modal-ui-handler";
|
|
import { FormModalUiHandler } from "./form-modal-ui-handler";
|
|
import type { ModalConfig } from "./modal-ui-handler";
|
|
import type { PlayerPokemon } from "#app/field/pokemon";
|
|
import type { OptionSelectItem } from "./abstact-option-select-ui-handler";
|
|
import { isNullOrUndefined } from "#app/utils/common";
|
|
import { UiMode } from "#enums/ui-mode";
|
|
import { FilterTextRow } from "./filter-text";
|
|
import { allAbilities } from "#app/data/data-lists";
|
|
import { allMoves } from "#app/data/data-lists";
|
|
import { allSpecies } from "#app/data/data-lists";
|
|
import i18next from "i18next";
|
|
|
|
export default class PokedexScanUiHandler extends FormModalUiHandler {
|
|
keys: string[];
|
|
reducedKeys: string[];
|
|
parallelKeys: string[];
|
|
nameKeys: string[];
|
|
moveKeys: string[];
|
|
abilityKeys: string[];
|
|
row: number;
|
|
|
|
setup() {
|
|
super.setup();
|
|
|
|
this.nameKeys = allSpecies.map(a => a.name).filter((value, index, self) => self.indexOf(value) === index);
|
|
this.moveKeys = allMoves.map(a => a.name);
|
|
this.abilityKeys = allAbilities.map(a => a.name);
|
|
}
|
|
|
|
getModalTitle(_config?: ModalConfig): string {
|
|
return i18next.t("pokedexUiHandler:scanChooseOption");
|
|
}
|
|
|
|
getWidth(_config?: ModalConfig): number {
|
|
return 300;
|
|
}
|
|
|
|
getMargin(_config?: ModalConfig): [number, number, number, number] {
|
|
return [0, 0, 48, 0];
|
|
}
|
|
|
|
getButtonLabels(_config?: ModalConfig): string[] {
|
|
return [i18next.t("pokedexUiHandler:scanSelect"), i18next.t("pokedexUiHandler:scanCancel")];
|
|
}
|
|
|
|
getReadableErrorMessage(error: string): string {
|
|
const colonIndex = error?.indexOf(":");
|
|
if (colonIndex > 0) {
|
|
error = error.slice(0, colonIndex);
|
|
}
|
|
|
|
return super.getReadableErrorMessage(error);
|
|
}
|
|
|
|
override getInputFieldConfigs(): InputFieldConfig[] {
|
|
switch (this.row) {
|
|
case FilterTextRow.NAME: {
|
|
return [{ label: i18next.t("pokedexUiHandler:scanLabelName") }];
|
|
}
|
|
case FilterTextRow.MOVE_1:
|
|
case FilterTextRow.MOVE_2: {
|
|
return [{ label: i18next.t("pokedexUiHandler:scanLabelMove") }];
|
|
}
|
|
case FilterTextRow.ABILITY_1: {
|
|
return [{ label: i18next.t("pokedexUiHandler:scanLabelAbility") }];
|
|
}
|
|
case FilterTextRow.ABILITY_2: {
|
|
return [{ label: i18next.t("pokedexUiHandler:scanLabelPassive") }];
|
|
}
|
|
default: {
|
|
return [{ label: "" }];
|
|
}
|
|
}
|
|
}
|
|
|
|
reduceKeys(): void {
|
|
switch (this.row) {
|
|
case FilterTextRow.NAME: {
|
|
this.reducedKeys = this.nameKeys;
|
|
break;
|
|
}
|
|
case FilterTextRow.MOVE_1:
|
|
case FilterTextRow.MOVE_2: {
|
|
this.reducedKeys = this.moveKeys;
|
|
break;
|
|
}
|
|
case FilterTextRow.ABILITY_1:
|
|
case FilterTextRow.ABILITY_2: {
|
|
this.reducedKeys = this.abilityKeys;
|
|
break;
|
|
}
|
|
default: {
|
|
this.reducedKeys = this.keys;
|
|
}
|
|
}
|
|
}
|
|
|
|
// args[2] is an index of FilterTextRow
|
|
show(args: any[]): boolean {
|
|
this.row = args[2];
|
|
const ui = this.getUi();
|
|
const hasTitle = !!this.getModalTitle();
|
|
this.updateFields(this.getInputFieldConfigs(), hasTitle);
|
|
this.updateContainer(args[0] as ModalConfig);
|
|
const input = this.inputs[0];
|
|
input.setMaxLength(255);
|
|
|
|
this.reduceKeys();
|
|
|
|
setTimeout(() => {
|
|
input.setFocus(); // Focus after a short delay to avoid unwanted input
|
|
}, 50);
|
|
|
|
input.on("keydown", (inputObject, evt: KeyboardEvent) => {
|
|
if (
|
|
["escape", "space"].some(v => v === evt.key.toLowerCase() || v === evt.code.toLowerCase()) &&
|
|
ui.getMode() === UiMode.AUTO_COMPLETE
|
|
) {
|
|
// Delete autocomplete list and recovery focus.
|
|
inputObject.on("blur", () => inputObject.node.focus(), { once: true });
|
|
ui.revertMode();
|
|
}
|
|
});
|
|
|
|
input.on("textchange", (inputObject, evt: InputEvent) => {
|
|
// Delete autocomplete.
|
|
if (ui.getMode() === UiMode.AUTO_COMPLETE) {
|
|
ui.revertMode();
|
|
}
|
|
|
|
let options: OptionSelectItem[] = [];
|
|
const filteredKeys = this.reducedKeys.filter(command =>
|
|
command.toLowerCase().includes(inputObject.text.toLowerCase()),
|
|
);
|
|
if (inputObject.text !== "" && filteredKeys.length > 0) {
|
|
options = filteredKeys.slice(0).map(value => {
|
|
return {
|
|
label: value,
|
|
handler: () => {
|
|
if (!isNullOrUndefined(evt.data) || evt.inputType?.toLowerCase() === "deletecontentbackward") {
|
|
inputObject.setText(value);
|
|
}
|
|
ui.revertMode();
|
|
return true;
|
|
},
|
|
};
|
|
});
|
|
}
|
|
|
|
if (options.length > 0) {
|
|
const modalOpts = {
|
|
options: options,
|
|
maxOptions: 5,
|
|
modalContainer: this.modalContainer,
|
|
};
|
|
ui.setOverlayMode(UiMode.AUTO_COMPLETE, modalOpts);
|
|
}
|
|
});
|
|
|
|
if (super.show(args)) {
|
|
const config = args[0] as ModalConfig;
|
|
const label = this.formLabels[0];
|
|
|
|
const inputWidth = label.width < 420 ? 200 : 200 - (label.width - 420) / 5.75;
|
|
this.inputs[0].resize(inputWidth * 5.75, 116);
|
|
this.inputContainers[0].list[0].width = inputWidth;
|
|
if (args[1] && typeof (args[1] as PlayerPokemon).getNameToRender === "function") {
|
|
this.inputs[0].text = (args[1] as PlayerPokemon).getNameToRender();
|
|
} else {
|
|
this.inputs[0].text = args[1];
|
|
}
|
|
this.submitAction = _ => {
|
|
if (ui.getMode() === UiMode.POKEDEX_SCAN) {
|
|
this.sanitizeInputs();
|
|
const outputName = this.reducedKeys.includes(this.inputs[0].text) ? this.inputs[0].text : "";
|
|
const sanitizedName = btoa(unescape(encodeURIComponent(outputName)));
|
|
config.buttonActions[0](sanitizedName);
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
clear(): void {
|
|
super.clear();
|
|
|
|
// Clearing the labels so they don't appear again and overlap
|
|
this.formLabels.forEach(label => {
|
|
label.destroy();
|
|
});
|
|
}
|
|
}
|