Use LinkableValueNode members functions when possible in the derived valuenodes.
[synfig.git] / synfig-core / src / synfig / valuenode_integer.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file valuenode_integer.cpp
3 **      \brief Implementation of the "Integer" 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_integer.h"
34 #include "valuenode_const.h"
35 #include "general.h"
36 #include <ETL/misc>
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_Integer::ValueNode_Integer(const ValueBase::Type &x):
55         LinkableValueNode(x)
56 {
57 }
58
59 ValueNode_Integer::ValueNode_Integer(const ValueBase &x):
60         LinkableValueNode(x.get_type())
61 {
62         Vocab ret(get_children_vocab());
63         set_children_vocab(ret);
64         switch(x.get_type())
65         {
66         case ValueBase::TYPE_ANGLE:
67                 set_link("integer", ValueNode_Const::create(round_to_int(Angle::deg(x.get(Angle())).get())));
68                 break;
69         case ValueBase::TYPE_BOOL:
70                 set_link("integer", ValueNode_Const::create(int(x.get(bool()))));
71                 break;
72         case ValueBase::TYPE_REAL:
73                 set_link("integer", ValueNode_Const::create(round_to_int(x.get(Real()))));
74                 break;
75         case ValueBase::TYPE_TIME:
76                 set_link("integer", ValueNode_Const::create(round_to_int(x.get(Time()))));
77                 break;
78         default:
79                 assert(0);
80                 throw runtime_error(get_local_name()+_(":Bad type ")+ValueBase::type_local_name(x.get_type()));
81         }
82 }
83
84 ValueNode_Integer*
85 ValueNode_Integer::create(const ValueBase &x)
86 {
87         return new ValueNode_Integer(x);
88 }
89
90 LinkableValueNode*
91 ValueNode_Integer::create_new()const
92 {
93         return new ValueNode_Integer(get_type());
94 }
95
96 ValueNode_Integer::~ValueNode_Integer()
97 {
98         unlink_all();
99 }
100
101 bool
102 ValueNode_Integer::set_link_vfunc(int i,ValueNode::Handle value)
103 {
104         assert(i>=0 && i<link_count());
105
106         switch(i)
107         {
108         case 0: CHECK_TYPE_AND_SET_VALUE(integer_, get_type());
109         }
110         return false;
111 }
112
113 ValueNode::LooseHandle
114 ValueNode_Integer::get_link_vfunc(int i)const
115 {
116         assert(i>=0 && i<link_count());
117
118         if(i==0) return integer_;
119
120         return 0;
121 }
122
123 ValueBase
124 ValueNode_Integer::operator()(Time t)const
125 {
126         if (getenv("SYNFIG_DEBUG_VALUENODE_OPERATORS"))
127                 printf("%s:%d operator()\n", __FILE__, __LINE__);
128
129         int integer = (*integer_)(t).get(int());
130
131         switch (get_type())
132         {
133         case ValueBase::TYPE_ANGLE:
134                 return Angle::deg(integer);
135         case ValueBase::TYPE_BOOL:
136                 return bool(integer);
137         case ValueBase::TYPE_REAL:
138                 return Real(integer);
139         case ValueBase::TYPE_TIME:
140                 return Time(integer);
141         default:
142                 assert(0);
143                 throw runtime_error(get_local_name()+_(":Bad type ")+ValueBase::type_local_name(get_type()));
144         }
145 }
146
147 String
148 ValueNode_Integer::get_name()const
149 {
150         return "fromint";
151 }
152
153 String
154 ValueNode_Integer::get_local_name()const
155 {
156         return _("From Integer");
157 }
158
159 // don't show this to the user at the moment - maybe it's not very useful
160 bool
161 ValueNode_Integer::check_type(ValueBase::Type type __attribute__ ((unused)))
162 {
163         return false;
164 //      return
165 //              type==ValueBase::TYPE_ANGLE ||
166 //              type==ValueBase::TYPE_BOOL  ||
167 //              type==ValueBase::TYPE_REAL  ||
168 //              type==ValueBase::TYPE_TIME;
169 }
170
171 LinkableValueNode::Vocab
172 ValueNode_Integer::get_children_vocab_vfunc()const
173 {
174         if(children_vocab.size())
175                 return children_vocab;
176
177         LinkableValueNode::Vocab ret;
178
179         ret.push_back(ParamDesc(ValueBase(),"integer")
180                 .set_local_name(_("Integer"))
181                 .set_description(_("The integer value to be converted"))
182         );
183
184         return ret;
185 }