summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/path-search.cpp140
-rw-r--r--src/path-search.hpp96
-rw-r--r--test/app.hpp1
-rw-r--r--test/main.cpp1
-rw-r--r--test/path-search.cpp21
5 files changed, 259 insertions, 0 deletions
diff --git a/src/path-search.cpp b/src/path-search.cpp
new file mode 100644
index 00000000..5558fa19
--- /dev/null
+++ b/src/path-search.cpp
@@ -0,0 +1,140 @@
+#include "path-search.hpp"
+#include "global-coords.hpp"
+#include "object.hpp"
+#include "world.hpp"
+#include "RTree-search.hpp"
+#include <bit>
+#include <algorithm>
+#include <Corrade/Containers/Optional.h>
+#include <Corrade/Containers/PairStl.h>
+#include <Magnum/Math/Range.h>
+
+namespace floormat {
+
+namespace {
+
+constexpr inline auto null_coord = global_coords{0, 0, nullptr};
+constexpr inline size_t path_size_min = 32;
+
+} // namespace
+
+search_result::~search_result() = default;
+
+void search::ensure_allocated(chunk_coords a, chunk_coords b)
+{
+ auto new_size = Math::abs(a - b) + Vector2i(3);
+ auto new_start = Vector2i(std::min(a.x, b.x), std::min(a.y, b.y)) - Vector2i(1);
+ auto size1 = new_size.product();
+ fm_debug_assert(size1 > 0);
+ cache.start = new_start;
+ if ((size_t)size1 > cache.array.size())
+ {
+ cache.array = Array<chunk_tiles_cache>{ValueInit, (size_t)size1};
+ cache.size = new_size;
+ }
+ else
+ for (auto& x : cache.array)
+ x = {};
+}
+
+bool search::sample_rtree_1(chunk& c, Vector2 min, Vector2 max, object_id own_id)
+{
+ auto& rt = *c.rtree();
+ bool is_passable = true;
+ rt.Search(min.data(), max.data(), [&](uint64_t data, const auto&) {
+ [[maybe_unused]] auto x = std::bit_cast<collision_data>(data);
+ if (x.data != own_id && x.pass != (uint64_t)pass_mode::pass)
+ {
+ is_passable = false;
+ return false;
+ }
+ else
+ return true;
+ });
+ return is_passable;
+}
+
+bool search::sample_rtree(world& w, chunk_coords_ ch0, Vector2 center, Vector2 size, object_id own_id)
+{
+ const auto min = center - size*.5f, max = min + size;
+ if (auto* c = w.at(ch0))
+ // it's not correct to return true if c == nullptr
+ // because neighbors can still contain bounding boxes for that tile
+ if (!sample_rtree_1(*c, min, max, own_id))
+ return false;
+ constexpr auto chunk_size = TILE_SIZE2 * TILE_MAX_DIM;
+ for (auto nb : world::neighbor_offsets)
+ if (auto* c2 = w.at(ch0 + Vector2i(nb)))
+ {
+ auto off = Vector2(nb)*chunk_size;
+ if (!sample_rtree_1(*c2, min + off, max + off, own_id))
+ return false;
+ }
+ return true;
+}
+
+bool search::sample_rtree(world& w, global_coords coord, Vector2b offset, Vector2ub size, object_id own_id)
+{
+ auto center = iTILE_SIZE2 * Vector2i(coord.local()) + Vector2i(offset);
+ return sample_rtree(w, coord, Vector2(center), Vector2(size), own_id);
+}
+
+auto search::make_neighbor_tile_bbox(global_coords coord, Vector2ub own_size, rotation r) -> bbox
+{
+ constexpr auto full_tile = Vector2ui(iTILE_SIZE2*3/4);
+ constexpr auto tx = iTILE_SIZE2.x()*2u, ty = iTILE_SIZE2.y()*2u;
+
+ fm_assert(Vector2i(own_size).product() != 0);
+ const auto s = Math::max(Vector2ui(own_size), full_tile);
+ const auto sx = s[0], sy = s[1];
+
+ Vector2i off;
+ Vector2ui size;
+
+ switch (r)
+ {
+ case rotation::N: off = { 0, -1}; size = {sx, ty}; break;
+ case rotation::E: off = { 1, 0}; size = {tx, sy}; break;
+ case rotation::S: off = { 0, 1}; size = {tx, sy}; break;
+ case rotation::W: off = {-1, 0}; size = {sx, ty}; break;
+ default: fm_abort("wrong 4-way rotation enum value '%d", (int)r);
+ }
+
+ auto center1 = Vector2i(coord.local()) * iTILE_SIZE2;
+ auto center2 = center1 + off*iTILE_SIZE2;
+ auto center = (center1 + center2)/2;
+
+ auto c = Vector2(center), sz = Vector2(size);
+ return { c - sz*.5f, c + sz };
+}
+
+Optional<search_result> search::operator()(world& w, object_id own_id,
+ global_coords from, Vector2b from_offset, Vector2ub size,
+ global_coords to, Vector2b to_offset)
+{
+ if (from.z() != to.z()) [[unlikely]]
+ return {};
+ // todo try removing this eventually
+ if (from.z() != 0) [[unlikely]]
+ return {};
+
+ // check if obj can actually move at all
+ if (!sample_rtree(w, from, from_offset, size, own_id))
+ return {};
+
+ ensure_allocated(from.chunk(), to.chunk());
+
+ //...
+}
+
+Optional<search_result> search::operator()(world& w, const object& obj, global_coords to, Vector2b to_offset)
+{
+ // todo fixme
+ // if bbox_offset is added to obj's offset, then all coordinates in the paths are shifted by bbox_offset.
+ // maybe add handling to subtract bbox_offset from the returned path.
+ // for that it needs to be passed into callees separately.
+ fm_assert(obj.bbox_offset.isZero());
+ return operator()(w, obj.id, obj.coord, obj.offset, obj.bbox_size, to, to_offset);
+}
+
+} // namespace floormat
diff --git a/src/path-search.hpp b/src/path-search.hpp
new file mode 100644
index 00000000..39fde1e4
--- /dev/null
+++ b/src/path-search.hpp
@@ -0,0 +1,96 @@
+#pragma once
+#include "tile-defs.hpp"
+#include "global-coords.hpp"
+#include "object-id.hpp"
+#include "rotation.hpp"
+#include <array>
+#include <bitset>
+#include <memory>
+#include <Corrade/Containers/Array.h>
+#include <Corrade/Containers/BitArray.h>
+#include <Corrade/Containers/StridedDimensions.h>
+#include <Magnum/Math/Vector2.h>
+
+namespace Corrade::Containers {
+template<typename T> class Optional;
+template<typename T, typename U> class Pair;
+} // namespace Corrade::Containers
+
+namespace floormat {
+
+struct world;
+struct object;
+struct chunk;
+
+struct search_result;
+class search;
+
+struct search_result final
+{
+ friend class search;
+ ~search_result();
+
+ size_t size() const;
+ const global_coords& operator[](size_t index) const;
+ explicit operator ArrayView<global_coords>() const;
+
+ const global_coords* begin() const;
+ const global_coords* cbegin() const;
+ const global_coords* end() const;
+ const global_coords* cend() const;
+ const global_coords* data() const;
+
+private:
+ mutable search_result* _next;
+ std::unique_ptr<global_coords[]> _path;
+ size_t _size;
+};
+
+class search final
+{
+ struct neighbors
+ {
+ auto begin() const { return neighbors.data(); }
+ auto end() const { return neighbors.data() + size; }
+
+ std::array<global_coords, 4> neighbors;
+ uint8_t size;
+ };
+
+ struct chunk_tiles_cache
+ {
+ std::bitset<TILE_COUNT> is_passable, can_go_north, can_go_west;
+ };
+
+ struct chunk_cache
+ {
+ Array<chunk_tiles_cache> array;
+ Vector2i start, size; // in chunks
+ };
+
+ struct obj_position { Vector2 center, size; };
+ struct bbox { Vector2 min, max; };
+
+ chunk_cache cache;
+ Array<global_coords> output;
+
+ // todo bucketize by array length
+ search_result* pool = nullptr;
+
+ void ensure_allocated(chunk_coords a, chunk_coords b);
+
+public:
+ // todo remember to check from.z() == to.z()
+ // todo add simple bresenham short-circuit
+ Optional<search_result> operator()(world& w, object_id own_id, global_coords from, Vector2b from_offset, Vector2ub size, global_coords to, Vector2b to_offset);
+ Optional<search_result> operator()(world& w, const object& obj, global_coords to, Vector2b to_offset);
+
+ static bool sample_rtree_1(chunk& c, Vector2 min, Vector2 max, object_id own_id);
+ static bool sample_rtree(world& w, chunk_coords_ ch0, Vector2 center, Vector2 size, object_id own_id);
+ static bool sample_rtree(world& w, global_coords coord, Vector2b offset, Vector2ub size, object_id own_id);
+
+ static bbox make_neighbor_tile_bbox(global_coords coord, Vector2ub own_size, rotation r);
+ static neighbors get_walkable_neighbor_tiles(world& w, global_coords pos, Vector2 size, object_id own_id);
+};
+
+} // namespace floormat
diff --git a/test/app.hpp b/test/app.hpp
index ad9f41e7..04ed55b7 100644
--- a/test/app.hpp
+++ b/test/app.hpp
@@ -34,6 +34,7 @@ struct test_app final : private FM_APPLICATION
static void test_entity();
static void test_loader();
static void test_bitmask();
+ static void test_path_search();
static void zzz_test_misc();
};
} // namespace floormat
diff --git a/test/main.cpp b/test/main.cpp
index 86e6d383..fe07ce79 100644
--- a/test/main.cpp
+++ b/test/main.cpp
@@ -29,6 +29,7 @@ int test_app::exec()
test_bitmask();
test_serializer_1();
test_serializer_2();
+ test_path_search();
zzz_test_misc();
return 0;
diff --git a/test/path-search.cpp b/test/path-search.cpp
new file mode 100644
index 00000000..7bbd04c0
--- /dev/null
+++ b/test/path-search.cpp
@@ -0,0 +1,21 @@
+#include "app.hpp"
+#include "src/path-search.hpp"
+#include "compat/assert.hpp"
+
+namespace floormat {
+
+namespace {
+
+void test_bbox()
+{
+
+}
+
+} // namespace
+
+void test_app::test_path_search()
+{
+ test_bbox();
+}
+
+} // namespace floormat