Merge branch 'genete_static_values'
[synfig.git] / synfig-core / src / modules / mod_example / simplecircle.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file simplecircle.cpp
3 **      \brief Implementation of the "Simple Circle" layer
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 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/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 "simplecircle.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(SimpleCircle);
55 SYNFIG_LAYER_SET_NAME(SimpleCircle,"simple_circle");
56 SYNFIG_LAYER_SET_LOCAL_NAME(SimpleCircle,N_("Simple Circle"));
57 SYNFIG_LAYER_SET_CATEGORY(SimpleCircle,N_("Example"));
58 SYNFIG_LAYER_SET_VERSION(SimpleCircle,"0.1");
59 SYNFIG_LAYER_SET_CVS_ID(SimpleCircle,"$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 SimpleCircle::SimpleCircle():
68         Layer_Composite(1.0,Color::BLEND_COMPOSITE),
69         color(Color::black()),
70         center(0,0),
71         radius(0.5)
72 {
73         Layer::Vocab voc(get_param_vocab());
74         Layer::fill_static(voc);
75 }
76
77 bool
78 SimpleCircle::set_param(const String & param, const ValueBase &value)
79 {
80         IMPORT(color);
81         IMPORT(center);
82         IMPORT(radius);
83
84         return Layer_Composite::set_param(param,value);
85 }
86
87 ValueBase
88 SimpleCircle::get_param(const String &param)const
89 {
90         EXPORT(color);
91         EXPORT(center);
92         EXPORT(radius);
93
94         EXPORT_NAME();
95         EXPORT_VERSION();
96
97         return Layer_Composite::get_param(param);
98 }
99
100 Layer::Vocab
101 SimpleCircle::get_param_vocab()const
102 {
103         Layer::Vocab ret(Layer_Composite::get_param_vocab());
104
105         ret.push_back(ParamDesc("color")
106                 .set_local_name(_("Color"))
107         );
108
109         ret.push_back(ParamDesc("center")
110                 .set_local_name(_("Center"))
111         );
112
113         ret.push_back(ParamDesc("radius")
114                 .set_local_name(_("Radius"))
115                 .set_description(_("This is the radius of the circle"))
116                 .set_origin("center")
117         );
118
119         return ret;
120 }
121
122 Color
123 SimpleCircle::get_color(Context context, const Point &pos)const
124 {
125
126         if((pos-center).mag()<radius)
127         {
128                 if(get_amount()==1.0 && get_blend_method()==Color::BLEND_STRAIGHT)
129                         return color;
130                 else
131                         return Color::blend(color,context.get_color(pos),get_amount(),get_blend_method());
132         }
133         else
134                 return context.get_color(pos);
135 }
136
137 synfig::Layer::Handle
138 SimpleCircle::hit_check(synfig::Context context, const synfig::Point &pos)const
139 {
140         if((pos-center).mag()<radius)
141                 return const_cast<SimpleCircle*>(this);
142         else
143                 return context.hit_check(pos);
144 }
145
146 /*
147 bool
148 SimpleCircle::accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const
149 {
150         if(get_amount()==1.0 && get_blend_method()==Color::BLEND_STRAIGHT)
151         {
152                 // Mark our progress as starting
153                 if(cb && !cb->amount_complete(0,1000))
154                         return false;
155
156                 surface->set_wh(renddesc.get_w(),renddesc.get_h());
157                 surface->fill(color);
158
159                 // Mark our progress as finished
160                 if(cb && !cb->amount_complete(1000,1000))
161                         return false;
162
163                 return true;
164         }
165
166         SuperCallback supercb(cb,0,9500,10000);
167
168         if(!context.accelerated_render(surface,quality,renddesc,&supercb))
169                 return false;
170
171         int x,y;
172
173         Surface::alpha_pen apen(surface->begin());
174
175         apen.set_value(color);
176         apen.set_alpha(get_amount());
177         apen.set_blend_method(get_blend_method());
178
179         for(y=0;y<renddesc.get_h();y++,apen.inc_y(),apen.dec_x(x))
180                 for(x=0;x<renddesc.get_w();x++,apen.inc_x())
181                         apen.put_value();
182
183         // Mark our progress as finished
184         if(cb && !cb->amount_complete(10000,10000))
185                 return false;
186
187         return true;
188 }
189 */