67e28d02badca852131774685b9fb7da720863aa
[synfig.git] / synfig-studio / trunk / src / gtkmm / duck.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file duck.cpp
3 **      \brief Template File
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2007 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 "duck.h"
34 #include <ETL/misc>
35
36 #include "general.h"
37
38 #endif
39
40 /* === U S I N G =========================================================== */
41
42 using namespace std;
43 using namespace etl;
44 using namespace synfig;
45 using namespace studio;
46
47 /* === M A C R O S ========================================================= */
48
49 /* === G L O B A L S ======================================================= */
50
51 int studio::Duck::duck_count(0);
52
53 struct _DuckCounter
54 {
55         static int counter;
56         ~_DuckCounter()
57         {
58                 if(counter)
59                         synfig::error("%d ducks not yet deleted!",counter);
60         }
61 } _duck_counter;
62
63 int _DuckCounter::counter(0);
64
65
66 /* === P R O C E D U R E S ================================================= */
67
68 /* === M E T H O D S ======================================================= */
69
70 Duck::Duck():
71         rotations(synfig::Angle::deg(0)),
72         origin(0,0),
73         scalar(1),
74         editable(false),
75         radius_(false),
76         tangent_(false),
77         hover_(false)
78 { duck_count++; _DuckCounter::counter++; }
79
80 Duck::Duck(const synfig::Point &point):
81         type_(TYPE_NONE),
82         point(point),
83         rotations(synfig::Angle::deg(0)),
84         origin(0,0),
85         scalar(1),
86         guid_(0),
87         editable(false),
88         radius_(false),
89         tangent_(false)
90 { duck_count++; _DuckCounter::counter++;}
91
92 Duck::Duck(const synfig::Point &point,const synfig::Point &origin):
93         point(point),
94         rotations(synfig::Angle::deg(0)),
95         origin(origin),
96         scalar(1),
97         guid_(0),
98         editable(false),
99         radius_(true),
100         tangent_(false)
101 { duck_count++; _DuckCounter::counter++;}
102
103 Duck::~Duck() { duck_count--; _DuckCounter::counter--;}
104
105 synfig::GUID
106 Duck::get_data_guid()const
107 {
108         if(value_desc_.is_value_node())
109                 return value_desc_.get_value_node()->get_guid();
110         return GUID::hasher(get_name());
111 }
112
113 void
114 Duck::set_name(const synfig::String &x)
115 {
116         name=x;
117         if(guid_==GUID::zero())
118         {
119                 guid_=GUID::hasher(name);
120         }
121 }
122
123
124 bool
125 Duck::operator==(const Duck &rhs)const
126 {
127         if(this==&rhs)
128                 return true;
129         return
130                 name==rhs.name &&
131                 scalar==rhs.scalar &&
132                 type_==rhs.type_ &&
133                 transform_stack_.size()==rhs.transform_stack_.size();
134                 //true;
135                 //(origin_duck?*origin_duck==*rhs.origin_duck:origin==rhs.origin) &&
136                 //(shared_point?*shared_point==*rhs.shared_point:point==rhs.point) ;
137 }
138
139 synfig::Point
140 Duck::get_trans_point()const
141 {
142         return transform_stack_.perform(get_sub_trans_point());
143 }
144
145 void
146 Duck::set_trans_point(const synfig::Point &x)
147 {
148         set_sub_trans_point(transform_stack_.unperform(x));
149 }
150
151 //! Sets the origin point.
152 void
153 Duck::set_origin(const synfig::Point &x)
154 {
155         origin=x; origin_duck=0;
156 }
157
158 //! Sets the origin point as another duck
159 void
160 Duck::set_origin(const etl::handle<Duck> &x)
161 {
162         origin_duck=x;
163 }
164
165 //! Retrieves the origin location
166 synfig::Point
167 Duck::get_origin()const
168 {
169         return origin_duck?origin_duck->get_point():origin;
170 }
171
172 //! Retrieves the origin duck
173 const etl::handle<Duck> &
174 Duck::get_origin_duck() const
175 {
176         return origin_duck;
177 }
178
179 //! Retrieves the origin location
180 synfig::Point
181 Duck::get_trans_origin()const
182 {
183         return transform_stack_.perform(get_sub_trans_origin());
184 }
185
186 synfig::Point
187 Duck::get_sub_trans_point()const
188 {
189         return get_point()*get_scalar()+get_sub_trans_origin();
190 }
191
192 void
193 Duck::set_sub_trans_point(const synfig::Point &x)
194 {
195         if (get_type() == Duck::TYPE_TANGENT ||
196                 get_type() == Duck::TYPE_ANGLE)
197         {
198                 Angle old_angle = get_point().angle();
199                 set_point((x-get_sub_trans_origin())/get_scalar());
200                 Angle change = get_point().angle() - old_angle;
201                 while (change < Angle::deg(-180)) change += Angle::deg(360);
202                 while (change > Angle::deg(180)) change -= Angle::deg(360);
203                 int old_quarters = round_to_int(Angle::deg(rotations).get()/90);
204                 rotations += change;
205                 int new_quarters = round_to_int(Angle::deg(rotations).get()/90);
206                 if (old_quarters != new_quarters)
207                         synfig::info("rotation: %.2f turns", new_quarters/4.0);
208         }
209         else
210                 set_point((x-get_sub_trans_origin())/get_scalar());
211 }
212
213 synfig::Point
214 Duck::get_sub_trans_origin()const
215 {
216         return origin_duck?origin_duck->get_sub_trans_point():origin;
217 }