/* === S Y N F I G ========================================================= */ /*! \file clamp.cpp ** \brief Implementation of the "Clamp" layer ** ** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley ** Copyright (c) 2011 Carlos López ** ** This package 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 (at your option) any later version. ** ** This package 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. ** \endlegal */ /* ========================================================================= */ /* === H E A D E R S ======================================================= */ #ifdef USING_PCH # include "pch.h" #else #ifdef HAVE_CONFIG_H # include #endif #include "clamp.h" #include #include #include #include #include #include #include #include #endif /* === U S I N G =========================================================== */ using namespace etl; using namespace std; using namespace synfig; /* === G L O B A L S ======================================================= */ SYNFIG_LAYER_INIT(Layer_Clamp); SYNFIG_LAYER_SET_NAME(Layer_Clamp,"clamp"); SYNFIG_LAYER_SET_LOCAL_NAME(Layer_Clamp,N_("Clamp")); SYNFIG_LAYER_SET_CATEGORY(Layer_Clamp,N_("Filters")); SYNFIG_LAYER_SET_VERSION(Layer_Clamp,"0.2"); SYNFIG_LAYER_SET_CVS_ID(Layer_Clamp,"$Id$"); /* === P R O C E D U R E S ================================================= */ /* === M E T H O D S ======================================================= */ /* === E N T R Y P O I N T ================================================= */ Layer_Clamp::Layer_Clamp(): invert_negative(false), clamp_ceiling(true), ceiling(1.0f), floor(0.0f) { Layer::Vocab voc(get_param_vocab()); Layer::fill_static(voc); } inline Color Layer_Clamp::clamp_color(const Color &in)const { Color ret(in); if(ret.get_a()==0) return Color::alpha(); if(invert_negative) { if(ret.get_a()ceiling) ret.set_r(ceiling); if(ret.get_g()>ceiling) ret.set_g(ceiling); if(ret.get_b()>ceiling) ret.set_b(ceiling); if(ret.get_a()>ceiling) ret.set_a(ceiling); } return ret; } bool Layer_Clamp::set_param(const String & param, const ValueBase &value) { IMPORT(invert_negative); IMPORT(clamp_ceiling); IMPORT(ceiling); IMPORT(floor); return false; } ValueBase Layer_Clamp::get_param(const String ¶m)const { EXPORT(invert_negative); EXPORT(clamp_ceiling); EXPORT(ceiling); EXPORT(floor); EXPORT_NAME(); EXPORT_VERSION(); return ValueBase(); } Layer::Vocab Layer_Clamp::get_param_vocab()const { Layer::Vocab ret; ret.push_back(ParamDesc("invert_negative") .set_local_name(_("Invert Negative")) ); ret.push_back(ParamDesc("clamp_ceiling") .set_local_name(_("Clamp Ceiling")) .set_description(_("When checked the Ceiling value is used")) ); ret.push_back(ParamDesc("ceiling") .set_local_name(_("Ceiling")) .set_description(_("Upper boundary of the clamping")) ); ret.push_back(ParamDesc("floor") .set_local_name(_("Floor")) .set_description(_("Lower boundary of the clamping")) ); return ret; } Color Layer_Clamp::get_color(Context context, const Point &pos)const { return clamp_color(context.get_color(pos)); } bool Layer_Clamp::accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const { SuperCallback supercb(cb,0,9500,10000); if(!context.accelerated_render(surface,quality,renddesc,&supercb)) return false; int x,y; Surface::pen pen(surface->begin()); for(y=0;yamount_complete(10000,10000)) return false; return true; } Rect Layer_Clamp::get_full_bounding_rect(Context context)const { return context.get_full_bounding_rect(); }