2010-06-01 15:31:08 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2011-10-23 15:04:25 +02:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2010-06-01 15:31:08 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
//$Id$
|
|
|
|
|
|
|
|
#include <mapnik/agg_renderer.hpp>
|
2010-06-13 14:03:42 +02:00
|
|
|
#include <mapnik/agg_rasterizer.hpp>
|
2011-09-01 02:43:46 +02:00
|
|
|
#include <mapnik/expression_evaluator.hpp>
|
2010-06-01 15:31:08 +02:00
|
|
|
#include <mapnik/image_util.hpp>
|
2011-01-26 02:18:40 +01:00
|
|
|
#include <mapnik/marker_cache.hpp>
|
2010-06-08 12:16:22 +02:00
|
|
|
#include <mapnik/svg/svg_renderer.hpp>
|
2010-06-14 18:38:02 +02:00
|
|
|
#include <mapnik/svg/svg_path_adapter.hpp>
|
2010-06-01 15:31:08 +02:00
|
|
|
#include <mapnik/markers_placement.hpp>
|
|
|
|
#include <mapnik/arrow.hpp>
|
|
|
|
|
|
|
|
#include "agg_basics.h"
|
|
|
|
#include "agg_rendering_buffer.h"
|
|
|
|
#include "agg_pixfmt_rgba.h"
|
|
|
|
#include "agg_rasterizer_scanline_aa.h"
|
|
|
|
#include "agg_scanline_u.h"
|
2010-08-19 19:33:01 +02:00
|
|
|
#include "agg_scanline_p.h"
|
|
|
|
#include "agg_path_storage.h"
|
|
|
|
#include "agg_ellipse.h"
|
|
|
|
#include "agg_conv_stroke.h"
|
|
|
|
|
2010-06-01 15:31:08 +02:00
|
|
|
|
|
|
|
namespace mapnik {
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void agg_renderer<T>::process(markers_symbolizer const& sym,
|
2010-06-02 13:03:30 +02:00
|
|
|
Feature const& feature,
|
|
|
|
proj_transform const& prj_trans)
|
2010-06-01 15:31:08 +02:00
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
typedef coord_transform2<CoordTransform,geometry_type> path_type;
|
2011-01-26 02:18:40 +01:00
|
|
|
typedef agg::pixfmt_rgba32_plain pixfmt;
|
2010-06-01 15:31:08 +02:00
|
|
|
typedef agg::renderer_base<pixfmt> renderer_base;
|
|
|
|
typedef agg::renderer_scanline_aa_solid<renderer_base> renderer_solid;
|
2010-06-14 18:38:02 +02:00
|
|
|
|
2010-06-01 15:31:08 +02:00
|
|
|
ras_ptr->reset();
|
2012-01-13 18:20:03 +01:00
|
|
|
ras_ptr->gamma(agg::gamma_power());
|
2010-06-01 15:31:08 +02:00
|
|
|
agg::scanline_u8 sl;
|
2010-08-19 19:33:01 +02:00
|
|
|
agg::scanline_p8 sl_line;
|
2010-06-01 15:31:08 +02:00
|
|
|
agg::rendering_buffer buf(pixmap_.raw_data(), width_, height_, width_ * 4);
|
|
|
|
pixfmt pixf(buf);
|
|
|
|
renderer_base renb(pixf);
|
|
|
|
renderer_solid ren(renb);
|
2010-06-03 14:36:00 +02:00
|
|
|
agg::trans_affine tr;
|
|
|
|
boost::array<double,6> const& m = sym.get_transform();
|
|
|
|
tr.load_from(&m[0]);
|
2010-06-10 16:12:28 +02:00
|
|
|
tr = agg::trans_affine_scaling(scale_factor_) * tr;
|
2010-06-02 14:53:23 +02:00
|
|
|
std::string filename = path_processor_type::evaluate(*sym.get_filename(), feature);
|
2010-08-19 19:33:01 +02:00
|
|
|
marker_placement_e placement_method = sym.get_marker_placement();
|
|
|
|
marker_type_e marker_type = sym.get_marker_type();
|
|
|
|
metawriter_with_properties writer = sym.get_metawriter();
|
2010-06-02 14:53:23 +02:00
|
|
|
|
|
|
|
if (!filename.empty())
|
|
|
|
{
|
2011-01-26 02:18:40 +01:00
|
|
|
boost::optional<marker_ptr> mark = mapnik::marker_cache::instance()->find(filename, true);
|
2011-06-24 22:34:21 +02:00
|
|
|
if (mark && *mark)
|
2010-06-02 14:53:23 +02:00
|
|
|
{
|
2011-06-24 22:34:21 +02:00
|
|
|
if (!(*mark)->is_vector()) {
|
|
|
|
std::clog << "### Warning only svg markers are supported in the markers_symbolizer\n";
|
|
|
|
return;
|
|
|
|
}
|
2011-01-26 02:18:40 +01:00
|
|
|
boost::optional<path_ptr> marker = (*mark)->get_vector_data();
|
2010-06-08 12:16:31 +02:00
|
|
|
box2d<double> const& bbox = (*marker)->bounding_box();
|
|
|
|
double x1 = bbox.minx();
|
|
|
|
double y1 = bbox.miny();
|
|
|
|
double x2 = bbox.maxx();
|
|
|
|
double y2 = bbox.maxy();
|
2011-11-16 18:56:35 +01:00
|
|
|
int w = (*mark)->width();
|
|
|
|
int h = (*mark)->height();
|
2010-09-25 14:12:59 +02:00
|
|
|
|
|
|
|
agg::trans_affine recenter = agg::trans_affine_translation(-0.5*(x1+x2),-0.5*(y1+y2));
|
2010-06-08 13:14:31 +02:00
|
|
|
tr.transform(&x1,&y1);
|
|
|
|
tr.transform(&x2,&y2);
|
|
|
|
box2d<double> extent(x1,y1,x2,y2);
|
2010-06-14 18:38:02 +02:00
|
|
|
using namespace mapnik::svg;
|
|
|
|
vertex_stl_adapter<svg_path_storage> stl_storage((*marker)->source());
|
|
|
|
svg_path_adapter svg_path(stl_storage);
|
|
|
|
svg_renderer<svg_path_adapter,
|
2011-05-17 08:18:06 +02:00
|
|
|
agg::pod_bvector<path_attributes>,
|
|
|
|
renderer_solid,
|
|
|
|
agg::pixfmt_rgba32_plain > svg_renderer(svg_path,(*marker)->attributes());
|
2010-06-14 18:38:02 +02:00
|
|
|
|
2010-06-08 13:14:31 +02:00
|
|
|
for (unsigned i=0; i<feature.num_geometries(); ++i)
|
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type const& geom = feature.get_geometry(i);
|
2011-11-16 18:56:35 +01:00
|
|
|
// TODO - merge this code with point_symbolizer rendering
|
|
|
|
if (placement_method == MARKER_POINT_PLACEMENT || geom.num_points() <= 1)
|
2010-08-19 19:33:01 +02:00
|
|
|
{
|
2011-11-16 18:56:35 +01:00
|
|
|
double x;
|
|
|
|
double y;
|
|
|
|
double z=0;
|
|
|
|
geom.label_interior_position(&x, &y);
|
|
|
|
prj_trans.backward(x,y,z);
|
|
|
|
t_.forward(&x,&y);
|
|
|
|
extent.re_center(x,y);
|
|
|
|
|
|
|
|
if (sym.get_allow_overlap() ||
|
|
|
|
detector_->has_placement(extent))
|
|
|
|
{
|
|
|
|
|
|
|
|
render_marker(floor(x - 0.5 * w),floor(y - 0.5 * h) ,**mark,tr, sym.get_opacity());
|
|
|
|
|
|
|
|
// TODO - impl this for markers?
|
|
|
|
//if (!sym.get_ignore_placement())
|
|
|
|
// detector_->insert(label_ext);
|
|
|
|
metawriter_with_properties writer = sym.get_metawriter();
|
|
|
|
if (writer.first) writer.first->add_box(extent, feature, t_, writer.second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2010-06-08 13:14:31 +02:00
|
|
|
{
|
2011-11-16 18:56:35 +01:00
|
|
|
path_type path(t_,geom,prj_trans);
|
|
|
|
markers_placement<path_type, label_collision_detector4> placement(path, extent, *detector_,
|
|
|
|
sym.get_spacing() * scale_factor_,
|
|
|
|
sym.get_max_error(),
|
|
|
|
sym.get_allow_overlap());
|
|
|
|
double x, y, angle;
|
|
|
|
|
|
|
|
while (placement.get_point(&x, &y, &angle))
|
|
|
|
{
|
|
|
|
agg::trans_affine matrix = recenter * tr *agg::trans_affine_rotation(angle) * agg::trans_affine_translation(x, y);
|
|
|
|
svg_renderer.render(*ras_ptr, sl, renb, matrix, sym.get_opacity(),bbox);
|
|
|
|
if (writer.first)
|
|
|
|
//writer.first->add_box(label_ext, feature, t_, writer.second);
|
|
|
|
std::clog << "### Warning metawriter not yet supported for LINE placement\n";
|
|
|
|
}
|
2010-06-08 13:14:31 +02:00
|
|
|
}
|
|
|
|
}
|
2010-06-02 14:53:23 +02:00
|
|
|
}
|
|
|
|
}
|
2010-06-08 13:14:31 +02:00
|
|
|
else // FIXME: should default marker be stored in marker_cache ???
|
2010-06-01 15:31:08 +02:00
|
|
|
{
|
2010-06-08 13:14:31 +02:00
|
|
|
color const& fill_ = sym.get_fill();
|
|
|
|
unsigned r = fill_.red();
|
|
|
|
unsigned g = fill_.green();
|
|
|
|
unsigned b = fill_.blue();
|
|
|
|
unsigned a = fill_.alpha();
|
2010-08-19 19:33:01 +02:00
|
|
|
stroke const& stroke_ = sym.get_stroke();
|
|
|
|
color const& col = stroke_.get_color();
|
|
|
|
double strk_width = stroke_.get_width();
|
|
|
|
unsigned s_r=col.red();
|
|
|
|
unsigned s_g=col.green();
|
|
|
|
unsigned s_b=col.blue();
|
|
|
|
unsigned s_a=col.alpha();
|
|
|
|
double w = sym.get_width();
|
|
|
|
double h = sym.get_height();
|
|
|
|
|
|
|
|
arrow arrow_;
|
|
|
|
box2d<double> extent;
|
|
|
|
|
|
|
|
double dx = w + (2*strk_width);
|
|
|
|
double dy = h + (2*strk_width);
|
|
|
|
|
|
|
|
if (marker_type == ARROW)
|
|
|
|
{
|
|
|
|
extent = arrow_.extent();
|
|
|
|
double x1 = extent.minx();
|
|
|
|
double y1 = extent.miny();
|
|
|
|
double x2 = extent.maxx();
|
|
|
|
double y2 = extent.maxy();
|
|
|
|
tr.transform(&x1,&y1);
|
|
|
|
tr.transform(&x2,&y2);
|
|
|
|
extent.init(x1,y1,x2,y2);
|
|
|
|
//std::clog << x1 << " " << y1 << " " << x2 << " " << y2 << "\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
double x1 = -1 *(dx);
|
|
|
|
double y1 = -1 *(dy);
|
|
|
|
double x2 = dx;
|
|
|
|
double y2 = dy;
|
|
|
|
tr.transform(&x1,&y1);
|
|
|
|
tr.transform(&x2,&y2);
|
|
|
|
extent.init(x1,y1,x2,y2);
|
|
|
|
//std::clog << x1 << " " << y1 << " " << x2 << " " << y2 << "\n";
|
|
|
|
}
|
|
|
|
|
2010-06-08 13:14:31 +02:00
|
|
|
|
2010-08-19 19:33:01 +02:00
|
|
|
double x;
|
|
|
|
double y;
|
|
|
|
double z=0;
|
|
|
|
|
|
|
|
agg::path_storage marker;
|
|
|
|
|
2010-06-08 13:14:31 +02:00
|
|
|
for (unsigned i=0; i<feature.num_geometries(); ++i)
|
2010-06-01 15:31:08 +02:00
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type const& geom = feature.get_geometry(i);
|
2010-08-19 19:33:01 +02:00
|
|
|
//if (geom.num_points() <= 1) continue;
|
|
|
|
if (placement_method == MARKER_POINT_PLACEMENT || geom.num_points() <= 1)
|
2010-06-01 15:31:08 +02:00
|
|
|
{
|
2010-08-19 19:33:01 +02:00
|
|
|
geom.label_position(&x,&y);
|
|
|
|
prj_trans.backward(x,y,z);
|
|
|
|
t_.forward(&x,&y);
|
|
|
|
int px = int(floor(x - 0.5 * dx));
|
|
|
|
int py = int(floor(y - 0.5 * dy));
|
|
|
|
box2d<double> label_ext (px, py, px + dx +1, py + dy +1);
|
|
|
|
|
|
|
|
if (sym.get_allow_overlap() ||
|
2011-10-12 02:05:35 +02:00
|
|
|
detector_->has_placement(label_ext))
|
2010-08-19 19:33:01 +02:00
|
|
|
{
|
|
|
|
agg::ellipse c(x, y, w, h);
|
|
|
|
marker.concat_path(c);
|
|
|
|
ras_ptr->add_path(marker);
|
|
|
|
ren.color(agg::rgba8(r, g, b, int(a*sym.get_opacity())));
|
|
|
|
// TODO - fill with packed scanlines? agg::scanline_p8
|
|
|
|
// and agg::renderer_outline_aa
|
|
|
|
agg::render_scanlines(*ras_ptr, sl, ren);
|
|
|
|
|
|
|
|
// outline
|
2010-10-15 02:12:51 +02:00
|
|
|
if (strk_width)
|
|
|
|
{
|
|
|
|
ras_ptr->reset();
|
|
|
|
agg::conv_stroke<agg::path_storage> outline(marker);
|
|
|
|
outline.generator().width(strk_width * scale_factor_);
|
|
|
|
ras_ptr->add_path(outline);
|
|
|
|
|
|
|
|
ren.color(agg::rgba8(s_r, s_g, s_b, int(s_a*stroke_.get_opacity())));
|
|
|
|
agg::render_scanlines(*ras_ptr, sl_line, ren);
|
|
|
|
}
|
2011-10-12 02:05:35 +02:00
|
|
|
detector_->insert(label_ext);
|
2010-08-19 19:33:01 +02:00
|
|
|
if (writer.first) writer.first->add_box(label_ext, feature, t_, writer.second);
|
|
|
|
}
|
2010-06-01 15:31:08 +02:00
|
|
|
}
|
2010-08-19 19:33:01 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
|
|
|
|
if (marker_type == ARROW)
|
|
|
|
marker.concat_path(arrow_);
|
|
|
|
|
|
|
|
path_type path(t_,geom,prj_trans);
|
2011-10-12 02:05:35 +02:00
|
|
|
markers_placement<path_type, label_collision_detector4> placement(path, extent, *detector_,
|
2010-08-19 19:33:01 +02:00
|
|
|
sym.get_spacing() * scale_factor_,
|
|
|
|
sym.get_max_error(),
|
|
|
|
sym.get_allow_overlap());
|
|
|
|
double x_t, y_t, angle;
|
|
|
|
|
|
|
|
while (placement.get_point(&x_t, &y_t, &angle))
|
|
|
|
{
|
|
|
|
agg::trans_affine matrix;
|
|
|
|
|
|
|
|
if (marker_type == ELLIPSE)
|
|
|
|
{
|
|
|
|
// todo proper bbox - this is buggy
|
|
|
|
agg::ellipse c(x_t, y_t, w, h);
|
|
|
|
marker.concat_path(c);
|
2010-09-25 14:12:59 +02:00
|
|
|
agg::trans_affine matrix;
|
|
|
|
matrix *= agg::trans_affine_translation(-x_t,-y_t);
|
|
|
|
matrix *= agg::trans_affine_rotation(angle);
|
|
|
|
matrix *= agg::trans_affine_translation(x_t,y_t);
|
|
|
|
marker.transform(matrix);
|
2010-08-19 19:33:01 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
matrix = tr * agg::trans_affine_rotation(angle) * agg::trans_affine_translation(x_t, y_t);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
if (writer.first)
|
|
|
|
//writer.first->add_box(label_ext, feature, t_, writer.second);
|
|
|
|
std::clog << "### Warning metawriter not yet supported for LINE placement\n";
|
|
|
|
|
|
|
|
agg::conv_transform<agg::path_storage, agg::trans_affine> trans(marker, matrix);
|
|
|
|
ras_ptr->add_path(trans);
|
|
|
|
|
|
|
|
// fill
|
|
|
|
ren.color(agg::rgba8(r, g, b, int(a*sym.get_opacity())));
|
|
|
|
agg::render_scanlines(*ras_ptr, sl, ren);
|
|
|
|
|
|
|
|
// outline
|
2010-10-15 02:12:51 +02:00
|
|
|
if (strk_width)
|
|
|
|
{
|
|
|
|
ras_ptr->reset();
|
|
|
|
agg::conv_stroke<agg::conv_transform<agg::path_storage, agg::trans_affine> > outline(trans);
|
|
|
|
outline.generator().width(strk_width * scale_factor_);
|
|
|
|
ras_ptr->add_path(outline);
|
|
|
|
ren.color(agg::rgba8(s_r, s_g, s_b, int(s_a*stroke_.get_opacity())));
|
|
|
|
agg::render_scanlines(*ras_ptr, sl_line, ren);
|
|
|
|
}
|
2010-08-19 19:33:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-01 15:31:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template void agg_renderer<image_32>::process(markers_symbolizer const&,
|
2010-06-02 13:03:30 +02:00
|
|
|
Feature const&,
|
|
|
|
proj_transform const&);
|
2010-06-01 15:31:08 +02:00
|
|
|
}
|