2005-06-14 17:06:59 +02:00
|
|
|
/* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
* Copyright (C) 2005 Artem Pavlenko
|
|
|
|
*
|
|
|
|
* Mapnik is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
//$Id: geometry.hpp 39 2005-04-10 20:39:53Z pavlenko $
|
|
|
|
|
|
|
|
#ifndef GEOMETRY_HPP
|
|
|
|
#define GEOMETRY_HPP
|
|
|
|
|
|
|
|
#include "vertex_vector.hpp"
|
|
|
|
#include "vertex_transform.hpp"
|
|
|
|
#include "ctrans.hpp"
|
2005-06-17 14:40:51 +02:00
|
|
|
#include "geom_util.hpp"
|
2005-12-12 14:15:33 +01:00
|
|
|
#include <boost/shared_ptr.hpp>
|
2005-12-23 13:22:09 +01:00
|
|
|
#include <boost/utility.hpp>
|
2005-12-12 14:15:33 +01:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
namespace mapnik
|
|
|
|
{
|
|
|
|
enum {
|
|
|
|
Point = 1,
|
|
|
|
LineString = 2,
|
|
|
|
Polygon = 3,
|
|
|
|
};
|
|
|
|
|
2005-12-23 13:22:09 +01:00
|
|
|
template <typename T>
|
|
|
|
class geometry : private boost::noncopyable
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef T vertex_type;
|
|
|
|
typedef typename vertex_type::type value_type;
|
|
|
|
private:
|
|
|
|
int srid_;
|
|
|
|
public:
|
|
|
|
geometry (int srid=-1)
|
2005-12-23 13:22:09 +01:00
|
|
|
: srid_(srid) {}
|
|
|
|
|
|
|
|
int srid() const
|
|
|
|
{
|
|
|
|
return srid_;
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
virtual int type() const=0;
|
|
|
|
virtual bool hit_test(value_type x,value_type y) const=0;
|
2006-01-26 17:43:10 +01:00
|
|
|
virtual void label_position(double *x, double *y) const=0;
|
2005-12-23 13:22:09 +01:00
|
|
|
virtual void move_to(value_type x,value_type y)=0;
|
|
|
|
virtual void line_to(value_type x,value_type y)=0;
|
|
|
|
virtual void transform(const mapnik::CoordTransform& t)=0;
|
|
|
|
virtual unsigned num_points() const = 0;
|
|
|
|
virtual unsigned vertex(double* x, double* y)=0;
|
|
|
|
virtual void rewind(unsigned )=0;
|
2006-02-05 13:31:24 +01:00
|
|
|
virtual void set_capacity(size_t size)=0;
|
2005-12-23 13:22:09 +01:00
|
|
|
virtual ~geometry() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
class point : public geometry<T>
|
|
|
|
{
|
|
|
|
typedef geometry<T> geometry_base;
|
|
|
|
typedef typename geometry<T>::vertex_type vertex_type;
|
|
|
|
typedef typename geometry<T>::value_type value_type;
|
|
|
|
private:
|
|
|
|
vertex_type pt_;
|
|
|
|
public:
|
|
|
|
point(int srid)
|
|
|
|
: geometry<T>(srid)
|
|
|
|
{}
|
|
|
|
|
|
|
|
int type() const
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2005-12-23 13:22:09 +01:00
|
|
|
return Point;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2006-01-26 17:43:10 +01:00
|
|
|
void label_position(double *x, double *y) const
|
|
|
|
{
|
|
|
|
*x = pt_.x;
|
|
|
|
*y = pt_.y;
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
void move_to(value_type x,value_type y)
|
|
|
|
{
|
2005-12-23 13:22:09 +01:00
|
|
|
pt_.x = x;
|
|
|
|
pt_.y = y;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2005-12-23 13:22:09 +01:00
|
|
|
|
|
|
|
void line_to(value_type ,value_type ) {}
|
|
|
|
|
|
|
|
void transform(const mapnik::CoordTransform& t)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2005-12-23 13:22:09 +01:00
|
|
|
t.forward_x(&pt_.x);
|
|
|
|
t.forward_y(&pt_.y);
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2005-11-24 16:51:29 +01:00
|
|
|
|
2005-12-23 13:22:09 +01:00
|
|
|
unsigned num_points() const
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2005-12-23 13:22:09 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2005-12-23 13:22:09 +01:00
|
|
|
unsigned vertex(double* x, double* y)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2005-12-23 13:22:09 +01:00
|
|
|
*x = pt_.x;
|
|
|
|
*y = pt_.y;
|
|
|
|
return SEG_LINETO;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
2005-12-23 13:22:09 +01:00
|
|
|
void rewind(unsigned ) {}
|
|
|
|
|
|
|
|
bool hit_test(value_type x,value_type y) const
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2005-12-23 13:22:09 +01:00
|
|
|
return false;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2006-02-05 13:31:24 +01:00
|
|
|
void set_capacity(size_t) {}
|
2005-12-23 13:22:09 +01:00
|
|
|
virtual ~point() {}
|
|
|
|
};
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2005-12-23 13:22:09 +01:00
|
|
|
template <typename T, template <typename> class Container=vertex_vector>
|
|
|
|
class polygon : public geometry<T>
|
|
|
|
{
|
|
|
|
typedef geometry<T> geometry_base;
|
|
|
|
typedef typename geometry<T>::vertex_type vertex_type;
|
|
|
|
typedef typename geometry_base::value_type value_type;
|
|
|
|
typedef Container<vertex_type> container_type;
|
|
|
|
private:
|
|
|
|
container_type cont_;
|
|
|
|
mutable unsigned itr_;
|
|
|
|
public:
|
|
|
|
polygon(int srid)
|
|
|
|
: geometry_base(srid),
|
|
|
|
itr_(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
int type() const
|
|
|
|
{
|
|
|
|
return Polygon;
|
|
|
|
}
|
|
|
|
|
2006-01-26 17:43:10 +01:00
|
|
|
void label_position(double *x, double *y) const
|
|
|
|
{
|
|
|
|
unsigned size = cont_.size();
|
|
|
|
if (size < 3)
|
|
|
|
{
|
|
|
|
cont_.get_vertex(0,x,y);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
value_type x0,y0,x1,y1;
|
|
|
|
double ai;
|
|
|
|
double atmp = 0;
|
|
|
|
double xtmp = 0;
|
|
|
|
double ytmp = 0;
|
|
|
|
unsigned i,j;
|
|
|
|
for (i = size-1,j = 0; j < size; i = j, ++j)
|
|
|
|
{
|
|
|
|
cont_.get_vertex(i,&x0,&y0);
|
|
|
|
cont_.get_vertex(j,&x1,&y1);
|
|
|
|
ai = x0 * y1 - x1 * y0;
|
|
|
|
atmp += ai;
|
|
|
|
xtmp += (x1 + x0) * ai;
|
|
|
|
ytmp += (y1 + y0) * ai;
|
|
|
|
}
|
|
|
|
if (atmp != 0)
|
|
|
|
{
|
|
|
|
*x = xtmp/(3*atmp);
|
|
|
|
*y = ytmp /(3*atmp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
*x=x0;
|
|
|
|
*y=y0;
|
|
|
|
}
|
|
|
|
|
2005-12-23 13:22:09 +01:00
|
|
|
void line_to(value_type x,value_type y)
|
|
|
|
{
|
|
|
|
cont_.push_back(x,y,SEG_LINETO);
|
|
|
|
}
|
|
|
|
|
|
|
|
void move_to(value_type x,value_type y)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2005-12-23 13:22:09 +01:00
|
|
|
cont_.push_back(x,y,SEG_MOVETO);
|
|
|
|
}
|
|
|
|
|
|
|
|
void transform(mapnik::CoordTransform const& t)
|
|
|
|
{
|
|
|
|
unsigned size = cont_.size();
|
|
|
|
for (unsigned pos=0; pos < size; ++pos)
|
|
|
|
{
|
|
|
|
cont_.transform_at(pos,t);
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
}
|
2005-12-23 13:22:09 +01:00
|
|
|
|
|
|
|
unsigned num_points() const
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
|
|
|
return cont_.size();
|
|
|
|
}
|
2005-12-23 13:22:09 +01:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
unsigned vertex(double* x, double* y)
|
|
|
|
{
|
|
|
|
return cont_.get_vertex(itr_++,x,y);
|
|
|
|
}
|
|
|
|
|
|
|
|
void rewind(unsigned )
|
|
|
|
{
|
|
|
|
itr_=0;
|
|
|
|
}
|
|
|
|
|
2005-12-23 13:22:09 +01:00
|
|
|
bool hit_test(value_type x,value_type y) const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2006-02-05 13:31:24 +01:00
|
|
|
void set_capacity(size_t size)
|
|
|
|
{
|
|
|
|
cont_.set_capacity(size);
|
|
|
|
}
|
2005-12-23 13:22:09 +01:00
|
|
|
virtual ~polygon() {}
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
2005-12-23 13:22:09 +01:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
template <typename T, template <typename> class Container=vertex_vector>
|
2005-12-23 13:22:09 +01:00
|
|
|
class line_string : public geometry<T>
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2005-12-23 13:22:09 +01:00
|
|
|
typedef geometry<T> geometry_base;
|
|
|
|
typedef typename geometry_base::value_type value_type;
|
|
|
|
typedef typename geometry<T>::vertex_type vertex_type;
|
|
|
|
typedef Container<vertex_type> container_type;
|
|
|
|
private:
|
|
|
|
container_type cont_;
|
|
|
|
mutable unsigned itr_;
|
2005-06-14 17:06:59 +02:00
|
|
|
public:
|
2005-12-23 13:22:09 +01:00
|
|
|
line_string(int srid)
|
|
|
|
: geometry_base(srid),
|
|
|
|
itr_(0)
|
2005-06-14 17:06:59 +02:00
|
|
|
{}
|
2005-12-23 13:22:09 +01:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
int type() const
|
|
|
|
{
|
2005-12-23 13:22:09 +01:00
|
|
|
return LineString;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2006-01-26 17:43:10 +01:00
|
|
|
void label_position(double *x, double *y) const
|
|
|
|
{
|
2006-01-27 00:52:22 +01:00
|
|
|
// calculate mid point on line string
|
|
|
|
unsigned size = cont_.size();
|
|
|
|
if (size == 1)
|
|
|
|
{
|
|
|
|
cont_.get_vertex(0,x,y);
|
|
|
|
}
|
|
|
|
else if (size == 2)
|
|
|
|
{
|
|
|
|
double x0;
|
|
|
|
double y0;
|
|
|
|
double x1;
|
|
|
|
double y1;
|
|
|
|
cont_.get_vertex(0,&x0,&y0);
|
|
|
|
cont_.get_vertex(1,&x1,&y1);
|
|
|
|
*x = 0.5 * (x1 + x0);
|
|
|
|
*y = 0.5 * (y1 + y0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
double x0;
|
|
|
|
double y0;
|
|
|
|
double x1;
|
|
|
|
double y1;
|
|
|
|
double len=0.0;
|
|
|
|
for (unsigned pos = 1; pos < size; ++pos)
|
|
|
|
{
|
|
|
|
cont_.get_vertex(pos-1,&x0,&y0);
|
|
|
|
cont_.get_vertex(pos,&x1,&y1);
|
|
|
|
double dx = x1 - x0;
|
|
|
|
double dy = y1 - y0;
|
|
|
|
len += sqrt(dx * dx + dy * dy);
|
|
|
|
}
|
|
|
|
double midlen = 0.5 * len;
|
|
|
|
double dist = 0.0;
|
|
|
|
for (unsigned pos = 1; pos < size;++pos)
|
|
|
|
{
|
|
|
|
cont_.get_vertex(pos-1,&x0,&y0);
|
|
|
|
cont_.get_vertex(pos,&x1,&y1);
|
|
|
|
double dx = x1 - x0;
|
|
|
|
double dy = y1 - y0;
|
|
|
|
double seg_len = sqrt(dx * dx + dy * dy);
|
|
|
|
if (( dist + seg_len) >= midlen)
|
|
|
|
{
|
|
|
|
double r = (midlen - dist)/seg_len;
|
|
|
|
*x = x0 + (x1 - x0) * r;
|
|
|
|
*y = y0 + (y1 - y0) * r;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
dist += seg_len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-26 17:43:10 +01:00
|
|
|
}
|
2005-12-23 13:22:09 +01:00
|
|
|
void line_to(value_type x,value_type y)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2005-12-23 13:22:09 +01:00
|
|
|
cont_.push_back(x,y,SEG_LINETO);
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
2005-12-23 13:22:09 +01:00
|
|
|
void move_to(value_type x,value_type y)
|
|
|
|
{
|
|
|
|
cont_.push_back(x,y,SEG_MOVETO);
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2005-12-23 13:22:09 +01:00
|
|
|
void transform(mapnik::CoordTransform const& t)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2005-12-23 13:22:09 +01:00
|
|
|
unsigned size = cont_.size();
|
|
|
|
for (unsigned pos=0; pos < size; ++pos)
|
|
|
|
{
|
|
|
|
cont_.transform_at(pos,t);
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
2005-12-23 13:22:09 +01:00
|
|
|
unsigned num_points() const
|
|
|
|
{
|
|
|
|
return cont_.size();
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2005-12-23 13:22:09 +01:00
|
|
|
unsigned vertex(double* x, double* y)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2005-12-23 13:22:09 +01:00
|
|
|
return cont_.get_vertex(itr_++,x,y);
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
2005-12-23 13:22:09 +01:00
|
|
|
void rewind(unsigned )
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2005-12-23 13:22:09 +01:00
|
|
|
itr_=0;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2005-12-23 13:22:09 +01:00
|
|
|
|
|
|
|
bool hit_test(value_type x,value_type y) const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2006-02-05 13:31:24 +01:00
|
|
|
|
|
|
|
void set_capacity(size_t size)
|
|
|
|
{
|
|
|
|
cont_.set_capacity(size);
|
|
|
|
}
|
2005-12-23 13:22:09 +01:00
|
|
|
virtual ~line_string() {}
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef point<vertex2d> point_impl;
|
2006-02-05 13:31:24 +01:00
|
|
|
typedef line_string<vertex2d,vertex_vector2> line_string_impl;
|
|
|
|
typedef polygon<vertex2d,vertex_vector2> polygon_impl;
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
typedef geometry<vertex2d> geometry_type;
|
2005-12-12 14:15:33 +01:00
|
|
|
typedef boost::shared_ptr<geometry_type> geometry_ptr;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif //GEOMETRY_HPP
|