]> git.donarmstrong.com Git - lilypond.git/blob - lily/rest-collision.cc
*** empty log message ***
[lilypond.git] / lily / rest-collision.cc
1 /*
2   rest-collision.cc -- implement Rest_collision
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include <math.h>               // ceil.
10
11 #include "warn.hh"
12 #include "rest-collision.hh"
13 #include "note-column.hh"
14 #include "stem.hh"
15 #include "rhythmic-head.hh"
16 #include "paper-def.hh"
17 #include "rest.hh"
18 #include "group-interface.hh"
19 #include "staff-symbol-referencer.hh"
20 #include "duration.hh"
21
22 MAKE_SCHEME_CALLBACK (Rest_collision,force_shift_callback,2);
23 SCM
24 Rest_collision::force_shift_callback (SCM element_smob, SCM axis)
25 {
26   Grob *them = unsmob_grob (element_smob);
27   Axis a = (Axis) gh_scm2int (axis);
28   assert (a == Y_AXIS);
29
30   Grob * rc = unsmob_grob (them->get_grob_property ("rest-collision"));
31
32   if (rc && !to_boolean (rc->get_grob_property ("rest-collision-done")))
33     {
34       rc->set_grob_property ("rest-collision-done", SCM_BOOL_T);
35
36       do_shift (rc);
37     }
38   
39   return gh_double2scm (0.0);
40 }
41
42 void
43 Rest_collision::add_column (Grob*me,Grob *p)
44 {
45   me->add_dependency (p);
46   Pointer_group_interface::add_grob (me, ly_symbol2scm ("elements"), p);
47
48   /*
49     only add callback for the rests, since we don't move anything
50     else.
51
52  (not?)
53   */
54   p->add_offset_callback (Rest_collision::force_shift_callback_proc, Y_AXIS);
55   p->set_grob_property ("rest-collision", me->self_scm ());
56 }
57
58
59 /*
60   Combination of dot-count and duration-log.
61  */
62 static SCM
63 head_characteristic (Grob * col)
64 {
65   Grob * s = unsmob_grob (col->get_grob_property ("rest"));
66
67   if (!s)
68     return SCM_BOOL_F;
69   else
70     return gh_cons (s->get_grob_property ("duration-log"),
71                     gh_int2scm (Rhythmic_head::dot_count (s)));
72 }
73
74 /*
75   TODO: fixme, fucks up if called twice on the same set of rests.
76
77   TODO: look at horizontal-shift to determine ordering between rests
78   for more than two voices.
79  */
80 SCM
81 Rest_collision::do_shift (Grob *me)
82 {
83   SCM elts = me->get_grob_property ("elements");
84
85   Link_array<Grob> rests;
86   Link_array<Grob> notes;
87
88   for (SCM s = elts; gh_pair_p (s); s = ly_cdr (s))
89     {
90       Grob * e = unsmob_grob (ly_car (s));
91       if (unsmob_grob (e->get_grob_property ("rest")))
92         rests.push (e);
93       else
94         notes.push (e);
95     }
96
97   
98   /* 
99      handle rest-rest and rest-note collisions
100
101      [todo]
102      * decide not to print rest if too crowded?
103
104      * ignore rests under beams.
105    */
106
107   // no rests to collide
108   if (!rests.size ())
109     return SCM_UNSPECIFIED;
110
111   // no partners to collide with
112   if (rests.size () + notes.size () < 2)
113     return SCM_UNSPECIFIED;
114
115   // meisjes met meisjes
116   if (!notes.size ()) 
117     {
118       SCM characteristic = head_characteristic (rests[0]);
119       int i = 1;
120       for (; i < rests.size (); i++)
121         {
122           if (!gh_equal_p (head_characteristic (rests[i]), characteristic))
123             break;
124         }
125
126       /*
127         If all durations are the same, we'll check if there are more
128         rests than maximum-rest-count.
129         Otherwise (different durations), we'll try to display them all
130  (urg: all 3 of them, currently).
131        */
132       int display_count;
133       SCM s = me->get_grob_property ("maximum-rest-count");
134       if (i == rests.size ()
135           && gh_number_p (s) && gh_scm2int (s) < rests.size ())
136         {
137           display_count = gh_scm2int (s);
138           for (; i > display_count; i--)
139             {
140               Grob* r = unsmob_grob (rests[i-1]->get_grob_property ("rest"));
141 #if 1
142               if (r)
143                 {
144                   Grob * d = unsmob_grob (r->get_grob_property ("dot"));
145                   if (d)
146                     d->suicide();
147                   r->suicide ();
148                 }
149               rests[i-1]->suicide ();
150 #else
151               if (r)
152                 {
153                   
154                   r->set_grob_property ("transparent", gh_bool2scm(1));
155                   r = unsmob_grob (r->get_grob_property ("dot"));
156                   if (r)
157                     r->set_grob_property ("transparent", gh_bool2scm(1));
158                 }
159 #endif
160             }
161         }
162       else
163         display_count = rests.size ();
164       
165       /*
166         Ugh. Should have minimum dist.
167
168         Ugh. What do we do if we have three different rests?
169         
170        */
171       int dy = display_count > 2 ? 6 : 4; // FIXME Should get dims from table.
172       if (display_count > 1)
173         {
174           Direction d0 = Note_column::dir (rests[0]);
175           Direction d1 = Note_column::dir (rests[1]);     
176
177           if (!d0 && !d1)
178             {
179               d0= UP;
180               d1 = DOWN;
181             }
182           else if (!d0)
183             d0 = - d1;
184           else if (!d1)
185             d1 = -d0;
186                 
187           Note_column::translate_rests (rests[0],d0 *dy);       
188           Note_column::translate_rests (rests[1], d1 *dy);
189         }
190     }
191   // meisjes met jongetjes
192   else 
193     {
194       if (rests.size () > 1)
195         {
196           warning (_ ("too many colliding rests"));
197         }
198       Grob * rcol = rests[0];
199       Direction dir = Note_column::dir (rests[0]);
200
201       if (!dir)
202         {
203           dir = - Note_column::dir (notes[0]);
204         }
205       Grob * r = unsmob_grob (rcol->get_grob_property ("rest"));
206       Interval restdim = r->extent (r, Y_AXIS); // ??
207
208       if (restdim.empty_b ())
209         return SCM_UNSPECIFIED;
210       
211
212       Real staff_space = Staff_symbol_referencer::staff_space (rcol);
213
214       Real minimum_dist = gh_scm2double (me->get_grob_property ("minimum-distance")) * staff_space;
215
216
217       Grob *common = common_refpoint_of_array (notes, rcol, Y_AXIS);
218
219       Interval notedim;
220       for (int i = 0; i < notes.size (); i++) 
221         {
222           notedim.unite (notes[i]->extent (common, Y_AXIS));
223         }
224
225       Interval inter (notedim);
226       inter.intersect (restdim);
227
228       Real dist =
229         minimum_dist +  dir * (notedim[dir] - restdim[-dir]) >? 0;
230
231       int stafflines = Staff_symbol_referencer::line_count (me);
232       if (!stafflines)
233         {
234           programming_error ("No staff line count ? ");
235           stafflines =5;
236         }
237       
238       // move discretely by half spaces.
239       int discrete_dist = int (ceil (dist / (0.5 *staff_space)));
240
241       // move by whole spaces inside the staff.
242       if (discrete_dist < stafflines+1)
243         discrete_dist = int (ceil (discrete_dist / 2.0)* 2.0);
244       
245       Note_column::translate_rests (rcol,dir * discrete_dist);
246     }
247   return SCM_UNSPECIFIED;
248 }
249
250
251 ADD_INTERFACE (Rest_collision,"rest-collision-interface",
252   "Move around ordinary rests (not multi-measure-rests) to avoid "
253 "conflicts.",
254   "maximum-rest-count minimum-distance rest-collision-done elements");
255