]> git.donarmstrong.com Git - lilypond.git/blob - lily/separation-item.cc
Ensure that we find a constraint in set_column_rods.
[lilypond.git] / lily / separation-item.cc
1 /*
2   separation-item.cc -- implement Separation_item
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "separation-item.hh"
10
11 #include "axis-group-interface.hh"
12 #include "lookup.hh"
13 #include "stencil.hh"
14 #include "skyline.hh"
15 #include "paper-column.hh"
16 #include "warn.hh"
17 #include "pointer-group-interface.hh"
18 #include "accidental-placement.hh"
19
20 void
21 Separation_item::add_item (Grob *s, Item *i)
22 {
23   assert (i);
24   Pointer_group_interface::add_grob (s, ly_symbol2scm ("elements"), i);
25 }
26
27 void
28 Separation_item::add_conditional_item (Grob *me, Grob *e)
29 {
30   Pointer_group_interface::add_grob (me, ly_symbol2scm ("conditional-elements"), e);
31 }
32
33 bool
34 Separation_item::set_distance (Drul_array<Item *> items,
35                                Real padding)
36 {
37   Drul_array<Skyline_pair*> lines (Skyline_pair::unsmob (items[LEFT]->get_property ("horizontal-skylines")),
38                                    Skyline_pair::unsmob (items[RIGHT]->get_property ("horizontal-skylines")));
39   Skyline right = conditional_skyline (items[RIGHT], items[LEFT]);
40   right.merge ((*lines[RIGHT])[LEFT]);
41   
42   Real dist = padding + (*lines[LEFT])[RIGHT].distance (right);
43   if (dist > 0)
44     {
45       Rod rod;
46
47       rod.item_drul_ = items;
48
49       rod.distance_ = dist;
50       rod.add_to_cols ();
51     }
52
53   return dist > 0;
54 }
55
56 bool
57 Separation_item::is_empty (Grob *me)
58 {
59   Skyline_pair *sky = Skyline_pair::unsmob (me->get_property ("horizontal-skylines"));
60   return (!sky || sky->is_empty ());
61 }
62
63 /*
64   Return the width of ME given that we are considering the object on
65   the LEFT.
66 */
67 Skyline
68 Separation_item::conditional_skyline (Grob *me, Grob *left)
69 {
70   vector<Box> bs = boxes (me, left);
71   return Skyline (bs, 0.1, Y_AXIS, LEFT);
72 }
73
74
75 MAKE_SCHEME_CALLBACK (Separation_item, calc_skylines,1);
76 SCM
77 Separation_item::calc_skylines (SCM smob)
78 {
79   Item *me = unsmob_item (smob);
80   vector<Box> bs = boxes (me, 0);
81   /* todo: the horizon_padding is somewhat arbitrary */
82   return Skyline_pair (bs, 0.1, Y_AXIS).smobbed_copy ();
83 }
84
85 /* if left is non-NULL, get the boxes corresponding to the
86    conditional-elements (conditioned on the grob LEFT). This
87    sounds more general than it is: conditional-elements are
88    always accidentals attached to a tied note.
89 */
90 vector<Box>
91 Separation_item::boxes (Grob *me, Grob *left)
92 {
93   Item *item = dynamic_cast<Item *> (me);
94
95   int very_large = INT_MAX;
96   Paper_column *pc = item->get_column ();
97   vector<Box> out;
98   extract_grob_set (me, left ? "conditional-elements" : "elements", read_only_elts);
99   vector<Grob*> elts;
100
101   if (left)
102     elts = Accidental_placement::get_relevant_accidentals (read_only_elts, left);
103   else
104     elts = read_only_elts;
105
106   Grob *ycommon = common_refpoint_of_array (elts, me, Y_AXIS);
107   
108   for (vsize i = 0; i < elts.size (); i++)
109     {
110       Item *il = dynamic_cast<Item *> (elts[i]);
111       if (pc != il->get_column ())
112         continue;
113       if (Axis_group_interface::has_interface (il))
114         continue;
115
116       Interval y (il->pure_height (ycommon, 0, very_large));
117       Interval x (il->extent (pc, X_AXIS));
118
119       Interval extra = robust_scm2interval (elts[i]->get_property ("extra-spacing-width"),
120                                             Interval (-0.1, 0.1));
121       x[LEFT] += extra[LEFT];
122       x[RIGHT] += extra[RIGHT];
123       if (to_boolean (elts[i]->get_property ("infinite-spacing-height")))
124         y = Interval (-infinity_f, infinity_f);
125  
126       if (!x.is_empty () && !y.is_empty ())
127       out.push_back (Box (x, y));
128     }
129
130   return out;      
131 }
132
133 extern bool debug_skylines;
134 MAKE_SCHEME_CALLBACK (Separation_item, print, 1)
135 SCM
136 Separation_item::print (SCM smob)
137 {
138   if (!debug_skylines)
139     return SCM_BOOL_F;
140
141   Grob *me = unsmob_grob (smob);
142   Stencil ret;
143   if (Skyline_pair *s = Skyline_pair::unsmob (me->get_property ("horizontal-skylines")))
144     {
145       ret.add_stencil (Lookup::points_to_line_stencil (0.1, (*s)[LEFT].to_points (Y_AXIS)).in_color (255, 255, 0));
146       ret.add_stencil (Lookup::points_to_line_stencil (0.1, (*s)[RIGHT].to_points (Y_AXIS)).in_color (0, 255, 255));
147     }
148   return ret.smobbed_copy ();
149 }
150
151 ADD_INTERFACE (Separation_item,
152                "Item that computes widths to generate spacing rods. "
153                ,
154
155                "X-extent "
156                "conditional-elements "
157                "elements "
158                "padding "
159                "horizontal-skylines "
160                );