1 /* === S Y N F I G ========================================================= */
3 ** \brief Template Header
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 ======================================================= */
35 #include <ETL/stringf>
48 using namespace synfig;
52 /* === M A C R O S ========================================================= */
54 /* === G L O B A L S ======================================================= */
56 /* === P R O C E D U R E S ================================================= */
58 /* === M E T H O D S ======================================================= */
60 ValueBase::ValueBase():type(TYPE_NIL),data(0),ref_count(0),loop_(0)
64 ValueBase::ValueBase(Type x):
71 case TYPE_BOOL: data=static_cast<void*>(new bool()); break;
72 case TYPE_INTEGER: data=static_cast<void*>(new int()); break;
73 case TYPE_ANGLE: data=static_cast<void*>(new Angle()); break;
74 case TYPE_VECTOR: data=static_cast<void*>(new Vector()); break;
75 case TYPE_TIME: data=static_cast<void*>(new Time()); break;
76 case TYPE_REAL: data=static_cast<void*>(new Real()); break;
77 case TYPE_COLOR: data=static_cast<void*>(new Color()); break;
78 case TYPE_SEGMENT: data=static_cast<void*>(new Segment()); break;
79 case TYPE_BLINEPOINT: data=static_cast<void*>(new BLinePoint()); break;
80 case TYPE_LIST: data=static_cast<void*>(new list_type()); break;
81 case TYPE_STRING: data=static_cast<void*>(new String()); break;
82 case TYPE_GRADIENT: data=static_cast<void*>(new Gradient()); break;
83 case TYPE_CANVAS: data=static_cast<void*>(new etl::handle<Canvas>()); break;
88 ValueBase::~ValueBase()
94 ValueBase::get(const char*)const
96 return get(String()).c_str();
100 ValueBase::set(Canvas* x)
103 if(x && x->is_inline())
105 _set(etl::handle<Canvas>(x));
109 _set(etl::loose_handle<Canvas>(x));
115 ValueBase::set(etl::loose_handle<Canvas> x)
118 if(x && x->is_inline())
119 _set(etl::handle<Canvas>(x));
121 _set(etl::loose_handle<Canvas>(x));
126 ValueBase::set(etl::handle<Canvas> x)
129 if(x && x->is_inline())
130 _set(etl::handle<Canvas>(x));
132 _set(etl::loose_handle<Canvas>(x));
137 ValueBase::set(const list_type &x)
143 ValueBase::set(const char* x)
149 ValueBase::set(char* x)
155 ValueBase::is_valid()const
157 return type>TYPE_NIL && type<TYPE_END && ref_count;
161 ValueBase::empty()const
163 return !is_valid() || ((type==TYPE_LIST)?get_list().empty():false);
167 ValueBase::get_contained_type()const
169 if(type!=TYPE_LIST || empty())
171 return get_list().front().get_type();
175 ValueBase::operator=(const ValueBase& x)
182 ref_count=x.ref_count;
191 if(ref_count.unique() && data)
195 case TYPE_BOOL: delete static_cast<bool*>(data); break;
196 case TYPE_INTEGER: delete static_cast<int*>(data); break;
197 case TYPE_ANGLE: delete static_cast<Angle*>(data); break;
198 case TYPE_TIME: delete static_cast<Time*>(data); break;
199 case TYPE_REAL: delete static_cast<Real*>(data); break;
200 case TYPE_VECTOR: delete static_cast<Vector*>(data); break;
201 case TYPE_COLOR: delete static_cast<Color*>(data); break;
202 case TYPE_SEGMENT: delete static_cast<Segment*>(data); break;
203 case TYPE_BLINEPOINT: delete static_cast<BLinePoint*>(data); break;
204 case TYPE_LIST: delete static_cast<list_type*>(data); break;
207 etl::handle<Canvas> canvas(get(etl::loose_handle<Canvas>()));
208 if(canvas && canvas->is_inline())
209 delete static_cast<etl::handle<Canvas>*>(data);
211 delete static_cast<etl::loose_handle<Canvas>*>(data);
214 case TYPE_STRING: delete static_cast<String*>(data); break;
215 case TYPE_GRADIENT: delete static_cast<Gradient*>(data); break;
228 ValueBase::type_name(Type id)
230 // don't internationalize these type names - they're using in .sif files
233 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
234 case TYPE_BOOL: return N_("bool");
235 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
236 case TYPE_INTEGER: return N_("integer");
237 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
238 case TYPE_ANGLE: return N_("angle");
239 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
240 case TYPE_TIME: return N_("time");
241 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
242 case TYPE_REAL: return N_("real");
243 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
244 case TYPE_VECTOR: return N_("vector");
245 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
246 case TYPE_COLOR: return N_("color");
247 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
248 case TYPE_SEGMENT: return N_("segment");
249 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
250 case TYPE_BLINEPOINT: return N_("bline_point");
251 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
252 case TYPE_LIST: return N_("list");
253 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
254 case TYPE_CANVAS: return N_("canvas");
255 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
256 case TYPE_STRING: return N_("string");
257 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
258 case TYPE_GRADIENT: return N_("gradient");
259 /* TRANSLATORS: this is the name of a type -- see http://synfig.org/Types */
260 case TYPE_NIL: return N_("nil");
264 synfig::warning("Encountered unknown ValueBase with an Type of %d",id);
270 ValueBase::type_local_name(Type id)
272 return dgettext("synfig",type_name(id).c_str());
276 ValueBase::ident_type(const String &str)
279 str=="null") return TYPE_NIL;
280 else if(str=="time" ||
281 str==_("time")) return TYPE_TIME;
282 else if(str=="real" ||
284 str==_("real")) return TYPE_REAL;
285 else if(str=="integer" ||
287 str==_("integer")) return TYPE_INTEGER;
288 else if(str=="bool" ||
289 str==_("bool")) return TYPE_BOOL;
290 else if(str=="angle" ||
293 str=="rotations") return TYPE_ANGLE;
294 else if(str=="vector" ||
295 str=="point") return TYPE_VECTOR;
296 else if(str=="color") return TYPE_COLOR;
297 else if(str=="string") return TYPE_STRING;
298 else if(str=="canvas") return TYPE_CANVAS;
299 else if(str=="list") return TYPE_LIST;
300 else if(str=="segment") return TYPE_SEGMENT;
301 else if(str=="gradient") return TYPE_GRADIENT;
302 else if(str=="bline_point" ||
303 str=="blinepoint") return TYPE_BLINEPOINT;
309 ValueBase::operator==(const ValueBase& rhs)const
311 if(get_type()!=rhs.get_type())
318 case TYPE_TIME: return get(Time()).is_equal(rhs.get(Time()));
319 case TYPE_REAL: return abs(get(Real())-rhs.get(Real()))<=0.00000000000001;
320 case TYPE_INTEGER: return get(int())==rhs.get(int());
321 case TYPE_BOOL: return get(bool())==rhs.get(bool());
322 case TYPE_ANGLE: return get(Angle())==rhs.get(Angle());
323 case TYPE_VECTOR: return get(Vector()).is_equal_to(rhs.get(Vector()));
324 case TYPE_COLOR: return get(Color())==rhs.get(Color());
325 case TYPE_STRING: return get(String())==rhs.get(String());
326 case TYPE_CANVAS: return get(Canvas::LooseHandle())==rhs.get(Canvas::LooseHandle());
327 case TYPE_LIST: return get_list()==rhs.get_list();
328 case TYPE_SEGMENT: // return get(Segment())==rhs.get(Segment());
329 case TYPE_GRADIENT: // return get(Gradient())==rhs.get(Gradient());
330 case TYPE_BLINEPOINT: // return get(BLinePoint())==rhs.get(BLinePoint());
332 default: return false;