dcdee81fa491b7e4f1842fbb7f902c654eda3f79
[synfig.git] / synfig-core / src / synfig / valuenode_blinereversetangent.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file valuenode_blinereversetangent.cpp
3 **      \brief Implementation of the "Reverse Tangent" 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 "valuenode_blinereversetangent.h"
34 #include "valuenode_bline.h"
35 #include "valuenode_const.h"
36 #include "valuenode_composite.h"
37 #include "general.h"
38 #include "exception.h"
39 #include <ETL/hermite>
40 #include <ETL/calculus>
41
42 #endif
43
44 /* === U S I N G =========================================================== */
45
46 using namespace std;
47 using namespace etl;
48 using namespace synfig;
49
50 /* === M A C R O S ========================================================= */
51
52 /* === G L O B A L S ======================================================= */
53
54 /* === P R O C E D U R E S ================================================= */
55
56 /* === M E T H O D S ======================================================= */
57
58 ValueNode_BLineRevTangent::ValueNode_BLineRevTangent(const ValueBase::Type &x):
59         LinkableValueNode(x)
60 {
61 }
62
63 ValueNode_BLineRevTangent::ValueNode_BLineRevTangent(const ValueNode::Handle &x):
64         LinkableValueNode(x->get_type())
65 {
66         if(x->get_type()!=ValueBase::TYPE_BLINEPOINT)
67                 throw Exception::BadType(ValueBase::type_local_name(x->get_type()));
68
69         set_link("reference",x);
70         set_link("reverse",ValueNode_Const::create(bool(false)));
71 }
72
73 ValueNode_BLineRevTangent*
74 ValueNode_BLineRevTangent::create(const ValueBase &x)
75 {
76         return new ValueNode_BLineRevTangent(ValueNode_Const::create(x));
77 }
78
79 LinkableValueNode*
80 ValueNode_BLineRevTangent::create_new()const
81 {
82         return new ValueNode_BLineRevTangent(get_type());
83 }
84
85 ValueNode_BLineRevTangent::~ValueNode_BLineRevTangent()
86 {
87         unlink_all();
88 }
89
90 ValueBase
91 ValueNode_BLineRevTangent::operator()(Time t)const
92 {
93         if (getenv("SYNFIG_DEBUG_VALUENODE_OPERATORS"))
94                 printf("%s:%d operator()\n", __FILE__, __LINE__);
95
96         if ((*reverse_)(t).get(bool()))
97         {
98                 BLinePoint reference((*reference_)(t));
99                 BLinePoint ret(reference);
100                 if(ret.get_split_tangent_flag())
101                 {
102                         ret.set_tangent1(-reference.get_tangent2());
103                         ret.set_tangent2(-reference.get_tangent1());
104                 }
105                 else
106                 {
107                         // \todo what should we do here really?
108                         // it seems that there's some pre-existing bug
109                         // with the 'reference' convert, too - referencing
110                         // a non-split blinepoint causes some problems
111                         ret.set_tangent1(-reference.get_tangent1());
112                 }
113                 return ret;
114         }
115         else
116                 return (*reference_)(t);
117 }
118
119 String
120 ValueNode_BLineRevTangent::get_name()const
121 {
122         return "blinerevtangent";
123 }
124
125 String
126 ValueNode_BLineRevTangent::get_local_name()const
127 {
128         return _("Reverse Tangent");
129 }
130
131 bool
132 ValueNode_BLineRevTangent::set_link_vfunc(int i,ValueNode::Handle value)
133 {
134         assert(i>=0 && i<link_count());
135
136         switch(i)
137         {
138         case 0: CHECK_TYPE_AND_SET_VALUE(reference_, get_type());
139         case 1: CHECK_TYPE_AND_SET_VALUE(reverse_,   ValueBase::TYPE_BOOL);
140         }
141         return false;
142 }
143
144 ValueNode::LooseHandle
145 ValueNode_BLineRevTangent::get_link_vfunc(int i)const
146 {
147         assert(i>=0 && i<link_count());
148
149         switch(i)
150         {
151                 case 0: return reference_;
152                 case 1: return reverse_;
153         }
154
155         return 0;
156 }
157
158 int
159 ValueNode_BLineRevTangent::link_count()const
160 {
161         return 2;
162 }
163
164 String
165 ValueNode_BLineRevTangent::link_name(int i)const
166 {
167         assert(i>=0 && i<link_count());
168
169         switch(i)
170         {
171                 case 0: return "reference";
172                 case 1: return "reverse";
173         }
174         return String();
175 }
176
177 String
178 ValueNode_BLineRevTangent::link_local_name(int i)const
179 {
180         assert(i>=0 && i<link_count());
181
182         switch(i)
183         {
184                 case 0: return _("Reference");
185                 case 1: return _("Reverse");
186         }
187         return String();
188 }
189
190 int
191 ValueNode_BLineRevTangent::get_link_index_from_name(const String &name)const
192 {
193         if(name=="reference")   return 0;
194         if(name=="reverse")             return 1;
195         throw Exception::BadLinkName(name);
196 }
197
198 bool
199 ValueNode_BLineRevTangent::check_type(ValueBase::Type type)
200 {
201         return (type==ValueBase::TYPE_BLINEPOINT);
202 }
203
204 LinkableValueNode::Vocab
205 ValueNode_BLineRevTangent::get_children_vocab_vfunc()const
206 {
207         LinkableValueNode::Vocab ret;
208
209         ret.push_back(ParamDesc(ValueBase(),"reference")
210                 .set_local_name(_("Reference"))
211                 .set_description(_("The referenced tangent to reverse"))
212         );
213
214         ret.push_back(ParamDesc(ValueBase(),"reverse")
215                 .set_local_name(_("Reverse"))
216                 .set_description(_("When checked, the reference is reversed"))
217         );
218
219         return ret;
220 }