1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-28 04:17:39 +00:00

ads:: preliminary lands

This commit is contained in:
Zeno Rogue
2024-09-17 18:25:18 +02:00
parent 7627fd9255
commit 3cefee3a54
4 changed files with 22 additions and 5 deletions

View File

@@ -89,11 +89,14 @@ void draw_game_cell(const cell_to_draw& cd) {
color_t col =
t == wtSolid ? 0x603000FF :
t == wtDestructible ? 0x301800FF :
0x181818FF;
t == wtBarrier ? 0xC0C0C0FF :
empty_color(c);
color_t out = t == wtNone ? empty_outline(c) : 0xFF;
for(auto h: hlist) curvepoint(h.h);
addaura(shiftless(cd.center.h), col >> 8, 0);
queuecurve(shiftless(Id), 0x101010FF, col, PPR::WALL);
queuecurve(shiftless(Id), out, col, PPR::WALL);
}
if(view_proper_times) {