1 /* === S Y N F I G ========================================================= */
3 ** \brief Template File
5 ** $Id: renderer_ducks.cpp,v 1.1.1.1 2005/01/07 03:34:36 darco Exp $
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
10 ** This package is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU General Public License as
12 ** published by the Free Software Foundation; either version 2 of
13 ** the License, or (at your option) any later version.
15 ** This package is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ** General Public License for more details.
21 /* ========================================================================= */
23 /* === H E A D E R S ======================================================= */
32 #include "renderer_ducks.h"
34 #include "duckmatic.h"
37 #include "widget_color.h"
38 #include <synfig/distance.h>
43 /* === U S I N G =========================================================== */
47 using namespace synfig;
48 using namespace studio;
50 /* === M A C R O S ========================================================= */
52 /* === G L O B A L S ======================================================= */
54 /* === P R O C E D U R E S ================================================= */
56 /* === M E T H O D S ======================================================= */
58 Renderer_Ducks::~Renderer_Ducks()
64 Renderer_Ducks::get_enabled_vfunc()const
66 return get_work_area()->grid_status();
78 ScreenDuck():width(0) { }
82 Renderer_Ducks::render_vfunc(
83 const Glib::RefPtr<Gdk::Drawable>& drawable,
84 const Gdk::Rectangle& expose_area
87 assert(get_work_area());
91 const synfig::Vector focus_point(get_work_area()->get_focus_point());
94 int drawable_w,drawable_h;
95 drawable->get_size(drawable_w,drawable_h);
97 Glib::RefPtr<Gdk::GC> gc(Gdk::GC::create(drawable));
100 const synfig::Vector::value_type window_startx(get_work_area()->get_window_tl()[0]);
101 const synfig::Vector::value_type window_starty(get_work_area()->get_window_tl()[1]);
103 const float pw(get_pw()),ph(get_ph());
105 const std::list<etl::handle<Duckmatic::Bezier> >& bezier_list(get_work_area()->bezier_list());
106 const bool solid_lines(get_work_area()->solid_lines);
108 const std::list<handle<Duckmatic::Stroke> >& stroke_list(get_work_area()->stroke_list());
110 Glib::RefPtr<Pango::Layout> layout(Pango::Layout::create(get_work_area()->get_pango_context()));
112 // Render the strokes
113 for(std::list<handle<Duckmatic::Stroke> >::const_iterator iter=stroke_list.begin();iter!=stroke_list.end();++iter)
115 Point window_start(window_startx,window_starty);
116 vector<Gdk::Point> points;
117 std::list<synfig::Point>::iterator iter2;
120 for(iter2=(*iter)->stroke_data->begin();iter2!=(*iter)->stroke_data->end();++iter2)
122 holder=*iter2-window_start;
123 holder[0]/=pw;holder[1]/=ph;
124 points.push_back(Gdk::Point(round_to_int(holder[0]),round_to_int(holder[1])));
127 gc->set_rgb_fg_color(colorconv_synfig2gdk((*iter)->color));
128 gc->set_function(Gdk::COPY);
129 gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
132 drawable->draw_lines(gc, Glib::ArrayHandle<Gdk::Point>(points));
137 // Render the beziers
138 for(std::list<handle<Duckmatic::Bezier> >::const_iterator iter=bezier_list.begin();iter!=bezier_list.end();++iter)
140 Point window_start(window_startx,window_starty);
141 Point p1((*iter)->p1->get_trans_point()-window_start);
142 Point p2((*iter)->p2->get_trans_point()-window_start);
143 Point c1((*iter)->c1->get_trans_point()-window_start);
144 Point c2((*iter)->c2->get_trans_point()-window_start);
149 bezier<Point> curve(p1,c1,c2,p2);
150 vector<Gdk::Point> points;
154 for(f=0;f<1.0;f+=1.0/17.0)
157 points.push_back(Gdk::Point(round_to_int(pt[0]),round_to_int(pt[1])));
159 points.push_back(Gdk::Point(round_to_int(p2[0]),round_to_int(p2[1])));
164 gc->set_rgb_fg_color(Gdk::Color("#000000"));
165 gc->set_function(Gdk::COPY);
166 gc->set_line_attributes(3,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
167 drawable->draw_lines(gc, Glib::ArrayHandle<Gdk::Point>(points));
168 gc->set_rgb_fg_color(Gdk::Color("#afafaf"));
169 gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
170 drawable->draw_lines(gc, Glib::ArrayHandle<Gdk::Point>(points));
175 // gc->set_rgb_fg_color(Gdk::Color("#ffffff"));
176 // gc->set_function(Gdk::INVERT);
177 // gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
178 // drawable->draw_lines(gc, Glib::ArrayHandle<Gdk::Point>(points));
179 gc->set_rgb_fg_color(Gdk::Color("#000000"));
180 gc->set_function(Gdk::COPY);
181 gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
182 drawable->draw_lines(gc, Glib::ArrayHandle<Gdk::Point>(points));
183 gc->set_rgb_fg_color(Gdk::Color("#afafaf"));
184 gc->set_line_attributes(1,Gdk::LINE_ON_OFF_DASH,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
185 drawable->draw_lines(gc, Glib::ArrayHandle<Gdk::Point>(points));
191 const DuckList duck_list(get_work_area()->get_duck_list());
192 //Gtk::StateType state = Gtk::STATE_ACTIVE;
193 Gtk::ShadowType shadow=Gtk::SHADOW_OUT;
194 std::list<ScreenDuck> screen_duck_list;
195 const float radius((abs(pw)+abs(ph))*4);
197 etl::handle<Duck> hover_duck(get_work_area()->find_duck(get_work_area()->get_cursor_pos(),radius, get_work_area()->get_type_mask()));
200 for(std::list<handle<Duck> >::const_iterator iter=duck_list.begin();iter!=duck_list.end();++iter)
203 // If this type of duck has been masked, then skip it
204 if((*iter)->get_type() && (!(get_work_area()->get_type_mask() & (*iter)->get_type())))
208 // Gdk::Rectangle area;
209 Point point((*iter)->get_trans_point());
210 Point origin((*iter)->get_trans_origin());
212 point[0]=(point[0]-window_startx)/pw;
213 point[1]=(point[1]-window_starty)/ph;
215 bool has_connect(false);
216 if((*iter)->get_tangent() || (*iter)->get_type()&Duck::TYPE_ANGLE)
220 if((*iter)->get_connect_duck())
223 origin=(*iter)->get_connect_duck()->get_trans_point();
226 origin[0]=(origin[0]-window_startx)/pw;
227 origin[1]=(origin[1]-window_starty)/ph;
230 bool selected(get_work_area()->duck_is_selected(*iter));
231 bool hover(*iter==hover_duck);
233 shadow = selected?Gtk::SHADOW_IN:Gtk::SHADOW_OUT;
235 if(get_work_area()->get_selected_value_node())
237 synfigapp::ValueDesc value_desc((*iter)->get_value_desc());
238 if(value_desc.is_valid() && value_desc.is_value_node() && get_work_area()->get_selected_value_node()==value_desc.get_value_node())
240 gc->set_function(Gdk::COPY);
241 gc->set_rgb_fg_color(Gdk::Color("#FF0000"));
242 //gc->set_line_attributes(1,Gdk::LINE_ON_OFF_DASH,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
243 gc->set_line_attributes(2,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
245 drawable->draw_rectangle(gc,false,
246 round_to_int(point[0]-5),
247 round_to_int(point[1]-5),
255 if((*iter)->get_box_duck())
257 Point boxpoint((*iter)->get_box_duck()->get_trans_point());
258 boxpoint[0]=(boxpoint[0]-window_startx)/pw;
259 boxpoint[1]=(boxpoint[1]-window_starty)/ph;
260 Point tl(min(point[0],boxpoint[0]),min(point[1],boxpoint[1]));
262 gc->set_function(Gdk::COPY);
263 gc->set_rgb_fg_color(Gdk::Color("#FFFFFF"));
264 gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
265 drawable->draw_rectangle(gc,false,
268 round_to_int(abs(boxpoint[0]-point[0])),
269 round_to_int(abs(boxpoint[1]-point[1]))
271 gc->set_function(Gdk::COPY);
272 gc->set_rgb_fg_color(Gdk::Color("#000000"));
273 gc->set_line_attributes(1,Gdk::LINE_ON_OFF_DASH,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
274 drawable->draw_rectangle(gc,false,
277 round_to_int(abs(boxpoint[0]-point[0])),
278 round_to_int(abs(boxpoint[1]-point[1]))
282 ScreenDuck screen_duck;
283 screen_duck.pos=point;
284 screen_duck.selected=selected;
285 screen_duck.hover=hover;
287 if(!(*iter)->get_editable())
288 screen_duck.color=(Gdk::Color("#cfcfcf"));
289 else if((*iter)->get_tangent())
290 screen_duck.color=((*iter)->get_scalar()<0?Gdk::Color("#ffff00"):Gdk::Color("#ff0000"));
291 else if((*iter)->get_type()&Duck::TYPE_VERTEX)
292 screen_duck.color=Gdk::Color("#ff7f00");
293 else if((*iter)->get_type()&Duck::TYPE_RADIUS)
294 screen_duck.color=Gdk::Color("#00ffff");
295 else if((*iter)->get_type()&Duck::TYPE_WIDTH)
296 screen_duck.color=Gdk::Color("#ff00ff");
297 else if((*iter)->get_type()&Duck::TYPE_ANGLE)
298 screen_duck.color=(Gdk::Color("#0000ff"));
300 screen_duck.color=Gdk::Color("#00ff00");
302 screen_duck_list.push_front(screen_duck);
308 gc->set_line_attributes(3,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
309 gc->set_rgb_fg_color(Gdk::Color("#000000"));
310 gc->set_function(Gdk::COPY);
311 drawable->draw_line(gc, (int)origin[0],(int)origin[1],(int)(point[0]),(int)(point[1]));
312 gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
313 gc->set_rgb_fg_color(Gdk::Color("#9fefef"));
314 drawable->draw_line(gc, (int)origin[0],(int)origin[1],(int)(point[0]),(int)(point[1]));
318 // gc->set_rgb_fg_color(Gdk::Color("#ffffff"));
319 // gc->set_function(Gdk::INVERT);
320 // drawable->draw_line(gc, (int)origin[0],(int)origin[1],(int)(point[0]),(int)(point[1]));
321 gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
322 gc->set_rgb_fg_color(Gdk::Color("#000000"));
323 gc->set_function(Gdk::COPY);
324 drawable->draw_line(gc, (int)origin[0],(int)origin[1],(int)(point[0]),(int)(point[1]));
325 gc->set_line_attributes(1,Gdk::LINE_ON_OFF_DASH,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
326 gc->set_rgb_fg_color(Gdk::Color("#9fefef"));
327 drawable->draw_line(gc, (int)origin[0],(int)origin[1],(int)(point[0]),(int)(point[1]));
331 if((*iter)->is_radius())
333 const Real mag((point-origin).mag());
334 const int d(round_to_int(mag*2));
335 const int x(round_to_int(origin[0]-mag));
336 const int y(round_to_int(origin[1]-mag));
340 gc->set_rgb_fg_color(Gdk::Color("#000000"));
341 gc->set_function(Gdk::COPY);
342 gc->set_line_attributes(3,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
353 gc->set_rgb_fg_color(Gdk::Color("#afafaf"));
357 gc->set_rgb_fg_color(Gdk::Color("#ffffff"));
358 gc->set_function(Gdk::INVERT);
360 gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
375 Distance real_mag(((*iter)->get_trans_point()-(*iter)->get_trans_origin()).mag(),Distance::SYSTEM_UNITS);
376 real_mag.convert(App::distance_system,get_work_area()->get_rend_desc());
377 layout->set_text(real_mag.get_string());
379 gc->set_rgb_fg_color(Gdk::Color("#000000"));
380 drawable->draw_layout(
382 round_to_int(point[0])+1+6,
383 round_to_int(point[1])+1-8,
386 gc->set_rgb_fg_color(Gdk::Color("#FF00FF"));
387 drawable->draw_layout(
389 round_to_int(point[0])+6,
390 round_to_int(point[1])-8,
400 for(;screen_duck_list.size();screen_duck_list.pop_front())
404 Gdk::Color color(screen_duck_list.front().color);
406 if(!screen_duck_list.front().selected)
408 color.set_red(color.get_red()*2/3);
409 color.set_green(color.get_green()*2/3);
410 color.set_blue(color.get_blue()*2/3);
413 if(screen_duck_list.front().hover && !screen_duck_list.back().hover && screen_duck_list.size()>1)
415 screen_duck_list.push_back(screen_duck_list.front());
419 if(screen_duck_list.front().hover)
425 gc->set_function(Gdk::COPY);
426 gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
427 gc->set_rgb_fg_color(Gdk::Color("#000000"));
431 round_to_int(screen_duck_list.front().pos[0]-radius),
432 round_to_int(screen_duck_list.front().pos[1]-radius),
440 gc->set_rgb_fg_color(color);
445 round_to_int(screen_duck_list.front().pos[0]-radius+outline),
446 round_to_int(screen_duck_list.front().pos[1]-radius+outline),