hooks for do_draw

This commit is contained in:
Zeno Rogue 2024-03-14 19:28:44 +01:00
parent c85b4d2f2b
commit 125b271889
1 changed files with 5 additions and 1 deletions

View File

@ -3212,7 +3212,7 @@ EX bool do_draw(cell *c) {
EX ld extra_generation_distance = 99;
// returns false if limited
bool limited_generation(cell *c) {
EX bool limited_generation(cell *c) {
if(c->mpdist <= 7) return true;
if(cells_generated > vid.cells_generated_limit) return false;
setdist(c, 7, c);
@ -3222,7 +3222,11 @@ bool limited_generation(cell *c) {
EX int min_cells_drawn = 50;
EX hookset<int(cell*,const shiftmatrix&)> hooks_do_draw;
EX bool do_draw(cell *c, const shiftmatrix& T) {
int h = callhandlers(0, hooks_do_draw, c, T);
if(h) return h > 0;
if(WDIM == 3) {
// do not care about cells outside of the track