1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-06 02:37:19 +00:00

rogueviz::fifteen:: 3D mode (not changeable yet)

This commit is contained in:
Zeno Rogue 2025-03-12 21:30:33 +01:00
parent 5a5266ec77
commit 27156ac5f6

View File

@ -139,6 +139,8 @@ void scramble() {
}
}
bool seupho3 = true;
bool draw_fifteen(cell *c, const shiftmatrix& V) {
hr::addaura(tC0(V), darkened(0x0000FF), 0);
lastexplore = turncount;
@ -157,6 +159,19 @@ bool draw_fifteen(cell *c, const shiftmatrix& V) {
c->landparam = 0x101080;
}
else {
if(seupho3) {
set_floor(cgi.shFullFloor);
ensure_floorshape_generated(shvid(c), c);
for(int i=0; i<c->type; i++)
if(!fif.count(c->move(i)) || (showing ? fif[c->move(i)].target : fif[c->move(i)].current) == Empty)
placeSidewall(c, i, SIDE_SLEV, V, 0xFFFFFFFF);
auto V1 = orthogonal_move_fol(V, cgi.SLEV[1]);
draw_qfi(c, V1, 0xFFFFFFFF, PPR::WALL3A);
write_in_space(V1 * ddspin(c,cdir,0) * (cmir ? MirrorX: Id), 72, 1, dotted(cur), 0xFF, 0, 8);
return true;
}
c->land = laCanvas;
c->wall = waNone;
c->landparam = 0xFFFFFF;