2012-02-17 20:53:00 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2012-02-28 01:39:34 +01:00
|
|
|
|
2012-03-07 02:23:16 +01:00
|
|
|
//mapnik
|
2012-02-17 20:53:00 +01:00
|
|
|
#include <mapnik/text_placements/list.hpp>
|
2012-03-07 02:23:16 +01:00
|
|
|
#include <mapnik/xml_tree.hpp>
|
|
|
|
|
|
|
|
//boost
|
2012-02-28 01:39:34 +01:00
|
|
|
#include <boost/make_shared.hpp>
|
|
|
|
|
2012-03-07 02:23:16 +01:00
|
|
|
|
2012-02-17 20:53:00 +01:00
|
|
|
namespace mapnik
|
|
|
|
{
|
|
|
|
|
|
|
|
bool text_placement_info_list::next()
|
|
|
|
{
|
|
|
|
if (state == 0) {
|
|
|
|
properties = parent_->defaults;
|
|
|
|
} else {
|
|
|
|
if (state-1 >= parent_->list_.size()) return false;
|
|
|
|
properties = parent_->list_[state-1];
|
|
|
|
}
|
|
|
|
state++;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
text_symbolizer_properties & text_placements_list::add()
|
|
|
|
{
|
|
|
|
if (list_.size()) {
|
|
|
|
text_symbolizer_properties &last = list_.back();
|
|
|
|
list_.push_back(last); //Preinitialize with old values
|
|
|
|
} else {
|
|
|
|
list_.push_back(defaults);
|
|
|
|
}
|
|
|
|
return list_.back();
|
|
|
|
}
|
|
|
|
|
|
|
|
text_symbolizer_properties & text_placements_list::get(unsigned i)
|
|
|
|
{
|
|
|
|
return list_[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2012-03-04 16:38:40 +01:00
|
|
|
text_placement_info_ptr text_placements_list::get_placement_info(double scale_factor) const
|
2012-02-17 20:53:00 +01:00
|
|
|
{
|
2012-03-04 16:38:40 +01:00
|
|
|
return text_placement_info_ptr(
|
|
|
|
boost::make_shared<text_placement_info_list>(this, scale_factor));
|
2012-02-17 20:53:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
text_placements_list::text_placements_list() : text_placements(), list_(0)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void text_placements_list::add_expressions(expression_set &output)
|
|
|
|
{
|
|
|
|
defaults.add_expressions(output);
|
|
|
|
|
|
|
|
std::vector<text_symbolizer_properties>::const_iterator it;
|
|
|
|
for (it=list_.begin(); it != list_.end(); it++)
|
|
|
|
{
|
|
|
|
it->add_expressions(output);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned text_placements_list::size() const
|
|
|
|
{
|
|
|
|
return list_.size();
|
|
|
|
}
|
|
|
|
|
2012-03-07 02:23:16 +01:00
|
|
|
text_placements_ptr text_placements_list::from_xml(xml_node const &xml, fontset_map const & fontsets)
|
2012-02-18 00:39:14 +01:00
|
|
|
{
|
|
|
|
using boost::property_tree::ptree;
|
|
|
|
text_placements_list *list = new text_placements_list;
|
|
|
|
text_placements_ptr ptr = text_placements_ptr(list);
|
|
|
|
list->defaults.from_xml(xml, fontsets);
|
2012-03-07 02:23:16 +01:00
|
|
|
xml_node::const_iterator itr = xml.begin();
|
|
|
|
xml_node::const_iterator end = xml.end();
|
2012-02-28 01:39:34 +01:00
|
|
|
for( ;itr != end; ++itr)
|
|
|
|
{
|
2012-03-07 02:23:16 +01:00
|
|
|
if (itr->is_text() || itr->name() != "Placement") continue;
|
2012-02-18 00:39:14 +01:00
|
|
|
text_symbolizer_properties &p = list->add();
|
2012-03-07 02:23:16 +01:00
|
|
|
p.from_xml(*itr, fontsets);
|
2012-02-18 00:39:14 +01:00
|
|
|
//TODO: if (strict_ &&
|
|
|
|
// !p.format.fontset.size())
|
|
|
|
// ensure_font_face(p.format.face_name);
|
|
|
|
}
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2012-02-17 20:53:00 +01:00
|
|
|
} //ns mapnik
|
|
|
|
|