Use LinkableValueNode members functions when possible in the derived valuenodes.
[synfig.git] / synfig-core / src / synfig / valuenode_twotone.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file valuenode_twotone.cpp
3 **      \brief Implementation of the "Two-Tone" valuenode conversion.
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 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_twotone.h"
35 #include "valuenode_const.h"
36 #include <stdexcept>
37 #include "color.h"
38 #include "gradient.h"
39
40 #endif
41
42 /* === U S I N G =========================================================== */
43
44 using namespace std;
45 using namespace etl;
46 using namespace synfig;
47
48 /* === M A C R O S ========================================================= */
49
50 /* === G L O B A L S ======================================================= */
51
52 /* === P R O C E D U R E S ================================================= */
53
54 /* === M E T H O D S ======================================================= */
55
56 synfig::ValueNode_TwoTone::ValueNode_TwoTone(const ValueBase &value):LinkableValueNode(synfig::ValueBase::TYPE_GRADIENT)
57 {
58         Vocab ret(get_children_vocab());
59         set_children_vocab(ret);
60         switch(value.get_type())
61         {
62         case ValueBase::TYPE_GRADIENT:
63                 set_link("color1",ValueNode_Const::create(value.get(Gradient())(0)));
64                 set_link("color2",ValueNode_Const::create(value.get(Gradient())(1)));
65                 break;
66         default:
67                 throw Exception::BadType(ValueBase::type_local_name(value.get_type()));
68         }
69 }
70
71 LinkableValueNode*
72 ValueNode_TwoTone::create_new()const
73 {
74         return new ValueNode_TwoTone(get_type());
75 }
76
77 ValueNode_TwoTone*
78 ValueNode_TwoTone::create(const ValueBase& x)
79 {
80         return new ValueNode_TwoTone(x);
81 }
82
83 synfig::ValueNode_TwoTone::~ValueNode_TwoTone()
84 {
85         unlink_all();
86 }
87
88 synfig::ValueBase
89 synfig::ValueNode_TwoTone::operator()(Time t)const
90 {
91         if (getenv("SYNFIG_DEBUG_VALUENODE_OPERATORS"))
92                 printf("%s:%d operator()\n", __FILE__, __LINE__);
93
94         return Gradient((*ref_a)(t).get(Color()),(*ref_b)(t).get(Color()));
95 }
96
97 bool
98 ValueNode_TwoTone::set_link_vfunc(int i,ValueNode::Handle value)
99 {
100         assert(i>=0 && i<link_count());
101
102         switch(i)
103         {
104         case 0: CHECK_TYPE_AND_SET_VALUE(ref_a, ValueBase::TYPE_COLOR);
105         case 1: CHECK_TYPE_AND_SET_VALUE(ref_b, ValueBase::TYPE_COLOR);
106         }
107         return false;
108 }
109
110 ValueNode::LooseHandle
111 ValueNode_TwoTone::get_link_vfunc(int i)const
112 {
113         assert(i>=0 && i<link_count());
114
115         switch(i)
116         {
117                 case 0:
118                         return ref_a;
119                 case 1:
120                         return ref_b;
121         }
122         return 0;
123 }
124
125 String
126 ValueNode_TwoTone::get_name()const
127 {
128         return "twotone";
129 }
130
131 String
132 ValueNode_TwoTone::get_local_name()const
133 {
134         return _("Two-Tone");
135 }
136
137 bool
138 ValueNode_TwoTone::check_type(ValueBase::Type type)
139 {
140         return type==ValueBase::TYPE_GRADIENT;
141 }
142
143 LinkableValueNode::Vocab
144 ValueNode_TwoTone::get_children_vocab_vfunc()const
145 {
146         if(children_vocab.size())
147                 return children_vocab;
148
149         LinkableValueNode::Vocab ret;
150
151         ret.push_back(ParamDesc(ValueBase(),"color1")
152                 .set_local_name(_("Color 1"))
153                 .set_description(_("The start color of the gradient"))
154         );
155
156         ret.push_back(ParamDesc(ValueBase(),"color2")
157                 .set_local_name(_("Color 2"))
158                 .set_description(_("The end color of the gradient"))
159         );
160
161         return ret;
162 }