2011-02-28 14:17:46 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
Improved support for international text
- Implementation by @herm for GSOC 2012 (http://mapnik.org/news/2012/10/06/gsoc2012-status9/)
- C++11 port, improvements, optimizations by @artemp
- Testing and integration with master by @springmeyer
- Thank you to all the support from @behdad along the way
- Thanks for help testing @toton6868, @stephankn, @nirvn, @mfrasca, @simonsonc and many others
Refs: #2073,#2070,#2038,#2037,#1953,#1820,#1819,#1714,#1634,#1547,#1532,#1319,#1208,#1154,#1146
2013-11-22 09:06:32 +01:00
|
|
|
* Copyright (C) 2013 Artem Pavlenko
|
2011-02-28 14:17:46 +01: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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2012-02-17 20:53:00 +01:00
|
|
|
// mapnik
|
Improved support for international text
- Implementation by @herm for GSOC 2012 (http://mapnik.org/news/2012/10/06/gsoc2012-status9/)
- C++11 port, improvements, optimizations by @artemp
- Testing and integration with master by @springmeyer
- Thank you to all the support from @behdad along the way
- Thanks for help testing @toton6868, @stephankn, @nirvn, @mfrasca, @simonsonc and many others
Refs: #2073,#2070,#2038,#2037,#1953,#1820,#1819,#1714,#1634,#1547,#1532,#1319,#1208,#1154,#1146
2013-11-22 09:06:32 +01:00
|
|
|
#include <mapnik/text/text_properties.hpp>
|
|
|
|
#include <mapnik/text/layout.hpp>
|
2013-01-04 05:00:23 +01:00
|
|
|
#include <mapnik/debug.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
2012-01-22 02:56:28 +01:00
|
|
|
#include <mapnik/ptree_helpers.hpp>
|
2012-02-17 20:53:00 +01:00
|
|
|
#include <mapnik/expression_string.hpp>
|
2013-11-08 05:09:22 +01:00
|
|
|
#include <mapnik/text/formatting/text.hpp>
|
2012-03-11 23:24:28 +01:00
|
|
|
#include <mapnik/xml_node.hpp>
|
2012-03-08 18:51:23 +01:00
|
|
|
#include <mapnik/config_error.hpp>
|
2014-07-18 12:14:28 +02:00
|
|
|
#include <mapnik/text/properties_util.hpp>
|
2014-07-23 04:36:39 +02:00
|
|
|
#include <mapnik/boolean.hpp>
|
2011-02-28 14:17:46 +01:00
|
|
|
|
2012-03-10 01:20:50 +01:00
|
|
|
// boost
|
2013-01-04 03:06:07 +01:00
|
|
|
#include <boost/property_tree/ptree.hpp>
|
2012-03-10 01:20:50 +01:00
|
|
|
|
2012-02-17 20:53:00 +01:00
|
|
|
namespace mapnik
|
|
|
|
{
|
2012-01-22 02:56:28 +01:00
|
|
|
using boost::optional;
|
|
|
|
|
2014-07-09 12:31:03 +02:00
|
|
|
text_symbolizer_properties::text_symbolizer_properties()
|
|
|
|
: label_placement(POINT_PLACEMENT),
|
|
|
|
label_spacing(0.0),
|
|
|
|
label_position_tolerance(0.0),
|
|
|
|
avoid_edges(false),
|
|
|
|
minimum_distance(0.0),
|
|
|
|
minimum_padding(0.0),
|
|
|
|
minimum_path_length(0.0),
|
|
|
|
max_char_angle_delta(22.5 * M_PI/180.0),
|
|
|
|
force_odd_labels(false),
|
|
|
|
allow_overlap(false),
|
|
|
|
largest_bbox_only(true),
|
|
|
|
upright(UPRIGHT_AUTO),
|
|
|
|
layout_defaults(),
|
2014-07-23 19:09:18 +02:00
|
|
|
format_defaults(),//std::make_shared<format_defaults>()),
|
2014-07-11 15:43:56 +02:00
|
|
|
tree_() {}
|
2012-01-22 02:56:28 +01:00
|
|
|
|
2014-07-23 17:19:14 +02:00
|
|
|
void text_symbolizer_properties::process(text_layout & output, feature_impl const& feature, attributes const& attrs) const
|
2012-01-31 16:24:58 +01:00
|
|
|
{
|
|
|
|
output.clear();
|
2014-07-23 17:19:14 +02:00
|
|
|
if (tree_)
|
|
|
|
{
|
|
|
|
//evaluate format properties
|
|
|
|
char_properties_ptr format = std::make_shared<char_properties>();
|
2014-07-23 19:09:18 +02:00
|
|
|
|
|
|
|
format->text_size = boost::apply_visitor(extract_value<value_double>(feature,attrs), format_defaults.text_size);
|
|
|
|
format->character_spacing = boost::apply_visitor(extract_value<value_double>(feature,attrs), format_defaults.character_spacing);
|
|
|
|
format->line_spacing = boost::apply_visitor(extract_value<value_double>(feature,attrs), format_defaults.line_spacing);
|
|
|
|
format->text_opacity = boost::apply_visitor(extract_value<value_double>(feature,attrs), format_defaults.text_opacity);
|
|
|
|
format->halo_opacity = boost::apply_visitor(extract_value<value_double>(feature,attrs), format_defaults.halo_opacity);
|
|
|
|
format->halo_radius = boost::apply_visitor(extract_value<value_double>(feature,attrs), format_defaults.halo_radius);
|
|
|
|
|
|
|
|
std::string const& wrap_char = boost::apply_visitor(extract_value<std::string>(feature,attrs), format_defaults.wrap_char);
|
|
|
|
if (!wrap_char.empty())
|
|
|
|
{
|
|
|
|
format->wrap_char = wrap_char[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
format->face_name = format_defaults.face_name;
|
|
|
|
format->fontset = format_defaults.fontset;
|
|
|
|
format->text_transform = format_defaults.text_transform;
|
|
|
|
format->fill = format_defaults.fill;
|
|
|
|
format->halo_fill = format_defaults.halo_fill;
|
2014-07-23 17:19:14 +02:00
|
|
|
|
|
|
|
tree_->apply(format, feature, attrs, output);
|
|
|
|
}
|
2014-07-17 17:54:29 +02:00
|
|
|
else MAPNIK_LOG_WARN(text_properties) << "text_symbolizer_properties can't produce text: No formatting tree!";
|
2012-01-31 16:24:58 +01:00
|
|
|
}
|
|
|
|
|
2012-02-12 22:48:44 +01:00
|
|
|
void text_symbolizer_properties::set_format_tree(formatting::node_ptr tree)
|
2012-01-31 16:24:58 +01:00
|
|
|
{
|
|
|
|
tree_ = tree;
|
|
|
|
}
|
|
|
|
|
2012-02-12 22:48:44 +01:00
|
|
|
formatting::node_ptr text_symbolizer_properties::format_tree() const
|
2012-01-31 16:24:58 +01:00
|
|
|
{
|
|
|
|
return tree_;
|
|
|
|
}
|
|
|
|
|
2014-07-18 12:18:54 +02:00
|
|
|
void text_symbolizer_properties::placement_properties_from_xml(xml_node const& sym)
|
2012-01-22 02:56:28 +01:00
|
|
|
{
|
2012-03-07 02:23:16 +01:00
|
|
|
optional<label_placement_e> placement_ = sym.get_opt_attr<label_placement_e>("placement");
|
2012-01-22 02:56:28 +01:00
|
|
|
if (placement_) label_placement = *placement_;
|
2013-10-24 08:48:24 +02:00
|
|
|
optional<double> label_position_tolerance_ = sym.get_opt_attr<double>("label-position-tolerance");
|
2012-01-22 02:56:28 +01:00
|
|
|
if (label_position_tolerance_) label_position_tolerance = *label_position_tolerance_;
|
2012-09-05 02:15:58 +02:00
|
|
|
optional<double> spacing_ = sym.get_opt_attr<double>("spacing");
|
2012-01-22 02:56:28 +01:00
|
|
|
if (spacing_) label_spacing = *spacing_;
|
2012-08-21 23:50:24 +02:00
|
|
|
else {
|
|
|
|
// https://github.com/mapnik/mapnik/issues/1427
|
2012-09-05 02:15:58 +02:00
|
|
|
spacing_ = sym.get_opt_attr<double>("label-spacing");
|
2012-08-21 23:50:24 +02:00
|
|
|
if (spacing_) label_spacing = *spacing_;
|
|
|
|
}
|
2012-09-05 02:15:58 +02:00
|
|
|
optional<double> minimum_distance_ = sym.get_opt_attr<double>("minimum-distance");
|
2012-01-22 02:56:28 +01:00
|
|
|
if (minimum_distance_) minimum_distance = *minimum_distance_;
|
2012-09-05 02:15:58 +02:00
|
|
|
optional<double> min_padding_ = sym.get_opt_attr<double>("minimum-padding");
|
2012-01-22 02:56:28 +01:00
|
|
|
if (min_padding_) minimum_padding = *min_padding_;
|
2012-09-05 02:15:58 +02:00
|
|
|
optional<double> min_path_length_ = sym.get_opt_attr<double>("minimum-path-length");
|
2012-01-22 02:56:28 +01:00
|
|
|
if (min_path_length_) minimum_path_length = *min_path_length_;
|
2014-07-23 04:36:39 +02:00
|
|
|
optional<mapnik::boolean> avoid_edges_ = sym.get_opt_attr<mapnik::boolean>("avoid-edges");
|
2012-01-22 02:56:28 +01:00
|
|
|
if (avoid_edges_) avoid_edges = *avoid_edges_;
|
2014-07-23 04:36:39 +02:00
|
|
|
optional<mapnik::boolean> allow_overlap_ = sym.get_opt_attr<mapnik::boolean>("allow-overlap");
|
2012-01-22 02:56:28 +01:00
|
|
|
if (allow_overlap_) allow_overlap = *allow_overlap_;
|
2014-07-23 04:36:39 +02:00
|
|
|
optional<mapnik::boolean> largest_bbox_only_ = sym.get_opt_attr<mapnik::boolean>("largest-bbox-only");
|
2012-06-25 16:00:53 +02:00
|
|
|
if (largest_bbox_only_) largest_bbox_only = *largest_bbox_only_;
|
2013-12-20 00:11:35 +01:00
|
|
|
}
|
|
|
|
|
2014-07-15 17:31:43 +02:00
|
|
|
void text_symbolizer_properties::from_xml(xml_node const& node, fontset_map const& fontsets)
|
2013-12-20 00:11:35 +01:00
|
|
|
{
|
2014-07-15 17:31:43 +02:00
|
|
|
placement_properties_from_xml(node);
|
2013-12-20 00:11:35 +01:00
|
|
|
|
2014-07-15 17:31:43 +02:00
|
|
|
optional<double> max_char_angle_delta_ = node.get_opt_attr<double>("max-char-angle-delta");
|
2012-01-22 02:56:28 +01:00
|
|
|
if (max_char_angle_delta_) max_char_angle_delta=(*max_char_angle_delta_)*(M_PI/180);
|
2014-07-15 17:31:43 +02:00
|
|
|
optional<text_upright_e> upright_ = node.get_opt_attr<text_upright_e>("upright");
|
2014-01-30 12:01:57 +01:00
|
|
|
if (upright_) upright = *upright_;
|
|
|
|
|
2014-07-15 17:31:43 +02:00
|
|
|
layout_defaults.from_xml(node);
|
2012-01-31 16:24:58 +01:00
|
|
|
|
2014-07-15 17:31:43 +02:00
|
|
|
optional<expression_ptr> name_ = node.get_opt_attr<expression_ptr>("name");
|
2012-04-08 02:20:56 +02:00
|
|
|
if (name_)
|
|
|
|
{
|
2012-04-10 00:51:04 +02:00
|
|
|
MAPNIK_LOG_WARN(text_placements) << "Using 'name' in TextSymbolizer/ShieldSymbolizer is deprecated!";
|
|
|
|
|
2012-07-04 20:59:36 +02:00
|
|
|
set_old_style_expression(*name_);
|
2012-01-22 02:56:28 +01:00
|
|
|
}
|
2012-01-31 16:24:58 +01:00
|
|
|
|
2014-07-23 19:09:18 +02:00
|
|
|
format_defaults.from_xml(node, fontsets);
|
2014-07-15 17:31:43 +02:00
|
|
|
formatting::node_ptr n(formatting::node::from_xml(node));
|
2012-01-31 16:24:58 +01:00
|
|
|
if (n) set_format_tree(n);
|
2012-01-22 02:56:28 +01:00
|
|
|
}
|
|
|
|
|
2012-03-05 20:31:58 +01:00
|
|
|
void text_symbolizer_properties::to_xml(boost::property_tree::ptree &node,
|
|
|
|
bool explicit_defaults,
|
|
|
|
text_symbolizer_properties const& dfl) const
|
2012-01-22 02:56:28 +01:00
|
|
|
{
|
|
|
|
if (label_placement != dfl.label_placement || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(node, "placement", label_placement);
|
|
|
|
}
|
|
|
|
if (label_position_tolerance != dfl.label_position_tolerance || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(node, "label-position-tolerance", label_position_tolerance);
|
|
|
|
}
|
|
|
|
if (label_spacing != dfl.label_spacing || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(node, "spacing", label_spacing);
|
|
|
|
}
|
|
|
|
if (minimum_distance != dfl.minimum_distance || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(node, "minimum-distance", minimum_distance);
|
|
|
|
}
|
|
|
|
if (minimum_padding != dfl.minimum_padding || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(node, "minimum-padding", minimum_padding);
|
|
|
|
}
|
|
|
|
if (minimum_path_length != dfl.minimum_path_length || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(node, "minimum-path-length", minimum_path_length);
|
|
|
|
}
|
|
|
|
if (avoid_edges != dfl.avoid_edges || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(node, "avoid-edges", avoid_edges);
|
|
|
|
}
|
2014-01-30 12:01:57 +01:00
|
|
|
if (allow_overlap != dfl.allow_overlap || explicit_defaults)
|
2012-06-25 16:00:53 +02:00
|
|
|
{
|
2014-01-30 12:01:57 +01:00
|
|
|
set_attr(node, "allow-overlap", allow_overlap);
|
|
|
|
}
|
|
|
|
if (largest_bbox_only != dfl.largest_bbox_only || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(node, "largest-bbox-only", largest_bbox_only);
|
2012-06-25 16:00:53 +02:00
|
|
|
}
|
2012-01-22 02:56:28 +01:00
|
|
|
if (max_char_angle_delta != dfl.max_char_angle_delta || explicit_defaults)
|
|
|
|
{
|
2014-02-11 04:37:40 +01:00
|
|
|
set_attr(node, "max-char-angle-delta", max_char_angle_delta/(M_PI/180));
|
2012-01-22 02:56:28 +01:00
|
|
|
}
|
2014-01-30 12:01:57 +01:00
|
|
|
if (upright != dfl.upright || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(node, "upright", upright);
|
|
|
|
}
|
|
|
|
|
2014-07-09 12:31:03 +02:00
|
|
|
layout_defaults.to_xml(node, explicit_defaults, dfl.layout_defaults);
|
2014-07-23 19:09:18 +02:00
|
|
|
format_defaults.to_xml(node, explicit_defaults, dfl.format_defaults);
|
2014-01-30 12:01:57 +01:00
|
|
|
if (tree_) tree_->to_xml(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-18 12:18:54 +02:00
|
|
|
void text_symbolizer_properties::add_expressions(expression_set & output) const
|
2014-01-30 12:01:57 +01:00
|
|
|
{
|
2014-07-09 12:31:03 +02:00
|
|
|
layout_defaults.add_expressions(output);
|
2014-07-23 19:09:18 +02:00
|
|
|
//format_defaults.add_expressions(output); FIXME
|
2014-01-30 12:01:57 +01:00
|
|
|
if (tree_) tree_->add_expressions(output);
|
|
|
|
}
|
|
|
|
|
|
|
|
void text_symbolizer_properties::set_old_style_expression(expression_ptr expr)
|
|
|
|
{
|
|
|
|
tree_ = std::make_shared<formatting::text_node>(expr);
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:43:56 +02:00
|
|
|
text_layout_properties::text_layout_properties()
|
2014-07-15 11:15:56 +02:00
|
|
|
: halign(H_AUTO),
|
2014-07-11 15:43:56 +02:00
|
|
|
jalign(J_AUTO),
|
2014-07-16 15:24:00 +02:00
|
|
|
valign(V_AUTO)
|
2014-07-16 17:34:42 +02:00
|
|
|
{}
|
2014-01-30 12:01:57 +01:00
|
|
|
|
2014-07-14 17:55:57 +02:00
|
|
|
void text_layout_properties::from_xml(xml_node const &node)
|
2014-01-30 12:01:57 +01:00
|
|
|
{
|
2014-07-15 11:15:56 +02:00
|
|
|
set_property_from_xml<double>(dx, "dx", node);
|
|
|
|
set_property_from_xml<double>(dy, "dy", node);
|
2014-07-16 17:34:42 +02:00
|
|
|
set_property_from_xml<double>(text_ratio, "text-ratio", node);
|
|
|
|
set_property_from_xml<double>(wrap_width, "wrap-width", node);
|
2014-07-23 04:36:39 +02:00
|
|
|
set_property_from_xml<mapnik::boolean>(wrap_before, "wrap-before", node);
|
|
|
|
set_property_from_xml<mapnik::boolean>(rotate_displacement, "rotate-displacement", node);
|
2014-07-16 17:34:42 +02:00
|
|
|
set_property_from_xml<double>(orientation, "orientation", node);
|
|
|
|
//
|
2014-07-14 17:55:57 +02:00
|
|
|
optional<vertical_alignment_e> valign_ = node.get_opt_attr<vertical_alignment_e>("vertical-alignment");
|
2014-01-30 12:01:57 +01:00
|
|
|
if (valign_) valign = *valign_;
|
2014-07-14 17:55:57 +02:00
|
|
|
optional<horizontal_alignment_e> halign_ = node.get_opt_attr<horizontal_alignment_e>("horizontal-alignment");
|
2014-01-30 12:01:57 +01:00
|
|
|
if (halign_) halign = *halign_;
|
2014-07-14 17:55:57 +02:00
|
|
|
optional<justify_alignment_e> jalign_ = node.get_opt_attr<justify_alignment_e>("justify-alignment");
|
2014-01-30 12:01:57 +01:00
|
|
|
if (jalign_) jalign = *jalign_;
|
|
|
|
}
|
|
|
|
|
2014-07-14 17:08:58 +02:00
|
|
|
void text_layout_properties::to_xml(boost::property_tree::ptree & node,
|
2014-07-15 11:15:56 +02:00
|
|
|
bool explicit_defaults,
|
|
|
|
text_layout_properties const& dfl) const
|
2014-01-30 12:01:57 +01:00
|
|
|
{
|
2014-07-21 12:43:59 +02:00
|
|
|
if (!(dx == dfl.dx) || explicit_defaults) serialize_property("dx", dx, node);
|
|
|
|
if (!(dy == dfl.dy) || explicit_defaults) serialize_property("dy", dy, node);
|
|
|
|
if (valign != dfl.valign || explicit_defaults) set_attr(node, "vertical-alignment", valign);
|
|
|
|
if (halign != dfl.halign || explicit_defaults) set_attr(node, "horizontal-alignment", halign);
|
|
|
|
if (jalign != dfl.jalign || explicit_defaults) set_attr(node, "justify-alignment", jalign);
|
|
|
|
if (!(text_ratio == dfl.text_ratio) || explicit_defaults) serialize_property("text-ratio", text_ratio, node);
|
|
|
|
if (!(wrap_width == dfl.wrap_width) || explicit_defaults) serialize_property("wrap-width", wrap_width, node);
|
|
|
|
if (!(wrap_before == dfl.wrap_before) || explicit_defaults) serialize_property("wrap-before", wrap_before, node);
|
|
|
|
if (!(rotate_displacement == dfl.rotate_displacement) || explicit_defaults)
|
|
|
|
serialize_property("rotate-displacement", rotate_displacement, node);
|
|
|
|
if (!(orientation == dfl.orientation) || explicit_defaults) serialize_property("orientation", orientation, node);
|
2012-01-31 16:24:58 +01:00
|
|
|
}
|
|
|
|
|
2014-07-14 15:15:36 +02:00
|
|
|
void text_layout_properties::add_expressions(expression_set& output) const
|
2012-01-31 16:24:58 +01:00
|
|
|
{
|
2014-07-16 15:24:00 +02:00
|
|
|
if (is_expression(dx)) output.insert(boost::get<expression_ptr>(dx));
|
|
|
|
if (is_expression(dy)) output.insert(boost::get<expression_ptr>(dy));
|
2014-07-14 15:15:36 +02:00
|
|
|
if (is_expression(orientation)) output.insert(boost::get<expression_ptr>(orientation));
|
|
|
|
if (is_expression(wrap_width)) output.insert(boost::get<expression_ptr>(wrap_width));
|
2014-07-14 17:51:11 +02:00
|
|
|
if (is_expression(wrap_before)) output.insert(boost::get<expression_ptr>(wrap_before));
|
|
|
|
if (is_expression(rotate_displacement)) output.insert(boost::get<expression_ptr>(rotate_displacement));
|
|
|
|
if (is_expression(text_ratio)) output.insert(boost::get<expression_ptr>(text_ratio));
|
2012-01-22 02:56:28 +01:00
|
|
|
}
|
|
|
|
|
2014-07-23 17:19:14 +02:00
|
|
|
// text format properties
|
|
|
|
|
|
|
|
format_properties::format_properties()
|
2014-07-14 17:51:11 +02:00
|
|
|
: face_name(),
|
|
|
|
fontset(),
|
|
|
|
text_size(10.0),
|
2014-07-23 17:19:14 +02:00
|
|
|
character_spacing(0.0),
|
2014-07-23 19:09:18 +02:00
|
|
|
line_spacing(0.0),
|
2014-07-14 17:51:11 +02:00
|
|
|
text_opacity(1.0),
|
|
|
|
halo_opacity(1.0),
|
2014-07-23 19:09:18 +02:00
|
|
|
wrap_char(" "),
|
2014-07-14 17:51:11 +02:00
|
|
|
text_transform(NONE),
|
|
|
|
fill(color(0,0,0)),
|
|
|
|
halo_fill(color(255,255,255)),
|
2014-07-23 19:09:18 +02:00
|
|
|
halo_radius(0.0) {}
|
2012-01-22 02:56:28 +01:00
|
|
|
|
2014-07-23 17:19:14 +02:00
|
|
|
void format_properties::from_xml(xml_node const& node, fontset_map const& fontsets)
|
2012-01-22 02:56:28 +01:00
|
|
|
{
|
2014-07-23 17:19:14 +02:00
|
|
|
set_property_from_xml<double>(text_size, "size", node);
|
|
|
|
set_property_from_xml<double>(character_spacing, "character-spacing", node);
|
2014-07-23 19:09:18 +02:00
|
|
|
set_property_from_xml<double>(line_spacing, "line-spacing", node);
|
|
|
|
set_property_from_xml<double>(halo_radius, "halo-radius", node);
|
|
|
|
set_property_from_xml<double>(text_opacity, "opacity", node);
|
|
|
|
set_property_from_xml<double>(halo_opacity, "halo-opacity", node);
|
|
|
|
set_property_from_xml<std::string>(wrap_char, "wrap-character", node);
|
2014-07-23 17:19:14 +02:00
|
|
|
|
2014-06-16 12:00:19 +02:00
|
|
|
optional<color> fill_ = node.get_opt_attr<color>("fill");
|
2012-01-22 02:56:28 +01:00
|
|
|
if (fill_) fill = *fill_;
|
2014-06-16 12:00:19 +02:00
|
|
|
optional<color> halo_fill_ = node.get_opt_attr<color>("halo-fill");
|
2012-01-22 02:56:28 +01:00
|
|
|
if (halo_fill_) halo_fill = *halo_fill_;
|
2014-07-23 19:09:18 +02:00
|
|
|
|
2014-06-16 12:00:19 +02:00
|
|
|
optional<text_transform_e> tconvert_ = node.get_opt_attr<text_transform_e>("text-transform");
|
2012-01-22 02:56:28 +01:00
|
|
|
if (tconvert_) text_transform = *tconvert_;
|
2014-07-23 19:09:18 +02:00
|
|
|
|
2014-06-16 12:00:19 +02:00
|
|
|
optional<std::string> face_name_ = node.get_opt_attr<std::string>("face-name");
|
2012-01-22 02:56:28 +01:00
|
|
|
if (face_name_)
|
|
|
|
{
|
|
|
|
face_name = *face_name_;
|
|
|
|
}
|
2014-06-16 12:00:19 +02:00
|
|
|
optional<std::string> fontset_name_ = node.get_opt_attr<std::string>("fontset-name");
|
2014-07-23 19:09:18 +02:00
|
|
|
if (fontset_name_)
|
|
|
|
{
|
2012-01-22 02:56:28 +01:00
|
|
|
std::map<std::string,font_set>::const_iterator itr = fontsets.find(*fontset_name_);
|
|
|
|
if (itr != fontsets.end())
|
|
|
|
{
|
|
|
|
fontset = itr->second;
|
2012-03-05 20:31:58 +01:00
|
|
|
}
|
|
|
|
else
|
2012-01-22 02:56:28 +01:00
|
|
|
{
|
2014-06-16 12:00:19 +02:00
|
|
|
throw config_error("Unable to find any fontset named '" + *fontset_name_ + "'", node);
|
2012-01-22 02:56:28 +01:00
|
|
|
}
|
|
|
|
}
|
2012-09-14 23:17:45 +02:00
|
|
|
if (!face_name.empty() && fontset)
|
2012-01-22 02:56:28 +01:00
|
|
|
{
|
2014-06-16 12:00:19 +02:00
|
|
|
throw config_error("Can't have both face-name and fontset-name", node);
|
2012-01-22 02:56:28 +01:00
|
|
|
}
|
2012-09-14 23:17:45 +02:00
|
|
|
if (face_name.empty() && !fontset)
|
2012-01-22 02:56:28 +01:00
|
|
|
{
|
2014-06-16 12:00:19 +02:00
|
|
|
throw config_error("Must have face-name or fontset-name", node);
|
2012-01-22 02:56:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-23 17:19:14 +02:00
|
|
|
void format_properties::to_xml(boost::property_tree::ptree & node, bool explicit_defaults, format_properties const& dfl) const
|
2012-01-22 02:56:28 +01:00
|
|
|
{
|
2012-09-14 23:17:45 +02:00
|
|
|
if (fontset)
|
2012-01-22 02:56:28 +01:00
|
|
|
{
|
2012-09-14 23:17:45 +02:00
|
|
|
set_attr(node, "fontset-name", fontset->get_name());
|
2012-01-22 02:56:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (face_name != dfl.face_name || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(node, "face-name", face_name);
|
|
|
|
}
|
|
|
|
|
2014-07-23 17:19:14 +02:00
|
|
|
if (!(text_size == dfl.text_size) || explicit_defaults) serialize_property("size", text_size, node);
|
2014-07-23 19:09:18 +02:00
|
|
|
if (!(character_spacing == dfl.character_spacing) || explicit_defaults) serialize_property("character-spacing", character_spacing, node);
|
|
|
|
if (!(line_spacing == dfl.line_spacing) || explicit_defaults) serialize_property("line-spacing", line_spacing, node);
|
|
|
|
if (!(halo_radius == dfl.halo_radius) || explicit_defaults) serialize_property("halo-radius", halo_radius, node);
|
|
|
|
if (!(wrap_char == dfl.wrap_char) || explicit_defaults) serialize_property("wrap-character", wrap_char, node);
|
|
|
|
|
|
|
|
// for shield_symbolizer this is later overridden -- FIXME
|
|
|
|
if (!(text_opacity == dfl.text_opacity) || explicit_defaults) serialize_property("opacity", text_opacity, node);
|
|
|
|
if (!(halo_opacity == dfl.halo_opacity) || explicit_defaults) serialize_property("halo-opacity", halo_opacity, node);
|
|
|
|
//
|
2012-01-22 02:56:28 +01:00
|
|
|
|
|
|
|
if (fill != dfl.fill || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(node, "fill", fill);
|
|
|
|
}
|
2014-07-23 19:09:18 +02:00
|
|
|
|
2012-01-22 02:56:28 +01:00
|
|
|
if (halo_fill != dfl.halo_fill || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(node, "halo-fill", halo_fill);
|
|
|
|
}
|
2014-07-23 19:09:18 +02:00
|
|
|
|
2012-01-22 02:56:28 +01:00
|
|
|
if (text_transform != dfl.text_transform || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(node, "text-transform", text_transform);
|
|
|
|
}
|
|
|
|
}
|
2011-02-28 14:17:46 +01:00
|
|
|
|
2012-02-17 20:53:00 +01:00
|
|
|
} //ns mapnik
|