Compare commits

..

11 Commits

5 changed files with 11 additions and 21 deletions

View File

@ -111,14 +111,6 @@ 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

@ -84,12 +84,12 @@ export class Hotbar {
#offerSleep() { #offerSleep() {
let bloodAmount = getPlayerProgress().getBlood(); let bloodAmount = getPlayerProgress().getBlood();
let sleepText = "You're exhausted. Sleep and save your game?"; let sleepText = "You're exhausted.";
if (bloodAmount > 100) { if (bloodAmount > 100) {
sleepText = sleepText =
"You've got some energy left -- are you sure you want to sleep and save your game?"; "You've got some energy left -- are you sure you want to sleep?";
} else if (bloodAmount > 2000) { } else if (bloodAmount > 2000) {
sleepText = "Are you sure you want to sleep and save your game? You have so much energy."; sleepText = "Are you sure you want to sleep? You have so much energy.";
} }
getCheckModal().show( getCheckModal().show(

View File

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

View File

@ -30,8 +30,6 @@ const NUM_ROOMS_DESIRED = 1;
const EXTRA_CONNECTOR_CHANCE = 0.15; const EXTRA_CONNECTOR_CHANCE = 0.15;
const WINDING_PERCENT = 50; const WINDING_PERCENT = 50;
const DEBUG = false;
// This is an implementation of Nystrom's algorithm: // This is an implementation of Nystrom's algorithm:
// https://journal.stuffwithstuff.com/2014/12/21/rooms-and-mazes/ // https://journal.stuffwithstuff.com/2014/12/21/rooms-and-mazes/
class Knife { class Knife {
@ -100,7 +98,7 @@ class Knife {
} }
showDebug(merged: Record<number, number>) { showDebug(merged: Record<number, number>) {
if (DEBUG) { if (true) {
let out = ""; let out = "";
let errors: string[] = []; let errors: string[] = [];
const size = this.#regions.size; const size = this.#regions.size;
@ -112,7 +110,7 @@ class Knife {
return this.#sealedWalls.get(loc) ? "◘" : "█"; return this.#sealedWalls.get(loc) ? "◘" : "█";
} }
let r = this.#regions.get(loc); let r = this.#regions.get(loc);
if (r !== null) { if (typeof r === "number") {
const resolved = merged[r]; const resolved = merged[r];
if (typeof resolved === "number") { if (typeof resolved === "number") {
r = resolved; r = resolved;
@ -757,7 +755,7 @@ function dedup(items: number[]): number[] {
} }
function showDebug(grid: LoadedNewMap) { function showDebug(grid: LoadedNewMap) {
if (DEBUG) { if (true) {
let out = ""; let out = "";
for (let y = 0; y < grid.size.h; y++) { for (let y = 0; y < grid.size.h; y++) {
for (let x = 0; x < grid.size.w; x++) { for (let x = 0; x < grid.size.w; x++) {

View File

@ -17,5 +17,5 @@ Your Progenitor
PS: Left mouse + WASD. Like Quake! Arrows or HJKL work too.`, PS: Left mouse + WASD. Like Quake!`,
]); ]);