2006-10-17 16:12:53 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Artem Pavlenko
|
|
|
|
* Copyright (C) 2006 10East Corp.
|
|
|
|
*
|
|
|
|
* 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$
|
|
|
|
|
|
|
|
//stl
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
// boost
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <boost/utility.hpp>
|
|
|
|
#include <boost/ptr_container/ptr_vector.hpp>
|
|
|
|
#include <boost/thread/mutex.hpp>
|
|
|
|
|
|
|
|
//mapnik
|
|
|
|
#include <mapnik/geometry.hpp>
|
|
|
|
#include <mapnik/placement_finder.hpp>
|
|
|
|
#include <mapnik/text_path.hpp>
|
|
|
|
|
|
|
|
namespace mapnik
|
|
|
|
{
|
2006-11-17 15:07:41 +01:00
|
|
|
//For shields
|
2006-10-27 19:29:39 +02:00
|
|
|
placement::placement(string_info *info_, CoordTransform *ctrans_, const proj_transform *proj_trans_, geometry_ptr geom_, std::pair<double, double> dimensions_)
|
2006-11-17 15:07:41 +01:00
|
|
|
: info(info_), ctrans(ctrans_), proj_trans(proj_trans_), geom(geom_), label_placement(point_placement), dimensions(dimensions_), has_dimensions(true), shape_path(*ctrans_, *geom_, *proj_trans_), total_distance_(-1.0), wrap_width(0), text_ratio(0), label_spacing(0), max_char_angle_delta(0.0), avoid_edges(false)
|
2006-10-27 19:29:39 +02:00
|
|
|
{
|
|
|
|
}
|
2006-11-02 00:17:05 +01:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
//For text
|
|
|
|
placement::placement(string_info *info_, CoordTransform *ctrans_, const proj_transform *proj_trans_, geometry_ptr geom_, label_placement_e placement_)
|
2006-11-17 15:07:41 +01:00
|
|
|
: info(info_), ctrans(ctrans_), proj_trans(proj_trans_), geom(geom_), label_placement(placement_), has_dimensions(false), shape_path(*ctrans_, *geom_, *proj_trans_), total_distance_(-1.0), wrap_width(0), text_ratio(0), label_spacing(0), max_char_angle_delta(0.0), avoid_edges(false)
|
2006-10-27 19:29:39 +02:00
|
|
|
{
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
placement::~placement()
|
|
|
|
{
|
|
|
|
}
|
2006-11-02 00:17:05 +01:00
|
|
|
|
|
|
|
unsigned placement::path_size() const
|
|
|
|
{
|
|
|
|
return geom->num_points();
|
|
|
|
}
|
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
std::pair<double, double> placement::get_position_at_distance(double target_distance)
|
|
|
|
{
|
|
|
|
double old_x, old_y, new_x, new_y;
|
|
|
|
double x, y;
|
|
|
|
x = y = 0.0;
|
2006-11-02 00:17:05 +01:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
double distance = 0.0;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
shape_path.rewind(0);
|
|
|
|
shape_path.vertex(&new_x,&new_y);
|
|
|
|
for (unsigned i = 0; i < geom->num_points() - 1; i++)
|
|
|
|
{
|
|
|
|
double dx, dy;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
old_x = new_x;
|
|
|
|
old_y = new_y;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
shape_path.vertex(&new_x,&new_y);
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
dx = new_x - old_x;
|
|
|
|
dy = new_y - old_y;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
double segment_length = sqrt(dx*dx + dy*dy);
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
distance += segment_length;
|
|
|
|
if (distance > target_distance)
|
|
|
|
{
|
|
|
|
x = new_x - dx*(distance - target_distance)/segment_length;
|
|
|
|
y = new_y - dy*(distance - target_distance)/segment_length;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
return std::pair<double, double>(x, y);
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
double placement::get_total_distance()
|
2006-10-17 16:12:53 +02:00
|
|
|
{
|
2006-10-27 19:29:39 +02:00
|
|
|
if (total_distance_ < 0.0)
|
|
|
|
{
|
|
|
|
double old_x, old_y, new_x, new_y;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
shape_path.rewind(0);
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
shape_path.vertex(&old_x,&old_y);
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
total_distance_ = 0.0;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
for (unsigned i = 0; i < geom->num_points() - 1; i++)
|
|
|
|
{
|
|
|
|
double dx, dy;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
shape_path.vertex(&new_x,&new_y);
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
dx = new_x - old_x;
|
|
|
|
dy = new_y - old_y;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
total_distance_ += sqrt(dx*dx + dy*dy);
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
old_x = new_x;
|
|
|
|
old_y = new_y;
|
|
|
|
}
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
return total_distance_;
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
void placement::clear_envelopes()
|
|
|
|
{
|
|
|
|
while (!envelopes.empty())
|
|
|
|
envelopes.pop();
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2006-11-17 15:07:41 +01:00
|
|
|
placement_finder::placement_finder(Envelope<double> e, unsigned buffer)
|
|
|
|
: dimensions_(e), detector_(Envelope<double>(e.minx() - buffer, e.miny() - buffer, e.maxx() + buffer, e.maxy() + buffer))
|
2006-10-17 16:12:53 +02:00
|
|
|
{
|
|
|
|
}
|
2006-10-27 19:29:39 +02:00
|
|
|
|
2006-11-02 00:17:05 +01:00
|
|
|
|
|
|
|
bool placement_finder::find_placements(placement *p)
|
2006-10-17 16:12:53 +02:00
|
|
|
{
|
2006-10-27 19:29:39 +02:00
|
|
|
if (p->label_placement == point_placement)
|
|
|
|
{
|
|
|
|
return find_placement_horizontal(p);
|
|
|
|
}
|
|
|
|
else if (p->label_placement == line_placement)
|
|
|
|
{
|
|
|
|
return find_placement_follow(p);
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
return false;
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
bool placement_finder::find_placement_follow(placement *p)
|
|
|
|
{
|
|
|
|
std::pair<double, double> string_dimensions = p->info->get_dimensions();
|
|
|
|
double string_width = string_dimensions.first;
|
|
|
|
// double string_height = string_dimensions.second;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
// for (unsigned int ii = 0; ii < p->info->num_characters(); ++ii)
|
|
|
|
// std::clog << static_cast<char> (p->info->at(ii).character);
|
|
|
|
// std::clog << std::endl;
|
2006-11-02 00:17:05 +01:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
double distance = p->get_total_distance();
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-11-02 00:17:05 +01:00
|
|
|
if (string_width > distance)
|
2006-10-27 19:29:39 +02:00
|
|
|
{
|
2006-11-04 11:38:24 +01:00
|
|
|
//std::clog << "String longer than segment, bailing" << std::endl;
|
2006-11-02 00:17:05 +01:00
|
|
|
return false;
|
2006-10-27 19:29:39 +02:00
|
|
|
}
|
2006-11-02 00:17:05 +01:00
|
|
|
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-11-02 00:17:05 +01:00
|
|
|
int num_labels = 0;
|
|
|
|
if (p->label_spacing)
|
|
|
|
num_labels = static_cast<int> (floor(distance / (p->label_spacing + string_width)));
|
|
|
|
if (num_labels == 0)
|
|
|
|
num_labels = 1;
|
|
|
|
|
|
|
|
double ideal_spacing = distance/num_labels;
|
|
|
|
std::vector<double> ideal_label_distances;
|
2006-11-22 23:09:11 +01:00
|
|
|
for (double label_pos = string_width/2.0; label_pos < distance - string_width/2.0; label_pos += ideal_spacing)
|
2006-11-02 00:17:05 +01:00
|
|
|
ideal_label_distances.push_back(label_pos);
|
|
|
|
|
2006-11-22 23:09:11 +01:00
|
|
|
double delta = ideal_spacing/100.0;
|
2006-11-02 00:17:05 +01:00
|
|
|
bool FoundPlacement = false;
|
|
|
|
for (std::vector<double>::const_iterator itr = ideal_label_distances.begin(); itr < ideal_label_distances.end(); ++itr)
|
|
|
|
{
|
2006-11-04 11:38:24 +01:00
|
|
|
//std::clog << "Trying to find txt placement at distance: " << *itr << std::endl;
|
2006-11-22 23:09:11 +01:00
|
|
|
for (double i = 0; i < ideal_spacing/2.0; i += delta)
|
2006-11-02 00:17:05 +01:00
|
|
|
{
|
|
|
|
p->clear_envelopes();
|
|
|
|
|
|
|
|
// check position +- delta for valid placement
|
2006-11-22 23:09:11 +01:00
|
|
|
if ( build_path_follow(p, *itr + i) ) {
|
2006-11-02 00:17:05 +01:00
|
|
|
update_detector(p);
|
|
|
|
FoundPlacement = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
p->clear_envelopes();
|
2006-11-22 23:09:11 +01:00
|
|
|
if ( build_path_follow(p, *itr - i) ) {
|
2006-11-02 00:17:05 +01:00
|
|
|
update_detector(p);
|
|
|
|
FoundPlacement = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
// if (FoundPlacement)
|
|
|
|
// std::clog << "Found Placement" << string_width << " " << distance << std::endl;
|
2006-11-02 00:17:05 +01:00
|
|
|
|
|
|
|
return FoundPlacement;
|
2006-10-27 19:29:39 +02:00
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
bool placement_finder::find_placement_horizontal(placement *p)
|
2006-10-17 16:12:53 +02:00
|
|
|
{
|
2006-11-02 00:17:05 +01:00
|
|
|
if (p->path_size() == 1) // point geometry
|
|
|
|
{
|
|
|
|
if ( build_path_horizontal(p, 0) )
|
|
|
|
{
|
|
|
|
update_detector(p);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
double distance = p->get_total_distance();
|
2006-10-27 19:29:39 +02:00
|
|
|
//~ double delta = string_width/distance;
|
|
|
|
double delta = distance/100.0;
|
|
|
|
|
|
|
|
for (double i = 0; i < distance/2.0; i += delta)
|
|
|
|
{
|
|
|
|
p->clear_envelopes();
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
if ( build_path_horizontal(p, distance/2.0 + i) ) {
|
|
|
|
update_detector(p);
|
|
|
|
return true;
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
p->clear_envelopes();
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
if ( build_path_horizontal(p, distance/2.0 - i) ) {
|
|
|
|
update_detector(p);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
void placement_finder::update_detector(placement *p)
|
2006-10-17 16:12:53 +02:00
|
|
|
{
|
2006-10-27 19:29:39 +02:00
|
|
|
while (!p->envelopes.empty())
|
|
|
|
{
|
|
|
|
Envelope<double> e = p->envelopes.front();
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
detector_.insert(e);
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
p->envelopes.pop();
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
}
|
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
bool placement_finder::build_path_follow(placement *p, double target_distance)
|
2006-11-02 00:17:05 +01:00
|
|
|
{
|
2006-10-27 19:29:39 +02:00
|
|
|
double new_x, new_y, old_x, old_y;
|
|
|
|
unsigned cur_node = 0;
|
2006-11-04 11:38:24 +01:00
|
|
|
double next_char_x = 0;
|
|
|
|
double next_char_y = 0;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
double angle = 0.0;
|
|
|
|
int orientation = 0;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-11-02 00:17:05 +01:00
|
|
|
p->current_placement.path.clear();
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
double x, y;
|
|
|
|
x = y = 0.0;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
double distance = 0.0;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
std::pair<double, double> string_dimensions = p->info->get_dimensions();
|
|
|
|
// double string_width = string_dimensions.first;
|
|
|
|
double string_height = string_dimensions.second;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
// find the segment that our text should start on
|
2006-10-27 19:29:39 +02:00
|
|
|
p->shape_path.rewind(0);
|
|
|
|
p->shape_path.vertex(&new_x,&new_y);
|
2006-11-04 11:38:24 +01:00
|
|
|
old_x = new_x;
|
|
|
|
old_y = new_y;
|
2006-10-27 19:29:39 +02:00
|
|
|
for (unsigned i = 0; i < p->geom->num_points() - 1; i++)
|
|
|
|
{
|
|
|
|
double dx, dy;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
cur_node++;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
old_x = new_x;
|
|
|
|
old_y = new_y;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
p->shape_path.vertex(&new_x,&new_y);
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
dx = new_x - old_x;
|
|
|
|
dy = new_y - old_y;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
double segment_length = sqrt(dx*dx + dy*dy);
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
distance += segment_length;
|
|
|
|
if (distance > target_distance)
|
|
|
|
{
|
2006-11-04 11:38:24 +01:00
|
|
|
// this segment is greater that the target starting distance so start here
|
2006-11-02 00:17:05 +01:00
|
|
|
p->current_placement.starting_x = new_x - dx*(distance - target_distance)/segment_length;
|
|
|
|
p->current_placement.starting_y = new_y - dy*(distance - target_distance)/segment_length;
|
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
// angle text starts at and orientation
|
2006-10-27 19:29:39 +02:00
|
|
|
angle = atan2(-dy, dx);
|
2006-11-04 11:38:24 +01:00
|
|
|
orientation = fabs(angle) > M_PI/2 ? -1 : 1;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
distance -= target_distance;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
break;
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
}
|
2006-11-22 23:09:11 +01:00
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
// now find the placement of each character starting from our initial segment
|
|
|
|
// determined above
|
|
|
|
double last_angle = angle;
|
2006-10-27 19:29:39 +02:00
|
|
|
for (unsigned i = 0; i < p->info->num_characters(); i++)
|
|
|
|
{
|
|
|
|
character_info ci;
|
|
|
|
unsigned c;
|
2006-11-04 11:38:24 +01:00
|
|
|
|
|
|
|
// grab the next character according to the orientation
|
|
|
|
ci = orientation > 0 ? p->info->at(i) : p->info->at(p->info->num_characters() - i - 1);
|
|
|
|
c = ci.character;
|
2006-11-02 00:17:05 +01:00
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
double angle_delta = 0;
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
// if the distance remaining in this segment is less than the character width
|
|
|
|
// move to the next segment
|
|
|
|
if (distance <= ci.width)
|
|
|
|
{
|
|
|
|
last_angle = angle;
|
|
|
|
while (distance <= ci.width)
|
|
|
|
{
|
|
|
|
double dx, dy;
|
2006-11-22 23:09:11 +01:00
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
cur_node++;
|
2006-11-22 23:09:11 +01:00
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
if (cur_node >= p->geom->num_points()) {
|
2006-11-22 23:09:11 +01:00
|
|
|
return false;
|
2006-11-04 11:38:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
old_x = new_x;
|
|
|
|
old_y = new_y;
|
2006-11-22 23:09:11 +01:00
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
p->shape_path.vertex(&new_x,&new_y);
|
2006-11-22 23:09:11 +01:00
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
dx = new_x - old_x;
|
|
|
|
dy = new_y - old_y;
|
2006-11-22 23:09:11 +01:00
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
angle = atan2(-dy, dx );
|
|
|
|
distance += sqrt(dx*dx+dy*dy);
|
2006-10-27 19:29:39 +02:00
|
|
|
}
|
2006-11-04 11:38:24 +01:00
|
|
|
// since our rendering angle has changed then check against our
|
|
|
|
// max allowable angle change.
|
|
|
|
angle_delta = last_angle - angle;
|
|
|
|
// normalise between -180 and 180
|
|
|
|
while (angle_delta > M_PI)
|
|
|
|
angle_delta -= M_PI;
|
|
|
|
while (angle_delta < -M_PI)
|
|
|
|
angle_delta += M_PI;
|
2006-11-22 23:09:11 +01:00
|
|
|
if (p->max_char_angle_delta > 0 && fabs(angle_delta) > p->max_char_angle_delta*(M_PI/180))
|
|
|
|
{
|
2006-11-04 11:38:24 +01:00
|
|
|
return false;
|
2006-11-22 23:09:11 +01:00
|
|
|
}
|
2006-10-27 19:29:39 +02:00
|
|
|
}
|
2006-11-22 23:09:11 +01:00
|
|
|
|
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
Envelope<double> e;
|
|
|
|
if (p->has_dimensions)
|
2006-10-17 16:12:53 +02:00
|
|
|
{
|
2006-10-27 19:29:39 +02:00
|
|
|
e.init(x, y, x + p->dimensions.first, y + p->dimensions.second);
|
2006-10-17 16:12:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
double render_angle = angle;
|
|
|
|
|
2006-11-22 23:09:11 +01:00
|
|
|
x = new_x - (distance)*cos(angle);
|
|
|
|
y = new_y + (distance)*sin(angle);
|
|
|
|
//Center the text on the line.
|
|
|
|
x -= (((double)string_height/2.0) - 1.0)*cos(render_angle+M_PI/2);
|
|
|
|
y += (((double)string_height/2.0) - 1.0)*sin(render_angle+M_PI/2);
|
|
|
|
distance -= ci.width;
|
|
|
|
next_char_x = ci.width*cos(render_angle);
|
|
|
|
next_char_y = ci.width*sin(render_angle);
|
2006-10-27 19:29:39 +02:00
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
double render_x = x;
|
|
|
|
double render_y = y;
|
|
|
|
|
|
|
|
if (!p->has_dimensions)
|
|
|
|
{
|
|
|
|
// put four corners of the letter into envelope
|
|
|
|
e.init(render_x, render_y, render_x + ci.width*cos(render_angle), render_y - ci.width*sin(render_angle));
|
|
|
|
e.expand_to_include(render_x - ci.height*sin(render_angle), render_y - ci.height*cos(render_angle));
|
|
|
|
e.expand_to_include(render_x + (ci.width*cos(render_angle) - ci.height*sin(render_angle)), render_y - (ci.width*sin(render_angle) + ci.height*cos(render_angle)));
|
2006-10-17 16:12:53 +02:00
|
|
|
}
|
2006-11-04 11:38:24 +01:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
if (!detector_.has_placement(e))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2006-11-17 15:07:41 +01:00
|
|
|
|
|
|
|
if (p->avoid_edges && !dimensions_.contains(e))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
p->envelopes.push(e);
|
2006-11-04 11:38:24 +01:00
|
|
|
|
|
|
|
if (orientation < 0)
|
|
|
|
{
|
|
|
|
// rotate in place
|
|
|
|
render_x += ci.width*cos(render_angle) - (string_height-2)*sin(render_angle);
|
|
|
|
render_y -= ci.width*sin(render_angle) + (string_height-2)*cos(render_angle);
|
|
|
|
render_angle += M_PI;
|
|
|
|
}
|
|
|
|
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-11-04 11:38:24 +01:00
|
|
|
p->current_placement.path.add_node(c, render_x - p->current_placement.starting_x, -render_y + p->current_placement.starting_y, render_angle);
|
|
|
|
x += next_char_x;
|
|
|
|
y -= next_char_y;
|
2006-10-27 19:29:39 +02:00
|
|
|
}
|
2006-11-02 00:17:05 +01:00
|
|
|
p->placements.push_back(p->current_placement);
|
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
bool placement_finder::build_path_horizontal(placement *p, double target_distance)
|
|
|
|
{
|
2006-11-02 00:17:05 +01:00
|
|
|
double x, y;
|
2006-10-27 19:29:39 +02:00
|
|
|
|
2006-11-02 00:17:05 +01:00
|
|
|
p->current_placement.path.clear();
|
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
std::pair<double, double> string_dimensions = p->info->get_dimensions();
|
|
|
|
double string_width = string_dimensions.first;
|
|
|
|
double string_height = string_dimensions.second;
|
2006-11-02 00:17:05 +01:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
// check if we need to wrap the string
|
|
|
|
double wrap_at = string_width + 1;
|
|
|
|
if (p->wrap_width && string_width > p->wrap_width)
|
|
|
|
{
|
|
|
|
if (p->text_ratio)
|
|
|
|
for (int i = 1; ((wrap_at = string_width/i)/(string_height*i)) > p->text_ratio && (string_width/i) > p->wrap_width; ++i);
|
|
|
|
else
|
|
|
|
wrap_at = p->wrap_width;
|
|
|
|
}
|
2006-11-02 00:17:05 +01:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
// work out where our line breaks need to be
|
|
|
|
std::vector<int> line_breaks;
|
|
|
|
std::vector<double> line_widths;
|
|
|
|
if (wrap_at < string_width && p->info->num_characters() > 0)
|
|
|
|
{
|
|
|
|
int line_count=0;
|
|
|
|
int last_space = 0;
|
|
|
|
string_width = 0;
|
|
|
|
string_height = 0;
|
|
|
|
double line_width = 0;
|
|
|
|
double line_height = 0;
|
|
|
|
double word_width = 0;
|
|
|
|
double word_height = 0;
|
|
|
|
for (unsigned int ii = 0; ii < p->info->num_characters(); ii++)
|
|
|
|
{
|
2006-11-02 00:17:05 +01:00
|
|
|
character_info ci;;
|
2006-10-27 19:29:39 +02:00
|
|
|
ci = p->info->at(ii);
|
2006-11-02 00:17:05 +01:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
unsigned c = ci.character;
|
|
|
|
word_width += ci.width;
|
|
|
|
word_height = word_height > ci.height ? word_height : ci.height;
|
|
|
|
++line_count;
|
2006-11-02 00:17:05 +01:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
if (c == ' ')
|
|
|
|
{
|
|
|
|
last_space = ii;
|
|
|
|
line_width += word_width;
|
|
|
|
line_height = line_height > word_height ? line_height : word_height;
|
|
|
|
word_width = 0;
|
|
|
|
word_height = 0;
|
|
|
|
}
|
|
|
|
if (line_width > 0 && line_width > wrap_at)
|
|
|
|
{
|
|
|
|
string_width = string_width > line_width ? string_width : line_width;
|
|
|
|
string_height += line_height;
|
|
|
|
line_breaks.push_back(last_space);
|
|
|
|
line_widths.push_back(line_width);
|
|
|
|
ii = last_space;
|
|
|
|
line_count = 0;
|
|
|
|
line_width = 0;
|
|
|
|
line_height = 0;
|
|
|
|
word_width = 0;
|
|
|
|
word_height = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
line_width += word_width;
|
|
|
|
string_width = string_width > line_width ? string_width : line_width;
|
|
|
|
line_breaks.push_back(p->info->num_characters() + 1);
|
|
|
|
line_widths.push_back(line_width);
|
|
|
|
}
|
|
|
|
if (line_breaks.size() == 0)
|
|
|
|
{
|
|
|
|
line_breaks.push_back(p->info->num_characters() + 1);
|
|
|
|
line_widths.push_back(string_width);
|
|
|
|
}
|
2006-11-04 11:38:24 +01:00
|
|
|
|
2006-11-02 00:17:05 +01:00
|
|
|
p->info->set_dimensions(string_width, string_height);
|
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
if (p->geom->type() == LineString)
|
|
|
|
{
|
|
|
|
std::pair<double, double> starting_pos = p->get_position_at_distance(target_distance);
|
2006-11-02 00:17:05 +01:00
|
|
|
|
|
|
|
p->current_placement.starting_x = starting_pos.first;
|
|
|
|
p->current_placement.starting_y = starting_pos.second;
|
2006-10-27 19:29:39 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-11-02 00:17:05 +01:00
|
|
|
p->geom->label_position(&p->current_placement.starting_x, &p->current_placement.starting_y);
|
2006-10-27 19:29:39 +02:00
|
|
|
// TODO:
|
|
|
|
// We would only want label position in final 'paper' coords.
|
|
|
|
// Move view and proj transforms to e.g. label_position(x,y,proj_trans,ctrans)?
|
|
|
|
double z=0;
|
2006-11-02 00:17:05 +01:00
|
|
|
p->proj_trans->backward(p->current_placement.starting_x, p->current_placement.starting_y, z);
|
|
|
|
p->ctrans->forward(&p->current_placement.starting_x, &p->current_placement.starting_y);
|
2006-10-27 19:29:39 +02:00
|
|
|
}
|
2006-11-02 00:17:05 +01:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
double line_height = 0;
|
|
|
|
unsigned int line_number = 0;
|
|
|
|
unsigned int index_to_wrap_at = line_breaks[line_number];
|
|
|
|
double line_width = line_widths[line_number];
|
2006-11-02 00:17:05 +01:00
|
|
|
|
|
|
|
x = -line_width/2.0;
|
2006-11-08 21:58:40 +01:00
|
|
|
y = -string_height/2.0 + 1.0;
|
2006-10-27 19:29:39 +02:00
|
|
|
|
|
|
|
for (unsigned i = 0; i < p->info->num_characters(); i++)
|
|
|
|
{
|
2006-11-02 00:17:05 +01:00
|
|
|
character_info ci;;
|
2006-10-27 19:29:39 +02:00
|
|
|
ci = p->info->at(i);
|
2006-11-02 00:17:05 +01:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
unsigned c = ci.character;
|
|
|
|
if (i == index_to_wrap_at)
|
|
|
|
{
|
|
|
|
index_to_wrap_at = line_breaks[++line_number];
|
|
|
|
line_width = line_widths[line_number];
|
|
|
|
y -= line_height;
|
|
|
|
x = -line_width/2.0;
|
|
|
|
line_height = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-11-02 00:17:05 +01:00
|
|
|
p->current_placement.path.add_node(c, x, y, 0.0);
|
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
Envelope<double> e;
|
|
|
|
if (p->has_dimensions)
|
|
|
|
{
|
2006-11-02 00:17:05 +01:00
|
|
|
e.init(p->current_placement.starting_x - (p->dimensions.first/2.0), p->current_placement.starting_y - (p->dimensions.second/2.0), p->current_placement.starting_x + (p->dimensions.first/2.0), p->current_placement.starting_y + (p->dimensions.second/2.0));
|
2006-10-27 19:29:39 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-11-02 00:17:05 +01:00
|
|
|
e.init(p->current_placement.starting_x + x, p->current_placement.starting_y - y, p->current_placement.starting_x + x + ci.width, p->current_placement.starting_y - y - ci.height);
|
2006-10-27 19:29:39 +02:00
|
|
|
}
|
2006-11-02 00:17:05 +01:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
if (!detector_.has_placement(e))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2006-11-17 15:07:41 +01:00
|
|
|
|
|
|
|
if (p->avoid_edges && !dimensions_.contains(e))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2006-11-02 00:17:05 +01:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
p->envelopes.push(e);
|
|
|
|
}
|
|
|
|
x += ci.width;
|
|
|
|
line_height = line_height > ci.height ? line_height : ci.height;
|
|
|
|
}
|
2006-11-02 00:17:05 +01:00
|
|
|
p->placements.push_back(p->current_placement);
|
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
return true;
|
|
|
|
}
|
2006-10-17 16:12:53 +02:00
|
|
|
|
2006-11-02 00:17:05 +01:00
|
|
|
} // namespace
|