X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FChunk.hpp;fp=src%2Fworld%2FChunk.hpp;h=e9a075b2168bef5238c3d3562fd0b1b4f0d0d7dd;hb=551573ecb04969696f916aeb5485658e298a7f6b;hp=f4f0bf006300d0c68b40e88b6aed65210ce29e96;hpb=39df551265bff648c1ac166043bb4b046122cc8d;p=blank.git diff --git a/src/world/Chunk.hpp b/src/world/Chunk.hpp index f4f0bf0..e9a075b 100644 --- a/src/world/Chunk.hpp +++ b/src/world/Chunk.hpp @@ -110,8 +110,6 @@ public: // check which faces of a block at given index are obstructed (and therefore invisible) Block::FaceSet Obstructed(const Pos &) const noexcept; - void Invalidate() noexcept { dirty = true; } - void SetBlock(int index, const Block &) noexcept; void SetBlock(const Block::Pos &pos, const Block &block) noexcept { SetBlock(ToIndex(pos), block); } void SetBlock(const Pos &pos, const Block &block) noexcept { SetBlock(ToIndex(pos), block); } @@ -160,6 +158,17 @@ public: return glm::translate((position - offset) * Extent()); } + void *BlockData() noexcept { return &blocks[0]; } + const void *BlockData() const noexcept { return &blocks[0]; } + static constexpr std::size_t BlockSize() noexcept { return sizeof(blocks) + sizeof(light); } + + void Invalidate() noexcept { dirty_model = dirty_save = true; } + void InvalidateModel() noexcept { dirty_model = true; } + void ClearModel() noexcept { dirty_model = false; } + void ClearSave() noexcept { dirty_save = false; } + bool ShouldUpdateModel() const noexcept { return dirty_model; } + bool ShouldUpdateSave() const noexcept { return dirty_save; } + void CheckUpdate() noexcept; void Draw() noexcept; @@ -173,7 +182,8 @@ private: unsigned char light[size]; BlockModel model; Pos position; - bool dirty; + bool dirty_model; + bool dirty_save; };