pokerogue/src/ui/command-ui-handler.ts

181 lines
4.8 KiB
TypeScript
Raw Normal View History

import { CommandPhase } from "../phases";
import BattleScene from "../battle-scene";
2023-04-20 15:46:05 -04:00
import { addTextObject, TextStyle } from "./text";
import PartyUiHandler, { PartyUiMode } from "./party-ui-handler";
import { Mode } from "./ui";
import UiHandler from "./ui-handler";
import i18next from "../plugins/i18n";
import {Button} from "../enums/buttons";
2023-03-28 14:54:52 -04:00
export enum Command {
FIGHT = 0,
BALL,
POKEMON,
RUN
}
2023-03-28 14:54:52 -04:00
export default class CommandUiHandler extends UiHandler {
private commandsContainer: Phaser.GameObjects.Container;
private cursorObj: Phaser.GameObjects.Image;
protected fieldIndex: integer = 0;
protected cursor2: integer = 0;
2023-03-28 14:54:52 -04:00
constructor(scene: BattleScene) {
super(scene, Mode.COMMAND);
}
setup() {
const ui = this.getUi();
2024-05-24 01:45:04 +02:00
const commands = [
i18next.t("commandUiHandler:fight"),
i18next.t("commandUiHandler:ball"),
i18next.t("commandUiHandler:pokemon"),
i18next.t("commandUiHandler:run")
];
2023-03-28 14:54:52 -04:00
this.commandsContainer = this.scene.add.container(216, -38.7);
this.commandsContainer.setVisible(false);
ui.add(this.commandsContainer);
for (let c = 0; c < commands.length; c++) {
const commandText = addTextObject(this.scene, c % 2 === 0 ? 0 : 55.8, c < 2 ? 0 : 16, commands[c], TextStyle.WINDOW);
this.commandsContainer.add(commandText);
}
}
2023-12-30 18:41:25 -05:00
show(args: any[]): boolean {
2023-03-28 14:54:52 -04:00
super.show(args);
this.fieldIndex = args.length ? args[0] as integer : 0;
2023-03-28 14:54:52 -04:00
this.commandsContainer.setVisible(true);
2024-01-09 23:34:43 -05:00
let commandPhase: CommandPhase;
const currentPhase = this.scene.getCurrentPhase();
if (currentPhase instanceof CommandPhase) {
2024-01-09 23:34:43 -05:00
commandPhase = currentPhase;
} else {
2024-01-09 23:34:43 -05:00
commandPhase = this.scene.getStandbyPhase() as CommandPhase;
}
2024-01-09 23:34:43 -05:00
2023-03-28 14:54:52 -04:00
const messageHandler = this.getUi().getMessageHandler();
messageHandler.commandWindow.setVisible(true);
messageHandler.movesWindowContainer.setVisible(false);
2023-03-28 14:54:52 -04:00
messageHandler.message.setWordWrapWidth(1110);
messageHandler.showText(i18next.t("commandUiHandler:actionMessage", {pokemonName: commandPhase.getPokemon().name}), 0);
this.setCursor(this.getCursor());
2023-12-30 18:41:25 -05:00
return true;
2023-03-28 14:54:52 -04:00
}
processInput(button: Button): boolean {
2023-03-28 14:54:52 -04:00
const ui = this.getUi();
let success = false;
const cursor = this.getCursor();
if (button === Button.CANCEL || button === Button.ACTION) {
2024-05-24 01:45:04 +02:00
if (button === Button.ACTION) {
switch (cursor) {
// Fight
case 0:
if ((this.scene.getCurrentPhase() as CommandPhase).checkFightOverride()) {
return true;
}
ui.setMode(Mode.FIGHT, (this.scene.getCurrentPhase() as CommandPhase).getFieldIndex());
success = true;
break;
2024-03-30 15:34:00 -04:00
// Ball
case 1:
ui.setModeWithoutClear(Mode.BALL);
success = true;
break;
2024-03-30 15:34:00 -04:00
// Pokemon
case 2:
ui.setMode(Mode.PARTY, PartyUiMode.SWITCH, (this.scene.getCurrentPhase() as CommandPhase).getPokemon().getFieldIndex(), null, PartyUiHandler.FilterNonFainted);
success = true;
break;
2024-03-30 15:34:00 -04:00
// Run
case 3:
(this.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.RUN, 0);
success = true;
break;
2023-03-28 14:54:52 -04:00
}
} else {
(this.scene.getCurrentPhase() as CommandPhase).cancel();
}
2023-03-28 14:54:52 -04:00
} else {
switch (button) {
case Button.UP:
if (cursor >= 2) {
success = this.setCursor(cursor - 2);
}
break;
case Button.DOWN:
if (cursor < 2) {
success = this.setCursor(cursor + 2);
}
break;
case Button.LEFT:
if (cursor % 2 === 1) {
success = this.setCursor(cursor - 1);
}
break;
case Button.RIGHT:
if (cursor % 2 === 0) {
success = this.setCursor(cursor + 1);
}
break;
2023-03-28 14:54:52 -04:00
}
}
if (success) {
2023-03-28 14:54:52 -04:00
ui.playSelect();
}
return success;
2023-03-28 14:54:52 -04:00
}
getCursor(): integer {
return !this.fieldIndex ? this.cursor : this.cursor2;
}
2023-03-28 14:54:52 -04:00
setCursor(cursor: integer): boolean {
const changed = this.getCursor() !== cursor;
if (changed) {
if (!this.fieldIndex) {
this.cursor = cursor;
} else {
this.cursor2 = cursor;
}
}
2023-03-28 14:54:52 -04:00
if (!this.cursorObj) {
this.cursorObj = this.scene.add.image(0, 0, "cursor");
this.commandsContainer.add(this.cursorObj);
2023-03-28 14:54:52 -04:00
}
this.cursorObj.setPosition(-5 + (cursor % 2 === 1 ? 56 : 0), 8 + (cursor >= 2 ? 16 : 0));
2023-03-28 14:54:52 -04:00
return changed;
2023-03-28 14:54:52 -04:00
}
2023-04-30 00:51:33 -04:00
clear(): void {
2023-03-28 14:54:52 -04:00
super.clear();
2024-01-09 23:34:43 -05:00
this.getUi().getMessageHandler().commandWindow.setVisible(false);
2023-03-28 14:54:52 -04:00
this.commandsContainer.setVisible(false);
this.getUi().getMessageHandler().clearText();
this.eraseCursor();
}
2023-04-30 00:51:33 -04:00
eraseCursor(): void {
if (this.cursorObj) {
2023-03-28 14:54:52 -04:00
this.cursorObj.destroy();
}
2023-03-28 14:54:52 -04:00
this.cursorObj = null;
}
}