1
0
Fork 0
mirror of https://github.com/mapnik/mapnik.git synced 2026-04-02 21:42:44 +02:00
mapnik/include/mapnik/grid/grid.hpp
Artem Pavlenko e61128056f clang-format -
+QualifierAlignment: Right
+Standard: c++20
2025-07-14 14:49:23 +01:00

170 lines
5.3 KiB
C++

/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2025 Artem Pavlenko
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
#ifndef MAPNIK_GRID_HPP
#define MAPNIK_GRID_HPP
// mapnik
#include <mapnik/config.hpp>
#include <mapnik/image.hpp>
#include <mapnik/geometry/box2d.hpp>
#include <mapnik/grid/grid_view.hpp>
#include <mapnik/global.hpp>
#include <mapnik/value.hpp>
#include <mapnik/feature.hpp>
#include <mapnik/feature_factory.hpp>
#include <mapnik/util/conversions.hpp>
#include <mapnik/safe_cast.hpp>
// stl
#include <map>
#include <set>
#include <cmath>
#include <string>
#include <vector>
namespace mapnik {
template<typename T>
class MAPNIK_DECL hit_grid
{
public:
using value_type = typename T::type;
using data_type = mapnik::image<T>;
using lookup_type = std::string;
// mapping between pixel id and key
using feature_key_type = std::map<value_type, lookup_type>;
using feature_type = std::map<lookup_type, mapnik::feature_ptr>;
static value_type const base_mask;
private:
std::size_t width_;
std::size_t height_;
std::string key_;
data_type data_;
std::string id_name_;
bool painted_;
std::set<std::string> names_;
feature_key_type f_keys_;
feature_type features_;
mapnik::context_ptr ctx_;
public:
hit_grid(std::size_t width, std::size_t height, std::string const& key);
hit_grid(hit_grid<T> const& rhs);
~hit_grid() {}
void clear();
inline void painted(bool is_painted) { painted_ = is_painted; }
inline bool painted() const { return painted_; }
inline std::string const& key_name() const { return id_name_; }
void add_feature(mapnik::feature_impl const& feature);
inline void add_field(std::string const& name) { names_.insert(name); }
inline std::set<std::string> const& get_fields() const { return names_; }
inline feature_type const& get_grid_features() const { return features_; }
inline feature_key_type const& get_feature_keys() const { return f_keys_; }
inline std::string const& get_key() const { return key_; }
inline void set_key(std::string const& key) { key_ = key; }
inline data_type const& data() const { return data_; }
inline data_type& data() { return data_; }
inline value_type const* raw_data() const { return data_.data(); }
inline value_type* raw_data() { return data_.data(); }
inline value_type const* get_row(std::size_t row) const { return data_.get_row(row); }
inline mapnik::grid_view get_view(std::size_t x, std::size_t y, std::size_t w, std::size_t h)
{
return mapnik::grid_view(x, y, w, h, data_, key_, id_name_, names_, f_keys_, features_);
}
private:
inline bool checkBounds(std::size_t x, std::size_t y) const { return (x < width_ && y < height_); }
hit_grid& operator=(hit_grid const&);
public:
inline void setPixel(std::size_t x, std::size_t y, value_type feature_id)
{
if (checkBounds(x, y))
{
data_(x, y) = feature_id;
}
}
inline std::size_t width() const { return width_; }
inline std::size_t height() const { return height_; }
inline void set_rectangle(value_type id, image_rgba8 const& data, std::size_t x0, std::size_t y0)
{
box2d<int> ext0(0, 0, width_, height_);
box2d<int> ext1(x0, y0, x0 + data.width(), y0 + data.height());
if (ext0.intersects(ext1))
{
box2d<int> box = ext0.intersect(ext1);
std::size_t miny = safe_cast<std::size_t>(box.miny());
std::size_t maxy = safe_cast<std::size_t>(box.maxy());
std::size_t minx = safe_cast<std::size_t>(box.minx());
std::size_t maxx = safe_cast<std::size_t>(box.maxx());
for (std::size_t y = miny; y < maxy; ++y)
{
value_type* row_to = data_.get_row(y);
image_rgba8::pixel_type const* row_from = data.get_row(y - y0);
for (std::size_t x = minx; x < maxx; ++x)
{
image_rgba8::pixel_type rgba = row_from[x - x0];
unsigned a = (rgba >> 24) & 0xff;
// if the pixel is more than a tenth
// opaque then burn in the feature id
if (a >= 25)
{
row_to[x] = id;
}
}
}
}
}
};
using grid = hit_grid<mapnik::value_integer_pixel>;
} // namespace mapnik
#endif // MAPNIK_GRID_HPP