add commented-out cheat and test buttons

looks like mapgen is now fixed. here are the buttons I used to test it
This commit is contained in:
Kistaro Windrider 2025-02-22 21:36:55 -08:00
parent ec2e21c712
commit b4aa9329ad
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

@ -6,6 +6,8 @@ import { addButton } from "./button.ts";
import { getPlayerProgress } from "./playerprogress.ts";
import { getStateManager } from "./statemanager.ts";
import { getCheckModal } from "./checkmodal.ts";
//import { LadderPickup } from "./pickups.ts";
// import { generateMap } from "./mapgen.ts";
type Button = {
label: string;
@ -53,6 +55,32 @@ export class Hotbar {
enabled: true,
endorse: getPlayerProgress().getBlood() < 100,
});
/*
buttons.push({
label:"Cheat",
cbClick: () => {
new LadderPickup().onClick();
},
enabled: true,
endorse: false,
})
buttons.push({
label:"Dig for bad maps",
cbClick: () => {
let i = 0;
try {
for(; i < 10000; i++) {
generateMap();
}
} catch(e) {
console.log(`Map gen failed after ${i} tries.`);
}
console.log("Ten thousand maps generated successfully.");
},
enabled: true,
endorse: true,
})
*/
return buttons;
}