X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Flyr_std%2Fclamp.cpp;fp=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Flyr_std%2Fclamp.cpp;h=0000000000000000000000000000000000000000;hb=a095981e18cc37a8ecc7cd237cc22b9c10329264;hp=14b4c41b7a36a35c4d760864488a2397414b7323;hpb=9459638ad6797b8139f1e9f0715c96076dbf0890;p=synfig.git diff --git a/synfig-core/trunk/src/modules/lyr_std/clamp.cpp b/synfig-core/trunk/src/modules/lyr_std/clamp.cpp deleted file mode 100644 index 14b4c41..0000000 --- a/synfig-core/trunk/src/modules/lyr_std/clamp.cpp +++ /dev/null @@ -1,207 +0,0 @@ -/* === 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 -** -** 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) -{ -} - -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")) - ); - - ret.push_back(ParamDesc("ceiling") - .set_local_name(_("Ceiling")) - ); - - ret.push_back(ParamDesc("floor") - .set_local_name(_("Floor")) - ); - - 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(); -}