]> git.donarmstrong.com Git - lilypond.git/blob - lily/dot-column.cc
release: 1.3.37
[lilypond.git] / lily / dot-column.cc
1 /*
2   dot-column.cc -- implement Dot_column
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "dots.hh"
10 #include "dot-column.hh"
11 #include "rhythmic-head.hh"
12 #include "group-interface.hh"
13 #include "staff-symbol-referencer.hh"
14 #include "directional-element-interface.hh"
15 #include "side-position-interface.hh"
16 #include "axis-group-interface.hh"
17
18
19 // todo: dots and elements duplicate each other.
20 void
21 Dot_column::add_dots (Dots *d)
22 {
23   Group_interface gi (this, "dots");
24   gi.add_element (d);
25
26   add_dependency (d);
27   Axis_group_interface (this).add_element (d);
28 }
29
30 void
31 Dot_column::add_head (Rhythmic_head *r)
32 {
33   if (!r->dots_l ())
34     return ;
35
36   side_position (this).add_support (r);
37   add_dots (r->dots_l ());
38 }
39
40
41 int
42 Dot_column::compare (Dots * const &d1, Dots * const &d2)
43 {
44   Staff_symbol_referencer_interface s1(d1);
45   Staff_symbol_referencer_interface s2(d2);  
46   
47   return int (s1.position_f () - s2.position_f ());
48 }
49
50
51 Dot_column::Dot_column ()
52 {
53   Group_interface gi (this, "dots");
54   gi.set_interface ();
55   directional_element (this).set (RIGHT);
56   
57   Axis_group_interface (this).set_interface ();
58   Axis_group_interface (this).set_axes(X_AXIS,X_AXIS);
59 }
60
61 /*
62   Will fuck up in this case.
63
64   X.  .
65   X.X .
66    |X .
67    |
68    |
69    |X .
70    |
71    |
72
73
74    Should be smarter.
75  */
76 void
77 Dot_column::after_line_breaking ()
78 {
79   Link_array<Dots> dots = Group_interface__extract_elements (this, (Dots*)0 , "dots"); 
80   dots.sort (Dot_column::compare);
81   
82   if (dots.size () < 2)
83     return;
84   Slice s;
85   s.set_empty ();
86
87   Array<int> taken_posns;
88   int conflicts = 0;
89   for (int i=0; i < dots.size (); i++)
90     {
91       Real p = Staff_symbol_referencer_interface (dots[i]).position_f ();
92       for (int j=0; j < taken_posns.size (); j++)
93         {
94           if (taken_posns[j] == (int) p)
95             conflicts++;
96         }
97       taken_posns.push ((int)p);
98       s.unite (Slice ((int)p,
99                       (int)p));      
100     }
101
102   if (!conflicts)
103     return;
104   
105   int  middle = s.center ();
106   /*
107     +1 -> off by one 
108    */
109   int pos = middle - dots.size () + 1;
110   if (!(pos % 2))
111     pos ++;                     // center () rounds down.
112
113   for (int i=0; i  <dots.size (); pos += 2, i++)
114     {
115       staff_symbol_referencer (dots[i]).set_position(pos);
116     }
117 }