Add parameter static option for rest of layers.
[synfig.git] / synfig-core / src / modules / mod_gradient / radialgradient.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file mod_gradient/radialgradient.cpp
3 **      \brief Implementation of the "Radial Gradient" layer
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2007 Chris Moore
10 **
11 **      This package is free software; you can redistribute it and/or
12 **      modify it under the terms of the GNU General Public License as
13 **      published by the Free Software Foundation; either version 2 of
14 **      the License, or (at your option) any later version.
15 **
16 **      This package is distributed in the hope that it will be useful,
17 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
18 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 **      General Public License for more details.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === H E A D E R S ======================================================= */
25
26 #ifdef USING_PCH
27 #       include "pch.h"
28 #else
29 #ifdef HAVE_CONFIG_H
30 #       include <config.h>
31 #endif
32
33 #include <synfig/string.h>
34 #include <synfig/time.h>
35 #include <synfig/context.h>
36 #include <synfig/paramdesc.h>
37 #include <synfig/renddesc.h>
38 #include <synfig/surface.h>
39 #include <synfig/value.h>
40 #include <synfig/valuenode.h>
41
42 #include "radialgradient.h"
43
44 #endif
45
46 /* === U S I N G =========================================================== */
47
48 using namespace etl;
49 using namespace std;
50 using namespace synfig;
51
52 /* === G L O B A L S ======================================================= */
53
54 SYNFIG_LAYER_INIT(RadialGradient);
55 SYNFIG_LAYER_SET_NAME(RadialGradient,"radial_gradient");
56 SYNFIG_LAYER_SET_LOCAL_NAME(RadialGradient,N_("Radial Gradient"));
57 SYNFIG_LAYER_SET_CATEGORY(RadialGradient,N_("Gradients"));
58 SYNFIG_LAYER_SET_VERSION(RadialGradient,"0.1");
59 SYNFIG_LAYER_SET_CVS_ID(RadialGradient,"$Id$");
60
61 /* === P R O C E D U R E S ================================================= */
62
63 /* === M E T H O D S ======================================================= */
64
65 /* === E N T R Y P O I N T ================================================= */
66
67 RadialGradient::RadialGradient():
68         Layer_Composite(1.0,Color::BLEND_COMPOSITE),
69         gradient(Color::black(),Color::white()),
70         center(0,0),
71         radius(0.5),
72         loop(false),
73         zigzag(false)
74 {
75         Layer::Vocab voc(get_param_vocab());
76         Layer::fill_static(voc);
77 }
78
79 bool
80 RadialGradient::set_param(const String & param, const ValueBase &value)
81 {
82         IMPORT(gradient);
83         IMPORT(center);
84         IMPORT(radius);
85         IMPORT(loop);
86         IMPORT(zigzag);
87
88         return Layer_Composite::set_param(param,value);
89 }
90
91 ValueBase
92 RadialGradient::get_param(const String &param)const
93 {
94         EXPORT(gradient);
95         EXPORT(center);
96         EXPORT(radius);
97         EXPORT(loop);
98         EXPORT(zigzag);
99
100         EXPORT_NAME();
101         EXPORT_VERSION();
102
103         return Layer_Composite::get_param(param);
104 }
105
106 Layer::Vocab
107 RadialGradient::get_param_vocab()const
108 {
109         Layer::Vocab ret(Layer_Composite::get_param_vocab());
110
111         ret.push_back(ParamDesc("gradient")
112                 .set_local_name(_("Gradient"))
113         );
114
115         ret.push_back(ParamDesc("center")
116                 .set_local_name(_("Center"))
117         );
118
119         ret.push_back(ParamDesc("radius")
120                 .set_local_name(_("Radius"))
121                 .set_description(_("This is the radius of the circle"))
122                 .set_is_distance()
123                 .set_origin("center")
124         );
125
126         ret.push_back(ParamDesc("loop")
127                 .set_local_name(_("Loop"))
128         );
129
130         ret.push_back(ParamDesc("zigzag")
131                 .set_local_name(_("ZigZag"))
132         );
133
134         return ret;
135 }
136
137 inline Color
138 RadialGradient::color_func(const Point &point, float supersample)const
139 {
140         Real dist((point-center).mag()/radius);
141
142         if(zigzag)
143         {
144                 dist*=2.0;
145                 supersample*=2.0;
146                 if(dist>1)dist=2.0-dist;
147         }
148
149         if(loop)
150         {
151                 dist-=floor(dist);
152
153                 if(dist+supersample*0.5>1.0)
154                 {
155                         float  left(supersample*0.5-(dist-1.0));
156                         float right(supersample*0.5+(dist-1.0));
157                         Color pool(gradient(1.0-(left*0.5),left).premult_alpha()*left/supersample);
158                         if (zigzag) pool+=gradient(1.0-right*0.5,right).premult_alpha()*right/supersample;
159                         else            pool+=gradient(right*0.5,right).premult_alpha()*right/supersample;
160                         return pool.demult_alpha();
161                 }
162                 if(dist-supersample*0.5<0.0)
163                 {
164                         float  left(supersample*0.5-dist);
165                         float right(supersample*0.5+dist);
166                         Color pool(gradient(right*0.5,right).premult_alpha()*right/supersample);
167                         if (zigzag) pool+=gradient(left*0.5,left).premult_alpha()*left/supersample;
168                         else            pool+=gradient(1.0-left*0.5,left).premult_alpha()*left/supersample;
169                         return pool.demult_alpha();
170                 }
171         }
172
173         return gradient(dist,supersample);
174 }
175
176
177 float
178 RadialGradient::calc_supersample(const synfig::Point &/*x*/, float pw,float /*ph*/)const
179 {
180 //      return sqrt(pw*pw+ph*ph)/radius;
181         return 1.2*pw/radius;
182 }
183
184 synfig::Layer::Handle
185 RadialGradient::hit_check(synfig::Context context, const synfig::Point &point)const
186 {
187         if(get_blend_method()==Color::BLEND_STRAIGHT && get_amount()>=0.5)
188                 return const_cast<RadialGradient*>(this);
189         if(get_amount()==0.0)
190                 return context.hit_check(point);
191         if((get_blend_method()==Color::BLEND_STRAIGHT || get_blend_method()==Color::BLEND_COMPOSITE) && color_func(point).get_a()>0.5)
192                 return const_cast<RadialGradient*>(this);
193         return context.hit_check(point);
194 }
195
196 Color
197 RadialGradient::get_color(Context context, const Point &pos)const
198 {
199         const Color color(color_func(pos));
200
201         if(get_amount()==1.0 && get_blend_method()==Color::BLEND_STRAIGHT)
202                 return color;
203         else
204                 return Color::blend(color,context.get_color(pos),get_amount(),get_blend_method());
205 }
206
207 bool
208 RadialGradient::accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const
209 {
210         SuperCallback supercb(cb,0,9500,10000);
211
212         if(get_amount()==1.0 && get_blend_method()==Color::BLEND_STRAIGHT)
213         {
214                 surface->set_wh(renddesc.get_w(),renddesc.get_h());
215         }
216         else
217         {
218                 if(!context.accelerated_render(surface,quality,renddesc,&supercb))
219                         return false;
220                 if(get_amount()==0)
221                         return true;
222         }
223
224
225         int x,y;
226
227         Surface::pen pen(surface->begin());
228         const Real pw(renddesc.get_pw()),ph(renddesc.get_ph());
229         Point pos;
230         Point tl(renddesc.get_tl());
231         const int w(surface->get_w());
232         const int h(surface->get_h());
233
234         if(get_amount()==1.0 && get_blend_method()==Color::BLEND_STRAIGHT)
235         {
236                 for(y=0,pos[1]=tl[1];y<h;y++,pen.inc_y(),pen.dec_x(x),pos[1]+=ph)
237                         for(x=0,pos[0]=tl[0];x<w;x++,pen.inc_x(),pos[0]+=pw)
238                                 pen.put_value(color_func(pos,calc_supersample(pos,pw,ph)));
239         }
240         else
241         {
242                 for(y=0,pos[1]=tl[1];y<h;y++,pen.inc_y(),pen.dec_x(x),pos[1]+=ph)
243                         for(x=0,pos[0]=tl[0];x<w;x++,pen.inc_x(),pos[0]+=pw)
244                                 pen.put_value(Color::blend(color_func(pos,calc_supersample(pos,pw,ph)),pen.get_value(),get_amount(),get_blend_method()));
245         }
246
247         // Mark our progress as finished
248         if(cb && !cb->amount_complete(10000,10000))
249                 return false;
250
251         return true;
252 }