1 /* === S Y N F I G ========================================================= */
2 /*! \file valuenode_intstring.cpp
3 ** \brief Implementation of the "IntString" valuenode conversion.
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 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_intstring.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_IntString::ValueNode_IntString(const ValueBase &value):
55 LinkableValueNode(value.get_type())
57 switch(value.get_type())
59 case ValueBase::TYPE_STRING:
60 set_link("int",ValueNode_Const::create(int(0)));
61 set_link("width",ValueNode_Const::create(int(0)));
62 set_link("zero_pad",ValueNode_Const::create(bool(false)));
65 throw Exception::BadType(ValueBase::type_local_name(value.get_type()));
72 ValueNode_IntString::create_new()const
74 return new ValueNode_IntString(get_type());
78 ValueNode_IntString::create(const ValueBase &x)
80 return new ValueNode_IntString(x);
83 ValueNode_IntString::~ValueNode_IntString()
89 ValueNode_IntString::operator()(Time t)const
91 int integer((*int_)(t).get(int()));
92 int width((*width_)(t).get(int()));
93 int zero_pad((*zero_pad_)(t).get(bool()));
97 case ValueBase::TYPE_STRING:
98 return strprintf(strprintf("%%%s%dd",
100 width).c_str(), integer);
110 ValueNode_IntString::get_name()const
116 ValueNode_IntString::get_local_name()const
118 return _("Int String");
122 ValueNode_IntString::set_link_vfunc(int i,ValueNode::Handle value)
124 assert(i>=0 && i<link_count());
128 case 0: CHECK_TYPE_AND_SET_VALUE(int_, ValueBase::TYPE_INTEGER);
129 case 1: CHECK_TYPE_AND_SET_VALUE(width_, ValueBase::TYPE_INTEGER);
130 case 2: CHECK_TYPE_AND_SET_VALUE(zero_pad_, ValueBase::TYPE_BOOL);
135 ValueNode::LooseHandle
136 ValueNode_IntString::get_link_vfunc(int i)const
138 assert(i>=0 && i<link_count());
143 case 1: return width_;
144 case 2: return zero_pad_;
151 ValueNode_IntString::link_count()const
157 ValueNode_IntString::link_name(int i)const
159 assert(i>=0 && i<link_count());
163 case 0: return "int";
164 case 1: return "width";
165 case 2: return "zero_pad";
171 ValueNode_IntString::link_local_name(int i)const
173 assert(i>=0 && i<link_count());
177 case 0: return _("Int");
178 case 1: return _("Width");
179 case 2: return _("Zero Padded");
185 ValueNode_IntString::get_link_index_from_name(const String &name)const
187 if (name=="int") return 0;
188 if (name=="width") return 1;
189 if (name=="zero_pad") return 2;
191 throw Exception::BadLinkName(name);
195 ValueNode_IntString::check_type(ValueBase::Type type)
198 type==ValueBase::TYPE_STRING;