Use LinkableValueNode members functions when possible in the derived valuenodes.
[synfig.git] / synfig-core / src / synfig / valuenode_realstring.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file valuenode_realstring.cpp
3 **      \brief Implementation of the "RealString" 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 "valuenode_realstring.h"
34 #include "valuenode_const.h"
35 #include "canvas.h"
36 #include "general.h"
37
38 #endif
39
40 /* === U S I N G =========================================================== */
41
42 using namespace std;
43 using namespace etl;
44 using namespace synfig;
45
46 /* === M A C R O S ========================================================= */
47
48 /* === G L O B A L S ======================================================= */
49
50 /* === P R O C E D U R E S ================================================= */
51
52 /* === M E T H O D S ======================================================= */
53
54 ValueNode_RealString::ValueNode_RealString(const ValueBase &value):
55         LinkableValueNode(value.get_type())
56 {
57         Vocab ret(get_children_vocab());
58         set_children_vocab(ret);
59         switch(value.get_type())
60         {
61         case ValueBase::TYPE_STRING:
62                 set_link("real",ValueNode_Const::create(Real(0)));
63                 set_link("width",ValueNode_Const::create(int(0)));
64                 set_link("precision",ValueNode_Const::create(int(3)));
65                 set_link("zero_pad",ValueNode_Const::create(bool(false)));
66                 break;
67         default:
68                 throw Exception::BadType(ValueBase::type_local_name(value.get_type()));
69         }
70 }
71
72 LinkableValueNode*
73 ValueNode_RealString::create_new()const
74 {
75         return new ValueNode_RealString(get_type());
76 }
77
78 ValueNode_RealString*
79 ValueNode_RealString::create(const ValueBase &x)
80 {
81         return new ValueNode_RealString(x);
82 }
83
84 ValueNode_RealString::~ValueNode_RealString()
85 {
86         unlink_all();
87 }
88
89 ValueBase
90 ValueNode_RealString::operator()(Time t)const
91 {
92         if (getenv("SYNFIG_DEBUG_VALUENODE_OPERATORS"))
93                 printf("%s:%d operator()\n", __FILE__, __LINE__);
94
95         Real real((*real_)(t).get(Real()));
96         int width((*width_)(t).get(int()));
97         int precision((*precision_)(t).get(int()));
98         int zero_pad((*zero_pad_)(t).get(bool()));
99
100         switch (get_type())
101         {
102         case ValueBase::TYPE_STRING:
103                 return strprintf(strprintf("%%%s%d.%df",
104                                                                    zero_pad ? "0" : "",
105                                                                    width,
106                                                                    precision).c_str(), real);
107         default:
108                 break;
109         }
110
111         assert(0);
112         return ValueBase();
113 }
114
115 String
116 ValueNode_RealString::get_name()const
117 {
118         return "realstring";
119 }
120
121 String
122 ValueNode_RealString::get_local_name()const
123 {
124         return _("Real String");
125 }
126
127 bool
128 ValueNode_RealString::set_link_vfunc(int i,ValueNode::Handle value)
129 {
130         assert(i>=0 && i<link_count());
131
132         switch(i)
133         {
134         case 0: CHECK_TYPE_AND_SET_VALUE(real_, ValueBase::TYPE_REAL);
135         case 1: CHECK_TYPE_AND_SET_VALUE(width_, ValueBase::TYPE_INTEGER);
136         case 2: CHECK_TYPE_AND_SET_VALUE(precision_, ValueBase::TYPE_INTEGER);
137         case 3: CHECK_TYPE_AND_SET_VALUE(zero_pad_, ValueBase::TYPE_BOOL);
138         }
139         return false;
140 }
141
142 ValueNode::LooseHandle
143 ValueNode_RealString::get_link_vfunc(int i)const
144 {
145         assert(i>=0 && i<link_count());
146
147         switch(i)
148         {
149         case 0: return real_;
150         case 1: return width_;
151         case 2: return precision_;
152         case 3: return zero_pad_;
153         }
154
155         return 0;
156 }
157
158 bool
159 ValueNode_RealString::check_type(ValueBase::Type type)
160 {
161         return
162                 type==ValueBase::TYPE_STRING;
163 }
164
165 LinkableValueNode::Vocab
166 ValueNode_RealString::get_children_vocab_vfunc()const
167 {
168         if(children_vocab.size())
169                 return children_vocab;
170
171         LinkableValueNode::Vocab ret;
172
173         ret.push_back(ParamDesc(ValueBase(),"real")
174                 .set_local_name(_("Real"))
175                 .set_description(_("Value to convert to string"))
176         );
177
178         ret.push_back(ParamDesc(ValueBase(),"width")
179                 .set_local_name(_("Width"))
180                 .set_description(_("Width of the string"))
181         );
182
183         ret.push_back(ParamDesc(ValueBase(),"precision")
184                 .set_local_name(_("Precision"))
185                 .set_description(_("Number of decimal places"))
186         );
187
188         ret.push_back(ParamDesc(ValueBase(),"zero_pad")
189                 .set_local_name(_("Zero Padded"))
190                 .set_description(_("When checked, the string is left filled with zeros to match the width"))
191         );
192
193
194         return ret;
195 }