Compare commits

..

4 Commits

Author SHA1 Message Date
260422fabe Arrow and vim keys support (#43)
accept arrows and hjkl as movement input too

Cnange opening text to mention these control options

Reviewed-on: #43
Co-authored-by: Kistaro Windrider <kistaro@gmail.com>
Co-committed-by: Kistaro Windrider <kistaro@gmail.com>
2025-02-26 04:16:54 +00:00
a2e09e5237
disable the *other* mapgen debug spew 2025-02-24 21:13:50 -08:00
8260bf8b21 Disable map debug display, use phrase "sleep and save your game" 2025-02-24 20:46:58 -08:00
19b097a0bd Save system: ceremonial PR (#42)
prototype for writing a save

Merge branch 'main' into savesystem

violently read player from file

oops, missed revisions in StateManager

create StateManager from file

autoformat the world

oops, forgot to save the split-up of save.ts

Save on end-of-day, or after endgame.

Putting it here avoids a circular reference problem

Merge branch 'main' into savesystem

Integrate save system

Deal with save corruption correctly

Co-authored-by: Kistaro Windrider <kistaro@gmail.com>
Reviewed-on: #42
Co-authored-by: Nyeogmi <economicsbat@gmail.com>
Co-committed-by: Nyeogmi <economicsbat@gmail.com>
2025-02-25 04:14:02 +00:00
5 changed files with 21 additions and 11 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

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

View File

@ -30,6 +30,8 @@ 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 {
@ -98,7 +100,7 @@ class Knife {
} }
showDebug(merged: Record<number, number>) { showDebug(merged: Record<number, number>) {
if (true) { if (DEBUG) {
let out = ""; let out = "";
let errors: string[] = []; let errors: string[] = [];
const size = this.#regions.size; const size = this.#regions.size;
@ -110,7 +112,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 (typeof r === "number") { if (r !== null) {
const resolved = merged[r]; const resolved = merged[r];
if (typeof resolved === "number") { if (typeof resolved === "number") {
r = resolved; r = resolved;
@ -755,7 +757,7 @@ function dedup(items: number[]): number[] {
} }
function showDebug(grid: LoadedNewMap) { function showDebug(grid: LoadedNewMap) {
if (true) { if (DEBUG) {
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!`, PS: Left mouse + WASD. Like Quake! Arrows or HJKL work too.`,
]); ]);