12b3a9cf7ad10a2081a15b1d4c8737defd775cb2
[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         switch(x.get_type())
63         {
64         case ValueBase::TYPE_ANGLE:
65                 set_link("integer", ValueNode_Const::create(round_to_int(Angle::deg(x.get(Angle())).get())));
66                 break;
67         case ValueBase::TYPE_BOOL:
68                 set_link("integer", ValueNode_Const::create(int(x.get(bool()))));
69                 break;
70         case ValueBase::TYPE_REAL:
71                 set_link("integer", ValueNode_Const::create(round_to_int(x.get(Real()))));
72                 break;
73         case ValueBase::TYPE_TIME:
74                 set_link("integer", ValueNode_Const::create(round_to_int(x.get(Time()))));
75                 break;
76         default:
77                 assert(0);
78                 throw runtime_error(get_local_name()+_(":Bad type ")+ValueBase::type_local_name(x.get_type()));
79         }
80 }
81
82 ValueNode_Integer*
83 ValueNode_Integer::create(const ValueBase &x)
84 {
85         return new ValueNode_Integer(x);
86 }
87
88 LinkableValueNode*
89 ValueNode_Integer::create_new()const
90 {
91         return new ValueNode_Integer(get_type());
92 }
93
94 ValueNode_Integer::~ValueNode_Integer()
95 {
96         unlink_all();
97 }
98
99 bool
100 ValueNode_Integer::set_link_vfunc(int i,ValueNode::Handle value)
101 {
102         assert(i>=0 && i<link_count());
103
104         switch(i)
105         {
106         case 0: CHECK_TYPE_AND_SET_VALUE(integer_, get_type());
107         }
108         return false;
109 }
110
111 ValueNode::LooseHandle
112 ValueNode_Integer::get_link_vfunc(int i)const
113 {
114         assert(i>=0 && i<link_count());
115
116         if(i==0) return integer_;
117
118         return 0;
119 }
120
121 int
122 ValueNode_Integer::link_count()const
123 {
124         return 1;
125 }
126
127 String
128 ValueNode_Integer::link_local_name(int i)const
129 {
130         assert(i>=0 && i<link_count());
131
132         if(i==0) return _("Integer");
133         return String();
134 }
135
136 String
137 ValueNode_Integer::link_name(int i)const
138 {
139         assert(i>=0 && i<link_count());
140
141         if(i==0) return "integer";
142         return String();
143 }
144
145 int
146 ValueNode_Integer::get_link_index_from_name(const String &name)const
147 {
148         if(name=="integer") return 0;
149
150         throw Exception::BadLinkName(name);
151 }
152
153 ValueBase
154 ValueNode_Integer::operator()(Time t)const
155 {
156         if (getenv("SYNFIG_DEBUG_VALUENODE_OPERATORS"))
157                 printf("%s:%d operator()\n", __FILE__, __LINE__);
158
159         int integer = (*integer_)(t).get(int());
160
161         switch (get_type())
162         {
163         case ValueBase::TYPE_ANGLE:
164                 return Angle::deg(integer);
165         case ValueBase::TYPE_BOOL:
166                 return bool(integer);
167         case ValueBase::TYPE_REAL:
168                 return Real(integer);
169         case ValueBase::TYPE_TIME:
170                 return Time(integer);
171         default:
172                 assert(0);
173                 throw runtime_error(get_local_name()+_(":Bad type ")+ValueBase::type_local_name(get_type()));
174         }
175 }
176
177 String
178 ValueNode_Integer::get_name()const
179 {
180         return "fromint";
181 }
182
183 String
184 ValueNode_Integer::get_local_name()const
185 {
186         return _("From Integer");
187 }
188
189 // don't show this to the user at the moment - maybe it's not very useful
190 bool
191 ValueNode_Integer::check_type(ValueBase::Type type __attribute__ ((unused)))
192 {
193         return false;
194 //      return
195 //              type==ValueBase::TYPE_ANGLE ||
196 //              type==ValueBase::TYPE_BOOL  ||
197 //              type==ValueBase::TYPE_REAL  ||
198 //              type==ValueBase::TYPE_TIME;
199 }
200
201 LinkableValueNode::Vocab
202 ValueNode_Integer::get_children_vocab_vfunc()const
203 {
204         LinkableValueNode::Vocab ret;
205
206         ret.push_back(ParamDesc(ValueBase(),"integer")
207                 .set_local_name(_("Integer"))
208                 .set_description(_("The integer value to be converted"))
209         );
210
211         return ret;
212 }