74365510bccb26adf39a5feadbc97e0ecd09c883
[synfig.git] / synfig-core / src / synfig / valuenode_subtract.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file valuenode_subtract.cpp
3 **      \brief Implementation of the "Subtract" valuenode conversion.
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 "general.h"
34 #include "valuenode_subtract.h"
35 #include "valuenode_const.h"
36 #include <stdexcept>
37 #include "color.h"
38 #include "gradient.h"
39 #include "vector.h"
40 #include "angle.h"
41 #include "real.h"
42 #include <ETL/misc>
43
44 #endif
45
46 /* === U S I N G =========================================================== */
47
48 using namespace std;
49 using namespace etl;
50 using namespace synfig;
51
52 /* === M A C R O S ========================================================= */
53
54 /* === G L O B A L S ======================================================= */
55
56 /* === P R O C E D U R E S ================================================= */
57
58 /* === M E T H O D S ======================================================= */
59
60 synfig::ValueNode_Subtract::ValueNode_Subtract(const ValueBase &value):
61         LinkableValueNode(value.get_type())
62 {
63         set_link("scalar",ValueNode_Const::create(Real(1.0)));
64         ValueBase::Type id(value.get_type());
65
66         switch(id)
67         {
68         case ValueBase::TYPE_ANGLE:
69                 set_link("lhs",ValueNode_Const::create(value.get(Angle())));
70                 set_link("rhs",ValueNode_Const::create(Angle::deg(0)));
71                 break;
72         case ValueBase::TYPE_COLOR:
73                 set_link("lhs",ValueNode_Const::create(value.get(Color())));
74                 set_link("rhs",ValueNode_Const::create(Color(0,0,0,0)));
75                 break;
76         case ValueBase::TYPE_GRADIENT:
77                 set_link("lhs",ValueNode_Const::create(value.get(Gradient())));
78                 set_link("rhs",ValueNode_Const::create(Gradient()));
79                 break;
80         case ValueBase::TYPE_INTEGER:
81                 set_link("lhs",ValueNode_Const::create(value.get(int())));
82                 set_link("rhs",ValueNode_Const::create(int(0)));
83                 break;
84         case ValueBase::TYPE_REAL:
85                 set_link("lhs",ValueNode_Const::create(value.get(Real())));
86                 set_link("rhs",ValueNode_Const::create(Real(0)));
87                 break;
88         case ValueBase::TYPE_TIME:
89                 set_link("lhs",ValueNode_Const::create(value.get(Time())));
90                 set_link("rhs",ValueNode_Const::create(Time(0)));
91                 break;
92         case ValueBase::TYPE_VECTOR:
93                 set_link("lhs",ValueNode_Const::create(value.get(Vector())));
94                 set_link("rhs",ValueNode_Const::create(Vector(0,0)));
95                 break;
96         default:
97                 assert(0);
98                 throw runtime_error(get_local_name()+_(":Bad type ")+ValueBase::type_local_name(id));
99         }
100
101         assert(ref_a->get_type()==id);
102         assert(ref_b->get_type()==id);
103         assert(get_type()==id);
104 }
105
106 LinkableValueNode*
107 ValueNode_Subtract::create_new()const
108 {
109         return new ValueNode_Subtract(get_type());
110 }
111
112 ValueNode_Subtract*
113 ValueNode_Subtract::create(const ValueBase& value)
114 {
115         return new ValueNode_Subtract(value);
116 }
117
118 synfig::ValueNode_Subtract::~ValueNode_Subtract()
119 {
120         unlink_all();
121 }
122
123 synfig::ValueBase
124 synfig::ValueNode_Subtract::operator()(Time t)const
125 {
126         if (getenv("SYNFIG_DEBUG_VALUENODE_OPERATORS"))
127                 printf("%s:%d operator()\n", __FILE__, __LINE__);
128
129         if(!ref_a || !ref_b)
130                 throw runtime_error(strprintf("ValueNode_Subtract: %s",_("One or both of my parameters aren't set!")));
131         switch(get_type())
132         {
133         case ValueBase::TYPE_ANGLE:
134                 return ((*ref_a)(t).get(Angle())-(*ref_b)(t).get(Angle()))*(*scalar)(t).get(Real());
135         case ValueBase::TYPE_COLOR:
136                 return ((*ref_a)(t).get(Color())-(*ref_b)(t).get(Color()))*(*scalar)(t).get(Real());
137         case ValueBase::TYPE_GRADIENT:
138                 return ((*ref_a)(t).get(Gradient())-(*ref_b)(t).get(Gradient()))*(*scalar)(t).get(Real());
139         case ValueBase::TYPE_INTEGER:
140                 return round_to_int(((*ref_a)(t).get(int())-(*ref_b)(t).get(int()))*(*scalar)(t).get(Real()));
141         case ValueBase::TYPE_REAL:
142                 return ((*ref_a)(t).get(Vector::value_type())-(*ref_b)(t).get(Vector::value_type()))*(*scalar)(t).get(Real());
143         case ValueBase::TYPE_TIME:
144                 return ((*ref_a)(t).get(Time())-(*ref_b)(t).get(Time()))*(*scalar)(t).get(Real());
145         case ValueBase::TYPE_VECTOR:
146                 return ((*ref_a)(t).get(Vector())-(*ref_b)(t).get(Vector()))*(*scalar)(t).get(Real());
147         default:
148                 assert(0);
149                 break;
150         }
151         return ValueBase();
152 }
153
154 bool
155 ValueNode_Subtract::set_link_vfunc(int i,ValueNode::Handle value)
156 {
157         assert(i>=0 && i<link_count());
158
159         switch(i)
160         {
161         case 0: CHECK_TYPE_AND_SET_VALUE(ref_a,  get_type());
162         case 1: CHECK_TYPE_AND_SET_VALUE(ref_b,  get_type());
163         case 2: CHECK_TYPE_AND_SET_VALUE(scalar, ValueBase::TYPE_REAL);
164         }
165         return false;
166 }
167
168 ValueNode::LooseHandle
169 ValueNode_Subtract::get_link_vfunc(int i)const
170 {
171         assert(i>=0 && i<link_count());
172
173         switch(i)
174         {
175                 case 0: return ref_a;
176                 case 1: return ref_b;
177                 case 2: return scalar;
178                 default: return 0;
179         }
180 }
181
182 int
183 ValueNode_Subtract::link_count()const
184 {
185         return 3;
186 }
187
188 String
189 ValueNode_Subtract::link_local_name(int i)const
190 {
191         assert(i>=0 && i<link_count());
192
193         switch(i)
194         {
195                 case 0: return _("LHS");
196                 case 1: return _("RHS");
197                 case 2: return _("Scalar");
198                 default: return String();
199         }
200 }
201
202 String
203 ValueNode_Subtract::link_name(int i)const
204 {
205         assert(i>=0 && i<link_count());
206
207         switch(i)
208         {
209                 case 0: return "lhs";
210                 case 1: return "rhs";
211                 case 2: return "scalar";
212                 default: return String();
213         }
214 }
215
216 int
217 ValueNode_Subtract::get_link_index_from_name(const String &name)const
218 {
219         if(name=="lhs") return 0;
220         if(name=="rhs") return 1;
221         if(name=="scalar") return 2;
222         throw Exception::BadLinkName(name);
223 }
224
225 String
226 ValueNode_Subtract::get_name()const
227 {
228         return "subtract";
229 }
230
231 String
232 ValueNode_Subtract::get_local_name()const
233 {
234         return _("Subtract");
235 }
236
237 bool
238 ValueNode_Subtract::check_type(ValueBase::Type type)
239 {
240         return type==ValueBase::TYPE_ANGLE
241                 || type==ValueBase::TYPE_COLOR
242                 || type==ValueBase::TYPE_GRADIENT
243                 || type==ValueBase::TYPE_INTEGER
244                 || type==ValueBase::TYPE_REAL
245                 || type==ValueBase::TYPE_TIME
246                 || type==ValueBase::TYPE_VECTOR;
247 }
248
249 LinkableValueNode::Vocab
250 ValueNode_Subtract::get_children_vocab_vfunc()const
251 {
252         LinkableValueNode::Vocab ret;
253
254         ret.push_back(ParamDesc(ValueBase(),"lhs")
255                 .set_local_name(_("LHS"))
256                 .set_description(_("Left Hand Side of the subtraction"))
257         );
258
259         ret.push_back(ParamDesc(ValueBase(),"rhs")
260                 .set_local_name(_("RHS"))
261                 .set_description(_("Right Hand Side of the subtraction"))
262         );
263
264                 ret.push_back(ParamDesc(ValueBase(),"scalar")
265                 .set_local_name(_("Scalar"))
266                 .set_description(_("Value that multiplies the subtraction"))
267         );
268
269         return ret;
270 }