1 /* === S Y N F I G ========================================================= */
2 /*! \file metaballs.cpp
3 ** \brief Implementation of the "Metaballs" layer
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
10 ** This package is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU General Public License as
12 ** published by the Free Software Foundation; either version 2 of
13 ** the License, or (at your option) any later version.
15 ** This package is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ** General Public License for more details.
21 /* ========================================================================= */
23 /* === H E A D E R S ======================================================= */
32 #include <synfig/string.h>
33 #include <synfig/time.h>
34 #include <synfig/context.h>
35 #include <synfig/paramdesc.h>
36 #include <synfig/renddesc.h>
37 #include <synfig/surface.h>
38 #include <synfig/value.h>
39 #include <synfig/valuenode.h>
42 #include "metaballs.h"
46 /* === U S I N G =========================================================== */
50 using namespace synfig;
52 /* === G L O B A L S ======================================================= */
54 SYNFIG_LAYER_INIT(Metaballs);
55 SYNFIG_LAYER_SET_NAME(Metaballs,"metaballs");
56 SYNFIG_LAYER_SET_LOCAL_NAME(Metaballs,N_("Metaballs"));
57 SYNFIG_LAYER_SET_CATEGORY(Metaballs,N_("Default"));
58 SYNFIG_LAYER_SET_VERSION(Metaballs,"0.1");
59 SYNFIG_LAYER_SET_CVS_ID(Metaballs,"$Id$");
61 /* === P R O C E D U R E S ================================================= */
63 /* === M E T H O D S ======================================================= */
65 /* === E N T R Y P O I N T ================================================= */
67 Metaballs::Metaballs():
68 Layer_Composite(1.0,Color::BLEND_STRAIGHT),
74 Metaballs::set_param(const String & param, const ValueBase &value)
76 if( param=="centers" && value.same_type_as(centers))
82 if( param=="weights" && value.same_type_as(weights))
88 if( param=="radii" && value.same_type_as(radii))
97 return Layer_Composite::set_param(param,value);
101 Metaballs::get_param(const String ¶m)const
113 return Layer_Composite::get_param(param);
117 Metaballs::get_param_vocab()const
119 Layer::Vocab ret(Layer_Composite::get_param_vocab());
121 ret.push_back(ParamDesc("color")
122 .set_local_name(_("Color"))
125 ret.push_back(ParamDesc("centers")
126 .set_local_name(_("Points"))
129 ret.push_back(ParamDesc("radii")
130 .set_local_name(_("Radii"))
133 ret.push_back(ParamDesc("weights")
134 .set_local_name(_("Weights"))
137 ret.push_back(ParamDesc("threshold")
138 .set_local_name(_("Threshold"))
144 static inline Real densityfunc(const synfig::Point &p, const synfig::Point &c, Real R)
146 const Real dx = p[0] - c[0];
147 const Real dy = p[1] - c[1];
149 const Real n = (1 - (dx*dx + dy*dy)/(R*R));
154 f'(d) = -6d * (1 - d^2)^2
156 could use this too...
158 f'(d) = -6d * (1 - d^2)
163 Metaballs::totaldensity(const Point &pos) const
167 //sum up weighted functions
168 for(unsigned int i=0;i<centers.size();i++)
170 density += weights[i] * densityfunc(pos,centers[i], radii[i]);
177 Metaballs::get_color(Context context, const Point &pos)const
179 Real dens = totaldensity(pos);
181 if(dens >= threshold)
184 return context.get_color(pos);
188 Metaballs::accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const
190 // Width and Height of a pixel
191 const Point br(renddesc.get_br()),
192 tl(renddesc.get_tl());
194 const int w = renddesc.get_w(),
195 h = renddesc.get_h();
197 Real pw = renddesc.get_pw();
198 Real ph = renddesc.get_ph();
200 SuperCallback supercb(cb,0,9000,10000);
202 if(!context.accelerated_render(surface,quality,renddesc,&supercb))
204 if(cb)cb->error(strprintf(__FILE__"%d: Accelerated Renderer Failure",__LINE__));
208 Point pos(tl[0],tl[1]);
212 if(!context.accelerated_render(surface,quality,renddesc,&supercb))
214 if(cb)cb->error(strprintf(__FILE__"%d: Accelerated Renderer Failure",__LINE__));
218 for(int y = 0; y < h; y++, pos[1] += ph)
221 for(int x = 0; x < w; x++, pos[0] += pw)
223 dens = totaldensity(pos);
225 if(dens >= threshold)
227 (*surface)[y][x] = Color::blend(color,(*surface)[y][x],get_amount(),get_blend_method());
232 // Mark our progress as finished
233 if(cb && !cb->amount_complete(10000,10000))