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 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 /* === S T A R T =========================================================== */
26 #ifndef __SYNFIG_VALUE_H
27 #define __SYNFIG_VALUE_H
29 /* === H E A D E R S ======================================================= */
38 #include <ETL/trivial>
41 //#include "gradient.h"
42 #include "blinepoint.h"
43 #include "exception.h"
46 #include <OpenEXR/half.h>
49 #ifndef SYNFIG_NO_ANGLE
53 #include <ETL/ref_count>
55 /* === M A C R O S ========================================================= */
57 /* === T Y P E D E F S ===================================================== */
59 /* === C L A S S E S & S T R U C T S ======================================= */
77 -- ** -- T Y P E S -----------------------------------------------------------
85 TYPE_NIL=0, //!< Represents an empty value
89 TYPE_ANGLE, //!< Angle
91 // All types after this point are larger than 32 bits
96 // All types after this point are larger than 64 bits
98 TYPE_VECTOR, //!< Vector
99 TYPE_COLOR, //!< Color
100 TYPE_SEGMENT, //!< Segment
101 TYPE_BLINEPOINT, //!< BLinePoint
103 // All types after this point require construction/destruction
106 TYPE_CANVAS, //!< Canvas
107 TYPE_STRING, //!< String
108 TYPE_GRADIENT, //!< Color Gradient
110 TYPE_END //!< Not a valid type, used for sanity checks
115 typedef std::vector<ValueBase> list_type;
118 -- ** -- D A T A -------------------------------------------------------------
125 etl::reference_counter ref_count;
129 -- ** -- C O N S T R U C T O R S -----------------------------------
138 template <typename T>
139 ValueBase(const T &x, bool loop_=false):
140 type(TYPE_NIL),data(0),ref_count(0),loop_(loop_)
150 -- ** -- O P E R A T O R S ---------------------------------------------------
156 template <class T> ValueBase& operator=(const T& x)
157 { set(x); return *this; }
160 ValueBase& operator=(const ValueBase& x);
163 bool operator==(const ValueBase& rhs)const;
166 bool operator!=(const ValueBase& rhs)const { return !operator==(rhs); }
168 //! Constant index operator for when value is of type TYPE_LIST
169 const ValueBase &operator[](int index)const
170 { assert(type==TYPE_LIST); assert(index>0); return get_list()[index]; }
173 -- ** -- M E M B E R F U N C T I O N S -------------------------------------
182 bool get_loop()const { return loop_; }
185 void set_loop(bool x) { loop_=x; }
191 Type get_contained_type()const;
193 //! Returns true if the contained value is defined and valid.
194 bool is_valid()const;
196 //! Returns a string containing the name of the type
197 String type_name()const { return type_name(type); }
199 //! Returns the type of the contained value
200 const Type & get_type()const { return type; }
202 //! Checks the type of the parameter against itself. Returns true if they are of the same type.
203 template <class T> bool
204 same_type_as(const T &x)const
206 const Type testtype(get_type(x));
208 return same_type_as(testtype);
211 bool same_type_as(const Type testtype)const
213 if(testtype==type)return true;
214 if( (type==TYPE_REAL || type==TYPE_TIME) &&
215 (testtype==TYPE_REAL || testtype==TYPE_TIME) )
221 // === GET MEMBERS ========================================================
222 template <typename T>
223 const T &get(const T& x)const
225 assert(is_valid() && same_type_as(x));
226 return *static_cast<const T*>(data);
228 float get(const float &)const { return get(Real()); }
229 etl::loose_handle<Canvas> get(const etl::handle<Canvas>&)const
230 { return get(etl::loose_handle<Canvas>()); }
231 etl::loose_handle<Canvas> get(Canvas*)const
232 { return get(etl::loose_handle<Canvas>()); }
233 const char* get(const char*)const;
234 const list_type& get_list()const { return get(list_type()); }
235 // ========================================================================
239 // === PUT MEMBERS ========================================================
240 template <typename T>
243 assert(same_type_as(*x));
244 *x=*static_cast<const T*>(data);
246 void put(float* x)const { *x=get(Real()); }
247 void put(char** x)const;
248 // ========================================================================
252 // === SET MEMBERS ========================================================
253 template <typename T> void set(const T& x) { _set(x); }
254 void set(const float &x) { _set(Real(x)); }
255 void set(const list_type &x);
256 void set(const char* x);
258 void set(etl::loose_handle<Canvas> x);
259 void set(etl::handle<Canvas> x);
260 template <class T> void set(const std::vector<T> &x)
261 { _set(list_type(x.begin(),x.end())); }
262 template <class T> void set(const std::list<T> &x)
263 { _set(list_type(x.begin(),x.end())); }
264 // ========================================================================
268 -- ** -- S T A T I C F U N C T I O N S -------------------------------------
273 //! Returns a string containing the name of the given Type
274 static String type_name(Type id);
276 //! Returns a the corresponding Type of the described type
277 static Type ident_type(const String &str);
280 // === GET TYPE MEMBERS ===================================================
281 static const Type get_type(bool) { return TYPE_BOOL; }
282 static const Type get_type(int) { return TYPE_INTEGER; }
283 static const Type get_type(const Time&) { return TYPE_TIME; }
284 static const Type get_type(const Real&) { return TYPE_REAL; }
285 static const Type get_type(const float&) { return TYPE_REAL; }
286 static const Type get_type(const Vector&) { return TYPE_VECTOR; }
287 static const Type get_type(const Color&) { return TYPE_COLOR; }
288 static const Type get_type(const Segment&) { return TYPE_SEGMENT; }
289 static const Type get_type(const BLinePoint&) { return TYPE_BLINEPOINT; }
290 static const Type get_type(const String&) { return TYPE_STRING; }
291 static const Type get_type(const Gradient&) { return TYPE_GRADIENT; }
292 static const Type get_type(Canvas*) { return TYPE_CANVAS; }
293 static const Type get_type(const etl::handle<Canvas>&)
294 { return TYPE_CANVAS; }
295 static const Type get_type(const etl::loose_handle<Canvas>&)
296 { return TYPE_CANVAS; }
297 static const Type get_type(const list_type&) { return TYPE_LIST; }
298 template <class T> static const Type get_type(const std::vector<T> &/*x*/)
299 { return TYPE_LIST; }
300 template <class T> static const Type get_type(const std::list<T> &/*x*/)
301 { return TYPE_LIST; }
302 // ========================================================================
306 -- ** -- C A S T O P E R A T O R S -----------------------------------------
311 operator const list_type&()const { return get_list(); }
312 //operator const Color&()const { return get(Color()); }
313 //operator const Real&()const { return get(Real()); }
314 //operator const Time&()const { return get(Time()); }
316 operator const Vector&()const { return get(Vector()); }
317 operator const BLinePoint&()const { return get(BLinePoint()); }
318 //operator const int&()const { return get(int()); }
319 //operator const String&()const { return get(String()); }
320 //operator const char *()const { return get(String()).c_str(); }
321 operator const Segment&()const { return get(Segment()); }
325 -- ** -- O T H E R -----------------------------------------------------------
331 half get(const half &)const { return get(Real()); }
332 void put(half*x)const { *x=get(Real()); }
333 void set(const half &x) { _set(Real(x)); }
334 static const Type get_type(const half&) { return TYPE_REAL; }
335 operator half()const { return get(Real()); }
338 #ifndef SYNFIG_NO_ANGLE
339 operator const Angle&()const { return get(Angle()); }
340 static const Type get_type(const Angle&) { return TYPE_ANGLE; }
344 operator std::list<T>()const
346 assert(type==TYPE_LIST);
347 std::list<T> ret(get_list().begin(),get_list().end());
351 operator std::vector<T>()const
353 assert(type==TYPE_LIST);
354 std::vector<T> ret(get_list().begin(),get_list().end());
361 template <typename T> void
364 const Type newtype(get_type(x));
366 assert(newtype!=TYPE_NIL);
370 if(ref_count.unique())
372 *reinterpret_cast<T*>(data)=x;
383 }; // END of class ValueBase
390 class Value : public ValueBase
393 Value(const T &x):ValueBase(x)
397 Value(const ValueBase &x):ValueBase(x)
399 if(!x.same_type_as(T()))
400 throw Exception::BadType("Value<T>(ValueBase): Type Mismatch");
407 T get()const { return ValueBase::get(T()); }
409 void put(T* x)const { ValueBase::put(x); }
411 void set(const T& x) { ValueBase::operator=(x); }
413 Value<T>& operator=(const T& x) { set(x); return *this; }
415 Value<T>& operator=(const Value<T>& x) { return ValueBase::operator=(x); }
417 Value<T>& operator=(const ValueBase& x)
419 if(!x.same_type_as(T()))
420 throw Exception::BadType("Value<T>(ValueBase): Type Mismatch");
421 return ValueBase::operator=(x);
424 }; // END of class Value
428 class Value< std::list<CT> > : public ValueBase
431 Value(const T &x):ValueBase(x)
434 Value(const ValueBase &x):ValueBase(x)
436 if(!x.same_type_as(T()))
437 throw Exception::BadType("Value<T>(ValueBase): Type Mismatch");
443 T get()const { return ValueBase::get(T()); }
445 void put(T* x)const { ValueBase::put(x); }
447 void set(const T& x) { ValueBase::operator=(x); }
449 Value<T>& operator=(const T& x) { set(x); return *this; }
451 Value<T>& operator=(const Value<T>& x) { return ValueBase::operator=(x); }
453 Value<T>& operator=(const ValueBase& x)
455 if(!x.same_type_as(T()))
456 throw Exception::BadType("Value<T>(ValueBase): Type Mismatch");
457 return ValueBase::operator=(x);
460 }; // END of class Value
463 }; // END of namespace synfig
465 /* === E N D =============================================================== */