/* 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 "ptr.hpp" #include "geom_util.hpp" namespace mapnik { enum { Point = 1, LineString = 2, Polygon = 3, }; template class Container=vertex_vector> class geometry { public: typedef T vertex_type; typedef typename vertex_type::type value_type; typedef Container container_type; private: int srid_; mutable unsigned itr_; protected: container_type cont_; public: geometry (int srid=-1) : srid_(srid), itr_(0), cont_() {} virtual int type() const=0; virtual bool hit_test(value_type x,value_type y) const=0; int srid() const { return srid_; } void move_to(value_type x,value_type y) { cont_.push_back(x,y,SEG_MOVETO); } void line_to(value_type x,value_type y) { cont_.push_back(x,y,SEG_LINETO); } template class path_iterator { typedef vertex vertex_type; const container_type* cont_; unsigned pos_; unsigned cmd_; vertex_type vertex_; private: void advance () { if (pos_ < cont_->size()) { value_type x,y; vertex_.cmd=cont_->get_vertex(pos_,&x,&y); vertex_.x=Transform::apply(x); vertex_.y=Transform::apply(y); } else { vertex_.cmd=SEG_END; vertex_.x=0; vertex_.y=0; } ++pos_; } public: path_iterator() : cont_(0), pos_(0), cmd_(SEG_END), vertex_(0,0,cmd_) {} explicit path_iterator(const container_type& cont) : cont_(&cont), pos_(0), cmd_(SEG_MOVETO), vertex_(0,0,cmd_) { advance(); } path_iterator& operator++() { advance(); return *this; } const vertex_type& operator*() const { return vertex_; } const vertex_type* operator->() const { return &vertex_; } bool operator !=(const path_iterator& itr) { return vertex_.cmd !=itr.vertex_.cmd; } }; template path_iterator begin() const { return path_iterator(cont_); } template path_iterator end() const { return path_iterator(); } void transform(const mapnik::CoordTransform& t) { for (unsigned pos=0;pos class Container=vertex_vector> class point : public geometry { typedef geometry geometry_base; typedef typename geometry::value_type value_type; using geometry::cont_; public: point(int srid) : geometry(srid) {} int type() const { return Point; } bool hit_test(value_type x,value_type y) const { typedef typename geometry_base::template path_iterator path_iterator; path_iterator start = geometry_base::template begin(); path_iterator end = geometry_base::template end(); return point_on_points(x,y,start,end); } }; template class Container=vertex_vector> class polygon : public geometry { typedef geometry geometry_base; typedef typename geometry_base::value_type value_type; public: polygon(int srid) : geometry_base(srid) {} int type() const { return Polygon; } bool hit_test(value_type x,value_type y) const { typedef typename geometry_base::template path_iterator path_iterator; path_iterator start = geometry_base::template begin(); path_iterator end = geometry_base::template end(); return point_inside_path(x,y, start,end); } }; template class Container=vertex_vector> class line_string : public geometry { typedef geometry geometry_base; typedef typename geometry::value_type value_type; public: line_string(int srid) : geometry(srid) {} int type() const { return LineString; } bool hit_test(value_type x,value_type y) const { typedef typename geometry_base::template path_iterator path_iterator; path_iterator start = geometry_base::template begin(); path_iterator end = geometry_base::template end(); return point_on_path(x,y,start,end); } }; typedef point point_impl; typedef line_string line_string_impl; typedef polygon polygon_impl; typedef geometry geometry_type; typedef ref_ptr geometry_ptr; } #endif //GEOMETRY_HPP