Arrow and vim keys support #43

Merged
pyrex merged 2 commits from arrows-con-polling into main 2025-02-26 04:16:55 +00:00
2 changed files with 12 additions and 4 deletions
Showing only changes of commit 30c90a0eda - Show all commits

View File

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

View File

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