1 /* === S Y N F I G ========================================================= */
3 ** \brief Template Header
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
10 ** This package is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU General Public License as
12 ** published by the Free Software Foundation; either version 2 of
13 ** the License, or (at your option) any later version.
15 ** This package is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ** General Public License for more details.
21 /* ========================================================================= */
23 /* === S T A R T =========================================================== */
25 #ifndef __SYNFIG_DUCKMATIC_DUCK_H
26 #define __SYNFIG_DUCKMATIC_DUCK_H
28 /* === H E A D E R S ======================================================= */
32 #include <ETL/smart_ptr>
35 #include <synfig/vector.h>
36 #include <synfig/string.h>
37 #include <synfig/real.h>
38 #include <sigc++/signal.h>
39 #include <sigc++/object.h>
40 #include <synfig/time.h>
41 #include <ETL/smart_ptr>
42 #include <synfigapp/value_desc.h>
43 #include <synfig/transform.h>
45 /* === M A C R O S ========================================================= */
51 #ifndef __STRING_HASH__
52 #define __STRING_HASH__
55 # ifdef FUNCTIONAL_HASH_ON_STRING
56 HASH_MAP_NAMESPACE::hash<synfig::String> hasher_;
57 # else // FUNCTIONAL_HASH_ON_STRING
58 HASH_MAP_NAMESPACE::hash<const char*> hasher_;
59 # endif // FUNCTIONAL_HASH_ON_STRING
61 size_t operator()(const synfig::String& x)const
63 # ifdef FUNCTIONAL_HASH_ON_STRING
65 # else // FUNCTIONAL_HASH_ON_STRING
66 return hasher_(x.c_str());
67 # endif // FUNCTIONAL_HASH_ON_STRING
77 /* === T Y P E D E F S ===================================================== */
79 /* === C L A S S E S & S T R U C T S ======================================= */
86 class Duck : public etl::shared_object
88 friend class Duckmatic;
94 TYPE_POSITION = (1<<0),
95 TYPE_TANGENT = (1<<1),
103 TYPE_DEFAULT = 0xdefadefa
106 typedef etl::handle<Duck> Handle;
107 typedef etl::loose_handle<Duck> LooseHandle;
111 sigc::signal<bool,const synfig::Point &> signal_edited_;
112 sigc::signal<bool,const synfig::Angle &> signal_edited_angle_;
113 sigc::signal<void> signal_user_click_[5];
118 synfig::Angle rotations;
120 etl::smart_ptr<synfig::Point> shared_point;
122 synfig::Point origin;
126 etl::handle<Duck> origin_duck;
128 etl::handle<Duck> connect_duck;
129 etl::handle<Duck> box_duck;
138 synfig::TransformStack transform_stack_;
140 synfigapp::ValueDesc value_desc_;
142 static int duck_count;
145 Duck(const synfig::Point &point);
146 Duck(const synfig::Point &point,const synfig::Point &origin);
149 sigc::signal<bool,const synfig::Point &> &signal_edited() { return signal_edited_; }
150 sigc::signal<bool,const synfig::Angle &> &signal_edited_angle() { return signal_edited_angle_; }
151 sigc::signal<void> &signal_user_click(int i=0) { assert(i>=0); assert(i<5); return signal_user_click_[i]; }
153 void set_guid(const synfig::GUID& x) { guid_=x; }
154 const synfig::GUID& get_guid()const { return guid_; }
156 synfig::GUID get_data_guid()const;
158 //! Changes the editable flag. If set, the duck will not be able to be moved.
159 void set_editable(bool x) { editable=x; }
161 //! Retrieves the status of the editable flag
162 bool get_editable()const { return editable; }
165 void set_tangent(bool x) { tangent_=x; type_=TYPE_TANGENT; }
168 bool get_tangent()const { return tangent_; }
170 void set_connect_duck(const etl::handle<Duck>& x) { connect_duck=x; }
171 void set_box_duck(const etl::handle<Duck>& x) { box_duck=x; }
173 const etl::handle<Duck>& get_connect_duck()const { return connect_duck; }
174 const etl::handle<Duck>& get_box_duck()const { return box_duck; }
176 void set_value_desc(synfigapp::ValueDesc x) { value_desc_=x; }
178 synfigapp::ValueDesc& get_value_desc() { return value_desc_; }
180 void set_transform_stack(const synfig::TransformStack& x) { transform_stack_=x; }
182 const synfig::TransformStack& get_transform_stack()const { return transform_stack_; }
185 void set_type(Type x) { type_=x; }
188 Type get_type()const { return type_; }
190 //! Sets the scalar multiplier for the duck with respect to the origin
191 void set_scalar(synfig::Vector::value_type n) { scalar=n; }
193 //! Retrieves the scalar value
194 synfig::Vector::value_type get_scalar()const { return scalar; }
196 void set_shared_point(const etl::smart_ptr<synfig::Point>&x) { shared_point=x; }
198 //! Sets the location of the duck with respect to the origin
199 void set_point(const synfig::Point &x) { (shared_point?*shared_point:point)=x; }
201 //! Returns the location of the duck
202 synfig::Point get_point()const { return shared_point?*shared_point:point; }
204 synfig::Angle get_rotations()const { return rotations; };
206 synfig::Point get_trans_point()const;
208 void set_trans_point(const synfig::Point &x);
210 synfig::Point get_sub_trans_point()const;
211 void set_sub_trans_point(const synfig::Point &x);
212 synfig::Point get_sub_trans_origin()const;
214 //! Sets the origin point.
215 void set_origin(const synfig::Point &x);
217 //! Sets the origin point as another duck
218 void set_origin(const etl::handle<Duck> &x);
220 //! Retrieves the origin location
221 synfig::Point get_origin()const;
223 //! Retrieves the origin duck
224 const etl::handle<Duck> & get_origin_duck() const;
226 //! Retrieves the origin location
227 synfig::Point get_trans_origin()const;
229 void set_radius(bool r) { radius_=r; }
230 bool is_radius()const { return radius_; }
232 //! Sets the name of the duck
233 void set_name(const synfig::String &x);
235 //! Retrieves the name of the duck
236 synfig::String get_name()const { return name; }
238 bool operator==(const Duck &rhs)const;
239 }; // END of class Duck
243 operator|(Duck::Type lhs, const Duck::Type rhs)
244 { return static_cast<Duck::Type>(int(lhs)|int(rhs)); }
248 operator-(Duck::Type lhs, const Duck::Type rhs)
249 { return static_cast<Duck::Type>(int(lhs)&~int(rhs)); }
252 operator|=(Duck::Type& lhs, const Duck::Type rhs)
253 { *reinterpret_cast<int*>(&lhs)|=int(rhs); return lhs; }
256 operator&(const Duck::Type lhs, const Duck::Type rhs)
257 { return static_cast<Duck::Type>(int(lhs)&int(rhs)); }
259 class DuckMap : public
261 HASH_MAP_CLASS<synfig::GUID,etl::handle<studio::Duck>,synfig::GUIDHash>
263 typedef HASH_MAP_CLASS<synfig::GUID,etl::handle<studio::Duck>,synfig::GUIDHash> PARENT_TYPE;
265 std::map<synfig::GUID,etl::handle<studio::Duck> >
267 typedef std::map<synfig::GUID,etl::handle<studio::Duck> > PARENT_TYPE;
270 void insert(const Duck::Handle& x) { operator[](x->get_guid())=x; }
271 }; // END of class DuckMap
273 typedef std::list<Duck::Handle> DuckList;
275 }; // END of namespace studio
277 /* === E N D =============================================================== */