mapnik/src/symbolizer.cpp

174 lines
4.4 KiB
C++
Raw Normal View History

/*****************************************************************************
2012-02-02 02:53:35 +01:00
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 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
*
*****************************************************************************/
2009-12-16 21:02:06 +01:00
//mapnik
#include <mapnik/symbolizer.hpp>
#include <mapnik/map.hpp>
#include <mapnik/transform_processor.hpp>
namespace mapnik {
void evaluate_transform(agg::trans_affine& tr, Feature const& feature,
transform_list_ptr const& trans_expr)
{
if (trans_expr)
{
#ifdef MAPNIK_LOG
MAPNIK_LOG_DEBUG(transform) << "transform: evaluate "
<< transform_processor_type::to_string(*trans_expr);
#endif
transform_processor_type::evaluate(tr, feature, *trans_expr);
}
}
// default ctor
symbolizer_base::symbolizer_base()
: comp_op_(src_over),
clip_(true),
smooth_value_(0.0)
{
}
// copy ctor
symbolizer_base::symbolizer_base(symbolizer_base const& other)
: comp_op_(other.comp_op_),
affine_transform_(other.affine_transform_),
clip_(other.clip_),
smooth_value_(other.smooth_value_) {}
void symbolizer_base::set_comp_op(composite_mode_e comp_op)
{
comp_op_ = comp_op;
}
composite_mode_e symbolizer_base::comp_op() const
{
return comp_op_;
}
2012-04-18 10:42:19 +02:00
void symbolizer_base::set_transform(transform_type const& affine_transform)
{
affine_transform_ = affine_transform;
#ifdef MAPNIK_LOG
MAPNIK_LOG_DEBUG(load_map) << "map_parser: set_transform: "
<< (affine_transform_
? transform_processor_type::to_string(*affine_transform_)
: std::string("null"));
#endif
2012-04-18 10:42:19 +02:00
}
transform_type const& symbolizer_base::get_transform() const
{
return affine_transform_;
}
std::string symbolizer_base::get_transform_string() const
{
if (affine_transform_)
return transform_processor_type::to_string(*affine_transform_);
else
return std::string();
2012-04-18 10:42:19 +02:00
}
void symbolizer_base::set_clip(bool clip)
{
clip_ = clip;
}
bool symbolizer_base::clip() const
{
return clip_;
}
void symbolizer_base::set_smooth(double smooth)
{
smooth_value_ = smooth;
}
double symbolizer_base::smooth() const
{
return smooth_value_;
}
///////////////////////////////////////////////////////////////////////////////////////
2009-12-16 21:02:06 +01:00
symbolizer_with_image::symbolizer_with_image(path_expression_ptr file)
2010-06-15 15:43:27 +02:00
: image_filename_( file ),
image_opacity_(1.0f)
2010-06-03 14:35:02 +02:00
{
}
2009-12-16 21:02:06 +01:00
symbolizer_with_image::symbolizer_with_image( symbolizer_with_image const& rhs)
2010-06-03 14:35:02 +02:00
: image_filename_(rhs.image_filename_),
image_opacity_(rhs.image_opacity_),
image_transform_(rhs.image_transform_)
{
}
2012-02-02 02:53:35 +01:00
path_expression_ptr const& symbolizer_with_image::get_filename() const
2009-12-16 21:02:06 +01:00
{
return image_filename_;
}
void symbolizer_with_image::set_filename(path_expression_ptr const& image_filename)
2009-12-16 21:02:06 +01:00
{
image_filename_ = image_filename;
}
2012-02-02 02:53:35 +01:00
2010-06-15 14:27:50 +02:00
void symbolizer_with_image::set_opacity(float opacity)
{
2012-01-20 22:45:47 +01:00
image_opacity_ = opacity;
2010-06-15 14:27:50 +02:00
}
float symbolizer_with_image::get_opacity() const
{
2012-01-20 22:45:47 +01:00
return image_opacity_;
2010-06-15 14:27:50 +02:00
}
void symbolizer_with_image::set_image_transform(transform_type const& tr)
{
image_transform_ = tr;
#ifdef MAPNIK_LOG
MAPNIK_LOG_DEBUG(load_map) << "map_parser: set_image_transform: "
<< (image_transform_
? transform_processor_type::to_string(*image_transform_)
: std::string("null"));
#endif
}
transform_type const& symbolizer_with_image::get_image_transform() const
{
return image_transform_;
}
std::string symbolizer_with_image::get_image_transform_string() const
{
if (image_transform_)
return transform_processor_type::to_string(*image_transform_);
else
return std::string();
}
} // end of namespace mapnik