1 /* === S Y N F I G ========================================================= */
2 /*! \file valuenode_duplicate.cpp
3 ** \brief Implementation of the "Duplicate" valuenode conversion.
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2007, 2008 Chris Moore
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.
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.
22 /* ========================================================================= */
24 /* === H E A D E R S ======================================================= */
33 #include "valuenode_duplicate.h"
34 #include "valuenode_const.h"
39 /* === U S I N G =========================================================== */
43 using namespace synfig;
45 /* === M A C R O S ========================================================= */
47 /* === G L O B A L S ======================================================= */
49 /* === P R O C E D U R E S ================================================= */
51 /* === M E T H O D S ======================================================= */
53 ValueNode_Duplicate::ValueNode_Duplicate(const ValueBase::Type &x):
58 ValueNode_Duplicate::ValueNode_Duplicate(const ValueBase &x):
59 LinkableValueNode(x.get_type())
61 set_link("from", ValueNode_Const::create(Real(1.0)));
62 set_link("to", ValueNode_Const::create(x.get(Real())));
63 set_link("step", ValueNode_Const::create(Real(1.0)));
68 ValueNode_Duplicate::create(const ValueBase &x)
70 return new ValueNode_Duplicate(x);
74 ValueNode_Duplicate::create_new()const
76 return new ValueNode_Duplicate(get_type());
79 ValueNode_Duplicate::~ValueNode_Duplicate()
85 ValueNode_Duplicate::set_link_vfunc(int i,ValueNode::Handle value)
87 assert(i>=0 && i<link_count());
91 case 0: CHECK_TYPE_AND_SET_VALUE(from_, ValueBase::TYPE_REAL);
92 case 1: CHECK_TYPE_AND_SET_VALUE(to_, ValueBase::TYPE_REAL);
93 case 2: CHECK_TYPE_AND_SET_VALUE(step_, ValueBase::TYPE_REAL);
98 ValueNode::LooseHandle
99 ValueNode_Duplicate::get_link_vfunc(int i)const
101 assert(i>=0 && i<link_count());
103 if(i==0) return from_;
105 if(i==2) return step_;
111 ValueNode_Duplicate::link_count()const
117 ValueNode_Duplicate::link_local_name(int i)const
119 assert(i>=0 && i<link_count());
121 if(i==0) return _("From");
122 if(i==1) return _("To");
123 if(i==2) return _("Step");
128 ValueNode_Duplicate::link_name(int i)const
130 assert(i>=0 && i<link_count());
132 if(i==0) return "from";
133 if(i==1) return "to";
134 if(i==2) return "step";
139 ValueNode_Duplicate::get_link_index_from_name(const String &name)const
141 if(name=="from") return 0;
142 if(name=="to") return 1;
143 if(name=="step") return 2;
145 throw Exception::BadLinkName(name);
149 ValueNode_Duplicate::reset_index(Time t)const
151 Real from = (*from_)(t).get(Real());
156 ValueNode_Duplicate::step(Time t)const
158 Real from = (*from_)(t).get(Real());
159 Real to = (*to_ )(t).get(Real());
160 Real step = (*step_)(t).get(Real());
163 if (step == 0) return false;
169 if ((index += step) <= to) return true;
172 if ((index -= step) >= to) return true;
174 // at the end of the loop, leave the index at the last value that was used
180 ValueNode_Duplicate::count_steps(Time t)const
182 Real from = (*from_)(t).get(Real());
183 Real to = (*to_ )(t).get(Real());
184 Real step = (*step_)(t).get(Real());
186 if (step == 0) return 1;
188 return abs((from - to) / step) + 1;
192 ValueNode_Duplicate::operator()(Time t __attribute__ ((unused)))const
198 ValueNode_Duplicate::get_name()const
204 ValueNode_Duplicate::get_local_name()const
206 return _("Duplicate");
210 ValueNode_Duplicate::check_type(ValueBase::Type type __attribute__ ((unused)))
212 // never offer this as a choice. it's used automatically by the 'Duplicate' layer.