1 /* === S Y N F I G ========================================================= */
2 /*! \file state_draw.cpp
3 ** \brief Template File
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2007 Chris Moore
11 ** This package is free software; you can redistribute it and/or
12 ** modify it under the terms of the GNU General Public License as
13 ** published by the Free Software Foundation; either version 2 of
14 ** the License, or (at your option) any later version.
16 ** This package is distributed in the hope that it will be useful,
17 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ** General Public License for more details.
22 /* ========================================================================= */
24 /* === H E A D E R S ======================================================= */
33 #include <gtkmm/dialog.h>
34 #include <gtkmm/entry.h>
36 #include <synfig/valuenode_dynamiclist.h>
38 #include "state_draw.h"
39 #include "state_stroke.h"
40 #include "canvasview.h"
43 #include <synfig/valuenode_bline.h>
44 #include <synfig/valuenode_composite.h>
45 #include <ETL/hermite>
46 #include <ETL/calculus>
48 #include "event_mouse.h"
49 #include "event_layerclick.h"
52 #include <synfigapp/blineconvert.h>
53 #include <synfigapp/main.h>
55 #include <ETL/gaussian>
56 #include "dialog_tooloptions.h"
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>
69 /* === U S I N G =========================================================== */
73 using namespace synfig;
74 using namespace studio;
76 /* === M A C R O S ========================================================= */
78 /* === G L O B A L S ======================================================= */
80 StateDraw studio::state_draw;
82 /* === C L A S S E S & S T R U C T S ======================================= */
84 class studio::StateDraw_Context : public sigc::trackable
86 typedef etl::smart_ptr<std::list<synfig::Point> > StrokeData;
87 typedef etl::smart_ptr<std::list<synfig::Real> > WidthData;
89 typedef list< pair<StrokeData,WidthData> > StrokeQueue;
91 StrokeQueue stroke_queue;
94 etl::handle<CanvasView> canvas_view_;
95 CanvasView::IsWorking is_working;
97 bool prev_table_status;
99 bool prev_workarea_layer_status_;
102 sigc::connection process_queue_connection;
104 ValueNode_BLine::Handle last_stroke;
105 synfig::String last_stroke_id;
109 //Duckmatic::Push duckmatic_push;
111 std::list< etl::smart_ptr<std::list<synfig::Point> > > stroke_list;
113 void refresh_ducks();
115 Duckmatic::Type old_duckmask;
117 void fill_last_stroke();
118 void fill_last_stroke_and_unselect_other_layers();
120 Smach::event_result new_bline(std::list<synfig::BLinePoint> bline,bool loop_bline_flag,float radius);
122 Smach::event_result new_region(std::list<synfig::BLinePoint> bline,synfig::Real radius);
124 Smach::event_result extend_bline_from_begin(ValueNode_BLine::Handle value_node,std::list<synfig::BLinePoint> bline,bool complete_loop);
125 Smach::event_result extend_bline_from_end(ValueNode_BLine::Handle value_node,std::list<synfig::BLinePoint> bline,bool complete_loop);
126 void reverse_bline(std::list<synfig::BLinePoint> &bline);
128 synfigapp::Settings& settings;
130 Gtk::Table options_table;
132 Gtk::CheckButton checkbutton_pressure_width;
133 Gtk::CheckButton checkbutton_round_ends;
134 Gtk::CheckButton checkbutton_auto_loop; // whether to loop new strokes which start and end in the same place
135 Gtk::CheckButton checkbutton_auto_extend; // whether to extend existing lines
136 Gtk::CheckButton checkbutton_auto_link; // whether to link new ducks to existing ducks
137 Gtk::CheckButton checkbutton_region; // whether to create regions
138 Gtk::CheckButton checkbutton_outline; // whether to create outlines
139 Gtk::CheckButton checkbutton_auto_export;
140 Gtk::Button button_fill_last_stroke;
142 //pressure spinner and such
143 Gtk::Adjustment adj_min_pressure;
144 Gtk::SpinButton spin_min_pressure;
145 Gtk::CheckButton check_min_pressure;
147 Gtk::Adjustment adj_feather;
148 Gtk::SpinButton spin_feather;
150 Gtk::Adjustment adj_globalthres;
151 Gtk::SpinButton spin_globalthres;
153 Gtk::Adjustment adj_localthres;
154 Gtk::CheckButton check_localerror;
155 void UpdateErrorBox(); //switches the stuff if need be :)
157 //Added by Adrian - data drive HOOOOO
158 synfigapp::BLineConverter blineconv;
161 synfig::String get_id()const { return entry_id.get_text(); }
162 void set_id(const synfig::String& x) { return entry_id.set_text(x); }
164 bool get_pressure_width_flag()const { return checkbutton_pressure_width.get_active(); }
165 void set_pressure_width_flag(bool x) { return checkbutton_pressure_width.set_active(x); }
167 bool get_auto_loop_flag()const { return checkbutton_auto_loop.get_active(); }
168 void set_auto_loop_flag(bool x) { return checkbutton_auto_loop.set_active(x); }
170 bool get_auto_extend_flag()const { return checkbutton_auto_extend.get_active(); }
171 void set_auto_extend_flag(bool x) { return checkbutton_auto_extend.set_active(x); }
173 bool get_auto_link_flag()const { return checkbutton_auto_link.get_active(); }
174 void set_auto_link_flag(bool x) { return checkbutton_auto_link.set_active(x); }
176 bool get_region_flag()const { return checkbutton_region.get_active(); }
177 void set_region_flag(bool x) { return checkbutton_region.set_active(x); }
179 bool get_outline_flag()const { return checkbutton_outline.get_active(); }
180 void set_outline_flag(bool x) { return checkbutton_outline.set_active(x); }
182 bool get_auto_export_flag()const { return checkbutton_auto_export.get_active(); }
183 void set_auto_export_flag(bool x) { return checkbutton_auto_export.set_active(x); }
185 Real get_min_pressure() const { return adj_min_pressure.get_value(); }
186 void set_min_pressure(Real x) { return adj_min_pressure.set_value(x); }
188 Real get_feather() const { return adj_feather.get_value(); }
189 void set_feather(Real x) { return adj_feather.set_value(x); }
191 Real get_gthres() const { return adj_globalthres.get_value(); }
192 void set_gthres(Real x) { return adj_globalthres.set_value(x); }
194 Real get_lthres() const { return adj_localthres.get_value(); }
195 void set_lthres(Real x) { return adj_localthres.set_value(x); }
197 bool get_local_error_flag() const { return check_localerror.get_active(); }
198 void set_local_error_flag(bool x) { check_localerror.set_active(x); }
200 bool get_min_pressure_flag()const { return check_min_pressure.get_active(); }
201 void set_min_pressure_flag(bool x) { check_min_pressure.set_active(x); }
203 void load_settings();
204 void save_settings();
207 Smach::event_result event_stop_handler(const Smach::event& x);
209 Smach::event_result event_refresh_handler(const Smach::event& x);
211 Smach::event_result event_mouse_down_handler(const Smach::event& x);
213 Smach::event_result event_stroke(const Smach::event& x);
214 Smach::event_result event_refresh_tool_options(const Smach::event& x);
215 void refresh_tool_options();
217 Smach::event_result process_stroke(StrokeData stroke_data, WidthData width_data, bool region_flag=false);
219 bool process_queue();
222 StateDraw_Context(CanvasView* canvas_view);
224 ~StateDraw_Context();
226 const etl::handle<CanvasView>& get_canvas_view()const{return canvas_view_;}
227 etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const{return canvas_view_->canvas_interface();}
228 synfig::Time get_time()const { return get_canvas_interface()->get_time(); }
229 synfig::Canvas::Handle get_canvas()const{return canvas_view_->get_canvas();}
230 WorkArea * get_work_area()const{return canvas_view_->get_work_area();}
232 //void on_user_click(synfig::Point point);
235 }; // END of class StateDraw_Context
238 /* === M E T H O D S ======================================================= */
240 StateDraw::StateDraw():
241 Smach::state<StateDraw_Context>("draw")
243 insert(event_def(EVENT_STOP,&StateDraw_Context::event_stop_handler));
244 insert(event_def(EVENT_REFRESH,&StateDraw_Context::event_refresh_handler));
245 insert(event_def(EVENT_WORKAREA_MOUSE_BUTTON_DOWN,&StateDraw_Context::event_mouse_down_handler));
246 insert(event_def(EVENT_WORKAREA_STROKE,&StateDraw_Context::event_stroke));
247 insert(event_def(EVENT_REFRESH_TOOL_OPTIONS,&StateDraw_Context::event_refresh_tool_options));
250 StateDraw::~StateDraw()
256 StateDraw_Context::load_settings()
260 if(settings.get_value("draw.id",value))
263 set_id("NewDrawing");
265 if(settings.get_value("draw.pressure_width",value) && value=="0")
266 set_pressure_width_flag(false);
268 set_pressure_width_flag(true);
270 if(settings.get_value("draw.auto_loop",value) && value=="0")
271 set_auto_loop_flag(false);
273 set_auto_loop_flag(true);
275 if(settings.get_value("draw.auto_extend",value) && value=="0")
276 set_auto_extend_flag(false);
278 set_auto_extend_flag(true);
280 if(settings.get_value("draw.auto_link",value) && value=="0")
281 set_auto_link_flag(false);
283 set_auto_link_flag(true);
285 if(settings.get_value("draw.region",value) && value=="0")
286 set_region_flag(false);
288 set_region_flag(true);
290 if(settings.get_value("draw.outline",value) && value=="0")
291 set_outline_flag(false);
293 set_outline_flag(true);
295 if(settings.get_value("draw.auto_export",value) && value=="1")
296 set_auto_export_flag(true);
298 set_auto_export_flag(false);
300 if(settings.get_value("draw.min_pressure_on",value) && value=="0")
301 set_min_pressure_flag(false);
303 set_min_pressure_flag(true);
305 if(settings.get_value("draw.min_pressure",value))
307 Real n = atof(value.c_str());
312 if(settings.get_value("draw.feather",value))
314 Real n = atof(value.c_str());
319 if(settings.get_value("draw.gthreshold",value))
321 Real n = atof(value.c_str());
325 if(settings.get_value("draw.lthreshold",value))
327 Real n = atof(value.c_str());
331 if(settings.get_value("draw.localize",value) && value == "1")
332 set_local_error_flag(true);
334 set_local_error_flag(false);
338 StateDraw_Context::save_settings()
340 settings.set_value("draw.id",get_id().c_str());
341 settings.set_value("draw.pressure_width",get_pressure_width_flag()?"1":"0");
342 settings.set_value("draw.auto_loop",get_auto_loop_flag()?"1":"0");
343 settings.set_value("draw.auto_extend",get_auto_extend_flag()?"1":"0");
344 settings.set_value("draw.auto_link",get_auto_link_flag()?"1":"0");
345 settings.set_value("draw.region",get_region_flag()?"1":"0");
346 settings.set_value("draw.outline",get_outline_flag()?"1":"0");
347 settings.set_value("draw.auto_export",get_auto_export_flag()?"1":"0");
348 settings.set_value("draw.min_pressure",strprintf("%f",get_min_pressure()));
349 settings.set_value("draw.feather",strprintf("%f",get_feather()));
350 settings.set_value("draw.min_pressure_on",get_min_pressure_flag()?"1":"0");
351 settings.set_value("draw.gthreshold",strprintf("%f",get_gthres()));
352 settings.set_value("draw.lthreshold",strprintf("%f",get_lthres()));
353 settings.set_value("draw.localize",get_local_error_flag()?"1":"0");
357 StateDraw_Context::increment_id()
366 // If there is a number
367 // already at the end of the
368 // id, then remove it.
369 if(id[id.size()-1]<='9' && id[id.size()-1]>='0')
371 // figure out how many digits it is
373 (int)id.size()-1 >= digits && id[id.size()-1-digits] <= '9' && id[id.size()-1-digits] >= '0';
378 str_number=String(id,id.size()-digits,id.size());
379 id=String(id,0,id.size()-digits);
380 // synfig::info("---------------- \"%s\"",str_number.c_str());
382 number=atoi(str_number.c_str());
392 // Add the number back onto the id
394 const String format(strprintf("%%0%dd",digits));
395 id+=strprintf(format.c_str(),number);
402 StateDraw_Context::StateDraw_Context(CanvasView* canvas_view):
403 canvas_view_(canvas_view),
404 is_working(*canvas_view),
406 prev_workarea_layer_status_(get_work_area()->get_allow_layer_clicks()),
407 settings(synfigapp::Main::get_selected_input_device()->settings()),
409 checkbutton_pressure_width(_("Pressure Width")),
410 checkbutton_auto_loop(_("Auto Loop")),
411 checkbutton_auto_extend(_("Auto Extend")),
412 checkbutton_auto_link(_("Auto Link")),
413 checkbutton_region(_("Create Region BLine")),
414 checkbutton_outline(_("Create Outline BLine")),
415 checkbutton_auto_export(_("Auto Export")),
416 button_fill_last_stroke(_("Fill Last Stroke")),
417 adj_min_pressure(0,0,1,0.01,0.1),
418 spin_min_pressure(adj_min_pressure,0.1,3),
419 check_min_pressure(_("Min Pressure")),
420 adj_feather(0,0,10000,0.01,0.1),
421 spin_feather(adj_feather,0.01,4),
422 adj_globalthres(.70f,0.01,10000,0.01,0.1),
423 spin_globalthres(adj_globalthres,0.01,3),
424 adj_localthres(20,1,100000,0.1,1),
425 check_localerror(_("LocalError"))
433 options_table.attach(*manage(new Gtk::Label(_("Draw Tool"))), 0, 2, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
434 options_table.attach(entry_id, 0, 2, 1, 2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
435 options_table.attach(checkbutton_outline, 0, 2, 2, 3, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
436 options_table.attach(checkbutton_region, 0, 2, 3, 4, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
437 options_table.attach(checkbutton_auto_loop, 0, 2, 4, 5, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
438 options_table.attach(checkbutton_auto_extend, 0, 2, 5, 6, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
439 options_table.attach(checkbutton_auto_link, 0, 2, 6, 7, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
440 options_table.attach(checkbutton_auto_export, 0, 2, 7, 8, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
441 options_table.attach(checkbutton_pressure_width, 0, 2, 8, 9, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
442 options_table.attach(check_localerror, 0, 2, 9, 10, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
444 options_table.attach(check_min_pressure, 0, 1, 10, 11, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
445 options_table.attach(spin_min_pressure, 1, 2, 10, 11, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
447 options_table.attach(*manage(new Gtk::Label(_("Smooth"))), 0, 1, 11, 12, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
448 options_table.attach(spin_globalthres, 1, 2, 11, 12, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
450 options_table.attach(*manage(new Gtk::Label(_("Feather"))), 0, 1, 12, 13, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
451 options_table.attach(spin_feather, 1, 2, 12, 13, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
453 //options_table.attach(button_fill_last_stroke, 0, 2, 13, 14, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
455 button_fill_last_stroke.signal_pressed().connect(sigc::mem_fun(*this,&StateDraw_Context::fill_last_stroke));
456 check_localerror.signal_toggled().connect(sigc::mem_fun(*this,&StateDraw_Context::UpdateErrorBox));
458 options_table.show_all();
459 refresh_tool_options();
460 //App::dialog_tool_options->set_widget(options_table);
461 App::dialog_tool_options->present();
464 old_duckmask=get_work_area()->get_type_mask();
465 get_work_area()->set_type_mask(Duck::TYPE_ALL-Duck::TYPE_TANGENT-Duck::TYPE_WIDTH);
467 // Turn off layer clicking
468 get_work_area()->set_allow_layer_clicks(false);
470 // Turn off duck clicking
471 get_work_area()->set_allow_duck_clicks(false);
473 // clear out the ducks
474 //get_work_area()->clear_ducks();
476 // Refresh the work area
477 //get_work_area()->queue_draw();
479 // Hide the tables if they are showing
480 prev_table_status=get_canvas_view()->tables_are_visible();
481 //if(prev_table_status)get_canvas_view()->hide_tables();
483 // Disable the time bar
484 get_canvas_view()->set_sensitive_timebar(false);
487 //get_work_area()->signal_user_click().connect(sigc::mem_fun(*this,&studio::StateDraw_Context::on_user_click));
489 get_canvas_view()->work_area->set_cursor(Gdk::PENCIL);
491 App::toolbox->refresh();
497 void StateDraw_Context::UpdateErrorBox()
499 if(get_local_error_flag())
501 spin_globalthres.set_adjustment(adj_localthres);
502 spin_globalthres.set_value(adj_localthres.get_value());
503 spin_globalthres.set_increments(0.1,1);
506 spin_globalthres.set_adjustment(adj_globalthres);
507 spin_globalthres.set_value(adj_globalthres.get_value());
508 spin_globalthres.set_increments(0.01,.1);
511 spin_globalthres.update();
515 StateDraw_Context::refresh_tool_options()
517 App::dialog_tool_options->clear();
518 App::dialog_tool_options->set_widget(options_table);
519 App::dialog_tool_options->set_local_name(_("Draw Tool"));
520 App::dialog_tool_options->set_name("draw");
522 App::dialog_tool_options->add_button(
523 Gtk::StockID("synfig-fill"),
524 _("Fill Last Stroke")
525 )->signal_clicked().connect(
528 &StateDraw_Context::fill_last_stroke));
532 StateDraw_Context::event_refresh_tool_options(const Smach::event& /*x*/)
534 refresh_tool_options();
535 return Smach::RESULT_ACCEPT;
538 StateDraw_Context::~StateDraw_Context()
542 App::dialog_tool_options->clear();
544 get_work_area()->set_type_mask(old_duckmask);
546 get_canvas_view()->work_area->reset_cursor();
548 // Restore layer clicking
549 get_work_area()->set_allow_layer_clicks(prev_workarea_layer_status_);
551 // Restore duck clicking
552 get_work_area()->set_allow_duck_clicks(true);
554 // Enable the time bar
555 get_canvas_view()->set_sensitive_timebar(true);
557 // Bring back the tables if they were out before
558 if(prev_table_status)get_canvas_view()->show_tables();
560 // Refresh the work area
561 get_work_area()->queue_draw();
563 App::toolbox->refresh();
567 StateDraw_Context::event_stop_handler(const Smach::event& /*x*/)
569 throw Smach::egress_exception();
573 StateDraw_Context::event_refresh_handler(const Smach::event& /*x*/)
576 return Smach::RESULT_ACCEPT;
580 StateDraw_Context::event_mouse_down_handler(const Smach::event& x)
582 const EventMouse& event(*reinterpret_cast<const EventMouse*>(&x));
587 // Enter the stroke state to get the stroke
588 get_canvas_view()->get_smach().push_state(&state_stroke);
589 return Smach::RESULT_ACCEPT;
592 case BUTTON_RIGHT: // Intercept the right-button click to short-circuit the pop-up menu
593 if (!getenv("SYNFIG_ENABLE_POPUP_MENU_IN_ALL_TOOLS"))
594 return Smach::RESULT_ACCEPT;
597 return Smach::RESULT_OK;
601 #define SIMILAR_TANGENT_THRESHOLD (0.2)
606 debugclass(const synfig::String &x):x(x)
608 // synfig::warning(">>>>>>>>>>>>>>>>>>> "+x);
612 // synfig::warning("<<<<<<<<<<<<<<<<<<< "+x);
619 DepthCounter(int &i):i(i) { i++; }
620 ~DepthCounter() { i--; }
624 StateDraw_Context::event_stroke(const Smach::event& x)
626 // debugclass debugger("StateDraw_Context::event_stroke(const Smach::event& x)");
628 const EventStroke& event(*reinterpret_cast<const EventStroke*>(&x));
630 assert(event.stroke_data);
632 get_work_area()->add_stroke(event.stroke_data,synfigapp::Main::get_foreground_color());
636 DirtyTrap dirty_trap(get_work_area());
637 Smach::event_result result;
638 result=process_stroke(event.stroke_data,event.width_data,event.modifier&Gdk::CONTROL_MASK || event.modifier&Gdk::BUTTON2_MASK);
643 stroke_queue.push_back(pair<StrokeData,WidthData>(event.stroke_data,event.width_data));
645 return Smach::RESULT_ACCEPT;
649 StateDraw_Context::process_queue()
651 // debugclass debugger("StateDraw_Context::process_queue()");
654 DepthCounter depth_counter(nested);
655 while(!stroke_queue.empty())
657 pair<StrokeData,WidthData> front(stroke_queue.front());
658 process_stroke(front.first,front.second);
659 stroke_queue.pop_front();
665 StateDraw_Context::process_stroke(StrokeData stroke_data, WidthData width_data, bool region_flag)
667 // debugclass debugger("StateDraw_Context::process_stroke");
668 DepthCounter depth_counter(nested);
670 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);
673 // If we aren't using pressure width,
674 // then set all the width to 1
675 if(!get_pressure_width_flag())
677 std::list<synfig::Real>::iterator iter;
678 for(iter=width_data->begin();iter!=width_data->end();++iter)
684 //get_work_area()->add_stroke(event.stroke_data,synfigapp::Main::get_foreground_color());
685 //stroke_list.push_back(event.stroke_data);
688 std::list<synfig::BLinePoint> bline;
689 bool loop_bline_flag(false);
691 //Changed by Adrian - use resident class :)
692 //synfigapp::convert_stroke_to_bline(bline, *event.stroke_data,*event.width_data, synfigapp::Main::get_bline_width());
693 blineconv.width = synfigapp::Main::get_bline_width().units(get_canvas()->rend_desc());
695 if(get_local_error_flag())
697 float pw = get_work_area()->get_pw();
698 float ph = get_work_area()->get_ph();
700 blineconv.pixelwidth = sqrt(pw*pw+ph*ph);
701 blineconv.smoothness = get_lthres();
704 blineconv.pixelwidth = 1;
705 blineconv.smoothness = get_gthres();
708 blineconv(bline,*stroke_data,*width_data);
710 //Postprocess to require minimum pressure
711 if(get_min_pressure_flag())
713 synfigapp::BLineConverter::EnforceMinWidth(bline,get_min_pressure());
716 // If the start and end points are similar, then make them the same point
717 if (get_auto_loop_flag() &&
719 (bline.front().get_vertex() - bline.back().get_vertex()).mag() <= radius)
721 loop_bline_flag=true;
725 while (bline.size() > 2 &&
726 (bline.front().get_vertex() - bline.back().get_vertex()).mag() <= radius)
728 tangent=bline.back().get_tangent1();
729 width=bline.back().get_width();
733 if(abs(bline.front().get_tangent1().norm()*tangent.norm().perp())>SIMILAR_TANGENT_THRESHOLD)
735 // If the tangents are not similar, then
736 // split the tangents
737 bline.front().set_split_tangent_flag(true);
738 bline.front().set_tangent1(tangent);
742 // If the tangents are similar, then set the tangent
743 // to the average of the two
744 bline.front().set_tangent((tangent+bline.front().get_tangent1())*0.5f);
747 // Add the widths of the two points
749 Real tmp_width(bline.front().get_width()+width);
750 tmp_width=tmp_width<=1?tmp_width:1;
751 bline.front().set_width(tmp_width);
755 // If the bline only has one blinepoint, then there is nothing to do.
758 // hide the 'stroke' line we were drawing, unless the user
759 // explicitly requests that they are kept
760 if (!getenv("SYNFIG_KEEP_ABORTED_DRAW_LINES"))
763 return Smach::RESULT_OK;
767 return new_region(bline,radius);
769 return new_bline(bline,loop_bline_flag,radius);
773 StateDraw_Context::new_bline(std::list<synfig::BLinePoint> bline,bool loop_bline_flag,float radius)
775 synfigapp::SelectionManager::LayerList layer_list = get_canvas_view()->get_selection_manager()->get_selected_layers();
777 // Create the action group
778 synfigapp::Action::PassiveGrouper group(get_canvas_interface()->get_instance().get(),_("Sketch BLine"));
780 bool shift_origin = false;
781 Vector shift_origin_vector;
782 bool join_start_no_extend=false,join_finish_no_extend=false;
783 synfigapp::ValueDesc start_duck_value_desc,finish_duck_value_desc;
784 bool extend_start=false,extend_finish=false,complete_loop=false;
785 bool extend_start_join_same=false,extend_start_join_different=false;
786 bool extend_finish_join_same=false,extend_finish_join_different=false;
787 int start_duck_index = 0,finish_duck_index = 0; // initialized to keep the compiler happy; shouldn't be needed though
788 ValueNode_BLine::Handle start_duck_value_node_bline=NULL,finish_duck_value_node_bline=NULL;
790 // Find any ducks at the start or end that we might attach to
791 // (this used to only run if we didn't just draw a loop - ie. !loop_bline_flag
792 // but having loops auto-connect can be useful as well)
793 if(get_auto_extend_flag() || get_auto_link_flag())
795 etl::handle<Duck> start_duck(get_work_area()->find_duck(bline.front().get_vertex(),radius,Duck::TYPE_VERTEX));
796 etl::handle<Duck> finish_duck(get_work_area()->find_duck(bline.back().get_vertex(),radius,Duck::TYPE_VERTEX));
798 // check whether the start of the new line extends an
799 // existing line. this is only the case if the new
800 // line isn't a self-contained loop, and if the new
801 // line starts at one of the ends of an existing line
804 if(!(start_duck_value_desc=start_duck->get_value_desc()))break;
805 if(loop_bline_flag)break; // loops don't extend anything
806 if(!start_duck_value_desc.parent_is_value_node())break;
807 start_duck_index=start_duck_value_desc.get_index(); // which point on the line did we start drawing at
808 start_duck_value_node_bline=ValueNode_BLine::Handle::cast_dynamic(start_duck_value_desc.get_parent_value_node());
809 if(!get_auto_extend_flag())break;
811 // don't extend looped blines
812 if(start_duck_value_node_bline&&!start_duck_value_node_bline->get_loop()&&
813 // did we start drawing at either end of the line?
814 (start_duck_index==0||start_duck_index==start_duck_value_node_bline->link_count()-1))
818 shift_origin_vector=start_duck->get_origin();
822 // check whether the end of the new line extends an
823 // existing line. this is only the case if the new
824 // line isn't a self-contained loop, and if the new
825 // line ends at one of the ends of an existing line
828 if(!(finish_duck_value_desc=finish_duck->get_value_desc()))break;
829 if(loop_bline_flag)break;
830 if(!finish_duck_value_desc.parent_is_value_node())break;
831 finish_duck_index=finish_duck_value_desc.get_index();
832 finish_duck_value_node_bline=ValueNode_BLine::Handle::cast_dynamic(finish_duck_value_desc.get_parent_value_node());
833 if(!get_auto_extend_flag())break;
835 // don't extend looped blines
836 if(finish_duck_value_node_bline&&!finish_duck_value_node_bline->get_loop()&&
837 (finish_duck_index==0||finish_duck_index==finish_duck_value_node_bline->link_count()-1))
841 // we've started and finished drawing at the end of a bline. we can't
842 // extend both blines, so unless we started and finished at the 2 ends
843 // of the same bline, only extend the one we started on
844 if(start_duck_value_node_bline==finish_duck_value_node_bline)
845 complete_loop=extend_finish=true;
849 shift_origin_vector=finish_duck->get_origin();
854 // if the new line's start didn't extend an existing line,
855 // check whether it needs to be linked to an existing duck
856 if(!extend_start&&get_auto_link_flag()&&start_duck&&start_duck_value_desc)
857 switch(start_duck_value_desc.get_value_type())
859 case synfig::ValueBase::TYPE_BLINEPOINT:
860 start_duck_value_desc=synfigapp::ValueDesc(LinkableValueNode::Handle::cast_dynamic(start_duck_value_desc.get_value_node()),0);
862 case synfig::ValueBase::TYPE_VECTOR:
863 if (shift_origin && shift_origin_vector != start_duck->get_origin())
866 shift_origin_vector = start_duck->get_origin();
867 get_canvas_interface()->auto_export(start_duck_value_desc);
869 if(start_duck_value_node_bline&&start_duck_value_node_bline==finish_duck_value_node_bline)
870 extend_finish_join_same=true;
872 extend_finish_join_different=true;
874 join_start_no_extend=true;
879 // if the new line's end didn't extend an existing line,
880 // check whether it needs to be linked to an existing duck
881 if(!extend_finish&&get_auto_link_flag()&&finish_duck&&finish_duck_value_desc)
882 switch(finish_duck_value_desc.get_value_type())
884 case synfig::ValueBase::TYPE_BLINEPOINT:
885 finish_duck_value_desc=synfigapp::ValueDesc(LinkableValueNode::Handle::cast_dynamic(finish_duck_value_desc.get_value_node()),0);
887 case synfig::ValueBase::TYPE_VECTOR:
888 if (shift_origin && shift_origin_vector != finish_duck->get_origin())
891 shift_origin_vector = finish_duck->get_origin();
892 get_canvas_interface()->auto_export(finish_duck_value_desc);
894 if(finish_duck_value_node_bline&&start_duck_value_node_bline==finish_duck_value_node_bline)
895 extend_start_join_same=true;
897 extend_start_join_different=true;
899 join_finish_no_extend=true;
905 ValueNode_BLine::Handle value_node;
906 std::list<synfig::BLinePoint> trans_bline;
909 std::list<synfig::BLinePoint>::iterator iter;
910 const synfig::TransformStack& transform(get_canvas_view()->get_curr_transform_stack());
912 for(iter=bline.begin();iter!=bline.end();++iter)
914 BLinePoint bline_point(*iter);
915 Point new_vertex(transform.unperform(bline_point.get_vertex()));
917 bline_point.set_tangent1(
919 bline_point.get_tangent1()+bline_point.get_vertex()
923 bline_point.set_tangent2(
925 bline_point.get_tangent2()+bline_point.get_vertex()
930 new_vertex=new_vertex-shift_origin_vector;
932 bline_point.set_vertex(new_vertex);
934 trans_bline.push_back(bline_point);
936 value_node=ValueNode_BLine::create(synfig::ValueBase(trans_bline,loop_bline_flag));
938 Canvas::Handle canvas(get_canvas_view()->get_canvas());
939 Layer::Handle layer(get_canvas_view()->get_selection_manager()->get_selected_layer());
940 if (layer) canvas=layer->get_canvas();
941 value_node->set_member_canvas(canvas);
944 Smach::event_result result;
945 synfig::ValueNode_DynamicList::ListEntry source;
947 // the new line's start extends an existing line
950 int target_offset = 0;
951 if(complete_loop)trans_bline.pop_back();
952 trans_bline.pop_front();
953 if(start_duck_index==0)
954 { // We need to reverse the BLine first.
955 reverse_bline(trans_bline);
956 result=extend_bline_from_begin(start_duck_value_node_bline,trans_bline,complete_loop);
957 source=start_duck_value_node_bline->list.front();
958 target_offset=trans_bline.size();
962 result=extend_bline_from_end(start_duck_value_node_bline,trans_bline,complete_loop);
963 source=start_duck_value_node_bline->list.back();
966 if(extend_start_join_different)
967 LinkableValueNode::Handle::cast_dynamic(source.value_node)->
968 set_link(0,finish_duck_value_desc.get_value_node());
969 else if(extend_start_join_same)
970 LinkableValueNode::Handle::cast_dynamic(source.value_node)->
971 set_link(0,synfigapp::ValueDesc(LinkableValueNode::Handle::cast_dynamic(start_duck_value_node_bline->
972 list[target_offset+finish_duck_index].value_node),0).get_value_node());
976 // the new line's end extends an existing line
979 int target_offset = 0;
980 trans_bline.pop_back();
981 if(finish_duck_index==0)
983 result=extend_bline_from_begin(finish_duck_value_node_bline,trans_bline,false);
984 source=finish_duck_value_node_bline->list.front();
985 target_offset=trans_bline.size();
988 { // We need to reverse the BLine first.
989 reverse_bline(trans_bline);
990 result=extend_bline_from_end(finish_duck_value_node_bline,trans_bline,false);
991 source=finish_duck_value_node_bline->list.back();
994 if(extend_finish_join_different)
995 LinkableValueNode::Handle::cast_dynamic(source.value_node)->
996 set_link(0,start_duck_value_desc.get_value_node());
997 else if(extend_finish_join_same)
998 LinkableValueNode::Handle::cast_dynamic(source.value_node)->
999 set_link(0,synfigapp::ValueDesc(LinkableValueNode::Handle::cast_dynamic(finish_duck_value_node_bline->
1000 list[target_offset+start_duck_index].value_node),0).get_value_node());
1004 if (join_start_no_extend)
1005 LinkableValueNode::Handle::cast_dynamic(value_node->list.front().value_node)->
1006 set_link(0,start_duck_value_desc.get_value_node());
1008 if (join_finish_no_extend)
1009 LinkableValueNode::Handle::cast_dynamic(value_node->list.back().value_node)->
1010 set_link(0,finish_duck_value_desc.get_value_node());
1012 if(get_auto_export_flag())
1013 if (!get_canvas_interface()->add_value_node(value_node,get_id()))
1015 /* it's no big deal, is it? let's keep the shape anyway */
1016 // get_canvas_view()->get_ui_interface()->error(_("Unable to add value node"));
1019 // return Smach::RESULT_ERROR;
1022 last_stroke=value_node;
1023 last_stroke_id=get_id();
1026 // Create the layer(s)
1027 Layer::Handle layer;
1028 Canvas::Handle canvas(get_canvas_view()->get_canvas());
1031 // we are temporarily using the layer to hold something
1032 layer=get_canvas_view()->get_selection_manager()->get_selected_layer();
1035 depth=layer->get_depth();
1036 canvas=layer->get_canvas();
1039 // fill_last_stroke() will take care of clearing the selection if we're calling it
1040 if(get_outline_flag() && get_region_flag())
1041 fill_last_stroke_and_unselect_other_layers();
1043 get_canvas_interface()->get_selection_manager()->clear_selected_layers();
1045 //int number(synfig::UniqueID().get_uid());
1047 synfigapp::PushMode push_mode(get_canvas_interface(),synfigapp::MODE_NORMAL);
1049 // if they're both defined, we'll add the region later
1050 if(get_outline_flag())
1052 layer=get_canvas_interface()->add_layer_to("outline",canvas,depth);
1053 layer->set_description(get_id()+_(" Outline"));
1057 layer=get_canvas_interface()->add_layer_to("region",canvas,depth);
1058 layer->set_description(get_id()+_(" Region"));
1063 layer->set_param("feather",get_feather());
1064 get_canvas_interface()->signal_layer_param_changed()(layer,"feather");
1067 //layer->set_description(strprintf("Stroke %d",number));
1068 //get_canvas_interface()->signal_layer_new_description()(layer,layer->get_description());
1071 get_canvas_interface()->
1072 change_value(synfigapp::ValueDesc(layer,"origin"),shift_origin_vector);
1074 synfigapp::Action::Handle action(synfigapp::Action::create("layer_param_connect"));
1078 action->set_param("canvas",get_canvas());
1079 action->set_param("canvas_interface",get_canvas_interface());
1080 action->set_param("layer",layer);
1081 if(!action->set_param("param",String("bline")))
1082 synfig::error("LayerParamConnect didn't like \"param\"");
1083 if(!action->set_param("value_node",ValueNode::Handle(value_node)))
1084 synfig::error("LayerParamConnect didn't like \"value_node\"");
1086 if(!get_canvas_interface()->get_instance()->perform_action(action))
1088 get_canvas_view()->get_ui_interface()->error(_("Unable to create layer"));
1092 return Smach::RESULT_ERROR;
1094 layer_list.push_back(layer);
1095 get_canvas_view()->get_selection_manager()->set_selected_layers(layer_list);
1100 return Smach::RESULT_ACCEPT;
1105 debug_show_vertex_list(int iteration, std::list<synfigapp::ValueDesc>& vertex_list,
1106 std::string title, int current)
1108 std::list<synfigapp::ValueDesc>::iterator i = vertex_list.begin();
1109 printf("\n%s\n ----- iter %d : ", title.c_str(), iteration);
1111 synfig::LinkableValueNode::Handle last = 0;
1116 bool started = false;
1117 for(;i!=vertex_list.end();i++,c++)
1119 synfigapp::ValueDesc value_desc(*i);
1121 if (value_desc.parent_is_value_node()) {
1122 if(value_desc.parent_is_linkable_value_node())
1124 index = value_desc.get_index();
1125 // printf("<%d>", index);
1126 if (last == synfig::LinkableValueNode::Handle::cast_reinterpret(value_desc.get_parent_value_node()))
1128 // printf("\n%s:%d\n", __FILE__, __LINE__);
1131 // printf("\n%s:%d\n", __FILE__, __LINE__);
1134 // printf("\n%s:%d\n", __FILE__, __LINE__);
1137 if (started) printf(", "); else started = true;
1138 printf("%d--%d", start, prev);
1142 if (started) printf(", "); else started = true;
1143 printf("%d", start);
1145 printf(", *%d*", index);
1150 // printf("\n%s:%d\n", __FILE__, __LINE__);
1151 if (index == start + 1)
1153 // printf("\n%s:%d\n", __FILE__, __LINE__);
1157 else if (index == start - 1)
1159 // printf("\n%s:%d\n", __FILE__, __LINE__);
1165 if (started) printf(", "); else started = true;
1166 printf("%d", start);
1170 else if (index == prev + dir)
1172 // printf("\n%s:%d\n", __FILE__, __LINE__);
1177 // printf("\n%s:%d\n", __FILE__, __LINE__);
1178 if (started) printf(", "); else started = true;
1180 printf("%d--%d", start, prev);
1182 printf("%d", start);
1183 // printf("\n%s:%d\n", __FILE__, __LINE__);
1190 // printf("\n%s:%d\n", __FILE__, __LINE__);
1193 if (started) printf(", "); else started = true;
1194 printf("*%d*", index);
1198 // printf("\n%s:%d\n", __FILE__, __LINE__);
1206 // printf("\n%s:%d\n", __FILE__, __LINE__);
1209 // printf("\n%s:%d\n", __FILE__, __LINE__);
1212 if (started) printf(", "); else started = true;
1214 printf("%d--%d", start, prev);
1216 printf("%d", start);
1218 // printf("\n%s:%d\n", __FILE__, __LINE__);
1221 // printf("\n%s:%d\n", __FILE__, __LINE__);
1222 last = synfig::LinkableValueNode::Handle::cast_reinterpret(value_desc.get_parent_value_node());
1223 printf("%d:(", synfig::LinkableValueNode::Handle::cast_reinterpret(value_desc.get_parent_value_node())->link_count());
1225 // printf("\n%s:%d\n", __FILE__, __LINE__);
1229 printf("*%d*", index);
1233 // printf("\n%s:%d\n", __FILE__, __LINE__);
1237 // printf("\n%s:%d\n", __FILE__, __LINE__);
1239 // printf("\n%s:%d\n", __FILE__, __LINE__);
1242 if (last) printf("?!) ");
1252 if (started) printf(", "); else started = true;
1256 printf("%d--%d", start, prev);
1258 printf("%d", start);
1265 #define debug_show_vertex_list(a,b,c,d)
1269 StateDraw_Context::new_region(std::list<synfig::BLinePoint> bline, synfig::Real radius)
1271 // Create the action group
1272 synfigapp::Action::PassiveGrouper group(get_canvas_interface()->get_instance().get(),_("Define Region"));
1274 std::list<synfigapp::ValueDesc> vertex_list;
1276 printf("new_region with %d bline points\n", bline.size());
1278 // First we need to come up with a rough list of
1279 // BLinePoints that we are going to be using to
1280 // define our region.
1282 std::list<synfig::BLinePoint>::iterator iter;
1283 for(iter=bline.begin();iter!=bline.end();++iter)
1285 etl::handle<Duck> duck(get_work_area()->find_duck(iter->get_vertex(),0,Duck::TYPE_VERTEX));
1289 synfig::info(__FILE__":%d: Nothing to enclose!",__LINE__);
1290 return Smach::RESULT_OK;
1293 assert(duck->get_type()==Duck::TYPE_VERTEX);
1295 synfigapp::ValueDesc value_desc(duck->get_value_desc());
1299 synfig::info(__FILE__":%d: Got a hit, but no ValueDesc on this duck",__LINE__);
1303 switch(value_desc.get_value_type())
1305 case synfig::ValueBase::TYPE_BLINEPOINT:
1306 //if(vertex_list.empty() || value_desc!=vertex_list.back())
1307 vertex_list.push_back(value_desc);
1308 assert(vertex_list.back().is_valid());
1317 assert(vertex_list.back().is_valid());
1319 printf("vertex list with %d bline points\n", vertex_list.size());
1321 // Remove any duplicates
1325 ValueNode_BLine::Handle value_node_bline;
1327 // Now we need to test for the trivial case,
1328 // which is where all of the vertices
1329 // come from one BLine.
1330 if(vertex_list.front().parent_is_linkable_value_node())
1332 bool trivial_case(true);
1333 ValueNode::Handle trivial_case_value_node;
1335 trivial_case_value_node=vertex_list.front().get_parent_value_node();
1337 std::list<synfigapp::ValueDesc>::iterator iter;
1338 for(iter=vertex_list.begin();iter!=vertex_list.end();++iter)
1340 if(trivial_case_value_node!=iter->get_parent_value_node())
1347 // \todo - re-enable this code
1348 if(trivial_case && false)
1350 synfig::info("all points are on the same bline, so just fill that line");
1351 value_node_bline=ValueNode_BLine::Handle::cast_dynamic(trivial_case_value_node);
1353 synfig::info("the line has %d vertices", value_node_bline->link_count());
1355 if(value_node_bline->link_count() <= 2)
1357 synfig::info(__FILE__":%d: Vertex list too small to make region.",__LINE__);
1358 return Smach::RESULT_OK;
1363 if(!value_node_bline)
1364 if(vertex_list.size()<=2)
1366 synfig::info(__FILE__":%d: Vertex list too small to make region.",__LINE__);
1367 return Smach::RESULT_OK;
1370 // Now we need to clean the list of vertices up
1371 // a bit. This includes inserting missing vertices
1372 // and removing extraneous ones.
1373 // We can do this in multiple passes.
1374 if(!value_node_bline)
1376 debug_show_vertex_list(0, vertex_list, "before shifting stuff", -1);
1377 // rearrange the list so that the first and last node are on different blines
1378 std::list<synfigapp::ValueDesc>::iterator iter, start;
1379 ValueNode::Handle last_value_node = vertex_list.back().get_parent_value_node();
1380 for(iter = vertex_list.begin(); iter!=vertex_list.end(); iter++)
1381 if (iter->get_parent_value_node() != last_value_node)
1383 vertex_list.insert(vertex_list.end(), vertex_list.begin(), iter);
1384 vertex_list.erase(vertex_list.begin(), iter);
1388 debug_show_vertex_list(0, vertex_list, "before detecting direction and limits", -1);
1389 // rearrange the list so that the first and last node are on different blines
1390 iter = vertex_list.begin();
1391 while (iter!=vertex_list.end())
1393 // make a note of which bline we're looking at
1394 ValueNode::Handle parent_value_node = iter->get_parent_value_node();
1396 int points_in_line = synfig::LinkableValueNode::Handle::cast_reinterpret(parent_value_node)->link_count();
1397 bool looped = (*parent_value_node)(get_time()).get_loop();
1398 int this_index, last_index = iter->get_index();
1399 int min_index = last_index, max_index = last_index;
1403 // printf("there are %d points in this line - first is index %d\n", points_in_line, last_index);
1405 // while we're looking at the same bline, keep going
1407 while (iter != vertex_list.end() && iter->get_parent_value_node() == parent_value_node)
1409 this_index = iter->get_index();
1410 // printf("index went from %d to %d\n", last_index, this_index);
1413 if (this_index - last_index > points_in_line/2)
1414 while (this_index - last_index > points_in_line/2)
1415 this_index -= points_in_line;
1416 else if (last_index - this_index > points_in_line/2)
1417 while (last_index - this_index > points_in_line/2)
1418 this_index += points_in_line;
1421 if (this_index < min_index) min_index = this_index;
1422 if (this_index > max_index) max_index = this_index;
1424 // printf("so let's imagine index went from %d to %d\n", last_index, this_index);
1425 if (this_index > last_index)
1427 else if (this_index < last_index)
1430 last_index = this_index;
1434 // printf("min %d and max %d\n", min_index, max_index);
1435 whole = max_index - min_index >= points_in_line;
1436 min_index = (min_index % points_in_line + points_in_line) % points_in_line;
1437 max_index = (max_index % points_in_line + points_in_line) % points_in_line;
1438 // they drew around a shape more than once - what's the start/end point? does it matter?
1439 if (whole) min_index = max_index = (min_index + max_index) / 2;
1440 // printf("processed min %d max %d whole %d\n", min_index, max_index, whole);
1446 // printf("whole (down) (%d) ", min_index);
1447 for (int i = min_index; i >= 0; i--)
1449 // printf("%d ", i);
1450 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, i));
1452 for (int i = points_in_line - 1; i >= min_index; i--)
1454 // printf("%d ", i);
1455 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, i));
1460 // printf("part (down) (%d -> %d) ", max_index, min_index);
1461 for (int i = max_index; i != min_index; i--)
1463 if (i == -1) i = points_in_line - 1;
1464 // printf("%d ", i);
1465 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, i));
1467 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, min_index));
1474 // printf("whole (%d) ", min_index);
1475 for (int i = min_index; i < points_in_line; i++)
1477 // printf("%d ", i);
1478 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, i));
1480 for (int i = 0; i <= min_index; i++)
1482 // printf("%d ", i);
1483 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, i));
1488 // printf("part (%d -> %d) ", min_index, max_index);
1489 for (int i = min_index; i != max_index; i++)
1491 if (i == points_in_line) i = 0;
1492 // printf("%d ", i);
1493 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, i));
1495 vertex_list.insert(start, synfigapp::ValueDesc(parent_value_node, max_index));
1499 // debug_show_vertex_list(0, vertex_list, "after insert", -1);
1500 vertex_list.erase(start, iter);
1501 // debug_show_vertex_list(0, vertex_list, "after delete", -1);
1504 debug_show_vertex_list(0, vertex_list, "continuous vertices", -1);
1506 // \todo reenable or delete this section
1508 for(bool done=false;!done && i<30;i++)
1510 debug_show_vertex_list(i, vertex_list, "in big loop", -1);
1512 // Set done to "true" for now. If
1513 // any updates are performed, we will
1514 // change it back to false.
1517 std::list<synfigapp::ValueDesc>::iterator prev,next;
1518 prev=vertex_list.end();prev--; // Set prev to the last ValueDesc
1519 next=vertex_list.begin();
1520 iter=next++; // Set iter to the first value desc, and next to the second
1523 for(;iter!=vertex_list.end();prev=iter,iter++,next++,current++)
1525 // we need to be able to erase(next) and can't do that if next is end()
1526 if (next == vertex_list.end()) next = vertex_list.begin();
1527 debug_show_vertex_list(i, vertex_list, "in loop around vertices", current);
1528 synfigapp::ValueDesc value_prev(*prev);
1529 synfigapp::ValueDesc value_desc(*iter);
1530 synfigapp::ValueDesc value_next(*next);
1532 assert(value_desc.is_valid());
1533 assert(value_next.is_valid());
1534 assert(value_prev.is_valid());
1536 // synfig::info("-------");
1537 // synfig::info(__FILE__":%d: value_prev 0x%08X:%d",__LINE__,value_prev.get_parent_value_node().get(),value_prev.get_index());
1538 // synfig::info(__FILE__":%d: value_desc 0x%08X:%d",__LINE__,value_desc.get_parent_value_node().get(),value_desc.get_index());
1539 // synfig::info(__FILE__":%d: value_next 0x%08X:%d",__LINE__,value_next.get_parent_value_node().get(),value_next.get_index());
1542 if(value_prev.parent_is_value_node() && value_desc.parent_is_value_node() && value_next.parent_is_value_node())
1544 // Remove random extraneous vertices
1545 if(value_prev.get_parent_value_node()==value_next.get_parent_value_node() &&
1546 value_prev.get_parent_value_node()!=value_desc.get_parent_value_node())
1548 vertex_list.erase(iter);
1555 // // Remove duplicate vertices
1557 // // if previous is the same as current or
1558 // // current is the same as next, remove current
1559 // if(value_prev.get_value_node()==value_desc.get_value_node() ||
1560 // value_desc.get_value_node()==value_next.get_value_node())
1562 // vertex_list.erase(iter);
1564 // printf("erased node - i = %d\n", i);
1568 // // if previous is the same as next, remove previous? or next?
1569 // if(value_prev.get_value_node()==value_next.get_value_node())
1571 // vertex_list.erase(next);
1572 // // vertex_list.erase(prev);
1574 // printf("erased node - i = %d\n", i);
1578 // if 'this' and 'next' both have parents
1579 if (value_desc.parent_is_value_node() && value_next.parent_is_value_node())
1581 // if they are both on the same bline - this has been handled by new code above
1582 if (value_desc.get_parent_value_node() == value_next.get_parent_value_node())
1584 // // if (next != vertex_list.end())
1586 // printf("parent loop is %d and node loop is ??\n",
1587 // (*(value_desc.get_parent_value_node()))(get_time()).get_loop()
1588 // // value_desc.get_value_node().get_loop(),
1591 // // Fill in missing vertices
1592 // // \todo take loops into account: seeing (15, 2, 3, 4) probably means that (0, 1) is missing, not 14 through 3
1593 // if(value_desc.get_index()<value_next.get_index()-1)
1595 // debug_show_vertex_list(i, vertex_list,
1596 // strprintf("same parent, different points this %d < next-1 %d",
1597 // value_desc.get_index(), ((value_next.get_index()-1))),
1599 // for (int index = value_desc.get_index()+1; index < value_next.get_index(); index++)
1601 // printf("inserting up %d\n", index);
1602 // vertex_list.insert(next, synfigapp::ValueDesc(value_desc.get_parent_value_node(), index));
1604 // debug_show_vertex_list(i, vertex_list, "new list", current);
1608 // if(value_next.get_index()<value_desc.get_index()-1)
1610 // debug_show_vertex_list(i, vertex_list,
1611 // strprintf("same parent, different points next %d < this-1 %d",
1612 // value_next.get_index(), ((value_desc.get_index()-1))),
1614 // for (int index = value_desc.get_index()-1; index > value_next.get_index(); index--)
1616 // printf("inserting down %d\n", index);
1617 // vertex_list.insert(next, synfigapp::ValueDesc(value_desc.get_parent_value_node(), index));
1619 // debug_show_vertex_list(i, vertex_list, "new list", current);
1625 // 'this' and 'next' have different parents
1628 ValueNode::Handle v1 = value_desc.get_value_node();
1629 ValueNode::Handle v2 = value_desc.get_parent_value_node();
1633 printf("different\n");
1635 if (value_desc.get_value_node() != value_next.get_value_node())
1637 // Ensure that connections between blines are properly connected
1638 BLinePoint vertex(value_desc.get_value(get_time()).get(BLinePoint()));
1639 BLinePoint vertex_next(value_next.get_value(get_time()).get(BLinePoint()));
1641 //synfig::info("--------");
1642 //synfig::info(__FILE__":%d: vertex: [%f, %f]",__LINE__,vertex.get_vertex()[0],vertex.get_vertex()[1]);
1643 //synfig::info(__FILE__":%d: vertex_next: [%f, %f]",__LINE__,vertex_next.get_vertex()[0],vertex_next.get_vertex()[1]);
1645 // if this vertex is close to the next one, replace this vertex with a new one
1646 // and erase the next one
1647 printf("this point is %5.2f from the next point - compare with %5.2f\n",
1648 (vertex.get_vertex()-vertex_next.get_vertex()).mag_squared(),
1650 if((vertex.get_vertex()-vertex_next.get_vertex()).mag_squared()<radius*radius)
1652 printf("in one - it's close\n");
1653 ValueNode_Composite::Handle value_node;
1654 ValueNode_Composite::Handle value_node_next;
1655 value_node=ValueNode_Composite::Handle::cast_dynamic(value_desc.get_value_node().clone());
1656 value_node_next=ValueNode_Composite::Handle::cast_dynamic(value_next.get_value_node().clone());
1657 if(!value_node || !value_node_next)
1659 synfig::info(__FILE__":%d: Unable to properly connect blines.",__LINE__);
1662 // \todo if next isn't split, don't we want to copy its 'Tangent 1' instead?
1663 value_node->set_link(5,value_node_next->get_link(5)); // Tangent 2
1664 value_node->set_link(3,ValueNode_Const::create(true)); // Split Tangents
1666 // get_canvas_interface()->auto_export(value_node);
1667 printf("exporting\n");
1668 get_canvas_interface()->add_value_node(value_node,value_node->get_id() + strprintf("foo %d", rand()));
1670 assert(value_node->is_exported());
1671 // replace 'this' with the new valuenode
1672 *iter=synfigapp::ValueDesc(get_canvas(),value_node->get_id());
1673 printf("erasing next\n");
1674 printf("erasing next point\n");
1675 vertex_list.erase(next);
1678 } // this vertex isn't close to the next one
1679 else if (value_prev.parent_is_value_node())
1681 printf("in two - it's far\n");
1682 // \todo this only makes sense if prev is on the same bline
1683 printf("this is index %d\n", value_desc.get_index());
1684 printf("prev is index %d\n", value_prev.get_index());
1685 bool positive_trend(value_desc.get_index()>value_prev.get_index());
1689 printf("positive trend\n");
1690 printf("comparing index %d < link_count()-1 = %d-1 = %d\n",
1691 value_desc.get_index(),
1692 LinkableValueNode::Handle::cast_static(value_desc.get_parent_value_node())->link_count(),
1693 LinkableValueNode::Handle::cast_static(value_desc.get_parent_value_node())->link_count()-1);
1694 if (value_desc.get_index()<LinkableValueNode::Handle::cast_static(value_desc.get_parent_value_node())->link_count()-1)
1696 printf("in two - b\n");
1697 printf("inserting node with index %d\n", value_desc.get_index()+1);
1698 vertex_list.insert(next,
1699 synfigapp::ValueDesc(value_desc.get_parent_value_node(),
1700 value_desc.get_index()+1));
1705 else // !positive_trend
1707 printf("negative trend\n");
1708 if(value_desc.get_index()>0)
1710 printf("in two - a\n");
1711 printf("inserting node on this line with index %d\n",
1712 value_desc.get_index()-1);
1713 vertex_list.insert(next,
1714 synfigapp::ValueDesc(value_desc.get_parent_value_node(),
1715 value_desc.get_index()-1));
1727 if(vertex_list.size()<=2)
1729 synfig::info(__FILE__":%d: Vertex list too small to make region.",__LINE__);
1730 return Smach::RESULT_OK;
1733 debug_show_vertex_list(i, vertex_list, "finished tidying list", -1);
1736 // If we aren't the trivial case,
1737 // then go ahead and create the new
1739 if(!value_node_bline)
1741 synfig::info("not all points are on the same bline");
1742 value_node_bline=ValueNode_BLine::create();
1744 std::list<synfigapp::ValueDesc>::iterator iter;
1745 for(iter=vertex_list.begin();iter!=vertex_list.end();++iter)
1747 // Ensure that the vertex is exported.
1748 get_canvas_interface()->auto_export(*iter);
1750 value_node_bline->add(iter->get_value_node());
1751 //value_node_bline->add(ValueNode_BLine::ListEntry(iter->get_value_node()));
1754 value_node_bline->set_loop(true);
1757 get_canvas_interface()->auto_export(value_node_bline);
1759 // Now we create the region layer
1762 Layer::Handle layer;
1763 Canvas::Handle canvas(get_canvas_view()->get_canvas());
1766 // we are temporarily using the layer to hold something
1767 layer=get_canvas_view()->get_selection_manager()->get_selected_layer();
1770 depth=layer->get_depth();
1771 canvas=layer->get_canvas();
1774 synfigapp::PushMode push_mode(get_canvas_interface(),synfigapp::MODE_NORMAL);
1776 layer=get_canvas_interface()->add_layer_to("region",canvas,depth);
1778 layer->set_param("color",synfigapp::Main::get_background_color());
1781 layer->set_param("feather",get_feather());
1782 get_canvas_interface()->signal_layer_param_changed()(layer,"feather");
1784 get_canvas_interface()->signal_layer_param_changed()(layer,"color");
1786 synfigapp::Action::Handle action(synfigapp::Action::create("layer_param_connect"));
1790 action->set_param("canvas",get_canvas());
1791 action->set_param("canvas_interface",get_canvas_interface());
1792 action->set_param("layer",layer);
1793 if(!action->set_param("param",String("bline")))
1794 synfig::error("LayerParamConnect didn't like \"param\"");
1795 if(!action->set_param("value_node",ValueNode::Handle(value_node_bline)))
1796 synfig::error("LayerParamConnect didn't like \"value_node\"");
1798 if(!get_canvas_interface()->get_instance()->perform_action(action))
1800 get_canvas_view()->get_ui_interface()->error(_("Unable to create Region layer"));
1802 return Smach::RESULT_ERROR;
1804 get_canvas_view()->get_selection_manager()->set_selected_layer(layer);
1807 return Smach::RESULT_ACCEPT;
1811 StateDraw_Context::refresh_ducks()
1813 get_canvas_view()->queue_rebuild_ducks();
1815 get_work_area()->clear_ducks();
1818 std::list< etl::smart_ptr<std::list<synfig::Point> > >::iterator iter;
1820 for(iter=stroke_list.begin();iter!=stroke_list.end();++iter)
1822 get_work_area()->add_stroke(*iter);
1825 get_work_area()->queue_draw();
1831 StateDraw_Context::extend_bline_from_begin(ValueNode_BLine::Handle value_node,std::list<synfig::BLinePoint> bline,bool complete_loop)
1833 // Create the action group
1834 synfigapp::Action::PassiveGrouper group(get_canvas_interface()->get_instance().get(),_("Extend BLine"));
1838 synfigapp::Action::Handle action(synfigapp::Action::create("value_node_dynamic_list_loop"));
1841 action->set_param("canvas",get_canvas());
1842 action->set_param("canvas_interface",get_canvas_interface());
1843 action->set_param("value_node",ValueNode::Handle(value_node));
1845 if(!get_canvas_interface()->get_instance()->perform_action(action))
1847 get_canvas_view()->get_ui_interface()->error(_("Unable to set loop for bline"));
1849 return Smach::RESULT_ERROR;
1853 std::list<synfig::BLinePoint>::reverse_iterator iter;
1854 for(iter=bline.rbegin();!(iter==bline.rend());++iter)
1856 ValueNode_Composite::Handle composite(ValueNode_Composite::create(*iter));
1858 synfigapp::Action::Handle action(synfigapp::Action::create("value_node_dynamic_list_insert"));
1861 synfigapp::ValueDesc value_desc(value_node,0);
1863 action->set_param("canvas",get_canvas());
1864 action->set_param("canvas_interface",get_canvas_interface());
1865 action->set_param("value_desc",value_desc);
1866 if(!action->set_param("item",ValueNode::Handle(composite)))
1867 synfig::error("ACTION didn't like \"item\"");
1869 if(!get_canvas_interface()->get_instance()->perform_action(action))
1871 get_canvas_view()->get_ui_interface()->error(_("Unable to insert item"));
1874 return Smach::RESULT_ERROR;
1877 last_stroke=value_node;
1878 return Smach::RESULT_ACCEPT;
1882 StateDraw_Context::extend_bline_from_end(ValueNode_BLine::Handle value_node,std::list<synfig::BLinePoint> bline,bool complete_loop)
1884 // Create the action group
1885 synfigapp::Action::PassiveGrouper group(get_canvas_interface()->get_instance().get(),_("Extend BLine"));
1889 synfigapp::Action::Handle action(synfigapp::Action::create("value_node_dynamic_list_loop"));
1892 action->set_param("canvas",get_canvas());
1893 action->set_param("canvas_interface",get_canvas_interface());
1894 action->set_param("value_node",ValueNode::Handle(value_node));
1896 if(!get_canvas_interface()->get_instance()->perform_action(action))
1898 get_canvas_view()->get_ui_interface()->error(_("Unable to set loop for bline"));
1900 return Smach::RESULT_ERROR;
1904 std::list<synfig::BLinePoint>::iterator iter;
1905 for(iter=bline.begin();iter!=bline.end();++iter)
1907 ValueNode_Composite::Handle composite(ValueNode_Composite::create(*iter));
1909 synfigapp::Action::Handle action(synfigapp::Action::create("value_node_dynamic_list_insert"));
1912 synfigapp::ValueDesc value_desc(value_node,value_node->link_count());
1914 action->set_param("canvas",get_canvas());
1915 action->set_param("canvas_interface",get_canvas_interface());
1916 action->set_param("value_desc",value_desc);
1917 if(!action->set_param("item",ValueNode::Handle(composite)))
1918 synfig::error("ACTION didn't like \"item\"");
1920 if(!get_canvas_interface()->get_instance()->perform_action(action))
1922 get_canvas_view()->get_ui_interface()->error(_("Unable to insert item"));
1925 return Smach::RESULT_ERROR;
1928 last_stroke=value_node;
1929 return Smach::RESULT_ACCEPT;
1933 StateDraw_Context::reverse_bline(std::list<synfig::BLinePoint> &bline)
1937 std::list<synfig::BLinePoint>::iterator iter,eiter;
1941 for(i=0;i<(int)bline.size()/2;++iter,--eiter,i++)
1943 iter_swap(iter,eiter);
1950 StateDraw_Context::fill_last_stroke_and_unselect_other_layers()
1955 synfigapp::Action::PassiveGrouper group(get_canvas_interface()->get_instance().get(),_("Fill Stroke"));
1957 Layer::Handle layer;
1959 get_canvas_interface()->auto_export(last_stroke);
1961 synfigapp::PushMode push_mode(get_canvas_interface(),synfigapp::MODE_NORMAL);
1963 Canvas::Handle canvas(get_canvas_view()->get_canvas());
1966 layer=get_canvas_view()->get_selection_manager()->get_selected_layer();
1969 depth=layer->get_depth();
1970 canvas=layer->get_canvas();
1973 get_canvas_interface()->get_selection_manager()->clear_selected_layers();
1974 layer=get_canvas_interface()->add_layer_to("region", canvas, depth);
1976 layer->set_param("color",synfigapp::Main::get_background_color());
1977 layer->set_description(last_stroke_id + _(" Region"));
1979 synfigapp::Action::Handle action(synfigapp::Action::create("layer_param_connect"));
1983 action->set_param("canvas",get_canvas());
1984 action->set_param("canvas_interface",get_canvas_interface());
1985 action->set_param("layer",layer);
1986 if(!action->set_param("param",String("bline")))
1987 synfig::error("LayerParamConnect didn't like \"param\"");
1988 if(!action->set_param("value_node",ValueNode::Handle(last_stroke)))
1989 synfig::error("LayerParamConnect didn't like \"value_node\"");
1991 if(!get_canvas_interface()->get_instance()->perform_action(action))
1993 get_canvas_view()->get_ui_interface()->error(_("Unable to create Region layer"));
1997 get_canvas_view()->get_selection_manager()->set_selected_layer(layer);
2001 StateDraw_Context::fill_last_stroke()
2006 synfigapp::SelectionManager::LayerList layer_list = get_canvas_view()->get_selection_manager()->get_selected_layers();
2007 fill_last_stroke_and_unselect_other_layers();
2008 get_canvas_view()->get_selection_manager()->set_selected_layers(layer_list);