This isn't finished, and has lots of debugging code still in, but it's working better...
[synfig.git] / synfig-studio / trunk / src / gtkmm / state_draw.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file state_draw.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 <gtkmm/dialog.h>
34 #include <gtkmm/entry.h>
35
36 #include <synfig/valuenode_dynamiclist.h>
37
38 #include "state_draw.h"
39 #include "state_stroke.h"
40 #include "canvasview.h"
41 #include "workarea.h"
42 #include "app.h"
43 #include <synfig/valuenode_bline.h>
44 #include <synfig/valuenode_composite.h>
45 #include <ETL/hermite>
46 #include <ETL/calculus>
47 #include <utility>
48 #include "event_mouse.h"
49 #include "event_layerclick.h"
50 #include "toolbox.h"
51
52 #include <synfigapp/blineconvert.h>
53 #include <synfigapp/main.h>
54
55 #include <ETL/gaussian>
56 #include "dialog_tooloptions.h"
57
58 #include <gtkmm/table.h>
59 #include <gtkmm/label.h>
60 #include <gtkmm/button.h>
61 #include <gtkmm/checkbutton.h>
62 #include <gtkmm/scale.h>
63 #include <sigc++/connection.h>
64
65 #endif
66
67 /* === U S I N G =========================================================== */
68
69 using namespace std;
70 using namespace etl;
71 using namespace synfig;
72 using namespace studio;
73
74 /* === M A C R O S ========================================================= */
75
76 /* === G L O B A L S ======================================================= */
77
78 StateDraw studio::state_draw;
79
80 /* === C L A S S E S & S T R U C T S ======================================= */
81
82 class studio::StateDraw_Context : public sigc::trackable
83 {
84         typedef etl::smart_ptr<std::list<synfig::Point> > StrokeData;
85         typedef etl::smart_ptr<std::list<synfig::Real> > WidthData;
86
87         typedef list< pair<StrokeData,WidthData> > StrokeQueue;
88
89         StrokeQueue stroke_queue;
90
91
92         etl::handle<CanvasView> canvas_view_;
93         CanvasView::IsWorking is_working;
94
95         bool prev_table_status;
96         bool loop_;
97         bool prev_workarea_layer_status_;
98
99         int nested;
100         SigC::Connection process_queue_connection;
101
102         ValueNode_BLine::Handle last_stroke;
103         synfig::String last_stroke_id;
104
105         Gtk::Menu menu;
106
107         //Duckmatic::Push duckmatic_push;
108
109         std::list< etl::smart_ptr<std::list<synfig::Point> > > stroke_list;
110
111         void refresh_ducks();
112
113         Duckmatic::Type old_duckmask;
114
115         void fill_last_stroke();
116
117         Smach::event_result new_bline(std::list<synfig::BLinePoint> bline,bool loop_bline_flag,float radius);
118
119         Smach::event_result new_region(std::list<synfig::BLinePoint> bline,synfig::Real radius);
120
121         Smach::event_result extend_bline_from_begin(ValueNode_BLine::Handle value_node,std::list<synfig::BLinePoint> bline,bool complete_loop);
122         Smach::event_result extend_bline_from_end(ValueNode_BLine::Handle value_node,std::list<synfig::BLinePoint> bline,bool complete_loop);
123         void reverse_bline(std::list<synfig::BLinePoint> &bline);
124
125         synfigapp::Settings& settings;
126
127         Gtk::Table options_table;
128         Gtk::Entry entry_id;
129         Gtk::CheckButton checkbutton_pressure_width;
130         Gtk::CheckButton checkbutton_round_ends;
131         Gtk::CheckButton checkbutton_auto_loop;   // whether to loop new strokes which start and end in the same place
132         Gtk::CheckButton checkbutton_auto_extend; // whether to extend existing lines
133         Gtk::CheckButton checkbutton_auto_link;   // whether to link new ducks to existing ducks
134         Gtk::CheckButton checkbutton_region;      // whether to create regions
135         Gtk::CheckButton checkbutton_outline;     // whether to create outlines
136         Gtk::CheckButton checkbutton_auto_export;
137         Gtk::Button button_fill_last_stroke;
138
139         //pressure spinner and such
140         Gtk::Adjustment  adj_min_pressure;
141         Gtk::SpinButton  spin_min_pressure;
142         Gtk::CheckButton check_min_pressure;
143
144         Gtk::Adjustment  adj_feather;
145         Gtk::SpinButton  spin_feather;
146
147         Gtk::Adjustment  adj_globalthres;
148         Gtk::SpinButton  spin_globalthres;
149
150         Gtk::Adjustment  adj_localthres;
151         Gtk::CheckButton check_localerror;
152         void UpdateErrorBox();  //switches the stuff if need be :)
153
154         //Added by Adrian - data drive HOOOOO
155         synfigapp::BLineConverter blineconv;
156
157 public:
158         synfig::String get_id()const { return entry_id.get_text(); }
159         void set_id(const synfig::String& x) { return entry_id.set_text(x); }
160
161         bool get_pressure_width_flag()const { return checkbutton_pressure_width.get_active(); }
162         void set_pressure_width_flag(bool x) { return checkbutton_pressure_width.set_active(x); }
163
164         bool get_auto_loop_flag()const { return checkbutton_auto_loop.get_active(); }
165         void set_auto_loop_flag(bool x) { return checkbutton_auto_loop.set_active(x); }
166
167         bool get_auto_extend_flag()const { return checkbutton_auto_extend.get_active(); }
168         void set_auto_extend_flag(bool x) { return checkbutton_auto_extend.set_active(x); }
169
170         bool get_auto_link_flag()const { return checkbutton_auto_link.get_active(); }
171         void set_auto_link_flag(bool x) { return checkbutton_auto_link.set_active(x); }
172
173         bool get_region_flag()const { return checkbutton_region.get_active(); }
174         void set_region_flag(bool x) { return checkbutton_region.set_active(x); }
175
176         bool get_outline_flag()const { return checkbutton_outline.get_active(); }
177         void set_outline_flag(bool x) { return checkbutton_outline.set_active(x); }
178
179         bool get_auto_export_flag()const { return checkbutton_auto_export.get_active(); }
180         void set_auto_export_flag(bool x) { return checkbutton_auto_export.set_active(x); }
181
182         Real get_min_pressure() const { return adj_min_pressure.get_value(); }
183         void set_min_pressure(Real x) { return adj_min_pressure.set_value(x); }
184
185         Real get_feather() const { return adj_feather.get_value(); }
186         void set_feather(Real x) { return adj_feather.set_value(x); }
187
188         Real get_gthres() const { return adj_globalthres.get_value(); }
189         void set_gthres(Real x) { return adj_globalthres.set_value(x); }
190
191         Real get_lthres() const { return adj_localthres.get_value(); }
192         void set_lthres(Real x) { return adj_localthres.set_value(x); }
193
194         bool get_local_error_flag() const { return check_localerror.get_active(); }
195         void set_local_error_flag(bool x) { check_localerror.set_active(x); }
196
197         bool get_min_pressure_flag()const { return check_min_pressure.get_active(); }
198         void set_min_pressure_flag(bool x) { check_min_pressure.set_active(x); }
199
200         void load_settings();
201         void save_settings();
202         void increment_id();
203
204         Smach::event_result event_stop_handler(const Smach::event& x);
205
206         Smach::event_result event_refresh_handler(const Smach::event& x);
207
208         Smach::event_result event_mouse_down_handler(const Smach::event& x);
209
210         Smach::event_result event_stroke(const Smach::event& x);
211         Smach::event_result event_refresh_tool_options(const Smach::event& x);
212         void refresh_tool_options();
213
214         Smach::event_result process_stroke(StrokeData stroke_data, WidthData width_data, bool region_flag=false);
215
216         bool process_queue();
217
218
219         StateDraw_Context(CanvasView* canvas_view);
220
221         ~StateDraw_Context();
222
223         const etl::handle<CanvasView>& get_canvas_view()const{return canvas_view_;}
224         etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const{return canvas_view_->canvas_interface();}
225         synfig::Time get_time()const { return get_canvas_interface()->get_time(); }
226         synfig::Canvas::Handle get_canvas()const{return canvas_view_->get_canvas();}
227         WorkArea * get_work_area()const{return canvas_view_->get_work_area();}
228
229         //void on_user_click(synfig::Point point);
230
231 //      bool run();
232 };      // END of class StateDraw_Context
233
234
235 /* === M E T H O D S ======================================================= */
236
237 StateDraw::StateDraw():
238         Smach::state<StateDraw_Context>("draw")
239 {
240         insert(event_def(EVENT_STOP,&StateDraw_Context::event_stop_handler));
241         insert(event_def(EVENT_REFRESH,&StateDraw_Context::event_refresh_handler));
242         insert(event_def(EVENT_WORKAREA_MOUSE_BUTTON_DOWN,&StateDraw_Context::event_mouse_down_handler));
243         insert(event_def(EVENT_WORKAREA_STROKE,&StateDraw_Context::event_stroke));
244         insert(event_def(EVENT_REFRESH_TOOL_OPTIONS,&StateDraw_Context::event_refresh_tool_options));
245 }
246
247 StateDraw::~StateDraw()
248 {
249 }
250
251
252 void
253 StateDraw_Context::load_settings()
254 {
255         String value;
256
257         if(settings.get_value("draw.id",value))
258                 set_id(value);
259         else
260                 set_id("NewDrawing");
261
262         if(settings.get_value("draw.pressure_width",value) && value=="0")
263                 set_pressure_width_flag(false);
264         else
265                 set_pressure_width_flag(true);
266
267         if(settings.get_value("draw.auto_loop",value) && value=="0")
268                 set_auto_loop_flag(false);
269         else
270                 set_auto_loop_flag(true);
271
272         if(settings.get_value("draw.auto_extend",value) && value=="0")
273                 set_auto_extend_flag(false);
274         else
275                 set_auto_extend_flag(true);
276
277         if(settings.get_value("draw.auto_link",value) && value=="0")
278                 set_auto_link_flag(false);
279         else
280                 set_auto_link_flag(true);
281
282         if(settings.get_value("draw.region",value) && value=="0")
283                 set_region_flag(false);
284         else
285                 set_region_flag(true);
286
287         if(settings.get_value("draw.outline",value) && value=="0")
288                 set_outline_flag(false);
289         else
290                 set_outline_flag(true);
291
292         if(settings.get_value("draw.auto_export",value) && value=="1")
293                 set_auto_export_flag(true);
294         else
295                 set_auto_export_flag(false);
296
297         if(settings.get_value("draw.min_pressure_on",value) && value=="0")
298                 set_min_pressure_flag(false);
299         else
300                 set_min_pressure_flag(true);
301
302         if(settings.get_value("draw.min_pressure",value))
303         {
304                 Real n = atof(value.c_str());
305                 set_min_pressure(n);
306         }else
307                 set_min_pressure(0);
308
309         if(settings.get_value("draw.feather",value))
310         {
311                 Real n = atof(value.c_str());
312                 set_feather(n);
313         }else
314                 set_feather(0);
315
316         if(settings.get_value("draw.gthreshold",value))
317         {
318                 Real n = atof(value.c_str());
319                 set_gthres(n);
320         }
321
322         if(settings.get_value("draw.lthreshold",value))
323         {
324                 Real n = atof(value.c_str());
325                 set_lthres(n);
326         }
327
328         if(settings.get_value("draw.localize",value) && value == "1")
329                 set_local_error_flag(true);
330         else
331                 set_local_error_flag(false);
332 }
333
334 void
335 StateDraw_Context::save_settings()
336 {
337         settings.set_value("draw.id",get_id().c_str());
338         settings.set_value("draw.pressure_width",get_pressure_width_flag()?"1":"0");
339         settings.set_value("draw.auto_loop",get_auto_loop_flag()?"1":"0");
340         settings.set_value("draw.auto_extend",get_auto_extend_flag()?"1":"0");
341         settings.set_value("draw.auto_link",get_auto_link_flag()?"1":"0");
342         settings.set_value("draw.region",get_region_flag()?"1":"0");
343         settings.set_value("draw.outline",get_outline_flag()?"1":"0");
344         settings.set_value("draw.auto_export",get_auto_export_flag()?"1":"0");
345         settings.set_value("draw.min_pressure",strprintf("%f",get_min_pressure()));
346         settings.set_value("draw.feather",strprintf("%f",get_feather()));
347         settings.set_value("draw.min_pressure_on",get_min_pressure_flag()?"1":"0");
348         settings.set_value("draw.gthreshold",strprintf("%f",get_gthres()));
349         settings.set_value("draw.lthreshold",strprintf("%f",get_lthres()));
350         settings.set_value("draw.localize",get_local_error_flag()?"1":"0");
351 }
352
353 void
354 StateDraw_Context::increment_id()
355 {
356         String id(get_id());
357         int number=1;
358         int digits=0;
359
360         if(id.empty())
361                 id="Drawing";
362
363         // If there is a number
364         // already at the end of the
365         // id, then remove it.
366         if(id[id.size()-1]<='9' && id[id.size()-1]>='0')
367         {
368                 // figure out how many digits it is
369                 for(digits=0;(int)id.size()-1>=digits && id[id.size()-1-digits]<='9' && id[id.size()-1-digits]>='0';digits++)while(false);
370
371                 String str_number;
372                 str_number=String(id,id.size()-digits,id.size());
373                 id=String(id,0,id.size()-digits);
374                 synfig::info("---------------- \"%s\"",str_number.c_str());
375
376                 number=atoi(str_number.c_str());
377         }
378         else
379         {
380                 number=1;
381                 digits=3;
382         }
383
384         number++;
385
386         // Add the number back onto the id
387         {
388                 const String format(strprintf("%%0%dd",digits));
389                 id+=strprintf(format.c_str(),number);
390         }
391
392         // Set the ID
393         set_id(id);
394 }
395
396 StateDraw_Context::StateDraw_Context(CanvasView* canvas_view):
397         canvas_view_(canvas_view),
398         is_working(*canvas_view),
399         loop_(false),
400         prev_workarea_layer_status_(get_work_area()->get_allow_layer_clicks()),
401         settings(synfigapp::Main::get_selected_input_device()->settings()),
402         entry_id(),
403         checkbutton_pressure_width(_("Pressure Width")),
404         checkbutton_auto_loop(_("Auto Loop")),
405         checkbutton_auto_extend(_("Auto Extend")),
406         checkbutton_auto_link(_("Auto Link")),
407         checkbutton_region(_("Create Region")),
408         checkbutton_outline(_("Create Outline")),
409         checkbutton_auto_export(_("Auto Export")),
410         button_fill_last_stroke(_("Fill Last Stroke")),
411         adj_min_pressure(0,0,1,0.01,0.1),
412         spin_min_pressure(adj_min_pressure,0.1,3),
413         check_min_pressure(_("Min Pressure")),
414         adj_feather(0,0,10000,0.01,0.1),
415         spin_feather(adj_feather,0.01,4),
416         adj_globalthres(.70f,0.01,10000,0.01,0.1),
417         spin_globalthres(adj_globalthres,0.01,3),
418         adj_localthres(20,1,100000,0.1,1),
419         check_localerror(_("LocalError"))
420
421 {
422         synfig::info("STATE SKETCH: entering state");
423
424         nested=0;
425         load_settings();
426
427         UpdateErrorBox();
428
429         //options_table.attach(*manage(new Gtk::Label(_("Draw Tool"))), 0, 2, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
430         options_table.attach(entry_id,                                                          0, 2,  1,  2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
431         options_table.attach(checkbutton_region,                                        0, 2,  2,  3, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
432         options_table.attach(checkbutton_outline,                                       0, 2,  3,  4, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
433         options_table.attach(checkbutton_auto_loop,                                     0, 2,  4,  5, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
434         options_table.attach(checkbutton_auto_extend,                           0, 2,  5,  6, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
435         options_table.attach(checkbutton_auto_link,                                     0, 2,  6,  7, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
436         options_table.attach(checkbutton_auto_export,                           0, 2,  7,  8, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
437         options_table.attach(checkbutton_pressure_width,                        0, 2,  8,  9, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
438         options_table.attach(check_localerror,                                          0, 2,  9, 10, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
439
440         options_table.attach(check_min_pressure,                                        0, 1, 10, 11, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
441         options_table.attach(spin_min_pressure,                                         1, 2, 10, 11, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
442
443         options_table.attach(*manage(new Gtk::Label(_("Smooth"))),      0, 1, 11, 12, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
444         options_table.attach(spin_globalthres,                                          1, 2, 11, 12, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
445
446         options_table.attach(*manage(new Gtk::Label(_("Feather"))), 0, 1, 12, 13, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
447         options_table.attach(spin_feather,                                                      1, 2, 12, 13, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
448
449         //options_table.attach(button_fill_last_stroke, 0, 2, 13, 14, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
450
451         button_fill_last_stroke.signal_pressed().connect(sigc::mem_fun(*this,&StateDraw_Context::fill_last_stroke));
452         check_localerror.signal_toggled().connect(sigc::mem_fun(*this,&StateDraw_Context::UpdateErrorBox));
453
454         options_table.show_all();
455         refresh_tool_options();
456         //App::dialog_tool_options->set_widget(options_table);
457         App::dialog_tool_options->present();
458
459
460         old_duckmask=get_work_area()->get_type_mask();
461         get_work_area()->set_type_mask(Duck::TYPE_ALL-Duck::TYPE_TANGENT-Duck::TYPE_WIDTH);
462
463         // Turn off layer clicking
464         get_work_area()->set_allow_layer_clicks(false);
465
466         // Turn off duck clicking
467         get_work_area()->set_allow_duck_clicks(false);
468
469         // clear out the ducks
470         //get_work_area()->clear_ducks();
471
472         // Refresh the work area
473         //get_work_area()->queue_draw();
474
475         // Hide the tables if they are showing
476         prev_table_status=get_canvas_view()->tables_are_visible();
477         //if(prev_table_status)get_canvas_view()->hide_tables();
478
479         // Disable the time bar
480         get_canvas_view()->set_sensitive_timebar(false);
481
482         // Connect a signal
483         //get_work_area()->signal_user_click().connect(sigc::mem_fun(*this,&studio::StateDraw_Context::on_user_click));
484
485         get_canvas_view()->work_area->set_cursor(Gdk::PENCIL);
486
487         App::toolbox->refresh();
488
489         refresh_ducks();
490 }
491
492
493 void StateDraw_Context::UpdateErrorBox()
494 {
495         if(get_local_error_flag())
496         {
497                 spin_globalthres.set_adjustment(adj_localthres);
498                 spin_globalthres.set_value(adj_localthres.get_value());
499                 spin_globalthres.set_increments(0.1,1);
500         }else
501         {
502                 spin_globalthres.set_adjustment(adj_globalthres);
503                 spin_globalthres.set_value(adj_globalthres.get_value());
504                 spin_globalthres.set_increments(0.01,.1);
505         }
506
507         spin_globalthres.update();
508 }
509
510 void
511 StateDraw_Context::refresh_tool_options()
512 {
513         App::dialog_tool_options->clear();
514         App::dialog_tool_options->set_widget(options_table);
515         App::dialog_tool_options->set_local_name(_("Draw Tool"));
516         App::dialog_tool_options->set_name("draw");
517
518         App::dialog_tool_options->add_button(
519                 Gtk::StockID("synfig-fill"),
520                 _("Fill Last Stroke")
521         )->signal_clicked().connect(
522                 sigc::mem_fun(
523                         *this,
524                         &StateDraw_Context::fill_last_stroke
525                 )
526         );
527
528 }
529
530 Smach::event_result
531 StateDraw_Context::event_refresh_tool_options(const Smach::event& /*x*/)
532 {
533         refresh_tool_options();
534         return Smach::RESULT_ACCEPT;
535 }
536
537 StateDraw_Context::~StateDraw_Context()
538 {
539         save_settings();
540
541         App::dialog_tool_options->clear();
542
543         get_work_area()->set_type_mask(old_duckmask);
544
545         get_canvas_view()->work_area->reset_cursor();
546
547         // Restore layer clicking
548         get_work_area()->set_allow_layer_clicks(prev_workarea_layer_status_);
549
550         // Restore duck clicking
551         get_work_area()->set_allow_duck_clicks(true);
552
553         // Enable the time bar
554         get_canvas_view()->set_sensitive_timebar(true);
555
556         // Bring back the tables if they were out before
557         if(prev_table_status)get_canvas_view()->show_tables();
558
559         // Refresh the work area
560         get_work_area()->queue_draw();
561
562         App::toolbox->refresh();
563 }
564
565 Smach::event_result
566 StateDraw_Context::event_stop_handler(const Smach::event& /*x*/)
567 {
568         throw Smach::egress_exception();
569 }
570
571 Smach::event_result
572 StateDraw_Context::event_refresh_handler(const Smach::event& /*x*/)
573 {
574         refresh_ducks();
575         return Smach::RESULT_ACCEPT;
576 }
577
578 Smach::event_result
579 StateDraw_Context::event_mouse_down_handler(const Smach::event& x)
580 {
581         const EventMouse& event(*reinterpret_cast<const EventMouse*>(&x));
582         switch(event.button)
583         {
584         case BUTTON_LEFT:
585                 {
586                         // Enter the stroke state to get the stroke
587                         get_canvas_view()->get_smach().push_state(&state_stroke);
588                         return Smach::RESULT_ACCEPT;
589                 }
590
591         case BUTTON_RIGHT: // Intercept the right-button click to short-circuit the pop-up menu
592                 return Smach::RESULT_ACCEPT;
593
594         default:
595                 return Smach::RESULT_OK;
596         }
597 }
598
599 #define SIMILAR_TANGENT_THRESHOLD       (0.2)
600
601 struct debugclass
602 {
603         synfig::String x;
604         debugclass(const synfig::String &x):x(x)
605         {
606 //              synfig::warning(">>>>>>>>>>>>>>>>>>> "+x);
607         }
608         ~debugclass()
609         {
610 //              synfig::warning("<<<<<<<<<<<<<<<<<<< "+x);
611         }
612 };
613
614 struct DepthCounter
615 {
616         int &i;
617         DepthCounter(int &i):i(i) { i++; }
618         ~DepthCounter() { i--; }
619 };
620
621 Smach::event_result
622 StateDraw_Context::event_stroke(const Smach::event& x)
623 {
624 //      debugclass debugger("StateDraw_Context::event_stroke(const Smach::event& x)");
625
626         const EventStroke& event(*reinterpret_cast<const EventStroke*>(&x));
627
628         assert(event.stroke_data);
629
630         get_work_area()->add_stroke(event.stroke_data,synfigapp::Main::get_foreground_color());
631
632         if(nested==0)
633         {
634                 DirtyTrap dirty_trap(get_work_area());
635                 Smach::event_result result;
636                 result=process_stroke(event.stroke_data,event.width_data,event.modifier&Gdk::CONTROL_MASK || event.modifier&Gdk::BUTTON2_MASK);
637                 process_queue();
638                 return result;
639         }
640
641         stroke_queue.push_back(pair<StrokeData,WidthData>(event.stroke_data,event.width_data));
642
643         return Smach::RESULT_ACCEPT;
644 }
645
646 bool
647 StateDraw_Context::process_queue()
648 {
649 //      debugclass debugger("StateDraw_Context::process_queue()");
650         if(nested)
651                 return true;
652         DepthCounter depth_counter(nested);
653         while(!stroke_queue.empty())
654         {
655                 pair<StrokeData,WidthData> front(stroke_queue.front());
656                 process_stroke(front.first,front.second);
657                 stroke_queue.pop_front();
658         }
659         return false;
660 }
661
662 Smach::event_result
663 StateDraw_Context::process_stroke(StrokeData stroke_data, WidthData width_data, bool region_flag)
664 {
665 //      debugclass debugger("StateDraw_Context::process_stroke");
666         DepthCounter depth_counter(nested);
667
668         const float radius(synfigapp::Main::get_bline_width().units(get_canvas()->rend_desc())+(abs(get_work_area()->get_pw())+abs(get_work_area()->get_ph()))*5);
669
670
671         // If we aren't using pressure width,
672         // then set all the width to 1
673         if(!get_pressure_width_flag())
674         {
675                 std::list<synfig::Real>::iterator iter;
676                 for(iter=width_data->begin();iter!=width_data->end();++iter)
677                 {
678                         *iter=1.0;
679                 }
680         }
681
682         //get_work_area()->add_stroke(event.stroke_data,synfigapp::Main::get_foreground_color());
683         //stroke_list.push_back(event.stroke_data);
684         //refresh_ducks();
685
686         std::list<synfig::BLinePoint> bline;
687         bool loop_bline_flag(false);
688
689         //Changed by Adrian - use resident class :)
690         //synfigapp::convert_stroke_to_bline(bline, *event.stroke_data,*event.width_data, synfigapp::Main::get_bline_width());
691         blineconv.width = synfigapp::Main::get_bline_width().units(get_canvas()->rend_desc());
692
693         if(get_local_error_flag())
694         {
695                 float pw = get_work_area()->get_pw();
696                 float ph = get_work_area()->get_ph();
697
698                 blineconv.pixelwidth = sqrt(pw*pw+ph*ph);
699                 blineconv.smoothness = get_lthres();
700         }else
701         {
702                 blineconv.pixelwidth = 1;
703                 blineconv.smoothness = get_gthres();
704         }
705
706         blineconv(bline,*stroke_data,*width_data);
707
708         //Postprocess to require minimum pressure
709         if(get_min_pressure_flag())
710         {
711                 synfigapp::BLineConverter::EnforceMinWidth(bline,get_min_pressure());
712         }
713
714         // If the start and end points are similar, then make them the same point
715         if(get_auto_loop_flag() &&
716            bline.size()>2&&(bline.front().get_vertex()-bline.back().get_vertex()).mag()<=radius)
717         {
718                 loop_bline_flag=true;
719                 Vector tangent;
720                 Real width(0);
721
722                 while(bline.size()>2&&(bline.front().get_vertex()-bline.back().get_vertex()).mag()<=radius)
723                 {
724                         tangent=bline.back().get_tangent1();
725                         width=bline.back().get_width();
726                         bline.pop_back();
727                 }
728
729                 if(abs(bline.front().get_tangent1().norm()*tangent.norm().perp())>SIMILAR_TANGENT_THRESHOLD)
730                 {
731                         // If the tangents are not similar, then
732                         // split the tangents
733                         bline.front().set_split_tangent_flag(true);
734                         bline.front().set_tangent1(tangent);
735                 }
736                 else
737                 {
738                         // If the tangents are similar, then set the tangent
739                         // to the average of the two
740                         bline.front().set_tangent((tangent+bline.front().get_tangent1())*0.5f);
741                 }
742
743                 // Add the widths of the two points
744                 {
745                         Real tmp_width(bline.front().get_width()+width);
746                         tmp_width=tmp_width<=1?tmp_width:1;
747                         bline.front().set_width(tmp_width);
748                 }
749         }
750
751         // If the bline only has one blinepoint, then there is nothing to do.
752         if(bline.size()<=1)
753                 return Smach::RESULT_OK;
754
755         if(region_flag)
756                 return new_region(bline,radius);
757
758         return new_bline(bline,loop_bline_flag,radius);
759 }
760
761 Smach::event_result
762 StateDraw_Context::new_bline(std::list<synfig::BLinePoint> bline,bool loop_bline_flag,float radius)
763 {
764         // Create the action group
765         synfigapp::Action::PassiveGrouper group(get_canvas_interface()->get_instance().get(),_("Sketch BLine"));
766
767         bool shift_offset = false;
768         Vector shift_offset_vector;
769         bool join_start_no_extend=false,join_finish_no_extend=false;
770         synfigapp::ValueDesc start_duck_value_desc,finish_duck_value_desc;
771         bool extend_start=false,extend_finish=false,complete_loop=false;
772         bool extend_start_join_same=false,extend_start_join_different=false;
773         bool extend_finish_join_same=false,extend_finish_join_different=false;
774         int start_duck_index = 0,finish_duck_index = 0; // initialized to keep the compiler happy; shouldn't be needed though
775         ValueNode_BLine::Handle start_duck_value_node_bline=NULL,finish_duck_value_node_bline=NULL;
776
777         // Find any ducks at the start or end that we might attach to
778         // (this used to only run if we didn't just draw a loop - ie. !loop_bline_flag
779         // but having loops auto-connect can be useful as well)
780         if(get_auto_extend_flag() || get_auto_link_flag())
781         {
782                 etl::handle<Duck> start_duck(get_work_area()->find_duck(bline.front().get_vertex(),radius,Duck::TYPE_VERTEX));
783                 etl::handle<Duck> finish_duck(get_work_area()->find_duck(bline.back().get_vertex(),radius,Duck::TYPE_VERTEX));
784
785                 // check whether the start of the new line extends an
786                 // existing line.  this is only the case if the new
787                 // line isn't a self-contained loop, and if the new
788                 // line starts at one of the ends of an existing line
789                 if(start_duck)do
790                 {
791                         if(!(start_duck_value_desc=start_duck->get_value_desc()))break;
792                         if(loop_bline_flag)break; // loops don't extend anything
793                         if(!start_duck_value_desc.parent_is_value_node())break;
794                         start_duck_index=start_duck_value_desc.get_index(); // which point on the line did we start drawing at
795                         start_duck_value_node_bline=ValueNode_BLine::Handle::cast_dynamic(start_duck_value_desc.get_parent_value_node());
796                         if(!get_auto_extend_flag())break;
797
798                         // don't extend looped blines
799                         if(start_duck_value_node_bline&&!start_duck_value_node_bline->get_loop()&&
800                            // did we start drawing at either end of the line?
801                            (start_duck_index==0||start_duck_index==start_duck_value_node_bline->link_count()-1))
802                         {
803                                 extend_start=true;
804                                 shift_offset=true;
805                                 shift_offset_vector=start_duck->get_origin();
806                         }
807                 }while(0);
808
809                 // check whether the end of the new line extends an
810                 // existing line.  this is only the case if the new
811                 // line isn't a self-contained loop, and if the new
812                 // line ends at one of the ends of an existing line
813                 if(finish_duck)do
814                 {
815                         if(!(finish_duck_value_desc=finish_duck->get_value_desc()))break;
816                         if(loop_bline_flag)break;
817                         if(!finish_duck_value_desc.parent_is_value_node())break;
818                         finish_duck_index=finish_duck_value_desc.get_index();
819                         finish_duck_value_node_bline=ValueNode_BLine::Handle::cast_dynamic(finish_duck_value_desc.get_parent_value_node());
820                         if(!get_auto_extend_flag())break;
821
822                         // don't extend looped blines
823                         if(finish_duck_value_node_bline&&!finish_duck_value_node_bline->get_loop()&&
824                            (finish_duck_index==0||finish_duck_index==finish_duck_value_node_bline->link_count()-1))
825                                 if(extend_start)
826                                 {
827                                         // we've started and finished drawing at the end of a bline.  we can't
828                                         // extend both blines, so unless we started and finished at the 2 ends
829                                         // of the same bline, only extend the one we started on
830                                         if(start_duck_value_node_bline==finish_duck_value_node_bline)
831                                                 complete_loop=extend_finish=true;
832                                 }else{
833                                         extend_finish=true;
834                                         shift_offset=true;
835                                         shift_offset_vector=finish_duck->get_origin();
836                                 }
837                 }while(0);
838
839                 // if the new line's start didn't extend an existing line,
840                 // check whether it needs to be linked to an existing duck
841                 if(!extend_start&&get_auto_link_flag()&&start_duck&&start_duck_value_desc)
842                         switch(start_duck_value_desc.get_value_type())
843                         {
844                         case synfig::ValueBase::TYPE_BLINEPOINT:
845                                 start_duck_value_desc=synfigapp::ValueDesc(LinkableValueNode::Handle::cast_dynamic(start_duck_value_desc.get_value_node()),0);
846                                 // fall through
847                         case synfig::ValueBase::TYPE_VECTOR:
848                                 if (shift_offset && shift_offset_vector != start_duck->get_origin())
849                                         break;
850                                 shift_offset = true;
851                                 shift_offset_vector = start_duck->get_origin();
852                                 get_canvas_interface()->auto_export(start_duck_value_desc);
853                                 if (extend_finish)
854                                         if(start_duck_value_node_bline&&start_duck_value_node_bline==finish_duck_value_node_bline)
855                                                 extend_finish_join_same=true;
856                                         else
857                                                 extend_finish_join_different=true;
858                                 else
859                                         join_start_no_extend=true;
860                                 // fall through
861                         default:break;
862                         }
863
864                 // if the new line's end didn't extend an existing line,
865                 // check whether it needs to be linked to an existing duck
866                 if(!extend_finish&&get_auto_link_flag()&&finish_duck&&finish_duck_value_desc)
867                         switch(finish_duck_value_desc.get_value_type())
868                         {
869                         case synfig::ValueBase::TYPE_BLINEPOINT:
870                                 finish_duck_value_desc=synfigapp::ValueDesc(LinkableValueNode::Handle::cast_dynamic(finish_duck_value_desc.get_value_node()),0);
871                                 // fall through
872                         case synfig::ValueBase::TYPE_VECTOR:
873                                 if (shift_offset && shift_offset_vector != finish_duck->get_origin())
874                                         break;
875                                 shift_offset = true;
876                                 shift_offset_vector = finish_duck->get_origin();
877                                 get_canvas_interface()->auto_export(finish_duck_value_desc);
878                                 if(extend_start)
879                                         if(finish_duck_value_node_bline&&start_duck_value_node_bline==finish_duck_value_node_bline)
880                                                 extend_start_join_same=true;
881                                         else
882                                                 extend_start_join_different=true;
883                                 else
884                                         join_finish_no_extend=true;
885                                 // fall through
886                         default:break;
887                         }
888         }
889
890         ValueNode_BLine::Handle value_node;
891         std::list<synfig::BLinePoint> trans_bline;
892
893         {
894                 std::list<synfig::BLinePoint>::iterator iter;
895                 const synfig::TransformStack& transform(get_canvas_view()->get_curr_transform_stack());
896
897                 for(iter=bline.begin();iter!=bline.end();++iter)
898                 {
899                         BLinePoint bline_point(*iter);
900                         Point new_vertex(transform.unperform(bline_point.get_vertex()));
901
902                         bline_point.set_tangent1(
903                                 transform.unperform(
904                                         bline_point.get_tangent1()+bline_point.get_vertex()
905                                 ) -new_vertex
906                         );
907
908                         bline_point.set_tangent2(
909                                 transform.unperform(
910                                         bline_point.get_tangent2()+bline_point.get_vertex()
911                                 ) -new_vertex
912                         );
913
914                         if (shift_offset)
915                                 new_vertex=new_vertex-shift_offset_vector;
916
917                         bline_point.set_vertex(new_vertex);
918
919                         trans_bline.push_back(bline_point);
920                 }
921                 value_node=ValueNode_BLine::create(synfig::ValueBase(trans_bline,loop_bline_flag));
922         }
923
924         Smach::event_result result;
925         synfig::ValueNode_DynamicList::ListEntry source;
926
927         // the new line's start extends an existing line
928         if(extend_start)
929         {
930                 int target_offset = 0;
931                 if(complete_loop)trans_bline.pop_back();
932                 trans_bline.pop_front();
933                 if(start_duck_index==0)
934                 {       // We need to reverse the BLine first.
935                         reverse_bline(trans_bline);
936                         result=extend_bline_from_begin(start_duck_value_node_bline,trans_bline,complete_loop);
937                         source=start_duck_value_node_bline->list.front();
938                         target_offset=trans_bline.size();
939                 }
940                 else
941                 {
942                         result=extend_bline_from_end(start_duck_value_node_bline,trans_bline,complete_loop);
943                         source=start_duck_value_node_bline->list.back();
944                 }
945
946                 if(extend_start_join_different)
947                         LinkableValueNode::Handle::cast_dynamic(source.value_node)->
948                                 set_link(0,finish_duck_value_desc.get_value_node());
949                 else if(extend_start_join_same)
950                         LinkableValueNode::Handle::cast_dynamic(source.value_node)->
951                                 set_link(0,synfigapp::ValueDesc(LinkableValueNode::Handle::cast_dynamic(start_duck_value_node_bline->
952                                                                                                         list[target_offset+finish_duck_index].value_node),0).get_value_node());
953                 return result;
954         }
955
956         // the new line's end extends an existing line
957         if(extend_finish)
958         {
959                 int target_offset = 0;
960                 trans_bline.pop_back();
961                 if(finish_duck_index==0)
962                 {
963                         result=extend_bline_from_begin(finish_duck_value_node_bline,trans_bline,false);
964                         source=finish_duck_value_node_bline->list.front();
965                         target_offset=trans_bline.size();
966                 }
967                 else
968                 {       // We need to reverse the BLine first.
969                         reverse_bline(trans_bline);
970                         result=extend_bline_from_end(finish_duck_value_node_bline,trans_bline,false);
971                         source=finish_duck_value_node_bline->list.back();
972                 }
973
974                 if(extend_finish_join_different)
975                         LinkableValueNode::Handle::cast_dynamic(source.value_node)->
976                                 set_link(0,start_duck_value_desc.get_value_node());
977                 else if(extend_finish_join_same)
978                         LinkableValueNode::Handle::cast_dynamic(source.value_node)->
979                                 set_link(0,synfigapp::ValueDesc(LinkableValueNode::Handle::cast_dynamic(finish_duck_value_node_bline->
980                                                                                                         list[target_offset+start_duck_index].value_node),0).get_value_node());
981                 return result;
982         }
983
984         if (join_start_no_extend)
985                 LinkableValueNode::Handle::cast_dynamic(value_node->list.front().value_node)->
986                   set_link(0,start_duck_value_desc.get_value_node());
987
988         if (join_finish_no_extend)
989                 LinkableValueNode::Handle::cast_dynamic(value_node->list.back().value_node)->
990                   set_link(0,finish_duck_value_desc.get_value_node());
991
992         if(get_auto_export_flag()) {
993                 printf("this is where we would export the new line\n");
994                 if (!get_canvas_interface()->add_value_node(value_node,get_id()))
995                 {
996                         /* it's no big deal, is it?  let's keep the shape anyway */
997                         // get_canvas_view()->get_ui_interface()->error(_("Unable to add value node"));
998                         // group.cancel();
999                         // increment_id();
1000                         // return Smach::RESULT_ERROR;
1001                 }
1002         }
1003
1004         // Create the layer
1005         {
1006                 Layer::Handle layer;
1007                 Canvas::Handle canvas(get_canvas_view()->get_canvas());
1008                 int depth(0);
1009
1010                 // we are temporarily using the layer to hold something
1011                 layer=get_canvas_view()->get_selection_manager()->get_selected_layer();
1012                 if(layer)
1013                 {
1014                         depth=layer->get_depth();
1015                         canvas=layer->get_canvas();
1016                 }
1017
1018                 //int number(synfig::UniqueID().get_uid());
1019
1020                 synfigapp::PushMode push_mode(get_canvas_interface(),synfigapp::MODE_NORMAL);
1021
1022                 // if they're both defined, we'll add the region later
1023                 if(get_outline_flag())
1024                 {
1025                         layer=get_canvas_interface()->add_layer_to("outline",canvas,depth);
1026                         layer->set_description(get_id()+_(" Outline"));
1027                 }
1028                 else
1029                 {
1030                         layer=get_canvas_interface()->add_layer_to("region",canvas,depth);
1031                         layer->set_description(get_id()+_(" Region"));
1032                 }
1033
1034                 if(get_feather())
1035                 {
1036                         layer->set_param("feather",get_feather());
1037                         get_canvas_interface()->signal_layer_param_changed()(layer,"feather");
1038                 }
1039                 assert(layer);
1040                 //layer->set_description(strprintf("Stroke %d",number));
1041                 //get_canvas_interface()->signal_layer_new_description()(layer,layer->get_description());
1042
1043                 if (shift_offset)
1044                         get_canvas_interface()->
1045                           change_value(synfigapp::ValueDesc(layer,"offset"),shift_offset_vector);
1046
1047                 synfigapp::Action::Handle action(synfigapp::Action::create("layer_param_connect"));
1048
1049                 assert(action);
1050
1051                 action->set_param("canvas",get_canvas());
1052                 action->set_param("canvas_interface",get_canvas_interface());
1053                 action->set_param("layer",layer);
1054                 if(!action->set_param("param",String("bline")))
1055                         synfig::error("LayerParamConnect didn't like \"param\"");
1056                 if(!action->set_param("value_node",ValueNode::Handle(value_node)))
1057                         synfig::error("LayerParamConnect didn't like \"value_node\"");
1058
1059                 if(!get_canvas_interface()->get_instance()->perform_action(action))
1060                 {
1061                         get_canvas_view()->get_ui_interface()->error(_("Unable to create layer"));
1062                         group.cancel();
1063                         increment_id();
1064                         //refresh_ducks();
1065                         return Smach::RESULT_ERROR;
1066                 }
1067                 get_canvas_view()->get_selection_manager()->set_selected_layer(layer);
1068                 //refresh_ducks();
1069         }
1070
1071         last_stroke=value_node;
1072         last_stroke_id=get_id();
1073
1074         if(get_outline_flag() && get_region_flag())
1075                 fill_last_stroke();
1076
1077         increment_id();
1078         return Smach::RESULT_ACCEPT;
1079 }
1080
1081 #ifdef _DEBUG
1082 static void
1083 debug_show_vertex_list(int iteration, std::list<synfigapp::ValueDesc>& vertex_list,
1084                                            std::string title, int current)
1085 {
1086         std::list<synfigapp::ValueDesc>::iterator i = vertex_list.begin();
1087         printf("\n%s\n  ----- iter %d : ", title.c_str(), iteration);
1088         int c = 0;
1089         synfig::LinkableValueNode::Handle last = 0;
1090         int start = -1;
1091         int index;
1092         int prev;
1093         int dir = 0;
1094         bool started = false;
1095         for(;i!=vertex_list.end();i++,c++)
1096         {
1097                 synfigapp::ValueDesc value_desc(*i);
1098
1099                 if (value_desc.parent_is_value_node()) {
1100                         if(value_desc.parent_is_linkable_value_node())
1101                         {
1102                                 index = value_desc.get_index();
1103                                 // printf("<%d>", index);
1104                                 if (last == synfig::LinkableValueNode::Handle::cast_reinterpret(value_desc.get_parent_value_node()))
1105                                 {
1106                                         // printf("\n%s:%d\n", __FILE__, __LINE__);
1107                                         if (start != -1)
1108                                         {
1109                                                 // printf("\n%s:%d\n", __FILE__, __LINE__);
1110                                                 if (c == current)
1111                                                 {
1112                                                         // printf("\n%s:%d\n", __FILE__, __LINE__);
1113                                                         if (dir)
1114                                                         {
1115                                                                 if (started) printf(", "); else started = true;
1116                                                                 printf("%d--%d", start, prev);
1117                                                         }
1118                                                         else
1119                                                         {
1120                                                                 if (started) printf(", "); else started = true;
1121                                                                 printf("%d", start);
1122                                                         }
1123                                                         printf(", *%d*", index);
1124                                                         start = -1;
1125                                                 }
1126                                                 else if (dir == 0)
1127                                                 {
1128                                                         // printf("\n%s:%d\n", __FILE__, __LINE__);
1129                                                         if (index == start + 1)
1130                                                         {
1131                                                                 // printf("\n%s:%d\n", __FILE__, __LINE__);
1132                                                                 dir = 1;
1133                                                                 prev = index;
1134                                                         }
1135                                                         else if (index == start - 1)
1136                                                         {
1137                                                                 // printf("\n%s:%d\n", __FILE__, __LINE__);
1138                                                                 dir = -1;
1139                                                                 prev = index;
1140                                                         }
1141                                                         else
1142                                                         {
1143                                                                 if (started) printf(", "); else started = true;
1144                                                                 printf("%d", start);
1145                                                                 start = index;
1146                                                         }
1147                                                 }
1148                                                 else if (index == prev + dir)
1149                                                 {
1150                                                         // printf("\n%s:%d\n", __FILE__, __LINE__);
1151                                                         prev = index;
1152                                                 }
1153                                                 else
1154                                                 {
1155                                                         // printf("\n%s:%d\n", __FILE__, __LINE__);
1156                                                         if (started) printf(", "); else started = true;
1157                                                         if (prev != start)
1158                                                                 printf("%d--%d", start, prev);
1159                                                         else
1160                                                                 printf("%d", start);
1161                                                         // printf("\n%s:%d\n", __FILE__, __LINE__);
1162                                                         start = index;
1163                                                         dir = 0;
1164                                                 }
1165                                         }
1166                                         else
1167                                         {
1168                                                 // printf("\n%s:%d\n", __FILE__, __LINE__);
1169                                                 if (c == current)
1170                                                 {
1171                                                         if (started) printf(", "); else started = true;
1172                                                         printf("*%d*", index);
1173                                                 }
1174                                                 else
1175                                                 {
1176                                                         // printf("\n%s:%d\n", __FILE__, __LINE__);
1177                                                         start = index;
1178                                                         dir = 0;
1179                                                 }
1180                                         }
1181                                 }
1182                                 else
1183                                 {
1184                                         // printf("\n%s:%d\n", __FILE__, __LINE__);
1185                                         if (last)
1186                                         {
1187                                                 // printf("\n%s:%d\n", __FILE__, __LINE__);
1188                                                 if (start != -1)
1189                                                 {
1190                                                         if (started) printf(", "); else started = true;
1191                                                         if (dir != 0)
1192                                                                 printf("%d--%d", start, prev);
1193                                                         else
1194                                                                 printf("%d", start);
1195                                                 }
1196                                                 // printf("\n%s:%d\n", __FILE__, __LINE__);
1197                                                 printf(") ");
1198                                         }
1199                                         // printf("\n%s:%d\n", __FILE__, __LINE__);
1200                                         last = synfig::LinkableValueNode::Handle::cast_reinterpret(value_desc.get_parent_value_node());
1201                                         printf("%d:(", synfig::LinkableValueNode::Handle::cast_reinterpret(value_desc.get_parent_value_node())->link_count());
1202                                         started = false;
1203                                         // printf("\n%s:%d\n", __FILE__, __LINE__);
1204                                         if (c == current)
1205                                         {
1206                                                 start = -1;
1207                                                 printf("*%d*", index);
1208                                         }
1209                                         else
1210                                         {
1211                                                 // printf("\n%s:%d\n", __FILE__, __LINE__);
1212                                                 start = index;
1213                                                 dir = 0;
1214                                         }
1215                                         // printf("\n%s:%d\n", __FILE__, __LINE__);
1216                                 }
1217                                 // printf("\n%s:%d\n", __FILE__, __LINE__);
1218                         }
1219                         else if (last)
1220                                 if (last) printf("?!) ");
1221                 }
1222                 else
1223                 {
1224                         last = 0;
1225                         printf("? ");
1226                 }
1227         }
1228         if (last)
1229         {
1230                 if (started) printf(", "); else started = true;
1231                 if (start != -1)
1232                         if (dir != 0)
1233                                 printf("%d--%d", start, prev);
1234                         else
1235                                 printf("%d", start);
1236                 printf(")");
1237         }
1238         printf("\n");
1239 }
1240 #else  // _DEBUG
1241 #define debug_show_vertex_list(a,b,c,d)
1242 #endif  // _DEBUG
1243
1244 Smach::event_result
1245 StateDraw_Context::new_region(std::list<synfig::BLinePoint> bline, synfig::Real radius)
1246 {
1247         // Create the action group
1248         synfigapp::Action::PassiveGrouper group(get_canvas_interface()->get_instance().get(),_("Define Region"));
1249
1250         std::list<synfigapp::ValueDesc> vertex_list;
1251
1252         printf("new_region with %d bline points\n", bline.size());
1253
1254         // First we need to come up with a rough list of
1255         // BLinePoints that we are going to be using to
1256         // define our region.
1257         {
1258                 std::list<synfig::BLinePoint>::iterator iter;
1259                 for(iter=bline.begin();iter!=bline.end();++iter)
1260                 {
1261                         etl::handle<Duck> duck(get_work_area()->find_duck(iter->get_vertex(),0,Duck::TYPE_VERTEX));
1262
1263                         if(!duck)
1264                         {
1265                                 synfig::info(__FILE__":%d: Nothing to enclose!",__LINE__);
1266                                 return Smach::RESULT_OK;
1267                         }
1268
1269                         assert(duck->get_type()==Duck::TYPE_VERTEX);
1270
1271                         synfigapp::ValueDesc value_desc(duck->get_value_desc());
1272
1273                         if(!value_desc)
1274                         {
1275                                 synfig::info(__FILE__":%d: Got a hit, but no ValueDesc on this duck",__LINE__);
1276                                 continue;
1277                         }
1278
1279                         switch(value_desc.get_value_type())
1280                         {
1281                         case synfig::ValueBase::TYPE_BLINEPOINT:
1282                                 //if(vertex_list.empty() || value_desc!=vertex_list.back())
1283                                 vertex_list.push_back(value_desc);
1284                                 assert(vertex_list.back().is_valid());
1285
1286                                 break;
1287                         default:
1288                                 break;
1289                         }
1290                 }
1291         }
1292
1293         assert(vertex_list.back().is_valid());
1294
1295         printf("vertex list with %d bline points\n", vertex_list.size());
1296
1297         // Remove any duplicates
1298         {
1299         }
1300
1301         ValueNode_BLine::Handle value_node_bline;
1302
1303         // Now we need to test for the trivial case,
1304         // which is where all of the vertices
1305         // come from one BLine.
1306         if(vertex_list.front().parent_is_linkable_value_node())
1307         {
1308                 bool trivial_case(true);
1309                 ValueNode::Handle trivial_case_value_node;
1310
1311                 trivial_case_value_node=vertex_list.front().get_parent_value_node();
1312
1313                 std::list<synfigapp::ValueDesc>::iterator iter;
1314                 for(iter=vertex_list.begin();iter!=vertex_list.end();++iter)
1315                 {
1316                         if(trivial_case_value_node!=iter->get_parent_value_node())
1317                         {
1318                                 trivial_case=false;
1319                                 break;
1320                         }
1321                 }
1322
1323                 // \todo - re-enable this code
1324                 if(trivial_case && false)
1325                 {
1326                         synfig::info("all points are on the same bline, so just fill that line");
1327                         value_node_bline=ValueNode_BLine::Handle::cast_dynamic(trivial_case_value_node);
1328
1329                         synfig::info("the line has %d vertices", value_node_bline->link_count());
1330
1331                         if(value_node_bline->link_count() <= 2)
1332                         {
1333                                 synfig::info(__FILE__":%d: Vertex list too small to make region.",__LINE__);
1334                                 return Smach::RESULT_OK;
1335                         }
1336                 }
1337         }
1338
1339         if(!value_node_bline)
1340                 if(vertex_list.size()<=2)
1341                 {
1342                         synfig::info(__FILE__":%d: Vertex list too small to make region.",__LINE__);
1343                         return Smach::RESULT_OK;
1344                 }
1345
1346         // Now we need to clean the list of vertices up
1347         // a bit. This includes inserting missing vertices
1348         // and removing extraneous ones.
1349         // We can do this in multiple passes.
1350         if(!value_node_bline)
1351         {
1352                 debug_show_vertex_list(0, vertex_list, "before shifting stuff", -1);
1353                 // rearrange the list so that the first and last node are on different blines
1354                 std::list<synfigapp::ValueDesc>::iterator iter, start;
1355                 ValueNode::Handle last_value_node = vertex_list.back().get_parent_value_node();
1356                 for(iter = vertex_list.begin(); iter!=vertex_list.end(); iter++)
1357                         if (iter->get_parent_value_node() != last_value_node)
1358                         {
1359                                 vertex_list.insert(vertex_list.end(), vertex_list.begin(), iter);
1360                                 vertex_list.erase(vertex_list.begin(), iter);
1361                                 break;
1362                         }
1363
1364                 debug_show_vertex_list(0, vertex_list, "before detecting direction and limits", -1);
1365                 // rearrange the list so that the first and last node are on different blines
1366                 iter = vertex_list.begin();
1367                 while (iter!=vertex_list.end())
1368                 {
1369                         // make a note of which bline we're looking at
1370                         ValueNode::Handle parent_value_node = iter->get_parent_value_node();
1371                         start = iter;
1372                         int points_in_line = synfig::LinkableValueNode::Handle::cast_reinterpret(parent_value_node)->link_count();
1373                         bool looped = (*parent_value_node)(get_time()).get_loop();
1374                         int this_index, last_index = iter->get_index();
1375                         int min_index = last_index, max_index = last_index;
1376                         bool whole;
1377                         int direction = 0;
1378
1379                         // printf("there are %d points in this line - first is index %d\n", points_in_line, last_index);
1380
1381                         // while we're looking at the same bline, keep going
1382                         iter++;
1383                         while (iter != vertex_list.end() && iter->get_parent_value_node() == parent_value_node)
1384                         {
1385                                 this_index = iter->get_index();
1386                                 // printf("index went from %d to %d\n", last_index, this_index);
1387                                 if (looped)
1388                                         if (this_index - last_index > points_in_line/2)
1389                                                 while (this_index - last_index > points_in_line/2)
1390                                                         this_index -= points_in_line;
1391                                         else if (last_index - this_index > points_in_line/2)
1392                                                 while (last_index - this_index > points_in_line/2)
1393                                                         this_index += points_in_line;
1394
1395                                 if (this_index < min_index) min_index = this_index;
1396                                 if (this_index > max_index) max_index = this_index;
1397
1398                                 // printf("so let's imagine index went from %d to %d\n", last_index, this_index);
1399                                 if (this_index > last_index)
1400                                         direction++;
1401                                 else if (this_index < last_index)
1402                                         direction--;
1403
1404                                 last_index = this_index;
1405                                 iter++;
1406                         }
1407
1408                         // printf("min %d and max %d\n", min_index, max_index);
1409                         whole = max_index - min_index >= points_in_line;
1410                         min_index = (min_index % points_in_line + points_in_line) % points_in_line;
1411                         max_index = (max_index % points_in_line + points_in_line) % points_in_line;
1412                         // they drew around a shape more than once - what's the start/end point?  does it matter?
1413                         if (whole) min_index = max_index = (min_index + max_index) / 2;
1414                         // printf("processed min %d max %d whole %d\n", min_index, max_index, whole);
1415
1416                         if (direction < 0)
1417                         {
1418                                 if (whole)
1419                                 {
1420                                         // printf("whole (down) (%d) ", min_index);
1421                                         for (int i = min_index; i >= 0; i--)
1422                                         {
1423                                                 // printf("%d ", i);
1424                                                 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, i));
1425                                         }
1426                                         for (int i = points_in_line - 1; i >= min_index; i--)
1427                                         {
1428                                                 // printf("%d ", i);
1429                                                 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, i));
1430                                         }
1431                                 }
1432                                 else
1433                                 {
1434                                         // printf("part (down) (%d -> %d) ", max_index, min_index);
1435                                         for (int i = max_index; i != min_index; i--)
1436                                         {
1437                                                 if (i == -1) i = points_in_line - 1;
1438                                                 // printf("%d ", i);
1439                                                 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, i));
1440                                         }
1441                                         vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, min_index));
1442                                 }
1443                         }
1444                         else
1445                         {
1446                                 if (whole)
1447                                 {
1448                                         // printf("whole (%d) ", min_index);
1449                                         for (int i = min_index; i < points_in_line; i++)
1450                                         {
1451                                                 // printf("%d ", i);
1452                                                 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, i));
1453                                         }
1454                                         for (int i = 0; i <= min_index; i++)
1455                                         {
1456                                                 // printf("%d ", i);
1457                                                 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, i));
1458                                         }
1459                                 }
1460                                 else
1461                                 {
1462                                         // printf("part (%d -> %d) ", min_index, max_index);
1463                                         for (int i = min_index; i != max_index; i++)
1464                                         {
1465                                                 if (i == points_in_line) i = 0;
1466                                                 // printf("%d ", i);
1467                                                 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, i));
1468                                         }
1469                                         vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, max_index));
1470                                 }
1471                         }
1472                         // printf("\n");
1473                         // debug_show_vertex_list(0, vertex_list, "after insert", -1);
1474                         vertex_list.erase(start, iter);
1475                         // debug_show_vertex_list(0, vertex_list, "after delete", -1);
1476                 }
1477
1478                 debug_show_vertex_list(0, vertex_list, "continuous vertices", -1);
1479
1480                 // \todo reenable or delete this section
1481                 int i=100;
1482                 for(bool done=false;!done && i<30;i++)
1483                 {
1484                         debug_show_vertex_list(i, vertex_list, "in big loop", -1);
1485
1486                         // Set done to "true" for now. If
1487                         // any updates are performed, we will
1488                         // change it back to false.
1489                         done=true;
1490
1491                         std::list<synfigapp::ValueDesc>::iterator prev,next;
1492                         prev=vertex_list.end();prev--;  // Set prev to the last ValueDesc
1493                         next=vertex_list.begin();
1494                         iter=next++; // Set iter to the first value desc, and next to the second
1495
1496                         int current = 0;
1497                         for(;iter!=vertex_list.end();prev=iter,iter++,next++,current++)
1498                         {
1499                                 // we need to be able to erase(next) and can't do that if next is end()
1500                                 if (next == vertex_list.end()) next = vertex_list.begin();
1501                                 debug_show_vertex_list(i, vertex_list, "in loop around vertices", current);
1502                                 synfigapp::ValueDesc value_prev(*prev);
1503                                 synfigapp::ValueDesc value_desc(*iter);
1504                                 synfigapp::ValueDesc value_next(*next);
1505
1506                                 assert(value_desc.is_valid());
1507                                 assert(value_next.is_valid());
1508                                 assert(value_prev.is_valid());
1509
1510                                 // synfig::info("-------");
1511                                 // synfig::info(__FILE__":%d: value_prev 0x%08X:%d",__LINE__,value_prev.get_parent_value_node().get(),value_prev.get_index());
1512                                 // synfig::info(__FILE__":%d: value_desc 0x%08X:%d",__LINE__,value_desc.get_parent_value_node().get(),value_desc.get_index());
1513                                 // synfig::info(__FILE__":%d: value_next 0x%08X:%d",__LINE__,value_next.get_parent_value_node().get(),value_next.get_index());
1514                                                 
1515                                 /*
1516                                   if(value_prev.parent_is_value_node() && value_desc.parent_is_value_node() && value_next.parent_is_value_node())
1517                                   {
1518                                   // Remove random extraneous vertices
1519                                   if(value_prev.get_parent_value_node()==value_next.get_parent_value_node() &&
1520                                   value_prev.get_parent_value_node()!=value_desc.get_parent_value_node())
1521                                   {
1522                                   DEBUGPOINT();
1523                                   vertex_list.erase(iter);
1524                                   done=false;
1525                                   break;
1526                                   }
1527                                   }
1528                                 */
1529
1530                                 // // Remove duplicate vertices
1531
1532                                 // // if previous is the same as current or
1533                                 // //    current is the same as next, remove current
1534                                 // if(value_prev.get_value_node()==value_desc.get_value_node() ||
1535                                 //    value_desc.get_value_node()==value_next.get_value_node())
1536                                 // {
1537                                 //      // DEBUGPOINT();
1538                                 //      vertex_list.erase(iter);
1539                                 //      done=false;
1540                                 //      printf("erased node - i = %d\n", i);
1541                                 //      break;
1542                                 // }
1543
1544                                 // // if previous is the same as next, remove previous?  or next?
1545                                 // if(value_prev.get_value_node()==value_next.get_value_node())
1546                                 // {
1547                                 //      // DEBUGPOINT();
1548                                 //      vertex_list.erase(next);
1549                                 //      // vertex_list.erase(prev);
1550                                 //      done=false;
1551                                 //      printf("erased node - i = %d\n", i);
1552                                 //      break;
1553                                 // }
1554
1555                                 // if 'this' and 'next' both have parents
1556                                 if (value_desc.parent_is_value_node() && value_next.parent_is_value_node())
1557                                 {
1558                                         // if they are both on the same bline - this has been handled by new code above
1559                                         if (value_desc.get_parent_value_node() == value_next.get_parent_value_node())
1560                                         {
1561                                                 // // if (next != vertex_list.end())
1562                                                 // {
1563                                                 //      printf("parent loop is %d and node loop is ??\n",
1564                                                 //                 (*(value_desc.get_parent_value_node()))(get_time()).get_loop()
1565                                                 //                 // value_desc.get_value_node().get_loop(),
1566                                                 //              );
1567                                                 // 
1568                                                 //      // Fill in missing vertices
1569                                                 //      // \todo take loops into account: seeing (15, 2, 3, 4) probably means that (0, 1) is missing, not 14 through 3
1570                                                 //      if(value_desc.get_index()<value_next.get_index()-1)
1571                                                 //      {
1572                                                 //              debug_show_vertex_list(i, vertex_list,
1573                                                 //                                                         strprintf("same parent, different points this %d < next-1 %d",
1574                                                 //                                                                               value_desc.get_index(), ((value_next.get_index()-1))),
1575                                                 //                                                         current);
1576                                                 //              // DEBUGPOINT();
1577                                                 //              for (int index = value_desc.get_index()+1; index < value_next.get_index(); index++)
1578                                                 //              {
1579                                                 //                      printf("inserting up %d\n", index);
1580                                                 //                      vertex_list.insert(next, synfigapp::ValueDesc(value_desc.get_parent_value_node(), index));
1581                                                 //              }
1582                                                 //              debug_show_vertex_list(i, vertex_list, "new list", current);
1583                                                 //              done=false;
1584                                                 //              break;
1585                                                 //      }
1586                                                 //      if(value_next.get_index()<value_desc.get_index()-1)
1587                                                 //      {
1588                                                 //              debug_show_vertex_list(i, vertex_list,
1589                                                 //                                                         strprintf("same parent, different points next %d < this-1 %d",
1590                                                 //                                                                               value_next.get_index(), ((value_desc.get_index()-1))),
1591                                                 //                                                         current);
1592                                                 //              // DEBUGPOINT();
1593                                                 //              for (int index = value_desc.get_index()-1; index > value_next.get_index(); index--)
1594                                                 //              {
1595                                                 //                      printf("inserting down %d\n", index);
1596                                                 //                      vertex_list.insert(next, synfigapp::ValueDesc(value_desc.get_parent_value_node(), index));
1597                                                 //              }
1598                                                 //              debug_show_vertex_list(i, vertex_list, "new list", current);
1599                                                 //              done=false;
1600                                                 //              break;
1601                                                 //      }
1602                                                 // }
1603                                         }
1604                                         // 'this' and 'next' have different parents
1605                                         else
1606                                         {
1607                                                 ValueNode::Handle v1 = value_desc.get_value_node();
1608                                                 ValueNode::Handle v2 = value_desc.get_parent_value_node();
1609                                                 if (v1 == v2)
1610                                                         printf("same\n");
1611                                                 else
1612                                                         printf("different\n");
1613
1614                                                 if (value_desc.get_value_node() != value_next.get_value_node())
1615                                                 {
1616                                                         // Ensure that connections between blines are properly connected
1617                                                         BLinePoint vertex(value_desc.get_value(get_time()).get(BLinePoint()));
1618                                                         BLinePoint vertex_next(value_next.get_value(get_time()).get(BLinePoint()));
1619
1620                                                         //synfig::info("--------");
1621                                                         //synfig::info(__FILE__":%d: vertex: [%f, %f]",__LINE__,vertex.get_vertex()[0],vertex.get_vertex()[1]);
1622                                                         //synfig::info(__FILE__":%d: vertex_next: [%f, %f]",__LINE__,vertex_next.get_vertex()[0],vertex_next.get_vertex()[1]);
1623
1624                                                         // if this vertex is close to the next one, replace this vertex with a new one
1625                                                         // and erase the next one
1626                                                         printf("this point is %5.2f from the next point - compare with %5.2f\n",
1627                                                                    (vertex.get_vertex()-vertex_next.get_vertex()).mag_squared(),
1628                                                                    radius*radius);
1629                                                         if((vertex.get_vertex()-vertex_next.get_vertex()).mag_squared()<radius*radius)
1630                                                         {
1631                                                                 printf("in one - it's close\n");
1632                                                                 // DEBUGPOINT();
1633                                                                 ValueNode_Composite::Handle value_node;
1634                                                                 ValueNode_Composite::Handle value_node_next;
1635                                                                 value_node=ValueNode_Composite::Handle::cast_dynamic(value_desc.get_value_node().clone());
1636                                                                 value_node_next=ValueNode_Composite::Handle::cast_dynamic(value_next.get_value_node().clone());
1637                                                                 if(!value_node || !value_node_next)
1638                                                                 {
1639                                                                         synfig::info(__FILE__":%d: Unable to properly connect blines.",__LINE__);
1640                                                                         continue;
1641                                                                 }
1642                                                                 // DEBUGPOINT();
1643                                                                 // \todo if next isn't split, don't we want to copy its 'Tangent 1' instead?
1644                                                                 value_node->set_link(5,value_node_next->get_link(5)); // Tangent 2
1645                                                                 value_node->set_link(3,ValueNode_Const::create(true)); // Split Tangents
1646
1647                                                                 // get_canvas_interface()->auto_export(value_node);
1648                                                                 printf("exporting\n");
1649                                                                 get_canvas_interface()->add_value_node(value_node,value_node->get_id() + strprintf("foo %d", rand()));
1650
1651                                                                 assert(value_node->is_exported());
1652                                                                 // replace 'this' with the new valuenode
1653                                                                 *iter=synfigapp::ValueDesc(get_canvas(),value_node->get_id());
1654                                                                 printf("erasing next\n");
1655                                                                 printf("erasing next point\n");
1656                                                                 vertex_list.erase(next);
1657                                                                 done=false;
1658                                                                 break;
1659                                                         } // this vertex isn't close to the next one
1660                                                         else if (value_prev.parent_is_value_node())
1661                                                         {
1662                                                                 printf("in two - it's far\n");
1663                                                                 // DEBUGPOINT();
1664                                                                 // \todo this only makes sense if prev is on the same bline
1665                                                                 printf("this is index %d\n", value_desc.get_index());
1666                                                                 printf("prev is index %d\n", value_prev.get_index());
1667                                                                 bool positive_trend(value_desc.get_index()>value_prev.get_index());
1668
1669                                                                 if(positive_trend)
1670                                                                 {
1671                                                                         printf("positive trend\n");
1672                                                                         printf("comparing index %d < link_count()-1 = %d-1 = %d\n",
1673                                                                                    value_desc.get_index(),
1674                                                                                    LinkableValueNode::Handle::cast_static(value_desc.get_parent_value_node())->link_count(),
1675                                                                                    LinkableValueNode::Handle::cast_static(value_desc.get_parent_value_node())->link_count()-1);
1676                                                                         if (value_desc.get_index()<LinkableValueNode::Handle::cast_static(value_desc.get_parent_value_node())->link_count()-1)
1677                                                                         {
1678                                                                                 printf("in two - b\n");
1679                                                                                 // DEBUGPOINT();
1680                                                                                 printf("inserting node with index %d\n", value_desc.get_index()+1);
1681                                                                                 vertex_list.insert(next,
1682                                                                                                                    synfigapp::ValueDesc(value_desc.get_parent_value_node(),
1683                                                                                                                                                                 value_desc.get_index()+1));
1684                                                                                 done=false;
1685                                                                                 break;
1686                                                                         }
1687                                                                 }
1688                                                                 else // !positive_trend
1689                                                                 {
1690                                                                         printf("negative trend\n");
1691                                                                         if(value_desc.get_index()>0)
1692                                                                         {
1693                                                                                 printf("in two - a\n");
1694                                                                                 // DEBUGPOINT();
1695                                                                                 printf("inserting node on this line with index %d\n",
1696                                                                                            value_desc.get_index()-1);
1697                                                                                 vertex_list.insert(next,
1698                                                                                                                    synfigapp::ValueDesc(value_desc.get_parent_value_node(),
1699                                                                                                                                                                 value_desc.get_index()-1));
1700                                                                                 done=false;
1701                                                                                 break;
1702                                                                         }
1703                                                                 }
1704                                                         }
1705                                                 }
1706                                         }
1707                                 }
1708                         }
1709                 }
1710
1711                 if(vertex_list.size()<=2)
1712                 {
1713                         synfig::info(__FILE__":%d: Vertex list too small to make region.",__LINE__);
1714                         return Smach::RESULT_OK;
1715                 }
1716
1717                 debug_show_vertex_list(i, vertex_list, "finished tidying list", -1);
1718         }
1719
1720         // If we aren't the trivial case,
1721         // then go ahead and create the new
1722         // BLine value node
1723         if(!value_node_bline)
1724         {
1725                 synfig::info("not all points are on the same bline");
1726                 value_node_bline=ValueNode_BLine::create();
1727
1728                 std::list<synfigapp::ValueDesc>::iterator iter;
1729                 for(iter=vertex_list.begin();iter!=vertex_list.end();++iter)
1730                 {
1731                         // Ensure that the vertex is exported.
1732                         get_canvas_interface()->auto_export(*iter);
1733
1734                         value_node_bline->add(iter->get_value_node());
1735                         //value_node_bline->add(ValueNode_BLine::ListEntry(iter->get_value_node()));
1736                 }
1737
1738                 value_node_bline->set_loop(true);
1739         }
1740
1741         get_canvas_interface()->auto_export(value_node_bline);
1742
1743         // Now we create the region layer
1744         // Create the layer
1745         {
1746                 Layer::Handle layer;
1747                 Canvas::Handle canvas(get_canvas_view()->get_canvas());
1748                 int depth(0);
1749
1750                 // we are temporarily using the layer to hold something
1751                 layer=get_canvas_view()->get_selection_manager()->get_selected_layer();
1752                 if(layer)
1753                 {
1754                         depth=layer->get_depth();
1755                         canvas=layer->get_canvas();
1756                 }
1757
1758                 synfigapp::PushMode push_mode(get_canvas_interface(),synfigapp::MODE_NORMAL);
1759
1760                 layer=get_canvas_interface()->add_layer_to("region",canvas,depth);
1761                 assert(layer);
1762                 layer->set_param("color",synfigapp::Main::get_background_color());
1763                 if(get_feather())
1764                 {
1765                         layer->set_param("feather",get_feather());
1766                         get_canvas_interface()->signal_layer_param_changed()(layer,"feather");
1767                 }
1768                 get_canvas_interface()->signal_layer_param_changed()(layer,"color");
1769
1770                 synfigapp::Action::Handle action(synfigapp::Action::create("layer_param_connect"));
1771
1772                 assert(action);
1773
1774                 action->set_param("canvas",get_canvas());
1775                 action->set_param("canvas_interface",get_canvas_interface());
1776                 action->set_param("layer",layer);
1777                 if(!action->set_param("param",String("bline")))
1778                         synfig::error("LayerParamConnect didn't like \"param\"");
1779                 if(!action->set_param("value_node",ValueNode::Handle(value_node_bline)))
1780                         synfig::error("LayerParamConnect didn't like \"value_node\"");
1781
1782                 if(!get_canvas_interface()->get_instance()->perform_action(action))
1783                 {
1784                         get_canvas_view()->get_ui_interface()->error(_("Unable to create Region layer"));
1785                         group.cancel();
1786                         return Smach::RESULT_ERROR;
1787                 }
1788                 get_canvas_view()->get_selection_manager()->set_selected_layer(layer);
1789         }
1790
1791         return Smach::RESULT_ACCEPT;
1792 }
1793
1794 void
1795 StateDraw_Context::refresh_ducks()
1796 {
1797         get_canvas_view()->queue_rebuild_ducks();
1798 /*
1799         get_work_area()->clear_ducks();
1800
1801
1802         std::list< etl::smart_ptr<std::list<synfig::Point> > >::iterator iter;
1803
1804         for(iter=stroke_list.begin();iter!=stroke_list.end();++iter)
1805         {
1806                 get_work_area()->add_stroke(*iter);
1807         }
1808
1809         get_work_area()->queue_draw();
1810 */
1811 }
1812
1813
1814 Smach::event_result
1815 StateDraw_Context::extend_bline_from_begin(ValueNode_BLine::Handle value_node,std::list<synfig::BLinePoint> bline,bool complete_loop)
1816 {
1817         // Create the action group
1818         synfigapp::Action::PassiveGrouper group(get_canvas_interface()->get_instance().get(),_("Extend BLine"));
1819
1820         if (complete_loop)
1821         {
1822                 synfigapp::Action::Handle action(synfigapp::Action::create("value_node_dynamic_list_loop"));
1823                 assert(action);
1824
1825                 action->set_param("canvas",get_canvas());
1826                 action->set_param("canvas_interface",get_canvas_interface());
1827                 action->set_param("value_node",ValueNode::Handle(value_node));
1828
1829                 if(!get_canvas_interface()->get_instance()->perform_action(action))
1830                 {
1831                         get_canvas_view()->get_ui_interface()->error(_("Unable to set loop for bline"));
1832                         group.cancel();
1833                         return Smach::RESULT_ERROR;
1834                 }
1835         }
1836
1837         std::list<synfig::BLinePoint>::reverse_iterator iter;
1838         for(iter=bline.rbegin();!(iter==bline.rend());++iter)
1839         {
1840                 ValueNode_Composite::Handle composite(ValueNode_Composite::create(*iter));
1841
1842                 synfigapp::Action::Handle action(synfigapp::Action::create("value_node_dynamic_list_insert"));
1843
1844                 assert(action);
1845                 synfigapp::ValueDesc value_desc(value_node,0);
1846
1847                 action->set_param("canvas",get_canvas());
1848                 action->set_param("canvas_interface",get_canvas_interface());
1849                 action->set_param("value_desc",value_desc);
1850                 if(!action->set_param("item",ValueNode::Handle(composite)))
1851                         synfig::error("ACTION didn't like \"item\"");
1852
1853                 if(!get_canvas_interface()->get_instance()->perform_action(action))
1854                 {
1855                         get_canvas_view()->get_ui_interface()->error(_("Unable to insert item"));
1856                         group.cancel();
1857                         //refresh_ducks();
1858                         return Smach::RESULT_ERROR;
1859                 }
1860         }
1861         last_stroke=value_node;
1862         return Smach::RESULT_ACCEPT;
1863 }
1864
1865 Smach::event_result
1866 StateDraw_Context::extend_bline_from_end(ValueNode_BLine::Handle value_node,std::list<synfig::BLinePoint> bline,bool complete_loop)
1867 {
1868         // Create the action group
1869         synfigapp::Action::PassiveGrouper group(get_canvas_interface()->get_instance().get(),_("Extend BLine"));
1870
1871         if (complete_loop)
1872         {
1873                 synfigapp::Action::Handle action(synfigapp::Action::create("value_node_dynamic_list_loop"));
1874                 assert(action);
1875
1876                 action->set_param("canvas",get_canvas());
1877                 action->set_param("canvas_interface",get_canvas_interface());
1878                 action->set_param("value_node",ValueNode::Handle(value_node));
1879
1880                 if(!get_canvas_interface()->get_instance()->perform_action(action))
1881                 {
1882                         get_canvas_view()->get_ui_interface()->error(_("Unable to set loop for bline"));
1883                         group.cancel();
1884                         return Smach::RESULT_ERROR;
1885                 }
1886         }
1887
1888         std::list<synfig::BLinePoint>::iterator iter;
1889         for(iter=bline.begin();iter!=bline.end();++iter)
1890         {
1891                 ValueNode_Composite::Handle composite(ValueNode_Composite::create(*iter));
1892
1893                 synfigapp::Action::Handle action(synfigapp::Action::create("value_node_dynamic_list_insert"));
1894
1895                 assert(action);
1896                 synfigapp::ValueDesc value_desc(value_node,value_node->link_count());
1897
1898                 action->set_param("canvas",get_canvas());
1899                 action->set_param("canvas_interface",get_canvas_interface());
1900                 action->set_param("value_desc",value_desc);
1901                 if(!action->set_param("item",ValueNode::Handle(composite)))
1902                         synfig::error("ACTION didn't like \"item\"");
1903
1904                 if(!get_canvas_interface()->get_instance()->perform_action(action))
1905                 {
1906                         get_canvas_view()->get_ui_interface()->error(_("Unable to insert item"));
1907                         group.cancel();
1908                         //refresh_ducks();
1909                         return Smach::RESULT_ERROR;
1910                 }
1911         }
1912         last_stroke=value_node;
1913         return Smach::RESULT_ACCEPT;
1914 }
1915
1916 void
1917 StateDraw_Context::reverse_bline(std::list<synfig::BLinePoint> &bline)
1918 {
1919         int i;
1920
1921         std::list<synfig::BLinePoint>::iterator iter,eiter;
1922         iter=bline.begin();
1923         eiter=bline.end();
1924         eiter--;
1925         for(i=0;i<(int)bline.size()/2;++iter,--eiter,i++)
1926         {
1927                 iter_swap(iter,eiter);
1928                 iter->reverse();
1929                 eiter->reverse();
1930         }
1931 }
1932
1933 void
1934 StateDraw_Context::fill_last_stroke()
1935 {
1936         if(!last_stroke)
1937                 return;
1938
1939         synfigapp::Action::PassiveGrouper group(get_canvas_interface()->get_instance().get(),_("Fill Stroke"));
1940
1941         Layer::Handle layer;
1942
1943         get_canvas_interface()->auto_export(last_stroke);
1944
1945         synfigapp::PushMode push_mode(get_canvas_interface(),synfigapp::MODE_NORMAL);
1946
1947         layer=get_canvas_interface()->add_layer("region");
1948         assert(layer);
1949         layer->set_param("color",synfigapp::Main::get_background_color());
1950         layer->set_description(last_stroke_id + _(" Region"));
1951
1952         synfigapp::Action::Handle action(synfigapp::Action::create("layer_param_connect"));
1953
1954         assert(action);
1955
1956         action->set_param("canvas",get_canvas());
1957         action->set_param("canvas_interface",get_canvas_interface());
1958         action->set_param("layer",layer);
1959         if(!action->set_param("param",String("bline")))
1960                 synfig::error("LayerParamConnect didn't like \"param\"");
1961         if(!action->set_param("value_node",ValueNode::Handle(last_stroke)))
1962                 synfig::error("LayerParamConnect didn't like \"value_node\"");
1963
1964         if(!get_canvas_interface()->get_instance()->perform_action(action))
1965         {
1966                 get_canvas_view()->get_ui_interface()->error(_("Unable to create Region layer"));
1967                 group.cancel();
1968                 return;
1969         }
1970         get_canvas_view()->get_selection_manager()->set_selected_layer(layer);
1971 }