Use symbolic names for most of the duck colors, rather than hardcoded hex color values.
[synfig.git] / synfig-studio / trunk / src / gtkmm / renderer_ducks.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file renderer_ducks.cpp
3 **      \brief Template File
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === H E A D E R S ======================================================= */
24
25 #ifdef USING_PCH
26 #       include "pch.h"
27 #else
28 #ifdef HAVE_CONFIG_H
29 #       include <config.h>
30 #endif
31
32 #include "renderer_ducks.h"
33 #include "workarea.h"
34 #include "duckmatic.h"
35 #include <ETL/bezier>
36 #include <ETL/misc>
37 #include "widget_color.h"
38 #include <synfig/distance.h>
39 #include "app.h"
40
41 #include "general.h"
42
43 #endif
44
45 /* === U S I N G =========================================================== */
46
47 using namespace std;
48 using namespace etl;
49 using namespace synfig;
50 using namespace studio;
51
52 /* === M A C R O S ========================================================= */
53
54 /* === G L O B A L S ======================================================= */
55
56 /* === P R O C E D U R E S ================================================= */
57
58 /* === M E T H O D S ======================================================= */
59
60 Renderer_Ducks::~Renderer_Ducks()
61 {
62 }
63
64 /*
65 bool
66 Renderer_Ducks::get_enabled_vfunc()const
67 {
68         return get_work_area()->grid_status();
69 }
70 */
71
72 struct ScreenDuck
73 {
74         synfig::Point pos;
75         Gdk::Color color;
76         bool selected;
77         bool hover;
78         Real width;
79
80         ScreenDuck():width(0) { }
81 };
82
83 void
84 Renderer_Ducks::render_vfunc(
85         const Glib::RefPtr<Gdk::Drawable>& drawable,
86         const Gdk::Rectangle& /*expose_area*/
87 )
88 {
89         assert(get_work_area());
90         if(!get_work_area())
91                 return;
92
93         const synfig::Vector focus_point(get_work_area()->get_focus_point());
94
95
96         int drawable_w,drawable_h;
97         drawable->get_size(drawable_w,drawable_h);
98
99         Glib::RefPtr<Gdk::GC> gc(Gdk::GC::create(drawable));
100
101
102         const synfig::Vector::value_type window_startx(get_work_area()->get_window_tl()[0]);
103         const synfig::Vector::value_type window_starty(get_work_area()->get_window_tl()[1]);
104
105         const float pw(get_pw()),ph(get_ph());
106
107         const std::list<etl::handle<Duckmatic::Bezier> >& bezier_list(get_work_area()->bezier_list());
108         const bool solid_lines(get_work_area()->solid_lines);
109
110         const std::list<handle<Duckmatic::Stroke> >& stroke_list(get_work_area()->stroke_list());
111
112         Glib::RefPtr<Pango::Layout> layout(Pango::Layout::create(get_work_area()->get_pango_context()));
113
114         // Render the strokes
115         for(std::list<handle<Duckmatic::Stroke> >::const_iterator iter=stroke_list.begin();iter!=stroke_list.end();++iter)
116         {
117                 Point window_start(window_startx,window_starty);
118                 vector<Gdk::Point> points;
119                 std::list<synfig::Point>::iterator iter2;
120                 Point holder;
121
122                 for(iter2=(*iter)->stroke_data->begin();iter2!=(*iter)->stroke_data->end();++iter2)
123                 {
124                         holder=*iter2-window_start;
125                         holder[0]/=pw;holder[1]/=ph;
126                         points.push_back(Gdk::Point(round_to_int(holder[0]),round_to_int(holder[1])));
127                 }
128
129                 gc->set_rgb_fg_color(colorconv_synfig2gdk((*iter)->color));
130                 gc->set_function(Gdk::COPY);
131                 gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
132
133                 // Draw the stroke
134                 drawable->draw_lines(gc, Glib::ArrayHandle<Gdk::Point>(points));
135         }
136
137
138
139         // Render the beziers
140         for(std::list<handle<Duckmatic::Bezier> >::const_iterator iter=bezier_list.begin();iter!=bezier_list.end();++iter)
141         {
142                 Point window_start(window_startx,window_starty);
143                 Point p1((*iter)->p1->get_trans_point()-window_start);
144                 Point p2((*iter)->p2->get_trans_point()-window_start);
145                 Point c1((*iter)->c1->get_trans_point()-window_start);
146                 Point c2((*iter)->c2->get_trans_point()-window_start);
147                 p1[0]/=pw;p1[1]/=ph;
148                 p2[0]/=pw;p2[1]/=ph;
149                 c1[0]/=pw;c1[1]/=ph;
150                 c2[0]/=pw;c2[1]/=ph;
151                 bezier<Point> curve(p1,c1,c2,p2);
152                 vector<Gdk::Point> points;
153
154                 float f;
155                 Point pt;
156                 for(f=0;f<1.0;f+=1.0/17.0)
157                 {
158                         pt=curve(f);
159                         points.push_back(Gdk::Point(round_to_int(pt[0]),round_to_int(pt[1])));
160                 }
161                 points.push_back(Gdk::Point(round_to_int(p2[0]),round_to_int(p2[1])));
162
163                 // Draw the curve
164 /*              if(solid_lines)
165                 {
166                         gc->set_rgb_fg_color(DUCK_COLOR_BEZIER_1);
167                         gc->set_function(Gdk::COPY);
168                         gc->set_line_attributes(3,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
169                         drawable->draw_lines(gc, Glib::ArrayHandle<Gdk::Point>(points));
170                         gc->set_rgb_fg_color(DUCK_COLOR_BEZIER_2);
171                         gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
172                         drawable->draw_lines(gc, Glib::ArrayHandle<Gdk::Point>(points));
173                 }
174                 else
175 */
176                 {
177 //                      gc->set_rgb_fg_color(Gdk::Color("#ffffff"));
178 //                      gc->set_function(Gdk::INVERT);
179 //                      gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
180 //                      drawable->draw_lines(gc, Glib::ArrayHandle<Gdk::Point>(points));
181                         gc->set_rgb_fg_color(DUCK_COLOR_BEZIER_1);
182                         gc->set_function(Gdk::COPY);
183                         gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
184                         drawable->draw_lines(gc, Glib::ArrayHandle<Gdk::Point>(points));
185                         gc->set_rgb_fg_color(DUCK_COLOR_BEZIER_2);
186                         gc->set_line_attributes(1,Gdk::LINE_ON_OFF_DASH,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
187                         drawable->draw_lines(gc, Glib::ArrayHandle<Gdk::Point>(points));
188
189                 }
190         }
191
192
193         const DuckList duck_list(get_work_area()->get_duck_list());
194         //Gtk::StateType state = Gtk::STATE_ACTIVE;
195         Gtk::ShadowType shadow=Gtk::SHADOW_OUT;
196         std::list<ScreenDuck> screen_duck_list;
197         const float radius((abs(pw)+abs(ph))*4);
198
199         etl::handle<Duck> hover_duck(get_work_area()->find_duck(get_work_area()->get_cursor_pos(),radius, get_work_area()->get_type_mask()));
200
201         // Render the ducks
202         for(std::list<handle<Duck> >::const_iterator iter=duck_list.begin();iter!=duck_list.end();++iter)
203         {
204
205                 // If this type of duck has been masked, then skip it
206                 if((*iter)->get_type() && (!(get_work_area()->get_type_mask() & (*iter)->get_type())))
207                         continue;
208
209 //              Real x,y;
210         //      Gdk::Rectangle area;
211                 Point point((*iter)->get_trans_point());
212                 Point origin((*iter)->get_trans_origin());
213
214                 point[0]=(point[0]-window_startx)/pw;
215                 point[1]=(point[1]-window_starty)/ph;
216
217                 bool has_connect(false);
218                 if((*iter)->get_tangent() || (*iter)->get_type()&Duck::TYPE_ANGLE)
219                 {
220                         has_connect=true;
221                 }
222                 if((*iter)->get_connect_duck())
223                 {
224                         has_connect=true;
225                         origin=(*iter)->get_connect_duck()->get_trans_point();
226                 }
227
228                 origin[0]=(origin[0]-window_startx)/pw;
229                 origin[1]=(origin[1]-window_starty)/ph;
230
231
232                 bool selected(get_work_area()->duck_is_selected(*iter));
233                 bool hover(*iter==hover_duck);
234
235                 shadow = selected?Gtk::SHADOW_IN:Gtk::SHADOW_OUT;
236
237                 if(get_work_area()->get_selected_value_node())
238                 {
239                         synfigapp::ValueDesc value_desc((*iter)->get_value_desc());
240                         if(value_desc.is_valid() && value_desc.is_value_node() && get_work_area()->get_selected_value_node()==value_desc.get_value_node())
241                         {
242                                 gc->set_function(Gdk::COPY);
243                                 gc->set_rgb_fg_color(DUCK_COLOR_SELECTED);
244                                 //gc->set_line_attributes(1,Gdk::LINE_ON_OFF_DASH,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
245                                 gc->set_line_attributes(2,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
246
247                                 drawable->draw_rectangle(gc,false,
248                                         round_to_int(point[0]-5),
249                                         round_to_int(point[1]-5),
250                                         10,
251                                         10
252                                 );
253                         }
254
255                 }
256
257                 if((*iter)->get_box_duck())
258                 {
259                         Point boxpoint((*iter)->get_box_duck()->get_trans_point());
260                         boxpoint[0]=(boxpoint[0]-window_startx)/pw;
261                         boxpoint[1]=(boxpoint[1]-window_starty)/ph;
262                         Point tl(min(point[0],boxpoint[0]),min(point[1],boxpoint[1]));
263
264                         gc->set_function(Gdk::COPY);
265                         gc->set_rgb_fg_color(DUCK_COLOR_BOX_1);
266                         gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
267                         drawable->draw_rectangle(gc,false,
268                                 round_to_int(tl[0]),
269                                 round_to_int(tl[1]),
270                                 round_to_int(abs(boxpoint[0]-point[0])),
271                                 round_to_int(abs(boxpoint[1]-point[1]))
272                         );
273                         gc->set_function(Gdk::COPY);
274                         gc->set_rgb_fg_color(DUCK_COLOR_BOX_2);
275                         gc->set_line_attributes(1,Gdk::LINE_ON_OFF_DASH,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
276                         drawable->draw_rectangle(gc,false,
277                                 round_to_int(tl[0]),
278                                 round_to_int(tl[1]),
279                                 round_to_int(abs(boxpoint[0]-point[0])),
280                                 round_to_int(abs(boxpoint[1]-point[1]))
281                         );
282                 }
283
284                 ScreenDuck screen_duck;
285                 screen_duck.pos=point;
286                 screen_duck.selected=selected;
287                 screen_duck.hover=hover;
288
289                 if(!(*iter)->get_editable())
290                         screen_duck.color=(DUCK_COLOR_NOT_EDITABLE);
291                 else if((*iter)->get_tangent())
292                         screen_duck.color=((*iter)->get_scalar()<0 ? DUCK_COLOR_TANGENT_1 : DUCK_COLOR_TANGENT_2);
293                 else if((*iter)->get_type()&Duck::TYPE_VERTEX)
294                         screen_duck.color=DUCK_COLOR_VERTEX;
295                 else if((*iter)->get_type()&Duck::TYPE_RADIUS)
296                         screen_duck.color=DUCK_COLOR_RADIUS;
297                 else if((*iter)->get_type()&Duck::TYPE_WIDTH)
298                         screen_duck.color=DUCK_COLOR_WIDTH;
299                 else if((*iter)->get_type()&Duck::TYPE_ANGLE)
300                         screen_duck.color=(DUCK_COLOR_ANGLE);
301                 else
302                         screen_duck.color=DUCK_COLOR_OTHER;
303
304                 screen_duck_list.push_front(screen_duck);
305
306                 if(has_connect)
307                 {
308                         if(solid_lines)
309                         {
310                                 gc->set_line_attributes(3,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
311                                 gc->set_rgb_fg_color(Gdk::Color("#000000"));
312                                 gc->set_function(Gdk::COPY);
313                                 drawable->draw_line(gc, (int)origin[0],(int)origin[1],(int)(point[0]),(int)(point[1]));
314                                 gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
315                                 gc->set_rgb_fg_color(Gdk::Color("#9fefef"));
316                                 drawable->draw_line(gc, (int)origin[0],(int)origin[1],(int)(point[0]),(int)(point[1]));
317                         }
318                         else
319                         {
320 //                              gc->set_rgb_fg_color(Gdk::Color("#ffffff"));
321 //                              gc->set_function(Gdk::INVERT);
322 //                              drawable->draw_line(gc, (int)origin[0],(int)origin[1],(int)(point[0]),(int)(point[1]));
323                                 gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
324                                 gc->set_rgb_fg_color(Gdk::Color("#000000"));
325                                 gc->set_function(Gdk::COPY);
326                                 drawable->draw_line(gc, (int)origin[0],(int)origin[1],(int)(point[0]),(int)(point[1]));
327                                 gc->set_line_attributes(1,Gdk::LINE_ON_OFF_DASH,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
328                                 gc->set_rgb_fg_color(Gdk::Color("#9fefef"));
329                                 drawable->draw_line(gc, (int)origin[0],(int)origin[1],(int)(point[0]),(int)(point[1]));
330                         }
331                 }
332
333                 if((*iter)->is_radius())
334                 {
335                         const Real mag((point-origin).mag());
336                         const int d(round_to_int(mag*2));
337                         const int x(round_to_int(origin[0]-mag));
338                         const int y(round_to_int(origin[1]-mag));
339
340                         if(solid_lines)
341                         {
342                                 gc->set_rgb_fg_color(Gdk::Color("#000000"));
343                                 gc->set_function(Gdk::COPY);
344                                 gc->set_line_attributes(3,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
345                                 drawable->draw_arc(
346                                         gc,
347                                         false,
348                                         x,
349                                         y,
350                                         d,
351                                         d,
352                                         0,
353                                         360*64
354                                 );
355                                 gc->set_rgb_fg_color(Gdk::Color("#afafaf"));
356                         }
357                         else
358                         {
359                                 gc->set_rgb_fg_color(Gdk::Color("#ffffff"));
360                                 gc->set_function(Gdk::INVERT);
361                         }
362                         gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
363
364                         drawable->draw_arc(
365                                 gc,
366                                 false,
367                                 x,
368                                 y,
369                                 d,
370                                 d,
371                                 0,
372                                 360*64
373                         );
374
375                         if(hover)
376                         {
377                                 Distance real_mag(((*iter)->get_trans_point()-(*iter)->get_trans_origin()).mag(),Distance::SYSTEM_UNITS);
378                                 real_mag.convert(App::distance_system,get_work_area()->get_rend_desc());
379                                 layout->set_text(real_mag.get_string());
380
381                                 gc->set_rgb_fg_color(Gdk::Color("#000000"));
382                                 drawable->draw_layout(
383                                         gc,
384                                         round_to_int(point[0])+1+6,
385                                         round_to_int(point[1])+1-8,
386                                         layout
387                                 );
388                                 gc->set_rgb_fg_color(Gdk::Color("#FF00FF"));
389                                 drawable->draw_layout(
390                                         gc,
391                                         round_to_int(point[0])+6,
392                                         round_to_int(point[1])-8,
393                                         layout
394                                 );
395                         }
396
397                 }
398
399         }
400
401
402         for(;screen_duck_list.size();screen_duck_list.pop_front())
403         {
404                 int radius=4;
405                 int outline=1;
406                 Gdk::Color color(screen_duck_list.front().color);
407
408                 if(!screen_duck_list.front().selected)
409                 {
410                         color.set_red(color.get_red()*2/3);
411                         color.set_green(color.get_green()*2/3);
412                         color.set_blue(color.get_blue()*2/3);
413                 }
414
415                 if(screen_duck_list.front().hover && !screen_duck_list.back().hover && screen_duck_list.size()>1)
416                 {
417                         screen_duck_list.push_back(screen_duck_list.front());
418                         continue;
419                 }
420
421                 if(screen_duck_list.front().hover)
422                 {
423                         radius+=2;
424                         outline++;
425                 }
426
427                 gc->set_function(Gdk::COPY);
428                 gc->set_line_attributes(1,Gdk::LINE_SOLID,Gdk::CAP_BUTT,Gdk::JOIN_MITER);
429                 gc->set_rgb_fg_color(DUCK_COLOR_OUTLINE);
430                 drawable->draw_arc(
431                         gc,
432                         true,
433                         round_to_int(screen_duck_list.front().pos[0]-radius),
434                         round_to_int(screen_duck_list.front().pos[1]-radius),
435                         radius*2,
436                         radius*2,
437                         0,
438                         360*64
439                 );
440
441
442                 gc->set_rgb_fg_color(color);
443
444                 drawable->draw_arc(
445                         gc,
446                         true,
447                         round_to_int(screen_duck_list.front().pos[0]-radius+outline),
448                         round_to_int(screen_duck_list.front().pos[1]-radius+outline),
449                         radius*2-outline*2,
450                         radius*2-outline*2,
451                         0,
452                         360*64
453                 );
454         }
455 }