accept arrows and hjkl as movement input too

This commit is contained in:
Kistaro Windrider 2025-02-25 10:06:39 -08:00
parent a2e09e5237
commit 30c90a0eda
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8
2 changed files with 12 additions and 4 deletions

View File

@ -111,6 +111,14 @@ class Input {
return this.#mousePosition; return this.#mousePosition;
} }
isAnyKeyDown(...keys: string[]) : boolean {
for (const k of keys) {
if(this.isKeyDown(k)) {
return true
}
}
return false
}
isKeyDown(key: string): boolean { isKeyDown(key: string): boolean {
return this.#keyDown[key]; return this.#keyDown[key];
} }

View File

@ -155,19 +155,19 @@ export class HuntMode {
let mvdx = 0; let mvdx = 0;
let mvdy = 0; let mvdy = 0;
if (I.isKeyDown("w")) { if (I.isAnyKeyDown("w", "k", "ArrowUp")) {
touched = true; touched = true;
mvdy -= amt; mvdy -= amt;
} }
if (I.isKeyDown("s")) { if (I.isAnyKeyDown("s", "j", "ArrowDown")) {
touched = true; touched = true;
mvdy += amt; mvdy += amt;
} }
if (I.isKeyDown("a")) { if (I.isAnyKeyDown("a", "h", "ArrowLeft")) {
touched = true; touched = true;
mvdx -= amt; mvdx -= amt;
} }
if (I.isKeyDown("d")) { if (I.isAnyKeyDown("d", "l", "ArrowRight")) {
touched = true; touched = true;
mvdx += amt; mvdx += amt;
} }