Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / 0.61.09 / src / modules / mod_particle / plant.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file plant.cpp
3 **      \brief Implementation of the "Plant" layer
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2007, 2008 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/angle.h>
34 #include "plant.h"
35 #include <synfig/string.h>
36 #include <synfig/time.h>
37 #include <synfig/context.h>
38 #include <synfig/paramdesc.h>
39 #include <synfig/renddesc.h>
40 #include <synfig/surface.h>
41 #include <synfig/value.h>
42 #include <synfig/valuenode.h>
43
44 #include <ETL/calculus>
45 #include <ETL/bezier>
46 #include <ETL/hermite>
47 #include <vector>
48
49 #include <synfig/valuenode_bline.h>
50
51 #endif
52
53 using namespace etl;
54
55 /* === M A C R O S ========================================================= */
56
57 #define SAMPLES         300
58 #define ROUND_END_FACTOR        (4)
59 #define CUSP_THRESHOLD          (0.15)
60 #define NO_LOOP_COOKIE          synfig::Vector(84951305,7836658)
61 #define EPSILON                         (0.000000001)
62 #define CUSP_TANGENT_ADJUST     (0.025)
63
64 /* === G L O B A L S ======================================================= */
65
66 SYNFIG_LAYER_INIT(Plant);
67 SYNFIG_LAYER_SET_NAME(Plant,"plant");
68 SYNFIG_LAYER_SET_LOCAL_NAME(Plant,N_("Plant"));
69 SYNFIG_LAYER_SET_CATEGORY(Plant,N_("Other"));
70 SYNFIG_LAYER_SET_VERSION(Plant,"0.2");
71 SYNFIG_LAYER_SET_CVS_ID(Plant,"$Id$");
72
73 /* === P R O C E D U R E S ================================================= */
74
75 /* === M E T H O D S ======================================================= */
76
77
78 Plant::Plant():
79         origin(0,0),
80         split_angle(Angle::deg(10)),
81         gravity(0,-0.1),
82         velocity(0.3),
83         perp_velocity(0.0),
84         step(0.01),
85         sprouts(10),
86         version(version__),
87         use_width(true)
88 {
89         bounding_rect=Rect::zero();
90         random_factor=0.2;
91         random.set_seed(time(NULL));
92
93         bline.push_back(BLinePoint());
94         bline.push_back(BLinePoint());
95         bline.push_back(BLinePoint());
96         bline[0].set_vertex(Point(0,1));
97         bline[1].set_vertex(Point(0,-1));
98         bline[2].set_vertex(Point(1,0));
99         bline[0].set_tangent(bline[1].get_vertex()-bline[2].get_vertex()*0.5f);
100         bline[1].set_tangent(bline[2].get_vertex()-bline[0].get_vertex()*0.5f);
101         bline[2].set_tangent(bline[0].get_vertex()-bline[1].get_vertex()*0.5f);
102         bline[0].set_width(1.0f);
103         bline[1].set_width(1.0f);
104         bline[2].set_width(1.0f);
105         bline_loop=true;
106         mass=(0.5);
107         splits=5;
108         drag=0.1;
109         size=0.015;
110         needs_sync_=true;
111         sync();
112         size_as_alpha=false;
113         reverse=true;
114 }
115
116 void
117 Plant::branch(int n,int depth,float t, float stunt_growth, synfig::Point position,synfig::Vector vel)const
118 {
119         float next_split((1.0-t)/(splits-depth)+t/*+random_factor*random(40+depth,t*splits,0,0)/splits*/);
120         for(;t<next_split;t+=step)
121         {
122                 vel[0]+=gravity[0]*step;
123                 vel[1]+=gravity[1]*step;
124                 vel*=(1.0-(drag)*step);
125                 position[0]+=vel[0]*step;
126                 position[1]+=vel[1]*step;
127
128                 particle_list.push_back(Particle(position, gradient(t)));
129                 if (particle_list.size() % 1000000 == 0)
130                         synfig::info("constructed %d million particles...", particle_list.size()/1000000);
131
132                 bounding_rect.expand(position);
133         }
134
135         if(t>=1.0-stunt_growth)return;
136
137         synfig::Real sin_v=synfig::Angle::cos(split_angle).get();
138         synfig::Real cos_v=synfig::Angle::sin(split_angle).get();
139
140         synfig::Vector velocity1(vel[0]*sin_v - vel[1]*cos_v + random_factor*random(Random::SMOOTH_COSINE, 30+n+depth, t*splits, 0.0f, 0.0f),
141                                                          vel[0]*cos_v + vel[1]*sin_v + random_factor*random(Random::SMOOTH_COSINE, 32+n+depth, t*splits, 0.0f, 0.0f));
142         synfig::Vector velocity2(vel[0]*sin_v + vel[1]*cos_v + random_factor*random(Random::SMOOTH_COSINE, 31+n+depth, t*splits, 0.0f, 0.0f),
143                                                         -vel[0]*cos_v + vel[1]*sin_v + random_factor*random(Random::SMOOTH_COSINE, 33+n+depth, t*splits, 0.0f, 0.0f));
144
145         Plant::branch(n,depth+1,t,stunt_growth,position,velocity1);
146         Plant::branch(n,depth+1,t,stunt_growth,position,velocity2);
147 }
148
149 void
150 Plant::calc_bounding_rect()const
151 {
152         std::vector<synfig::BLinePoint>::const_iterator iter,next;
153
154         bounding_rect=Rect::zero();
155
156         // Bline must have at least 2 points in it
157         if(bline.size()<2)
158                 return;
159
160         next=bline.begin();
161
162         if(bline_loop)
163                 iter=--bline.end();
164         else
165                 iter=next++;
166
167         for(;next!=bline.end();iter=next++)
168         {
169                 bounding_rect.expand(iter->get_vertex());
170                 bounding_rect.expand(next->get_vertex());
171                 bounding_rect.expand(iter->get_vertex()+iter->get_tangent2()*0.3333333333333);
172                 bounding_rect.expand(next->get_vertex()-next->get_tangent1()*0.3333333333333);
173                 bounding_rect.expand(next->get_vertex()+next->get_tangent2()*velocity);
174         }
175         bounding_rect.expand_x(gravity[0]);
176         bounding_rect.expand_y(gravity[1]);
177         bounding_rect.expand_x(size);
178         bounding_rect.expand_y(size);
179 }
180
181 void
182 Plant::sync()const
183 {
184         Mutex::Lock lock(mutex);
185         if (!needs_sync_) return;
186         time_t start_time; time(&start_time);
187         particle_list.clear();
188
189         bounding_rect=Rect::zero();
190
191         // Bline must have at least 2 points in it
192         if(bline.size()<2)
193         {
194                 needs_sync_=false;
195                 return;
196         }
197
198         std::vector<synfig::BLinePoint>::const_iterator iter,next;
199
200         etl::hermite<Vector> curve;
201
202         Real step(abs(this->step));
203
204         int seg(0);
205
206         next=bline.begin();
207
208         if(bline_loop)  iter=--bline.end(); // iter is the last  bline in the list; next is the first  bline in the list
209         else                    iter=next++;            // iter is the first bline in the list; next is the second bline in the list
210
211         // loop through the bline; seg counts the blines as we do so; stop before iter is the last bline in the list
212         for(;next!=bline.end();iter=next++,seg++)
213         {
214                 float iterw=iter->get_width();  // the width value of the iter vertex
215                 float nextw=next->get_width();  // the width value of the next vertex
216                 float width;                                    // the width at an intermediate position
217                 curve.p1()=iter->get_vertex();
218                 curve.t1()=iter->get_tangent2();
219                 curve.p2()=next->get_vertex();
220                 curve.t2()=next->get_tangent1();
221                 curve.sync();
222                 etl::derivative<etl::hermite<Vector> > deriv(curve);
223
224                 Real f;
225
226                 int i=0, branch_count = 0, steps = round_to_int(1.0/step);
227                 if (steps < 1) steps = 1;
228                 for(f=0.0;f<1.0;f+=step,i++)
229                 {
230                         Point point(curve(f));
231
232                         particle_list.push_back(Particle(point, gradient(0)));
233                         if (particle_list.size() % 1000000 == 0)
234                                 synfig::info("constructed %d million particles...", particle_list.size()/1000000);
235
236                         bounding_rect.expand(point);
237
238                         Real stunt_growth(random_factor * (random(Random::SMOOTH_COSINE,i,f+seg,0.0f,0.0f)/2.0+0.5));
239                         stunt_growth*=stunt_growth;
240
241                         if((((i+1)*sprouts + steps/2) / steps) > branch_count) {
242                                 Vector branch_velocity(deriv(f).norm()*velocity + deriv(f).perp().norm()*perp_velocity);
243
244                                 if (isnan(branch_velocity[0]) || isnan(branch_velocity[1]))
245                                         continue;
246
247                                 branch_velocity[0] += random_factor * random(Random::SMOOTH_COSINE, 1, f*splits, 0.0f, 0.0f);
248                                 branch_velocity[1] += random_factor * random(Random::SMOOTH_COSINE, 2, f*splits, 0.0f, 0.0f);
249
250                                 if (use_width)
251                                 {
252                                         width = iterw+(nextw-iterw)*f; // calculate the width based on the current position
253
254                                         branch_velocity[0] *= width; // scale the velocity accordingly to the current width
255                                         branch_velocity[1] *= width;
256                                 }
257
258                                 branch_count++;
259                                 branch(i, 0, 0,          // time
260                                            stunt_growth, // stunt growth
261                                            point, branch_velocity);
262                         }
263                 }
264         }
265
266         time_t end_time; time(&end_time);
267         if (end_time-start_time > 4)
268                 synfig::info("Plant::sync() constructed %d particles in %d seconds\n",
269                                          particle_list.size(), int(end_time-start_time));
270         needs_sync_=false;
271 }
272
273 bool
274 Plant::set_param(const String & param, const ValueBase &value)
275 {
276         if(param=="bline" && value.get_type()==ValueBase::TYPE_LIST)
277         {
278                 bline=value;
279                 bline_loop=value.get_loop();
280                 needs_sync_=true;
281
282                 return true;
283         }
284         if(param=="seed" && value.same_type_as(int()))
285         {
286                 random.set_seed(value.get(int()));
287                 needs_sync_=true;
288                 return true;
289         }
290         IMPORT(origin);
291         IMPORT_PLUS(split_angle,needs_sync_=true);
292         IMPORT_PLUS(gravity,needs_sync_=true);
293         IMPORT_PLUS(gradient,needs_sync_=true);
294         IMPORT_PLUS(velocity,needs_sync_=true);
295         IMPORT_PLUS(perp_velocity,needs_sync_=true);
296         IMPORT_PLUS(step,{
297                         needs_sync_ = true;
298                         if (step <= 0)
299                                 step=0.01; // user is probably clueless - give a good default
300                         else if (step < 0.00001)
301                                 step=0.00001; // 100K should be enough for anyone
302                         else if (step > 1)
303                                 step=1;
304                 });
305         IMPORT_PLUS(splits,{
306                         needs_sync_=true;
307                         if (splits < 1)
308                                 splits = 1;
309                 });
310         IMPORT_PLUS(sprouts,needs_sync_=true);
311         IMPORT_PLUS(random_factor,needs_sync_=true);
312         IMPORT_PLUS(drag,needs_sync_=true);
313         IMPORT(size);
314         IMPORT(size_as_alpha);
315         IMPORT(reverse);
316         IMPORT(use_width);
317
318         IMPORT_AS(origin,"offset");
319
320         return Layer_Composite::set_param(param,value);
321 }
322 /*
323 void
324 Plant::set_time(Context context, Time time)const
325 {
326         if(needs_sync==true)
327         {
328                 sync();
329                 needs_sync_=false;
330         }
331         //const_cast<Plant*>(this)->sync();
332         context.set_time(time);
333 }
334
335 void
336 Plant::set_time(Context context, Time time, Vector pos)const
337 {
338         if(needs_sync==true)
339         {
340                 sync();
341                 needs_sync_=false;
342         }
343         //const_cast<Plant*>(this)->sync();
344         context.set_time(time,pos);
345 }
346 */
347 ValueBase
348 Plant::get_param(const String& param)const
349 {
350         if(param=="seed")
351                 return random.get_seed();
352         EXPORT(bline);
353         EXPORT(origin);
354         EXPORT(split_angle);
355         EXPORT(gravity);
356         EXPORT(velocity);
357         EXPORT(perp_velocity);
358         EXPORT(step);
359         EXPORT(gradient);
360         EXPORT(splits);
361         EXPORT(sprouts);
362         EXPORT(random_factor);
363         EXPORT(drag);
364         EXPORT(size);
365         EXPORT(size_as_alpha);
366         EXPORT(reverse);
367         EXPORT(use_width);
368
369         EXPORT_NAME();
370
371         if(param=="Version" || param=="version" || param=="version__")
372                 return version;
373
374         return Layer_Composite::get_param(param);
375 }
376
377 Layer::Vocab
378 Plant::get_param_vocab()const
379 {
380         Layer::Vocab ret(Layer_Composite::get_param_vocab());
381
382         ret.push_back(ParamDesc("bline")
383                 .set_local_name(_("Vertices"))
384                 .set_description(_("A list of BLine Points"))
385                 .set_origin("origin")
386                 .set_hint("width")
387         );
388
389         ret.push_back(ParamDesc("origin")
390                 .set_local_name(_("Origin"))
391         );
392
393         ret.push_back(ParamDesc("gradient")
394                 .set_local_name(_("Gradient"))
395                 .set_description(_("Gradient to be used for coloring the plant"))
396         );
397
398         ret.push_back(ParamDesc("split_angle")
399                 .set_local_name(_("Split Angle"))
400                 .set_description(_("Angle by which each split deviates from its parent"))
401         );
402
403         ret.push_back(ParamDesc("gravity")
404                 .set_local_name(_("Gravity"))
405                 .set_description(_("Direction in which the shoots tend to face"))
406                 .set_is_distance()
407         );
408
409         ret.push_back(ParamDesc("velocity")
410                 .set_local_name(_("Tangential Velocity"))
411                 .set_description(_("Amount to which shoots tend to grow along the tangent to the BLine"))
412         );
413
414         ret.push_back(ParamDesc("perp_velocity")
415                 .set_local_name(_("Perpendicular Velocity"))
416                 .set_description(_("Amount to which shoots tend to grow perpendicular to the tangent to the BLine"))
417         );
418
419         ret.push_back(ParamDesc("size")
420                 .set_local_name(_("Stem Size"))
421                 .set_description(_("Size of the stem"))
422                 .set_is_distance()
423         );
424
425         ret.push_back(ParamDesc("size_as_alpha")
426                 .set_local_name(_("Size As Alpha"))
427                 .set_description(_("If enabled, the alpha channel from the gradient is multiplied by the stem size, and an alpha of 1.0 is used when rendering"))
428         );
429
430         ret.push_back(ParamDesc("reverse")
431                 .set_local_name(_("Reverse"))
432                 .set_description(_("If enabled, render the plant in the opposite direction"))
433         );
434
435         ret.push_back(ParamDesc("step")
436                 .set_local_name(_("Step"))
437                 .set_description(_("Measure of the distance between points when rendering"))
438         );
439
440         ret.push_back(ParamDesc("seed")
441                 .set_local_name(_("Seed"))
442                 .set_description(_("Used to seed the pseudo-random number generator"))
443         );
444
445         ret.push_back(ParamDesc("splits")
446                 .set_local_name(_("Splits"))
447                 .set_description(_("Maximum number of times that each sprout can sprout recursively"))
448         );
449
450         ret.push_back(ParamDesc("sprouts")
451                 .set_local_name(_("Sprouts"))
452                 .set_description(_("Number of places that growth occurs on each bline section"))
453         );
454
455         ret.push_back(ParamDesc("random_factor")
456                 .set_local_name(_("Random Factor"))
457                 .set_description(_("Used to scale down all random effects.  Set to zero to disable randomness"))
458         );
459
460         ret.push_back(ParamDesc("drag")
461                 .set_local_name(_("Drag"))
462                 .set_description(_("Drag slows the growth"))
463         );
464
465         ret.push_back(ParamDesc("use_width")
466                 .set_local_name(_("Use Width"))
467                 .set_description(_("Scale the velocity by the bline's width"))
468         );
469
470         return ret;
471 }
472
473 bool
474 Plant::set_version(const String &ver)
475 {
476         version = ver;
477
478         if (version == "0.1")
479                 use_width = false;
480
481         return true;
482 }
483
484 bool
485 Plant::accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const
486 {
487         bool ret(context.accelerated_render(surface,quality,renddesc,cb));
488         if(is_disabled() || !ret)
489                 return ret;
490
491         Surface dest_surface;
492         dest_surface.set_wh(surface->get_w(),surface->get_h());
493         dest_surface.clear();
494
495         const Point     tl(renddesc.get_tl()-origin);
496         const Point br(renddesc.get_br()-origin);
497
498         const int       w(renddesc.get_w());
499         const int       h(renddesc.get_h());
500
501         const int       surface_width(surface->get_w());
502         const int       surface_height(surface->get_h());
503
504         // Width and Height of a pixel
505         const Real pw = (br[0] - tl[0]) / w;
506         const Real ph = (br[1] - tl[1]) / h;
507
508         if (isinf(pw) || isinf(ph))
509                 return true;
510
511         if(needs_sync_==true)
512                 sync();
513
514         if (particle_list.begin() != particle_list.end())
515         {
516                 std::vector<Particle>::iterator iter;
517                 Particle *particle;
518
519                 float radius(size*sqrt(1.0f/(abs(pw)*abs(ph))));
520
521                 int x1,y1,x2,y2;
522
523                 if (reverse)    iter = particle_list.end();
524                 else                    iter = particle_list.begin();
525
526                 while (true)
527                 {
528                         if (reverse)    particle = &(*(iter-1));
529                         else                    particle = &(*iter);
530
531                         float scaled_radius(radius);
532                         Color color(particle->color);
533                         if(size_as_alpha)
534                         {
535                                 scaled_radius*=color.get_a();
536                                 color.set_a(1);
537                         }
538
539                         // previously, radius was multiplied by sqrt(step)*12 only if
540                         // the radius came out at less than 1 (pixel):
541                         //   if (radius<=1.0f) radius*=sqrt(step)*12.0f;
542                         // seems a little arbitrary - does it help?
543
544                         // calculate the box that this particle will be drawn as
545                         float x1f=(particle->point[0]-tl[0])/pw-(scaled_radius*0.5);
546                         float x2f=(particle->point[0]-tl[0])/pw+(scaled_radius*0.5);
547                         float y1f=(particle->point[1]-tl[1])/ph-(scaled_radius*0.5);
548                         float y2f=(particle->point[1]-tl[1])/ph+(scaled_radius*0.5);
549                         x1=ceil_to_int(x1f);
550                         x2=ceil_to_int(x2f)-1;
551                         y1=ceil_to_int(y1f);
552                         y2=ceil_to_int(y2f)-1;
553
554                         // if the box isn't entirely off the canvas, draw it
555                         if(x1<=surface_width && y1<=surface_height && x2>=0 && y2>=0)
556                         {
557                                 float x1e=x1-x1f, x2e=x2f-x2, y1e=y1-y1f, y2e=y2f-y2;
558                                 // printf("x1e %.4f x2e %.4f y1e %.4f y2e %.4f\n", x1e, x2e, y1e, y2e);
559
560                                 // adjust the box so it's entirely on the canvas
561                                 if(x1<=0) { x1=0; x1e=0; }
562                                 if(y1<=0) { y1=0; y1e=0; }
563                                 if(x2>=surface_width)  { x2=surface_width;  x2e=0; }
564                                 if(y2>=surface_height) { y2=surface_height; y2e=0; }
565
566                                 int w(x2-x1), h(y2-y1);
567
568                                 Surface::alpha_pen surface_pen(dest_surface.get_pen(x1,y1),1.0f);
569                                 if(w>0 && h>0)
570                                         dest_surface.fill(color,surface_pen,w,h);
571
572                                 /* the rectangle doesn't cross any vertical pixel boundaries so we don't
573                                  * need to draw any top or bottom edges
574                                  */
575                                 if(x2<x1)
576                                 {
577                                         // case 1 - a single pixel
578                                         if(y2<y1)
579                                         {
580                                                 surface_pen.move_to(x2,y2);
581                                                 surface_pen.set_alpha((x2f-x1f)*(y2f-y1f));
582                                                 surface_pen.put_value(color);
583                                         }
584                                         // case 2 - a single vertical column of pixels
585                                         else
586                                         {
587                                                 surface_pen.move_to(x2,y1-1);
588                                                 if (y1e!=0)     // maybe draw top pixel
589                                                 {
590                                                         surface_pen.set_alpha(y1e*(x2f-x1f));
591                                                         surface_pen.put_value(color);
592                                                 }
593                                                 surface_pen.inc_y();
594                                                 surface_pen.set_alpha(x2f-x1f);
595                                                 for(int i=y1; i<y2; i++) // maybe draw pixels between
596                                                 {
597                                                         surface_pen.put_value(color);
598                                                         surface_pen.inc_y();
599                                                 }
600                                                 if (y2e!=0)     // maybe draw bottom pixel
601                                                 {
602                                                         surface_pen.set_alpha(y2e*(x2f-x1f));
603                                                         surface_pen.put_value(color);
604                                                 }
605                                         }
606                                 }
607                                 else
608                                 {
609                                         // case 3 - a single horizontal row of pixels
610                                         if(y2<y1)
611                                         {
612                                                 surface_pen.move_to(x1-1,y2);
613                                                 if (x1e!=0)     // maybe draw left pixel
614                                                 {
615                                                         surface_pen.set_alpha(x1e*(y2f-y1f));
616                                                         surface_pen.put_value(color);
617                                                 }
618                                                 surface_pen.inc_x();
619                                                 surface_pen.set_alpha(y2f-y1f);
620                                                 for(int i=x1; i<x2; i++) // maybe draw pixels between
621                                                 {
622                                                         surface_pen.put_value(color);
623                                                         surface_pen.inc_x();
624                                                 }
625                                                 if (x2e!=0)     // maybe draw right pixel
626                                                 {
627                                                         surface_pen.set_alpha(x2e*(y2f-y1f));
628                                                         surface_pen.put_value(color);
629                                                 }
630                                         }
631                                         // case 4 - a proper block of pixels
632                                         else
633                                         {
634                                                 if (x1e!=0)     // maybe draw left edge
635                                                 {
636                                                         surface_pen.move_to(x1-1,y1-1);
637                                                         if (y1e!=0)     // maybe draw top left pixel
638                                                         {
639                                                                 surface_pen.set_alpha(x1e*y1e);
640                                                                 surface_pen.put_value(color);
641                                                         }
642                                                         surface_pen.inc_y();
643                                                         surface_pen.set_alpha(x1e);
644                                                         for(int i=y1; i<y2; i++) // maybe draw pixels along the left edge
645                                                         {
646                                                                 surface_pen.put_value(color);
647                                                                 surface_pen.inc_y();
648                                                         }
649                                                         if (y2e!=0)     // maybe draw bottom left pixel
650                                                         {
651                                                                 surface_pen.set_alpha(x1e*y2e);
652                                                                 surface_pen.put_value(color);
653                                                         }
654                                                         surface_pen.inc_x();
655                                                 }
656                                                 else
657                                                         surface_pen.move_to(x1,y2);
658
659                                                 if (y2e!=0)     // maybe draw bottom edge
660                                                 {
661                                                         surface_pen.set_alpha(y2e);
662                                                         for(int i=x1; i<x2; i++) // maybe draw pixels along the bottom edge
663                                                         {
664                                                                 surface_pen.put_value(color);
665                                                                 surface_pen.inc_x();
666                                                         }
667                                                         if (x2e!=0)     // maybe draw bottom right pixel
668                                                         {
669                                                                 surface_pen.set_alpha(x2e*y2e);
670                                                                 surface_pen.put_value(color);
671                                                         }
672                                                         surface_pen.dec_y();
673                                                 }
674                                                 else
675                                                         surface_pen.move_to(x2,y2-1);
676
677                                                 if (x2e!=0)     // maybe draw right edge
678                                                 {
679                                                         surface_pen.set_alpha(x2e);
680                                                         for(int i=y1; i<y2; i++) // maybe draw pixels along the right edge
681                                                         {
682                                                                 surface_pen.put_value(color);
683                                                                 surface_pen.dec_y();
684                                                         }
685                                                         if (y1e!=0)     // maybe draw top right pixel
686                                                         {
687                                                                 surface_pen.set_alpha(x2e*y1e);
688                                                                 surface_pen.put_value(color);
689                                                         }
690                                                         surface_pen.dec_x();
691                                                 }
692                                                 else
693                                                         surface_pen.move_to(x2-1,y1-1);
694
695                                                 if (y1e!=0)     // maybe draw top edge
696                                                 {
697                                                         surface_pen.set_alpha(y1e);
698                                                         for(int i=x1; i<x2; i++) // maybe draw pixels along the top edge
699                                                         {
700                                                                 surface_pen.put_value(color);
701                                                                 surface_pen.dec_x();
702                                                         }
703                                                 }
704                                         }
705                                 }
706                         }
707
708                         if (reverse)
709                         {
710                                 if (--iter == particle_list.begin())
711                                         break;
712                         }
713                         else
714                         {
715                                 if (++iter == particle_list.end())
716                                         break;
717                         }
718                 }
719         }
720
721         Surface::alpha_pen pen(surface->get_pen(0,0),get_amount(),get_blend_method());
722         dest_surface.blit_to(pen);
723
724         return true;
725 }
726
727 Rect
728 Plant::get_bounding_rect(Context context)const
729 {
730         if(needs_sync_==true)
731                 sync();
732
733         if(is_disabled())
734                 return Rect::zero();
735
736         if(Color::is_onto(get_blend_method()))
737                 return context.get_full_bounding_rect() & bounding_rect;
738
739         //if(get_blend_method()==Color::BLEND_BEHIND)
740         //      return context.get_full_bounding_rect() | bounding_rect;
741         return bounding_rect;
742 }