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>
|
2010-06-01 15:31:08 +02:00
|
|
|
#include <mapnik/image_util.hpp>
|
2010-06-08 12:16:22 +02:00
|
|
|
#include <mapnik/svg/svg_converter.hpp>
|
|
|
|
#include <mapnik/svg/svg_renderer.hpp>
|
2010-06-14 18:38:02 +02:00
|
|
|
#include <mapnik/svg/svg_path_adapter.hpp>
|
2012-01-29 04:49:02 +01:00
|
|
|
#include <mapnik/symbolizer_helpers.hpp>
|
2012-02-16 00:27:33 +01:00
|
|
|
// stl
|
|
|
|
#include <cmath>
|
2010-06-01 15:31:08 +02:00
|
|
|
|
2011-05-10 23:09:54 +02:00
|
|
|
// boost
|
|
|
|
#include <boost/make_shared.hpp>
|
|
|
|
|
2010-06-01 15:31:08 +02:00
|
|
|
namespace mapnik {
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void agg_renderer<T>::process(shield_symbolizer const& sym,
|
2012-02-02 01:37:05 +01:00
|
|
|
mapnik::feature_ptr const& feature,
|
2010-06-02 13:03:30 +02:00
|
|
|
proj_transform const& prj_trans)
|
2010-06-01 15:31:08 +02:00
|
|
|
{
|
2012-01-29 04:49:02 +01:00
|
|
|
shield_symbolizer_helper<face_manager<freetype_engine>,
|
2012-02-02 02:53:35 +01:00
|
|
|
label_collision_detector4> helper(
|
|
|
|
sym, *feature, prj_trans,
|
|
|
|
width_, height_,
|
|
|
|
scale_factor_,
|
|
|
|
t_, font_manager_, *detector_);
|
2012-01-29 04:49:02 +01:00
|
|
|
|
|
|
|
text_renderer<T> ren(pixmap_, font_manager_, *(font_manager_.get_stroker()));
|
|
|
|
|
|
|
|
text_placement_info_ptr placement;
|
|
|
|
while ((placement = helper.get_placement())) {
|
|
|
|
for (unsigned int ii = 0; ii < placement->placements.size(); ++ii)
|
|
|
|
{
|
|
|
|
std::pair<int, int> marker_pos = helper.get_marker_position(placement->placements[ii]);
|
|
|
|
render_marker(marker_pos.first, marker_pos.second, helper.get_marker(), helper.get_transform(), sym.get_opacity());
|
|
|
|
|
2012-02-16 00:27:33 +01:00
|
|
|
double x = std::floor(placement->placements[ii].starting_x);
|
|
|
|
double y = std::floor(placement->placements[ii].starting_y);
|
2012-01-29 04:49:02 +01:00
|
|
|
ren.prepare_glyphs(&(placement->placements[ii]));
|
|
|
|
ren.render(x, y);
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
2010-06-01 15:31:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template void agg_renderer<image_32>::process(shield_symbolizer const&,
|
2012-02-02 01:37:05 +01:00
|
|
|
mapnik::feature_ptr const&,
|
2010-06-02 13:03:30 +02:00
|
|
|
proj_transform const&);
|
2010-06-01 15:31:08 +02:00
|
|
|
|
|
|
|
}
|