#pragma once #include #include #include #include #include #include namespace mbgl { namespace geometry { template struct circle { using point_type = mapbox::geometry::point; constexpr circle(point_type const& center_, T const& radius_) : center(center_), radius(radius_) {} point_type center; T radius; }; template constexpr bool operator==(circle const& lhs, circle const& rhs) { return lhs.center == rhs.center && lhs.radius == rhs.radius; } template constexpr bool operator!=(circle const& lhs, circle const& rhs) { return lhs.center != rhs.center || lhs.radius != rhs.radius; } } // namespace geometry /* GridIndex is a data structure for testing the intersection of circles and rectangles in a 2d plane. It is optimized for rapid insertion and querying. GridIndex splits the plane into a set of "cells" and keeps track of which geometries intersect with each cell. At query time, full geometry comparisons are only done for items that share at least one cell. As long as the geometries are relatively uniformly distributed across the plane, this greatly reduces the number of comparisons necessary. */ template class GridIndex { public: GridIndex(const float width_, const float height_, const int16_t cellSize_); using BBox = mapbox::geometry::box; using BCircle = geometry::circle; void insert(T&& t, const BBox&); void insert(T&& t, const BCircle&); std::vector query(const BBox&) const; std::vector> queryWithBoxes(const BBox&) const; bool hitTest(const BBox&) const; bool hitTest(const BCircle&) const; bool empty() const; private: bool noIntersection(const BBox& queryBBox) const; bool completeIntersection(const BBox& queryBBox) const; BBox convertToBox(const BCircle& circle) const; void query(const BBox&, std::function) const; void query(const BCircle&, std::function) const; int16_t convertToXCellCoord(const float x) const; int16_t convertToYCellCoord(const float y) const; bool boxesCollide(const BBox&, const BBox&) const; bool circlesCollide(const BCircle&, const BCircle&) const; bool circleAndBoxCollide(const BCircle&, const BBox&) const; const float width; const float height; const int16_t xCellCount; const int16_t yCellCount; const double xScale; const double yScale; std::vector> boxElements; std::vector> circleElements; std::vector> boxCells; std::vector> circleCells; }; } // namespace mbgl