From 5324adfe51f1348fc97fe2ee0ca4e4bbd2a6ad64 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 17 Mar 2022 15:28:22 -0400 Subject: lotta performance improvements the two main things: 1) When ticking three times after a lighting change, we no longer iterate over the entire map. Instead, we keep a list of the tiles that have changed and the ones adjacent to them, and we iterate over that list. 2) The map tile type is now stored in a separate array from the rest of the tile data. This is because the tile type is the only thing needed for the cellular automata tick, and thus the only thing that we need to actually copy. --- src/game.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/game.h') diff --git a/src/game.h b/src/game.h index 637a033..c75d43b 100644 --- a/src/game.h +++ b/src/game.h @@ -71,7 +71,7 @@ public: bool dirtyRender = true; size_t numLamps = 0; size_t numDust = 0; - std::vector mapDoubleBuffer; + std::vector mapDoubleBuffer; int player_x = 0; int player_y = 0; @@ -111,6 +111,8 @@ public: private: + void tickDirty(bool onlyDark); + void tick( int x1, int y1, -- cgit 1.4.1