Use ancestor's link_local_name(int i), link_name(i) and get_link_index_from_name...
[synfig.git] / synfig-core / src / synfig / valuenode_add.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file valuenode_add.cpp
3 **      \brief Implementation of the "Add" 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_add.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_Add::ValueNode_Add(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
102 LinkableValueNode*
103 ValueNode_Add::create_new()const
104 {
105         return new ValueNode_Add(get_type());
106 }
107
108 ValueNode_Add*
109 ValueNode_Add::create(const ValueBase& value)
110 {
111         return new ValueNode_Add(value);
112 }
113
114 synfig::ValueNode_Add::~ValueNode_Add()
115 {
116         unlink_all();
117 }
118
119 synfig::ValueBase
120 synfig::ValueNode_Add::operator()(Time t)const
121 {
122         if (getenv("SYNFIG_DEBUG_VALUENODE_OPERATORS"))
123                 printf("%s:%d operator()\n", __FILE__, __LINE__);
124
125         if(!ref_a || !ref_b)
126                 throw runtime_error(strprintf("ValueNode_Add: %s",_("One or both of my parameters aren't set!")));
127         switch(get_type())
128         {
129         case ValueBase::TYPE_ANGLE:
130                 return ((*ref_a)(t).get(Angle())+(*ref_b)(t).get(Angle()))*(*scalar)(t).get(Real());
131         case ValueBase::TYPE_COLOR:
132                 return ((*ref_a)(t).get(Color())+(*ref_b)(t).get(Color()))*(*scalar)(t).get(Real());
133         case ValueBase::TYPE_GRADIENT:
134                 return ((*ref_a)(t).get(Gradient())+(*ref_b)(t).get(Gradient()))*(*scalar)(t).get(Real());
135         case ValueBase::TYPE_INTEGER:
136                 return round_to_int(((*ref_a)(t).get(int())+(*ref_b)(t).get(int()))*(*scalar)(t).get(Real()));
137         case ValueBase::TYPE_REAL:
138                 return ((*ref_a)(t).get(Vector::value_type())+(*ref_b)(t).get(Vector::value_type()))*(*scalar)(t).get(Real());
139         case ValueBase::TYPE_TIME:
140                 return ((*ref_a)(t).get(Time())+(*ref_b)(t).get(Time()))*(*scalar)(t).get(Real());
141         case ValueBase::TYPE_VECTOR:
142                 return ((*ref_a)(t).get(Vector())+(*ref_b)(t).get(Vector()))*(*scalar)(t).get(Real());
143         default:
144                 assert(0);
145                 break;
146         }
147         return ValueBase();
148 }
149
150 bool
151 ValueNode_Add::set_link_vfunc(int i,ValueNode::Handle value)
152 {
153         assert(i>=0 && i<link_count());
154
155         switch(i)
156         {
157         case 0: CHECK_TYPE_AND_SET_VALUE(ref_a,  get_type());
158         case 1: CHECK_TYPE_AND_SET_VALUE(ref_b,  get_type());
159         case 2: CHECK_TYPE_AND_SET_VALUE(scalar, ValueBase::TYPE_REAL);
160         }
161         return false;
162 }
163
164 ValueNode::LooseHandle
165 ValueNode_Add::get_link_vfunc(int i)const
166 {
167         assert(i>=0 && i<link_count());
168
169         switch(i)
170         {
171                 case 0: return ref_a;
172                 case 1: return ref_b;
173                 case 2: return scalar;
174                 default: return 0;
175         }
176 }
177
178 int
179 ValueNode_Add::link_count()const
180 {
181         return 3;
182 }
183
184 String
185 ValueNode_Add::get_name()const
186 {
187         return "add";
188 }
189
190 String
191 ValueNode_Add::get_local_name()const
192 {
193         return _("Add");
194 }
195
196 bool
197 ValueNode_Add::check_type(ValueBase::Type type)
198 {
199         return type==ValueBase::TYPE_ANGLE
200                 || type==ValueBase::TYPE_COLOR
201                 || type==ValueBase::TYPE_GRADIENT
202                 || type==ValueBase::TYPE_INTEGER
203                 || type==ValueBase::TYPE_REAL
204                 || type==ValueBase::TYPE_TIME
205                 || type==ValueBase::TYPE_VECTOR;
206 }
207
208 LinkableValueNode::Vocab
209 ValueNode_Add::get_param_vocab() const
210 {
211         LinkableValueNode::Vocab ret;
212
213         ret.push_back(ParamDesc(ValueBase(),"lhs")
214                 .set_local_name(_("LHS"))
215                 .set_description(_("Left Hand Side of the add"))
216         );
217
218         ret.push_back(ParamDesc(ValueBase(),"rhs")
219                 .set_local_name(_("RHS"))
220                 .set_description(_("Right Hand Side of the add"))
221         );
222
223                 ret.push_back(ParamDesc(ValueBase(),"scalar")
224                 .set_local_name(_("Scalar"))
225                 .set_description(_("Value that multiplies the add"))
226         );
227
228         return ret;
229 }