]> git.donarmstrong.com Git - lilypond.git/blob - lily/note-column.cc
* lily/include/translator.icc: new file.
[lilypond.git] / lily / note-column.cc
1 /*
2   note-column.cc -- implement Note_column
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "note-column.hh"
10
11 #include <math.h>               // ceil
12
13 #include "axis-group-interface.hh"
14 #include "stem.hh"
15 #include "warn.hh"
16 #include "output-def.hh"
17 #include "staff-symbol-referencer.hh"
18 #include "rest.hh"
19 #include "note-head.hh"
20 #include "accidental-placement.hh"
21 #include "pointer-group-interface.hh"
22
23 /*
24   TODO: figure out if we can prune this class. This is just an
25   annoying layer between (rest)collision & (note-head + stem)
26 */
27
28 bool
29 Note_column::has_rests (Grob *me)
30 {
31   return unsmob_grob (me->get_object ("rest"));
32 }
33
34 int
35 Note_column::shift_compare (Grob *const &p1, Grob *const &p2)
36 {
37   SCM s1 = p1->get_property ("horizontal-shift");
38   SCM s2 = p2->get_property ("horizontal-shift");
39
40   int h1 = (scm_is_number (s1)) ? scm_to_int (s1) : 0;
41   int h2 = (scm_is_number (s2)) ? scm_to_int (s2) : 0;
42   return h1 - h2;
43 }
44
45 Item *
46 Note_column::get_stem (Grob *me)
47 {
48   SCM s = me->get_object ("stem");
49   return unsmob_item (s);
50 }
51
52 Slice
53 Note_column::head_positions_interval (Grob *me)
54 {
55   Slice iv;
56
57   iv.set_empty ();
58
59   extract_grob_set (me, "note-heads", heads);
60   for (int i = 0; i < heads.size(); i++) 
61     {
62       Grob *se = heads[i];
63
64       int j = Staff_symbol_referencer::get_rounded_position (se);
65       iv.unite (Slice (j, j));
66     }
67   return iv;
68 }
69
70 Direction
71 Note_column::dir (Grob *me)
72 {
73   Grob *stem = unsmob_grob (me->get_object ("stem"));
74   if (stem && Stem::has_interface (stem))
75     return Stem::get_direction (stem);
76   else if (scm_is_pair (me->get_object ("note-heads")))
77     return (Direction)sign (head_positions_interval (me).center ());
78
79   programming_error ("note column without heads and stem");
80   return CENTER;
81 }
82
83 void
84 Note_column::set_stem (Grob *me, Grob *stem)
85 {
86   me->set_object ("stem", stem->self_scm ());
87   me->add_dependency (stem);
88   Axis_group_interface::add_element (me, stem);
89 }
90
91 Grob *
92 Note_column::get_rest (Grob *me)
93 {
94   return unsmob_grob (me->get_object ("rest"));
95 }
96
97 void
98 Note_column::add_head (Grob *me, Grob *h)
99 {
100   bool both = false;
101   if (Rest::has_interface (h))
102     {
103       extract_grob_set (me, "note-heads", heads);
104       if (heads.size ())
105         both = true;
106       else
107         me->set_object ("rest", h->self_scm ());
108     }
109   else if (Note_head::has_interface (h))
110     {
111       if (unsmob_grob (me->get_object ("rest")))
112         both = true;
113       Pointer_group_interface::add_grob (me, ly_symbol2scm ("note-heads"), h);
114     }
115
116   if (both)
117     me->warning (_ ("can't have note heads and rests together on a stem"));
118   else
119     Axis_group_interface::add_element (me, h);
120 }
121
122 /**
123    translate the rest symbols vertically by amount DY, but only if
124    they have no staff-position set.
125 */
126 void
127 Note_column::translate_rests (Grob *me, int dy)
128 {
129   Grob *r = unsmob_grob (me->get_object ("rest"));
130   if (r && !scm_is_number (r->get_property ("staff-position")))
131     {
132       r->translate_axis (dy * Staff_symbol_referencer::staff_space (r) / 2.0, Y_AXIS);
133       Grob *p = r->get_parent (Y_AXIS);
134       p->flush_extent_cache (Y_AXIS);
135     }
136 }
137
138 void
139 Note_column::set_dotcol (Grob *me, Grob *d)
140 {
141   Axis_group_interface::add_element (me, d);
142 }
143
144 Grob *
145 Note_column::first_head (Grob *me)
146 {
147   Grob *st = get_stem (me);
148   return st ? Stem::first_head (st) : 0;
149 }
150
151 /*
152   Return the first Accidentals grob that we find in a note-head.
153 */
154 Grob *
155 Note_column::accidentals (Grob *me)
156 {
157   extract_grob_set (me, "note-heads", heads);
158   Grob *acc = 0;
159   for (int i = 0; i < heads.size(); i++) 
160     {
161       Grob *h = heads[i];
162       acc = h ? unsmob_grob (h->get_object ("accidental-grob")) : 0;
163       if (acc)
164         break;
165     }
166
167   if (!acc)
168     return 0;
169
170   if (Accidental_placement::has_interface (acc->get_parent (X_AXIS)))
171     return acc->get_parent (X_AXIS);
172
173   /* compatibility. */
174   return acc;
175 }
176
177 ADD_INTERFACE (Note_column, "note-column-interface",
178                "Stem and noteheads combined",
179                "arpeggio note-heads rest-collision rest horizontal-shift stem accidentals force-hshift");
180