]> git.donarmstrong.com Git - lilypond.git/blob - lily/break-align-item.cc
release: 1.1.58
[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
106   
107   Axis_align_item::do_pre_processing();
108
109   Real pre_space = elems[0]->extent (X_AXIS)[LEFT];
110   Real spring_len = elems.top ()->extent (X_AXIS)[RIGHT];
111   if (SCM_CAR (symbol_list) == extra_space_scm_sym)
112     {
113       spring_len += dists.top ();
114     }
115   else if (SCM_CAR (symbol_list) == minimum_space_scm_sym)
116     {
117       spring_len = spring_len >? dists.top ();
118     }
119
120
121   /*
122     Hint the spacing engine how much space to put in.
123   */
124   column_l ()->set_elt_property (extra_space_scm_sym,
125                                  scm_cons (gh_double2scm (pre_space),
126                                            gh_double2scm (spring_len)));
127 }
128
129
130
131 Break_align_item::Break_align_item ()
132 {
133   stacking_dir_ = RIGHT;
134   set_axis (X_AXIS);
135 }
136
137 void
138 Break_align_item::add_breakable_item (Item *it)
139 {
140   SCM pr = it->remove_elt_property (break_priority_scm_sym); 
141
142   if (pr == SCM_BOOL_F)
143     return;
144
145   int priority = gh_scm2int (SCM_CDR (pr));
146
147   Score_element * column_l = get_elt_by_priority (priority);
148   Axis_group_item * hg=0;
149   if (column_l)
150     {
151       hg = dynamic_cast<Axis_group_item*> (column_l);
152     }
153   else
154     {
155       hg = new Axis_group_item;
156       hg->set_axes (X_AXIS,X_AXIS);
157
158       /*
159         this is quite ridiculous, but we do this anyway, to ensure that no
160         warning bells about missing Y refpoints go off later on.
161       */
162       hg->dim_cache_[Y_AXIS]->parent_l_ = dim_cache_[Y_AXIS];
163       hg->set_elt_property (ly_symbol("origin"), gh_str02scm (it->name()));
164
165       pscore_l_->typeset_element (hg);
166       add_element_priority (hg, priority);
167
168       if (priority == 0)
169         center_l_ = hg;
170     }
171   
172   hg->add_element (it);
173 }