Fix two minor visual flaws

This commit is contained in:
Pyrex 2025-02-22 11:07:30 -08:00
parent 08fcbaf4e2
commit c84affb8c2
4 changed files with 47 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import { DrawPile } from "./drawpile.ts";
import { AlignX, AlignY, Point, Rect, Size } from "./engine/datatypes.ts";
import { BG_INSET, FG_BOLD, FG_TEXT } from "./colors.ts";
import {BG_INSET, FG_BOLD, FG_TEXT, FG_TEXT_DISABLED} from "./colors.ts";
import { D } from "./engine/public.ts";
export function addButton(
@ -23,6 +23,9 @@ export function addButton(
0,
(hover) => {
let [bg, fg, fgLabel] = [BG_INSET, FG_TEXT, FG_BOLD];
if (!enabled) {
fgLabel = FG_TEXT_DISABLED;
}
if (hover) {
[bg, fg, fgLabel] = [FG_BOLD, BG_INSET, BG_INSET];
}

View File

@ -4,6 +4,7 @@ export const BG_OUTER = Color.parseHexCode("#143464");
export const BG_WALL_OR_UNREVEALED = Color.parseHexCode("#143464");
export const BG_INSET = Color.parseHexCode("#242234");
export const FG_TEXT = Color.parseHexCode("#c0c0c0");
export const FG_TEXT_DISABLED = Color.parseHexCode("#808080");
export const FG_BOLD = Color.parseHexCode("#ffffff");
export const BG_CEILING = Color.parseHexCode("#143464");
export const FG_MOULDING = FG_TEXT;

View File

@ -174,7 +174,11 @@ export class HuntMode {
this.drawpile.addClickable(
OFFSET_FLOOR,
(hover: boolean) => {
gridArt.drawFloor(hover ? FG_TEXT : BG_INSET);
let highlighted = hover;
if (!(pickup?.advertisesClickable() ?? true)) {
highlighted = false;
}
gridArt.drawFloor(highlighted ? FG_TEXT : BG_INSET);
pickup?.drawFloor(gridArt);
},
gridArt.floorRect,

View File

@ -37,6 +37,10 @@ export class LockPickup {
return 0;
}
advertisesClickable() {
return true;
}
isObstructive() {
return true;
}
@ -68,6 +72,10 @@ export class StatPickup {
return 100;
}
advertisesClickable() {
return true;
}
isObstructive() {
return true;
}
@ -97,6 +105,10 @@ export class ExperiencePickup {
return 100;
}
advertisesClickable() {
return true;
}
isObstructive() {
return true;
}
@ -126,6 +138,10 @@ export class LadderPickup {
return 0;
}
advertisesClickable() {
return true;
}
isObstructive() {
return false;
}
@ -156,6 +172,10 @@ export class ThrallPickup {
return 0;
}
advertisesClickable() {
return true;
}
isObstructive() {
return false;
}
@ -190,6 +210,10 @@ export class ThrallPosterPickup {
return 0;
}
advertisesClickable() {
return true;
}
isObstructive() {
return false;
}
@ -223,6 +247,10 @@ export class ThrallRecruitedPickup {
return 0;
}
advertisesClickable() {
return !this.bitten;
}
isObstructive() {
return false;
}
@ -308,6 +336,10 @@ export class ThrallCollectionPlatePickup {
return 0;
}
advertisesClickable() {
return !this.rewarded;
}
isObstructive() {
return false;
}
@ -398,7 +430,11 @@ export class ThrallItemPickup {
}
computeCostToClick() {
return 100;
return 0;
}
advertisesClickable() {
return true;
}
isObstructive() {