1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-04-27 02:51:23 +00:00

wall optimization option (-wallopt): do not draw things behind walls

This commit is contained in:
Zeno Rogue
2019-10-12 11:21:00 +02:00
parent e80869e14e
commit adee8aa699
5 changed files with 14 additions and 0 deletions

View File

@@ -694,6 +694,7 @@ EX namespace euclid3 {
cell *c = h->c7;
if(!do_draw(c, V)) continue;
drawcell(c, V, 0, false);
if(wallopt && isWall3(c) && isize(dq::drawqueue) > 1000) continue;
for(int i=0; i<S7; i++)
dq::enqueue_by_matrix(h->move(i), V * get_move(h->c7, i));