diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-02-25 20:11:31 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-02-25 20:11:31 +0100 |
commit | 61def2af0683013866cc4eecd150b8edf76b97da (patch) | |
tree | 166704e99217f8a7db7f24372182190c9b78465d /src/chunk.hpp | |
parent | eb8c57873f6120b8e37fefd170b4adcaf929928e (diff) |
a
Diffstat (limited to 'src/chunk.hpp')
-rw-r--r-- | src/chunk.hpp | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/chunk.hpp b/src/chunk.hpp index 9dd0f117..f117237c 100644 --- a/src/chunk.hpp +++ b/src/chunk.hpp @@ -4,9 +4,9 @@ #include "scenery.hpp" #include <type_traits> #include <array> -#include <vector> #include <memory> #include <Magnum/GL/Mesh.h> +#include "RTree.h" namespace floormat { @@ -16,6 +16,15 @@ enum class collision : std::uint8_t { view, shoot, move, }; +enum class collision_type : std::uint8_t { + none, entity, scenery, geometry, +}; + +struct collision_data final { + std::uint64_t tag : 2; + std::uint64_t data : 62; +}; + struct chunk final { friend struct tile_ref; @@ -77,6 +86,8 @@ struct chunk final void ensure_passability() noexcept; + RTree<std::uint64_t, float, 2, float>* rtree() const noexcept { return &const_cast<chunk*>(this)->_rtree; } + private: std::array<std::shared_ptr<tile_atlas>, TILE_COUNT> _ground_atlases; std::array<std::uint8_t, TILE_COUNT> ground_indexes = {}; @@ -89,6 +100,9 @@ private: std::array<scenery, TILE_COUNT> _scenery_variants = {}; GL::Mesh ground_mesh{NoCreate}, wall_mesh{NoCreate}, scenery_mesh{NoCreate}; + + RTree<std::uint64_t, float, 2, float> _rtree; + mutable bool _maybe_empty : 1 = true, _ground_modified : 1 = true, _walls_modified : 1 = true, |