]> git.donarmstrong.com Git - lilypond.git/blob - lily/break-align-item.cc
3e1ba4e18c1b9c80a8d506a85cee5e8d6ec2cdb3
[lilypond.git] / lily / break-align-item.cc
1 /*
2   break-align-item.cc -- implement Break_align_item
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "lily-guile.hh"
10 #include "break-align-item.hh"
11 #include "dimensions.hh"
12 #include "paper-score.hh"
13 #include "paper-def.hh"
14 #include "paper-column.hh"
15
16
17 /*
18   Handle spacing for prefatory matter. 
19
20
21
22   TODO: rewrite this.  It is kludgy
23 */
24
25 void
26 Break_align_item::do_pre_processing()
27 {
28   if (break_status_dir() == LEFT)
29     align_dir_ = LEFT;
30   else
31     align_dir_ = RIGHT;
32   
33   flip (&align_dir_);
34   sort_elements ();
35   Real interline= paper_l ()->get_realvar (interline_scm_sym);  
36   
37   Link_array<Score_element> elems;
38   for (int i=0; i < elem_l_arr_.size(); i++) 
39     {
40       Interval y = elem_l_arr_[i]->extent(axis ());
41       if (!y.empty_b())
42         elems.push (dynamic_cast<Score_element*> (elem_l_arr_[i]));
43     }
44   
45   if (!elems.size ())
46     return;
47
48   SCM symbol_list = SCM_EOL;
49   Array<Real> dists;
50   SCM current_origin = gh_str02scm ("");
51   for (int i=0; i <= elems.size (); i++)
52     {
53       Score_element *next_elt  = i < elems.size ()
54         ? elems[i]
55         : 0 ;
56       
57       SCM next_origin;
58
59       if (next_elt)
60         {
61           next_origin = next_elt->get_elt_property (origin_scm_sym);
62           next_origin =
63             (next_origin == SCM_BOOL_F)
64             ? gh_str02scm ("")
65             : SCM_CDR (next_origin);
66         }
67       else
68         next_origin = gh_str02scm ("begin-of-note");
69       
70       SCM extra_space
71         = scm_eval (scm_listify (ly_symbol ("break-align-spacer"),
72                                  current_origin, next_origin, SCM_UNDEFINED)); 
73       SCM symbol = SCM_CAR (extra_space);
74       Real spc = gh_scm2double (SCM_CADR(extra_space));
75       spc *= interline;
76
77       dists.push(spc);
78       symbol_list = gh_cons (symbol, symbol_list);
79       current_origin = next_origin;
80     }
81
82
83   // skip the first sym.
84   symbol_list  = SCM_CDR (scm_reverse (symbol_list));
85   for (int i=0; i <elems.size()-1; i++)
86     {
87       elems[i]->set_elt_property (SCM_CAR (symbol_list),
88                                   scm_cons (gh_double2scm (0),
89                                             gh_double2scm (dists[i+1])));
90
91       symbol_list = SCM_CDR (symbol_list);
92     }
93
94
95   // urg
96   SCM first_pair = elems[0]->get_elt_property (minimum_space_scm_sym);
97   if (first_pair == SCM_BOOL_F)
98     first_pair = gh_cons (gh_double2scm (0.0), gh_double2scm (0.0));
99   else
100     first_pair = SCM_CDR (first_pair);
101   
102   scm_set_car_x (first_pair, gh_double2scm (-dists[0]));
103   elems[0]->set_elt_property (minimum_space_scm_sym, first_pair);
104   
105   Axis_align_item::do_pre_processing();
106
107   Real pre_space = elems[0]->extent (X_AXIS)[LEFT];
108   Real spring_len = elems.top ()->extent (X_AXIS)[RIGHT];
109   Real stretch_distance =0.;
110   
111   if (SCM_CAR (symbol_list) == extra_space_scm_sym)
112     {
113       spring_len += dists.top ();
114       stretch_distance = dists.top ();
115     }
116   else if (SCM_CAR (symbol_list) == minimum_space_scm_sym)
117     {
118       spring_len = spring_len >? dists.top ();
119       stretch_distance = spring_len;
120     }
121
122   /*
123     Hint the spacing engine how much space to put in.
124   */
125   column_l ()->set_elt_property (extra_space_scm_sym,
126                                  scm_cons (gh_double2scm (pre_space),
127                                            gh_double2scm (spring_len)));
128
129   column_l ()->set_elt_property (stretch_distance_scm_sym,
130                                  gh_cons (gh_double2scm (dists[0]),
131                                           gh_double2scm (stretch_distance)));
132                                  
133 }
134
135
136
137 Break_align_item::Break_align_item ()
138 {
139   stacking_dir_ = RIGHT;
140   set_axis (X_AXIS);
141 }
142
143 void
144 Break_align_item::add_breakable_item (Item *it)
145 {
146   SCM pr = it->remove_elt_property (break_priority_scm_sym); 
147
148   if (pr == SCM_BOOL_F)
149     return;
150
151   int priority = gh_scm2int (SCM_CDR (pr));
152
153   Score_element * column_l = get_elt_by_priority (priority);
154   Axis_group_item * hg=0;
155   if (column_l)
156     {
157       hg = dynamic_cast<Axis_group_item*> (column_l);
158     }
159   else
160     {
161       hg = new Axis_group_item;
162       hg->set_axes (X_AXIS,X_AXIS);
163
164       /*
165         this is quite ridiculous, but we do this anyway, to ensure that no
166         warning bells about missing Y refpoints go off later on.
167       */
168       hg->dim_cache_[Y_AXIS]->parent_l_ = dim_cache_[Y_AXIS];
169       hg->set_elt_property (ly_symbol("origin"), gh_str02scm (it->name()));
170
171       pscore_l_->typeset_element (hg);
172       add_element_priority (hg, priority);
173
174       if (priority == 0)
175         center_l_ = hg;
176     }
177   
178   hg->add_element (it);
179 }