Fix two minor visual flaws
This commit is contained in:
parent
08fcbaf4e2
commit
c84affb8c2
@ -1,6 +1,6 @@
|
|||||||
import { DrawPile } from "./drawpile.ts";
|
import { DrawPile } from "./drawpile.ts";
|
||||||
import { AlignX, AlignY, Point, Rect, Size } from "./engine/datatypes.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";
|
import { D } from "./engine/public.ts";
|
||||||
|
|
||||||
export function addButton(
|
export function addButton(
|
||||||
@ -23,6 +23,9 @@ export function addButton(
|
|||||||
0,
|
0,
|
||||||
(hover) => {
|
(hover) => {
|
||||||
let [bg, fg, fgLabel] = [BG_INSET, FG_TEXT, FG_BOLD];
|
let [bg, fg, fgLabel] = [BG_INSET, FG_TEXT, FG_BOLD];
|
||||||
|
if (!enabled) {
|
||||||
|
fgLabel = FG_TEXT_DISABLED;
|
||||||
|
}
|
||||||
if (hover) {
|
if (hover) {
|
||||||
[bg, fg, fgLabel] = [FG_BOLD, BG_INSET, BG_INSET];
|
[bg, fg, fgLabel] = [FG_BOLD, BG_INSET, BG_INSET];
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ export const BG_OUTER = Color.parseHexCode("#143464");
|
|||||||
export const BG_WALL_OR_UNREVEALED = Color.parseHexCode("#143464");
|
export const BG_WALL_OR_UNREVEALED = Color.parseHexCode("#143464");
|
||||||
export const BG_INSET = Color.parseHexCode("#242234");
|
export const BG_INSET = Color.parseHexCode("#242234");
|
||||||
export const FG_TEXT = Color.parseHexCode("#c0c0c0");
|
export const FG_TEXT = Color.parseHexCode("#c0c0c0");
|
||||||
|
export const FG_TEXT_DISABLED = Color.parseHexCode("#808080");
|
||||||
export const FG_BOLD = Color.parseHexCode("#ffffff");
|
export const FG_BOLD = Color.parseHexCode("#ffffff");
|
||||||
export const BG_CEILING = Color.parseHexCode("#143464");
|
export const BG_CEILING = Color.parseHexCode("#143464");
|
||||||
export const FG_MOULDING = FG_TEXT;
|
export const FG_MOULDING = FG_TEXT;
|
||||||
|
@ -174,7 +174,11 @@ export class HuntMode {
|
|||||||
this.drawpile.addClickable(
|
this.drawpile.addClickable(
|
||||||
OFFSET_FLOOR,
|
OFFSET_FLOOR,
|
||||||
(hover: boolean) => {
|
(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);
|
pickup?.drawFloor(gridArt);
|
||||||
},
|
},
|
||||||
gridArt.floorRect,
|
gridArt.floorRect,
|
||||||
|
@ -37,6 +37,10 @@ export class LockPickup {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
advertisesClickable() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
isObstructive() {
|
isObstructive() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -68,6 +72,10 @@ export class StatPickup {
|
|||||||
return 100;
|
return 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
advertisesClickable() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
isObstructive() {
|
isObstructive() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -97,6 +105,10 @@ export class ExperiencePickup {
|
|||||||
return 100;
|
return 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
advertisesClickable() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
isObstructive() {
|
isObstructive() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -126,6 +138,10 @@ export class LadderPickup {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
advertisesClickable() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
isObstructive() {
|
isObstructive() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -156,6 +172,10 @@ export class ThrallPickup {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
advertisesClickable() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
isObstructive() {
|
isObstructive() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -190,6 +210,10 @@ export class ThrallPosterPickup {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
advertisesClickable() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
isObstructive() {
|
isObstructive() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -223,6 +247,10 @@ export class ThrallRecruitedPickup {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
advertisesClickable() {
|
||||||
|
return !this.bitten;
|
||||||
|
}
|
||||||
|
|
||||||
isObstructive() {
|
isObstructive() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -308,6 +336,10 @@ export class ThrallCollectionPlatePickup {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
advertisesClickable() {
|
||||||
|
return !this.rewarded;
|
||||||
|
}
|
||||||
|
|
||||||
isObstructive() {
|
isObstructive() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -398,7 +430,11 @@ export class ThrallItemPickup {
|
|||||||
}
|
}
|
||||||
|
|
||||||
computeCostToClick() {
|
computeCostToClick() {
|
||||||
return 100;
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
advertisesClickable() {
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
isObstructive() {
|
isObstructive() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user