1 /* === S Y N F I G ========================================================= */
2 /*! \file valuenode_gradientcolor.cpp
3 ** \brief Implementation of the "Gradient Color" 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_gradientcolor.h"
34 #include "valuenode_const.h"
40 /* === U S I N G =========================================================== */
44 using namespace synfig;
46 /* === M A C R O S ========================================================= */
48 /* === G L O B A L S ======================================================= */
50 /* === P R O C E D U R E S ================================================= */
52 /* === M E T H O D S ======================================================= */
54 ValueNode_GradientColor::ValueNode_GradientColor(const ValueBase &value):
55 LinkableValueNode(value.get_type())
57 switch(value.get_type())
59 case ValueBase::TYPE_COLOR:
60 set_link("gradient", ValueNode_Const::create(Gradient(value.get(Color()),value.get(Color()))));
61 set_link("index", ValueNode_Const::create(Real(0.5)));
62 set_link("loop", ValueNode_Const::create(bool(false)));
65 throw Exception::BadType(ValueBase::type_local_name(value.get_type()));
72 ValueNode_GradientColor::create_new()const
74 return new ValueNode_GradientColor(get_type());
77 ValueNode_GradientColor*
78 ValueNode_GradientColor::create(const ValueBase &x)
80 return new ValueNode_GradientColor(x);
83 ValueNode_GradientColor::~ValueNode_GradientColor()
89 ValueNode_GradientColor::operator()(Time t)const
91 Real index((*index_)(t).get(Real()));
92 bool loop((*loop_)(t).get(bool()));
93 if (loop) index -= floor(index);
94 return (*gradient_)(t).get(Gradient())(index);
99 ValueNode_GradientColor::set_link_vfunc(int i,ValueNode::Handle value)
101 assert(i>=0 && i<link_count());
105 case 0: CHECK_TYPE_AND_SET_VALUE(gradient_, ValueBase::TYPE_GRADIENT);
106 case 1: CHECK_TYPE_AND_SET_VALUE(index_, ValueBase::TYPE_REAL);
107 case 2: CHECK_TYPE_AND_SET_VALUE(loop_, ValueBase::TYPE_BOOL);
112 ValueNode::LooseHandle
113 ValueNode_GradientColor::get_link_vfunc(int i)const
115 assert(i>=0 && i<link_count());
119 case 0: return gradient_;
120 case 1: return index_;
121 case 2: return loop_;
128 ValueNode_GradientColor::link_count()const
134 ValueNode_GradientColor::link_local_name(int i)const
136 assert(i>=0 && i<link_count());
140 case 0: return _("Gradient");
141 case 1: return _("Index");
142 case 2: return _("Loop");
148 ValueNode_GradientColor::link_name(int i)const
150 assert(i>=0 && i<link_count());
154 case 0: return "gradient";
155 case 1: return "index";
156 case 2: return "loop";
162 ValueNode_GradientColor::get_link_index_from_name(const String &name)const
164 if (name=="gradient") return 0;
165 if (name=="index") return 1;
166 if (name=="loop") return 2;
167 throw Exception::BadLinkName(name);
171 ValueNode_GradientColor::get_name()const
173 return "gradientcolor";
177 ValueNode_GradientColor::get_local_name()const
179 return _("Gradient Color");
183 ValueNode_GradientColor::check_type(ValueBase::Type type)
185 return type==ValueBase::TYPE_COLOR;