Costing and feel-related movement fixes

This commit is contained in:
Pyrex 2025-02-22 16:19:06 -08:00
parent d9a7b5094c
commit 92288085b7
3 changed files with 50 additions and 48 deletions

View File

@ -105,6 +105,12 @@ export class Point {
lerp(y, Math.floor(this.y), Math.ceil(this.y)), lerp(y, Math.floor(this.y), Math.ceil(this.y)),
); );
} }
distance(other: Point) {
let dx = other.x - this.x;
let dy = other.y - this.y;
return Math.sqrt(dx * dx + dy * dy);
}
} }
export class Size { export class Size {

View File

@ -62,16 +62,6 @@ export class HuntMode {
return this.depth; return this.depth;
} }
// == update logic ==
#collectResources() {
let cell = this.map.get(this.gridifiedPlayer);
let pickup = cell.pickup;
if (pickup != null) {
cell.pickup = null;
}
}
#computeCostToClick(mapPosition: Point): number | null { #computeCostToClick(mapPosition: Point): number | null {
let present = this.map.get(mapPosition); let present = this.map.get(mapPosition);
@ -95,21 +85,6 @@ export class HuntMode {
return pickup.computeCostToClick(); return pickup.computeCostToClick();
} }
/*
movePlayerTo(newPosition: Point) {
let oldX = this.player.x;
let newX = newPosition.x;
this.player = newPosition;
if (newX < oldX) {
this.faceLeft = true;
}
if (oldX < newX) {
this.faceLeft = false;
}
this.#collectResources();
}
*/
getZoneLabel(): string | null { getZoneLabel(): string | null {
return this.map.get(this.gridifiedPlayer).zoneLabel; return this.map.get(this.gridifiedPlayer).zoneLabel;
} }
@ -155,8 +130,9 @@ export class HuntMode {
let dx = this.velocity.x; let dx = this.velocity.x;
let dy = this.velocity.y; let dy = this.velocity.y;
let amt = 0.005; let amt = 0.006;
if (getPlayerProgress().getBlood() > 0) {
if (I.isKeyDown("w")) { if (I.isKeyDown("w")) {
dy -= amt; dy -= amt;
} }
@ -169,15 +145,30 @@ export class HuntMode {
if (I.isKeyDown("d")) { if (I.isKeyDown("d")) {
dx += amt; dx += amt;
} }
}
dx *= 0.9; dx *= 0.87;
dy *= 0.9; dy *= 0.87;
if (Math.abs(dx) < 0.0001) {
dx = 0;
}
if (Math.abs(dy) < 0.0001) {
dy = 0;
}
if (dx < 0) {
this.faceLeft = true;
}
if (dx > 0) {
this.faceLeft = false;
}
this.velocity = new Point(dx, dy); this.velocity = new Point(dx, dy);
let nSteps = 40; let nSteps = 40;
let szX = 0.5; let szX = 0.5;
let szY = 0.5; let szY = 0.75;
let initialXy = this.floatingPlayer;
for (let i = 0; i < nSteps; i++) { for (let i = 0; i < nSteps; i++) {
let oldXy = this.floatingPlayer; let oldXy = this.floatingPlayer;
let newXy = oldXy.offset(new Point(this.velocity.x / nSteps, 0)); let newXy = oldXy.offset(new Point(this.velocity.x / nSteps, 0));
@ -211,6 +202,8 @@ export class HuntMode {
this.floatingPlayer = newXy; this.floatingPlayer = newXy;
} }
let finalXy = this.floatingPlayer;
getPlayerProgress().spendBlood(finalXy.distance(initialXy) * 10);
} }
#updateFov() { #updateFov() {
@ -296,7 +289,7 @@ export class HuntMode {
if (cost == null) { if (cost == null) {
highlighted = false; highlighted = false;
} }
if (!(pickup?.advertisesClickable() ?? true)) { if (!pickup?.advertisesClickable()) {
highlighted = false; highlighted = false;
} }
@ -321,12 +314,6 @@ export class HuntMode {
if (pickup?.onClick(cellData)) { if (pickup?.onClick(cellData)) {
return; return;
} }
getPlayerProgress().spendBlood(cost);
// TODO: This isn't a thing anymore
// this.movePlayerTo(mapPosition);
// getCheckModal().show(null, null);
}, },
onSqueeze: () => { onSqueeze: () => {
// the cost _gates_ squeezes // the cost _gates_ squeezes

View File

@ -83,7 +83,7 @@ export class BreakableBlockPickup {
} }
computeCostToClick() { computeCostToClick() {
return 100; return this.callbacks.cost;
} }
advertisesBadge() { advertisesBadge() {
@ -121,6 +121,7 @@ export class BreakableBlockPickup {
update(cellData: CellView) { update(cellData: CellView) {
if (this.breakProgress >= 1.0) { if (this.breakProgress >= 1.0) {
getPlayerProgress().spendBlood(this.callbacks.cost);
cellData.pickup = null; cellData.pickup = null;
this.callbacks.obtain(); this.callbacks.obtain();
} }
@ -147,6 +148,10 @@ export class StatPickupCallbacks {
this.#stat = stat; this.#stat = stat;
} }
get cost(): number {
return 100;
}
obtain() { obtain() {
getPlayerProgress().add(this.#stat, 1); getPlayerProgress().add(this.#stat, 1);
getPlayerProgress().purloinItem(); getPlayerProgress().purloinItem();
@ -168,6 +173,10 @@ export class StatPickupCallbacks {
export class ExperiencePickupCallbacks { export class ExperiencePickupCallbacks {
constructor() {} constructor() {}
get cost(): number {
return 100;
}
obtain() { obtain() {
getPlayerProgress().addExperience(250); getPlayerProgress().addExperience(250);
getPlayerProgress().purloinItem(); getPlayerProgress().purloinItem();