mapnik/include/geometry.hpp

381 lines
7.8 KiB
C++
Raw Normal View History

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"
#include "geom_util.hpp"
#include <boost/shared_ptr.hpp>
#include <boost/utility.hpp>
2005-06-14 17:06:59 +02:00
namespace mapnik
{
enum {
Point = 1,
LineString = 2,
Polygon = 3
2005-06-14 17:06:59 +02: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)
: srid_(srid) {}
int srid() const
{
return srid_;
}
2005-06-14 17:06:59 +02:00
Envelope<double> envelope()
{
Envelope<double> result;
double x,y;
for (unsigned i=0;i<num_points();++i)
{
vertex(&x,&y);
if (i==0)
{
result.init(x,y,x,y);
}
else
{
result.expand_to_include(x,y);
}
}
return result;
}
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;
virtual void label_position(double *x, double *y) const=0;
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;
virtual void set_capacity(size_t size)=0;
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
{
return Point;
2005-06-14 17:06:59 +02: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)
{
pt_.x = x;
pt_.y = y;
2005-06-14 17:06:59 +02:00
}
void line_to(value_type ,value_type ) {}
void transform(const mapnik::CoordTransform& t)
2005-06-14 17:06:59 +02: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
unsigned num_points() const
2005-06-14 17:06:59 +02:00
{
return 1;
}
2005-06-14 17:06:59 +02:00
unsigned vertex(double* x, double* y)
2005-06-14 17:06:59 +02:00
{
*x = pt_.x;
*y = pt_.y;
return SEG_LINETO;
2005-06-14 17:06:59 +02:00
}
void rewind(unsigned ) {}
bool hit_test(value_type x,value_type y) const
2005-06-14 17:06:59 +02:00
{
return false;
2005-06-14 17:06:59 +02:00
}
void set_capacity(size_t) {}
virtual ~point() {}
};
2005-06-14 17:06:59 +02: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;
}
void label_position(double *x, double *y) const
{
unsigned size = cont_.size();
if (size < 3)
{
cont_.get_vertex(0,x,y);
return;
}
double ai;
double atmp = 0;
double xtmp = 0;
double ytmp = 0;
double x0 =0;
double y0 =0;
double x1 =0;
double y1 =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;
}
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
{
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
}
}
unsigned num_points() const
2005-06-14 17:06:59 +02:00
{
return cont_.size();
}
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;
}
bool hit_test(value_type x,value_type y) const
{
return false;
}
void set_capacity(size_t size)
{
cont_.set_capacity(size);
}
virtual ~polygon() {}
2005-06-14 17:06:59 +02:00
};
2005-06-14 17:06:59 +02:00
template <typename T, template <typename> class Container=vertex_vector>
class line_string : public geometry<T>
2005-06-14 17:06:59 +02: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:
line_string(int srid)
: geometry_base(srid),
itr_(0)
2005-06-14 17:06:59 +02:00
{}
2005-06-14 17:06:59 +02:00
int type() const
{
return LineString;
2005-06-14 17:06:59 +02:00
}
void label_position(double *x, double *y) const
{
2006-01-27 00:52:22 +01:00
// calculate mid point on line string
double x0=0;
double y0=0;
double x1=0;
double y1=0;
2006-01-27 00:52:22 +01:00
unsigned size = cont_.size();
if (size == 1)
{
cont_.get_vertex(0,x,y);
}
else if (size == 2)
{
2006-01-27 00:52:22 +01:00
cont_.get_vertex(0,&x0,&y0);
cont_.get_vertex(1,&x1,&y1);
*x = 0.5 * (x1 + x0);
*y = 0.5 * (y1 + y0);
}
else
{
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;
}
}
}
void line_to(value_type x,value_type y)
2005-06-14 17:06:59 +02:00
{
cont_.push_back(x,y,SEG_LINETO);
2005-06-14 17:06:59 +02: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
void transform(mapnik::CoordTransform const& t)
2005-06-14 17:06:59 +02: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
}
unsigned num_points() const
{
return cont_.size();
}
2005-06-14 17:06:59 +02:00
unsigned vertex(double* x, double* y)
2005-06-14 17:06:59 +02:00
{
return cont_.get_vertex(itr_++,x,y);
2005-06-14 17:06:59 +02:00
}
void rewind(unsigned )
2005-06-14 17:06:59 +02:00
{
itr_=0;
2005-06-14 17:06:59 +02:00
}
bool hit_test(value_type x,value_type y) const
{
return false;
}
void set_capacity(size_t size)
{
cont_.set_capacity(size);
}
virtual ~line_string() {}
2005-06-14 17:06:59 +02:00
};
typedef point<vertex2d> point_impl;
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;
typedef boost::shared_ptr<geometry_type> geometry_ptr;
2005-06-14 17:06:59 +02:00
}
#endif //GEOMETRY_HPP