]> git.donarmstrong.com Git - lilypond.git/blob - lily/break-align-interface.cc
c29c74b2407c6b12dfba9ecb06ddc03699f45d8e
[lilypond.git] / lily / break-align-interface.cc
1 /*
2   break-align-interface.cc -- implement Break_align_interface
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #include <math.h>
11 #include <libc-extension.hh>    // isinf
12
13 #include "side-position-interface.hh"
14 #include "axis-group-interface.hh"
15 #include "warn.hh"
16 #include "lily-guile.hh"
17 #include "break-align-interface.hh"
18 #include "dimensions.hh"
19 #include "paper-def.hh"
20 #include "paper-column.hh"
21 #include "group-interface.hh"
22 #include "align-interface.hh"
23
24 MAKE_SCHEME_CALLBACK (Break_align_interface,alignment_callback,2);
25
26 SCM
27 Break_align_interface::alignment_callback (SCM element_smob, SCM axis)
28 {
29   Grob *me = unsmob_grob (element_smob);
30   Axis a = (Axis) gh_scm2int (axis);
31
32   assert (a == X_AXIS);
33   Grob *par = me->get_parent (a);
34   if (par && !to_boolean (par->get_grob_property ("break-alignment-done")))
35     {
36       par->set_grob_property ("break-alignment-done", SCM_BOOL_T);
37       Break_align_interface::do_alignment (par);
38     }
39     
40   return gh_double2scm (0);
41 }
42
43 MAKE_SCHEME_CALLBACK (Break_align_interface,self_align_callback,2);
44 SCM
45 Break_align_interface::self_align_callback (SCM element_smob, SCM axis)
46 {
47   Grob *me = unsmob_grob (element_smob);
48   Axis a = (Axis) gh_scm2int (axis);
49   assert (a == X_AXIS);
50   
51   Item* item = dynamic_cast<Item*> (me);
52   Direction bsd = item->break_status_dir ();
53   if (bsd == LEFT)
54     {
55       me->set_grob_property ("self-alignment-X", scm_int2num (RIGHT));
56     }
57
58   /*
59     Force break alignment itself to be done first, in the case
60    */
61   return Self_alignment_interface::aligned_on_self (element_smob, axis);  
62 }
63
64 void
65 Break_align_interface::add_element (Grob*me, Grob *toadd)
66 {
67   Axis_group_interface::add_element (me, toadd);
68 }
69
70 void
71 Break_align_interface::do_alignment (Grob *me)
72 {
73   Item * item = dynamic_cast<Item*> (me);
74
75   Link_array<Grob> elems
76     = Pointer_group_interface__extract_grobs (me, (Grob*)0,
77                                                  "elements");
78   Array<Interval> extents;
79   
80   for (int i=0; i < elems.size (); i++) 
81     {
82       Interval y = elems[i]->extent (elems[i], X_AXIS);
83       extents.push (y);
84     }
85
86
87   int idx  = 0;
88   while (idx < extents.size  () && extents[idx].empty_b ())
89     idx++;
90   
91   Array<Real> offsets;
92   offsets.set_size (elems.size());
93   for (int i= 0; i < offsets.size();i ++)
94     offsets[i] = 0.0;
95
96
97   int edge_idx = -1;
98   while (idx < elems.size())
99     {
100       int next_idx = idx+1;
101       while ( next_idx < elems.size() && extents[next_idx].empty_b())
102         next_idx++;
103
104       if (next_idx == elems.size())
105         break;
106       
107       Grob *l = elems[idx];
108       Grob *r = elems[next_idx];
109
110       SCM alist = SCM_EOL;
111
112       for (SCM s= l->get_grob_property ("elements");
113            gh_pair_p (s) ; s = gh_cdr (s))
114           {
115             Grob *elt = unsmob_grob (gh_car (s));
116
117             if (edge_idx < 0
118                 && elt->get_grob_property ("break-align-symbol") == ly_symbol2scm( "left-edge"))
119               edge_idx = idx;
120             
121             SCM l =elt->get_grob_property ("space-alist");
122             if (gh_pair_p(l))
123               {
124                 alist= l;
125                 break;
126               }
127           }
128
129       SCM rsym = SCM_EOL;
130
131       /*
132         We used to use #'cause to find out the symbol and the spacing
133         table, but that gets icky when that grob is suicided for some
134         reason.
135       */
136       for (SCM s = r->get_grob_property ("elements");
137            gh_pair_p (s); s = gh_cdr (s))
138         {
139           Grob * elt =unsmob_grob(gh_car (s));
140
141           SCM sym = elt->get_grob_property ("break-align-symbol");
142           if (gh_symbol_p (sym))
143             {
144               rsym = sym;
145               break;
146             }
147         }
148       if (rsym  == ly_symbol2scm("left-edge"))
149         edge_idx = next_idx;
150
151       SCM entry = SCM_EOL;
152       if (gh_symbol_p (rsym))
153         entry = scm_assq (rsym, alist);
154
155       bool entry_found = gh_pair_p (entry);
156       if (!entry_found)
157         {
158           String sym_string;
159           if(gh_symbol_p (rsym))
160             sym_string = ly_symbol2string (rsym);
161
162           String orig_string ;
163           if (unsmob_grob (l->get_grob_property ("cause")))
164             orig_string = unsmob_grob (l->get_grob_property ("cause"))->name ();
165           
166           programming_error (_f("No spacing entry from %s to `%s'",
167                                 orig_string.to_str0 (),
168                                 sym_string.to_str0 ()));
169         }
170
171       Real distance = 1.0;
172       SCM type = ly_symbol2scm ("extra-space");
173       
174       if (entry_found)
175         {
176           entry = gh_cdr (entry);
177           
178           distance = gh_scm2double (gh_cdr (entry));
179           type = gh_car (entry) ;
180         }
181
182       if (type == ly_symbol2scm ("extra-space"))
183         offsets[next_idx] = extents[idx][RIGHT] + distance;
184       else if (type == ly_symbol2scm("minimum-space"))
185         offsets[next_idx] = extents[idx][RIGHT] >? distance;
186
187       idx = next_idx;
188     }
189
190
191   Real here = 0.0;
192   Interval total_extent;
193
194   Real alignment_off =0.0;  
195   for (int i =0 ; i < offsets.size(); i++)
196     {
197       here += offsets[i];
198       if (i == edge_idx)
199         alignment_off = -here; 
200       total_extent.unite (extents[i] + here);
201     }
202
203
204   if (item->break_status_dir () == LEFT)
205     alignment_off = -total_extent[RIGHT];
206   else if (edge_idx < 0)
207     alignment_off = -total_extent[LEFT];
208
209   here = alignment_off;
210   for (int i =0 ; i < offsets.size(); i++)
211     {
212       here += offsets[i];
213       elems[i]->translate_axis (here, X_AXIS);
214     }
215 }
216
217
218 ADD_INTERFACE (Break_aligned_interface, "break-aligned-interface",
219   "Items that are aligned in prefatory matter.
220
221 The spacing of these items is controlled by the space-alist
222 property. It contains a list break-align-symbols with a specification
223 of the associated space. The space definition is either (extra-space
224 . @var{number}), which adds space after the symbol, (minimum-space
225 . @var{ms}), which pads the space until it it is @var{ms}.
226
227
228 Special keys for the alist are 'first-note and 'next-note, signifyign
229 the first note on a line, and the next note halfway a line.
230
231 Rules for this spacing are much more complicated than this. 
232 See [Wanske] page 126 -- 134, [Ross] pg 143 -- 147
233
234
235 ",
236   "break-align-symbol break-alignment-done space-alist");
237
238 ADD_INTERFACE (Break_align_interface, "break-alignment-interface",
239   "See @ref{break-aligned-interface}.",
240   "break-alignment-done");
241
242
243