]> git.donarmstrong.com Git - lilypond.git/blob - lily/break-align-interface.cc
release: 1.5.38
[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", gh_int2scm (RIGHT));
56     }
57
58   /*
59     Force break alignment itself to be done first, in the case
60    */
61   return Side_position_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::set_interface (Grob*me)
72 {
73   Align_interface::set_interface (me); 
74   Align_interface::set_axis (me,X_AXIS);
75 }
76
77 void
78 Break_align_interface::do_alignment (Grob *me)
79 {
80   Item * item = dynamic_cast<Item*> (me);
81
82   Link_array<Grob> elems
83     = Pointer_group_interface__extract_grobs (me, (Grob*)0,
84                                                  "elements");
85   Array<Interval> extents;
86   
87   for (int i=0; i < elems.size (); i++) 
88     {
89       Interval y = elems[i]->extent (elems[i], X_AXIS);
90       extents.push (y);
91     }
92
93
94   int idx  = 0;
95   while (extents[idx].empty_b ())
96     idx++;
97   
98   Array<Real> offsets;
99   offsets.set_size (elems.size());
100   for (int i= 0; i < offsets.size();i ++)
101     offsets[i] = 0.0;
102
103
104   int edge_idx = -1;
105   while (idx < elems.size())
106     {
107       int next_idx = idx+1;
108       while ( next_idx < elems.size() && extents[next_idx].empty_b())
109         next_idx++;
110
111       if (next_idx == elems.size())
112         break;
113       
114       Grob *l = elems[idx];
115       Grob *r = elems[next_idx];
116
117       SCM alist = SCM_EOL;
118
119       for (SCM s= l->get_grob_property ("elements");
120            gh_pair_p (s) ; s = gh_cdr (s))
121           {
122             Grob *elt = unsmob_grob (gh_car (s));
123
124             if (edge_idx < 0
125                 && elt->get_grob_property ("break-align-symbol") == ly_symbol2scm( "left-edge"))
126               edge_idx = idx;
127             
128             SCM l =elt->get_grob_property ("space-alist");
129             if (gh_pair_p(l))
130               {
131                 alist= l;
132                 break;
133               }
134           }
135
136       SCM rsym = SCM_EOL;
137
138       /*
139         We used to use #'cause to find out the symbol and the spacing
140         table, but that gets icky when that grob is suicided for some
141         reason.
142       */
143       for (SCM s = r->get_grob_property ("elements");
144            gh_pair_p (s); s = gh_cdr (s))
145         {
146           Grob * elt =unsmob_grob(gh_car (s));
147
148           SCM sym = elt->get_grob_property ("break-align-symbol");
149           if (gh_symbol_p (sym))
150             {
151               rsym = sym;
152               break;
153             }
154         }
155       if (rsym  == ly_symbol2scm("left-edge"))
156         edge_idx = next_idx;
157
158       SCM entry = SCM_EOL;
159       if (gh_symbol_p (rsym))
160         entry = scm_assq (rsym, alist);
161
162       bool entry_found = gh_pair_p (entry);
163       if (!entry_found)
164         {
165           String sym_str;
166           if(gh_symbol_p(rsym))
167             sym_str = ly_symbol2string (rsym);
168
169           String orig_str ;
170           if (unsmob_grob (l->get_grob_property ("cause")))
171             orig_str = unsmob_grob (l->get_grob_property ("cause"))->name ();
172           
173           programming_error (_f("No spacing entry from %s to `%s'",
174                                 orig_str.ch_C (),
175                                 sym_str.ch_C()));
176         }
177
178       Real distance = 1.0;
179       SCM type = ly_symbol2scm ("extra-space");
180       
181       if (entry_found)
182         {
183           entry = gh_cdr (entry);
184           
185           distance = gh_scm2double (gh_cdr (entry));
186           type = gh_car (entry) ;
187         }
188
189       if (type == ly_symbol2scm ("extra-space"))
190         offsets[next_idx] = extents[idx][RIGHT] + distance;
191       else if (type == ly_symbol2scm("minimum-space"))
192         offsets[next_idx] = extents[idx][RIGHT] >? distance;
193
194       idx = next_idx;
195     }
196
197
198   Real here = 0.0;
199   Interval total_extent;
200
201   Real alignment_off =0.0;  
202   for (int i =0 ; i < offsets.size(); i++)
203     {
204       here += offsets[i];
205       if (i == edge_idx)
206         alignment_off = -here; 
207       total_extent.unite (extents[i] + here);
208     }
209
210
211   if (item->break_status_dir () == LEFT)
212     alignment_off = -total_extent[RIGHT];
213   else if (edge_idx < 0)
214     alignment_off = -total_extent[LEFT];
215
216   here = alignment_off;
217   for (int i =0 ; i < offsets.size(); i++)
218     {
219       here += offsets[i];
220       elems[i]->translate_axis (here, X_AXIS);
221     }
222 }
223
224