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