Release 0.61.08
[synfig.git] / synfig-studio / tags / 0.61.08 / src / gtkmm / state_smoothmove.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file state_smoothmove.cpp
3 **      \brief Template File
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
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.
14 **
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.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === H E A D E R S ======================================================= */
24
25 #ifdef USING_PCH
26 #       include "pch.h"
27 #else
28 #ifdef HAVE_CONFIG_H
29 #       include <config.h>
30 #endif
31
32 #include <gtkmm/dialog.h>
33 #include <gtkmm/entry.h>
34
35 #include <synfig/valuenode_dynamiclist.h>
36 #include <synfigapp/action_system.h>
37
38 #include "state_smoothmove.h"
39 #include "canvasview.h"
40 #include "workarea.h"
41 #include "app.h"
42
43 #include <synfigapp/action.h>
44 #include "event_mouse.h"
45 #include "event_layerclick.h"
46 #include "toolbox.h"
47 #include "dialog_tooloptions.h"
48 #include <gtkmm/optionmenu.h>
49 #include "duck.h"
50 #include "onemoment.h"
51 #include <synfigapp/main.h>
52
53 #include "general.h"
54
55 #endif
56
57 /* === U S I N G =========================================================== */
58
59 using namespace std;
60 using namespace etl;
61 using namespace synfig;
62 using namespace studio;
63
64 /* === M A C R O S ========================================================= */
65
66 /* === G L O B A L S ======================================================= */
67
68 StateSmoothMove studio::state_smooth_move;
69
70 /* === C L A S S E S & S T R U C T S ======================================= */
71
72 class DuckDrag_SmoothMove : public DuckDrag_Base
73 {
74         float radius;
75
76         synfig::Vector last_translate_;
77         synfig::Vector drag_offset_;
78         synfig::Vector snap;
79
80         std::vector<synfig::Vector> last_;
81         std::vector<synfig::Vector> positions;
82
83 public:
84         DuckDrag_SmoothMove();
85         void begin_duck_drag(Duckmatic* duckmatic, const synfig::Vector& begin);
86         bool end_duck_drag(Duckmatic* duckmatic);
87         void duck_drag(Duckmatic* duckmatic, const synfig::Vector& vector);
88
89         void set_radius(float x) { radius=x; }
90         float get_radius()const { return radius; }
91 };
92
93
94 class studio::StateSmoothMove_Context : public sigc::trackable
95 {
96         etl::handle<CanvasView> canvas_view_;
97
98         //Duckmatic::Push duckmatic_push;
99
100         synfigapp::Settings& settings;
101
102         etl::handle<DuckDrag_SmoothMove> duck_dragger_;
103
104         Gtk::Table options_table;
105
106         Gtk::Adjustment  adj_radius;
107         Gtk::SpinButton  spin_radius;
108
109         float pressure;
110
111 public:
112         float get_radius()const { return adj_radius.get_value(); }
113         void set_radius(float x) { return adj_radius.set_value(x); }
114
115         void refresh_radius() { duck_dragger_->set_radius(get_radius()*pressure); }
116
117         Smach::event_result event_stop_handler(const Smach::event& x);
118
119         Smach::event_result event_refresh_tool_options(const Smach::event& x);
120
121         void refresh_tool_options();
122
123         StateSmoothMove_Context(CanvasView* canvas_view);
124
125         ~StateSmoothMove_Context();
126
127         const etl::handle<CanvasView>& get_canvas_view()const{return canvas_view_;}
128         etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const{return canvas_view_->canvas_interface();}
129         synfig::Canvas::Handle get_canvas()const{return canvas_view_->get_canvas();}
130         WorkArea * get_work_area()const{return canvas_view_->get_work_area();}
131
132         void load_settings();
133         void save_settings();
134 };      // END of class StateSmoothMove_Context
135
136 /* === M E T H O D S ======================================================= */
137
138 StateSmoothMove::StateSmoothMove():
139         Smach::state<StateSmoothMove_Context>("smooth_move")
140 {
141         insert(event_def(EVENT_REFRESH_TOOL_OPTIONS,&StateSmoothMove_Context::event_refresh_tool_options));
142 }
143
144 StateSmoothMove::~StateSmoothMove()
145 {
146 }
147
148 void
149 StateSmoothMove_Context::load_settings()
150 {
151         String value;
152
153         if(settings.get_value("smooth_move.radius",value))
154                 set_radius(atof(value.c_str()));
155         else
156                 set_radius(1.0f);
157 }
158
159 void
160 StateSmoothMove_Context::save_settings()
161 {
162         settings.set_value("smooth_move.radius",strprintf("%f",get_radius()));
163 }
164
165 StateSmoothMove_Context::StateSmoothMove_Context(CanvasView* canvas_view):
166         canvas_view_(canvas_view),
167 //      duckmatic_push(get_work_area()),
168         settings(synfigapp::Main::get_selected_input_device()->settings()),
169         duck_dragger_(new DuckDrag_SmoothMove()),
170         adj_radius(1,0,100000,0.01,0.1),
171         spin_radius(adj_radius,0.1,3)
172 {
173         pressure=1.0f;
174
175         // Set up the tool options dialog
176         //options_table.attach(*manage(new Gtk::Label(_("SmoothMove Tool"))), 0, 2, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
177
178         options_table.attach(*manage(new Gtk::Label(_("Radius"))), 0, 2, 1, 2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
179         options_table.attach(spin_radius, 0, 2, 2, 3, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
180
181         spin_radius.signal_value_changed().connect(sigc::mem_fun(*this,&StateSmoothMove_Context::refresh_radius));
182
183         options_table.show_all();
184         refresh_tool_options();
185         //App::dialog_tool_options->set_widget(options_table);
186         App::dialog_tool_options->present();
187
188         get_work_area()->set_allow_layer_clicks(true);
189         get_work_area()->set_duck_dragger(duck_dragger_);
190
191         App::toolbox->refresh();
192
193 //      get_canvas_view()->work_area->set_cursor(Gdk::CROSSHAIR);
194         get_canvas_view()->work_area->reset_cursor();
195
196         load_settings();
197 }
198
199 void
200 StateSmoothMove_Context::refresh_tool_options()
201 {
202         App::dialog_tool_options->clear();
203         App::dialog_tool_options->set_widget(options_table);
204         App::dialog_tool_options->set_local_name(_("Smooth Move"));
205         App::dialog_tool_options->set_name("smooth_move");
206 }
207
208 Smach::event_result
209 StateSmoothMove_Context::event_refresh_tool_options(const Smach::event& /*x*/)
210 {
211         refresh_tool_options();
212         return Smach::RESULT_ACCEPT;
213 }
214
215 StateSmoothMove_Context::~StateSmoothMove_Context()
216 {
217         save_settings();
218
219         get_work_area()->clear_duck_dragger();
220         get_canvas_view()->work_area->reset_cursor();
221
222         App::dialog_tool_options->clear();
223
224         App::toolbox->refresh();
225 }
226
227
228
229
230 DuckDrag_SmoothMove::DuckDrag_SmoothMove():radius(1.0f)
231 {
232 }
233
234 void
235 DuckDrag_SmoothMove::begin_duck_drag(Duckmatic* duckmatic, const synfig::Vector& offset)
236 {
237         last_translate_=Vector(0,0);
238                 drag_offset_=duckmatic->find_duck(offset)->get_trans_point();
239
240                 //snap=drag_offset-duckmatic->snap_point_to_grid(drag_offset);
241                 //snap=offset-drag_offset_;
242                 snap=Vector(0,0);
243
244         last_.clear();
245         positions.clear();
246         const DuckList selected_ducks(duckmatic->get_selected_ducks());
247         DuckList::const_iterator iter;
248         int i;
249         for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
250         {
251                 last_.push_back(Vector(0,0));
252                 positions.push_back((*iter)->get_trans_point());
253         }
254 }
255
256 void
257 DuckDrag_SmoothMove::duck_drag(Duckmatic* duckmatic, const synfig::Vector& vector)
258 {
259         const DuckList selected_ducks(duckmatic->get_selected_ducks());
260         DuckList::const_iterator iter;
261         synfig::Vector vect(duckmatic->snap_point_to_grid(vector)-drag_offset_+snap);
262
263         int i;
264
265         // process vertex and position ducks first
266         for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
267         {
268                 // skip this duck if it is NOT a vertex or a position
269                 if (((*iter)->get_type() != Duck::TYPE_VERTEX &&
270                          (*iter)->get_type() != Duck::TYPE_POSITION))
271                         continue;
272                 Point p(positions[i]);
273
274                 float dist(1.0f-(p-drag_offset_).mag()/get_radius());
275                 if(dist<0)
276                         dist=0;
277
278                 last_[i]=vect*dist;
279                 (*iter)->set_trans_point(p+last_[i]);
280         }
281
282         // then process non vertex and non position ducks
283         for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
284         {
285                 // skip this duck if it IS a vertex or a position
286                 if (!((*iter)->get_type() != Duck::TYPE_VERTEX &&
287                          (*iter)->get_type() != Duck::TYPE_POSITION))
288                         continue;
289                 Point p(positions[i]);
290
291                 float dist(1.0f-(p-drag_offset_).mag()/get_radius());
292                 if(dist<0)
293                         dist=0;
294
295                 last_[i]=vect*dist;
296                 (*iter)->set_trans_point(p+last_[i]);
297         }
298
299         last_translate_=vect;
300         //snap=Vector(0,0);
301 }
302
303 bool
304 DuckDrag_SmoothMove::end_duck_drag(Duckmatic* duckmatic)
305 {
306         //synfig::info("end_duck_drag(): Diff= %f",last_translate_.mag());
307         if(last_translate_.mag()>0.0001)
308         {
309                 const DuckList selected_ducks(duckmatic->get_selected_ducks());
310                 DuckList::const_iterator iter;
311
312                 int i;
313
314                 smart_ptr<OneMoment> wait;if(selected_ducks.size()>20)wait.spawn();
315
316                 for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
317                 {
318                         if(last_[i].mag()>0.0001)
319                                 if(!(*iter)->signal_edited()((*iter)->get_point()))
320                                 {
321                                         throw String("Bad Move");
322                                 }
323                 }
324                 //duckmatic->get_selected_ducks()=new_set;
325                 //duckmatic->refresh_selected_ducks();
326                 return true;
327         }
328         else
329         {
330                 duckmatic->signal_user_click_selected_ducks(0);
331                 return false;
332         }
333 }