Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 1x 1x 1x 1x 20x 20x 1x 1x 9x 9x 9x 9x 1x 1x 1x 3x 3x 3x 1x 1x 3x 3x 3x 1x | import { Keys, Screen, type InputDataInterface, type DisplayInterface, type World } from "@jga/games";
export class StartScreen extends Screen {
public constructor(engine: World, display: DisplayInterface) {
super("Start", engine, display);
}
public render(): void {
// Render our prompt to the screen
this.display.drawText({ x: 1, y: 1 }, "%c{yellow}Space Roguelike");
this.display.drawText({ x: 1, y: 2 }, "Press [Enter] to start!");
}
// eslint-disable-next-line class-methods-use-this
public handleInput(inputType: string, inputData: InputDataInterface): string | null {
let result = null;
// When [Enter] is pressed, go to the play screen
if (inputType === "keydown" && inputData.code === Keys.RETURN) {
result = "play";
}
return result;
}
}
|