1 /* === S Y N F I G ========================================================= */
2 /*! \file valuenode_reciprocal.cpp
3 ** \brief Implementation of the "Reciprocal" 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_reciprocal.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_Reciprocal::ValueNode_Reciprocal(const ValueBase &x):
54 LinkableValueNode(x.get_type())
56 Real value(x.get(Real()));
57 Real infinity(999999.0);
58 Real epsilon(0.000001);
65 set_link("link", ValueNode_Const::create(Real(value)));
66 set_link("epsilon", ValueNode_Const::create(Real(epsilon)));
67 set_link("infinite", ValueNode_Const::create(Real(infinity)));
71 ValueNode_Reciprocal::create(const ValueBase &x)
73 return new ValueNode_Reciprocal(x);
77 ValueNode_Reciprocal::create_new()const
79 return new ValueNode_Reciprocal(get_type());
82 ValueNode_Reciprocal::~ValueNode_Reciprocal()
88 ValueNode_Reciprocal::set_link_vfunc(int i,ValueNode::Handle value)
90 assert(i>=0 && i<link_count());
94 case 0: CHECK_TYPE_AND_SET_VALUE(link_, ValueBase::TYPE_REAL);
95 case 1: CHECK_TYPE_AND_SET_VALUE(epsilon_, ValueBase::TYPE_REAL);
96 case 2: CHECK_TYPE_AND_SET_VALUE(infinite_, ValueBase::TYPE_REAL);
101 ValueNode::LooseHandle
102 ValueNode_Reciprocal::get_link_vfunc(int i)const
104 assert(i>=0 && i<link_count());
106 if(i==0) return link_;
107 if(i==1) return epsilon_;
108 if(i==2) return infinite_;
114 ValueNode_Reciprocal::link_count()const
120 ValueNode_Reciprocal::link_local_name(int i)const
122 assert(i>=0 && i<link_count());
124 if(i==0) return _("Link");
125 if(i==1) return _("Epsilon");
126 if(i==2) return _("Infinite");
131 ValueNode_Reciprocal::link_name(int i)const
133 assert(i>=0 && i<link_count());
135 if(i==0) return "link";
136 if(i==1) return "epsilon";
137 if(i==2) return "infinite";
142 ValueNode_Reciprocal::get_link_index_from_name(const String &name)const
144 if(name=="link") return 0;
145 if(name=="epsilon") return 1;
146 if(name=="infinite") return 2;
148 throw Exception::BadLinkName(name);
152 ValueNode_Reciprocal::operator()(Time t)const
154 Real link = (*link_) (t).get(Real());
155 Real epsilon = (*epsilon_) (t).get(Real());
156 Real infinite = (*infinite_)(t).get(Real());
158 if (epsilon < 0.00000001)
159 epsilon = 0.00000001;
161 if (abs(link) < epsilon)
171 ValueNode_Reciprocal::get_name()const
177 ValueNode_Reciprocal::get_local_name()const
179 return _("Reciprocal");
183 ValueNode_Reciprocal::check_type(ValueBase::Type type)
185 return type==ValueBase::TYPE_REAL;