1 #ifndef BLANK_CHUNK_HPP_
2 #define BLANK_CHUNK_HPP_
5 #include "geometry.hpp"
10 #include <glm/glm.hpp>
15 /// cube of size 16 (256 tiles, 4096 blocks)
19 using Pos = glm::tvec3<int>;
22 explicit Chunk(const BlockTypeRegistry &);
25 Chunk &operator =(Chunk &&);
27 static constexpr int Width() { return 16; }
28 static constexpr int Height() { return 16; }
29 static constexpr int Depth() { return 16; }
30 static Pos Extent() { return { Width(), Height(), Depth() }; }
31 static constexpr int Size() { return Width() * Height() * Depth(); }
33 static AABB Bounds() { return AABB{ { 0, 0, 0 }, Extent() }; }
35 static constexpr bool InBounds(const glm::vec3 &pos) {
37 pos.x >= 0 && pos.x < Width() &&
38 pos.y >= 0 && pos.y < Height() &&
39 pos.z >= 0 && pos.z < Depth();
41 static constexpr int ToIndex(const glm::vec3 &pos) {
42 return int(pos.x) + int(pos.y) * Width() + int(pos.z) * Width() * Height();
44 static constexpr bool InBounds(int idx) {
45 return idx >= 0 && idx < Size();
47 static Block::Pos ToCoords(int idx) {
49 0.5f + (idx % Width()),
50 0.5f + ((idx / Width()) % Height()),
51 0.5f + (idx / (Width() * Height()))
56 void Invalidate() { dirty = true; }
58 Block &BlockAt(int index) { return blocks[index]; }
59 const Block &BlockAt(int index) const { return blocks[index]; }
60 Block &BlockAt(const Block::Pos &pos) { return BlockAt(ToIndex(pos)); }
61 const Block &BlockAt(const Block::Pos &pos) const { return BlockAt(ToIndex(pos)); }
63 const BlockType &Type(const Block &b) const { return *types->Get(b.type); }
69 float *dist = nullptr,
70 glm::vec3 *normal = nullptr) const;
72 void Position(const Pos &);
73 const Pos &Position() const { return position; }
74 glm::mat4 Transform(const Pos &offset) const;
83 const BlockTypeRegistry *types;
84 std::vector<Block> blocks;
97 ChunkLoader(const BlockTypeRegistry &, const Generator &);
99 void Generate(const Chunk::Pos &from, const Chunk::Pos &to);
101 std::list<Chunk> &Loaded() { return loaded; }
103 Chunk *Loaded(const Chunk::Pos &);
104 bool Queued(const Chunk::Pos &);
105 bool Known(const Chunk::Pos &);
106 Chunk &ForceLoad(const Chunk::Pos &);
108 void Rebase(const Chunk::Pos &);
114 const BlockTypeRegistry ®
115 const Generator &gen;
117 std::list<Chunk> loaded;
118 std::list<Chunk::Pos> to_generate;
119 std::list<Chunk> to_free;