Compare commits
11 Commits
main
...
savesystem
Author | SHA1 | Date | |
---|---|---|---|
a3c16e1aca | |||
2c121f0c8a | |||
32b6bf0b53 | |||
6fe843bf55 | |||
93ef512554 | |||
3a968af5ca | |||
2837461add | |||
58b8bbc27b | |||
a149938f00 | |||
b24e24a7ca | |||
3aba0beac5 |
@ -111,14 +111,6 @@ 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];
|
||||
}
|
||||
|
@ -84,12 +84,12 @@ export class Hotbar {
|
||||
|
||||
#offerSleep() {
|
||||
let bloodAmount = getPlayerProgress().getBlood();
|
||||
let sleepText = "You're exhausted. Sleep and save your game?";
|
||||
let sleepText = "You're exhausted.";
|
||||
if (bloodAmount > 100) {
|
||||
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) {
|
||||
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(
|
||||
|
@ -155,19 +155,19 @@ export class HuntMode {
|
||||
|
||||
let mvdx = 0;
|
||||
let mvdy = 0;
|
||||
if (I.isAnyKeyDown("w", "k", "ArrowUp")) {
|
||||
if (I.isKeyDown("w")) {
|
||||
touched = true;
|
||||
mvdy -= amt;
|
||||
}
|
||||
if (I.isAnyKeyDown("s", "j", "ArrowDown")) {
|
||||
if (I.isKeyDown("s")) {
|
||||
touched = true;
|
||||
mvdy += amt;
|
||||
}
|
||||
if (I.isAnyKeyDown("a", "h", "ArrowLeft")) {
|
||||
if (I.isKeyDown("a")) {
|
||||
touched = true;
|
||||
mvdx -= amt;
|
||||
}
|
||||
if (I.isAnyKeyDown("d", "l", "ArrowRight")) {
|
||||
if (I.isKeyDown("d")) {
|
||||
touched = true;
|
||||
mvdx += amt;
|
||||
}
|
||||
|
@ -30,8 +30,6 @@ const NUM_ROOMS_DESIRED = 1;
|
||||
const EXTRA_CONNECTOR_CHANCE = 0.15;
|
||||
const WINDING_PERCENT = 50;
|
||||
|
||||
const DEBUG = false;
|
||||
|
||||
// This is an implementation of Nystrom's algorithm:
|
||||
// https://journal.stuffwithstuff.com/2014/12/21/rooms-and-mazes/
|
||||
class Knife {
|
||||
@ -100,7 +98,7 @@ class Knife {
|
||||
}
|
||||
|
||||
showDebug(merged: Record<number, number>) {
|
||||
if (DEBUG) {
|
||||
if (true) {
|
||||
let out = "";
|
||||
let errors: string[] = [];
|
||||
const size = this.#regions.size;
|
||||
@ -112,7 +110,7 @@ class Knife {
|
||||
return this.#sealedWalls.get(loc) ? "◘" : "█";
|
||||
}
|
||||
let r = this.#regions.get(loc);
|
||||
if (r !== null) {
|
||||
if (typeof r === "number") {
|
||||
const resolved = merged[r];
|
||||
if (typeof resolved === "number") {
|
||||
r = resolved;
|
||||
@ -757,7 +755,7 @@ function dedup(items: number[]): number[] {
|
||||
}
|
||||
|
||||
function showDebug(grid: LoadedNewMap) {
|
||||
if (DEBUG) {
|
||||
if (true) {
|
||||
let out = "";
|
||||
for (let y = 0; y < grid.size.h; y++) {
|
||||
for (let x = 0; x < grid.size.w; x++) {
|
||||
|
@ -17,5 +17,5 @@ Your Progenitor
|
||||
|
||||
|
||||
|
||||
PS: Left mouse + WASD. Like Quake! Arrows or HJKL work too.`,
|
||||
PS: Left mouse + WASD. Like Quake!`,
|
||||
]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user