2 breathing_sign.cc -- implement Breathing_sign
4 (c) 1999--2006 Michael Krause
6 written for the GNU LilyPond music typesetter
8 TODO: --> see breathing-sign-engraver.cc
10 Extensions for ancient notation (c) 2003--2006 by Juergen Reuter
13 #include "breathing-sign.hh"
15 #include "staff-symbol-referencer.hh"
16 #include "directional-element-interface.hh"
17 #include "output-def.hh"
19 #include "dimensions.hh"
20 #include "direction.hh"
21 #include "text-interface.hh"
22 #include "font-interface.hh"
25 TODO: thickness should be a grob property (unit: linethickness)
26 rather than hardwired to (staff_space / 6).
30 UGH : this is full of C&P code. Consolidate! --hwn
34 Gregorian chant divisio minima. (Actually, this was the original
35 breathing sign by Michael. -- jr)
37 MAKE_SCHEME_CALLBACK (Breathing_sign, divisio_minima, 1);
39 Breathing_sign::divisio_minima (SCM smob)
41 Grob *me = unsmob_grob (smob);
42 Real staff_space = Staff_symbol_referencer::staff_space (me);
45 Real thickness = Staff_symbol_referencer::line_thickness (me);
46 thickness *= robust_scm2double (me->get_property ("thickness"), 1.0);
47 if (Staff_symbol_referencer::get_staff_symbol (me))
48 staff_size = (Staff_symbol_referencer::line_count (me) - 1) * staff_space;
52 Real blotdiameter = me->layout ()->get_dimension (ly_symbol2scm ("blot-diameter"));
55 * Draw a small vertical line through the uppermost (or, depending
56 * on direction, lowermost) staff line.
58 Interval xdim (0, thickness);
59 Interval ydim (-0.5 * staff_space, +0.5 * staff_space);
61 Stencil out = Lookup::round_filled_box (b, blotdiameter);
62 return out.smobbed_copy ();
66 Gregorian chant divisio maior.
68 MAKE_SCHEME_CALLBACK (Breathing_sign, divisio_maior, 1);
70 Breathing_sign::divisio_maior (SCM smob)
72 Grob *me = unsmob_grob (smob);
73 Real staff_space = Staff_symbol_referencer::staff_space (me);
75 Real thickness = Staff_symbol_referencer::line_thickness (me);
76 thickness *= robust_scm2double (me->get_property ("thickness"), 1.0);
78 if (Staff_symbol_referencer::get_staff_symbol (me))
79 staff_size = (Staff_symbol_referencer::line_count (me) - 1) * staff_space;
83 Real blotdiameter = me->layout ()->get_dimension (ly_symbol2scm ("blot-diameter"));
86 * Draw a vertical line that is vertically centered in the staff
87 * (just like a bar). The height of this line should be a little
88 * more than half the size of the staff, such that the endings of
89 * the line are in the middle of a staff space.
91 int lines = Staff_symbol_referencer::line_count (me);
92 int height = lines / 2; // little more than half of staff size
93 if ((lines & 1) != (height & 1))
94 height++; // ensure endings are centered in staff space
96 Interval xdim (0, thickness);
97 Interval ydim (-0.5 * height, +0.5 * height);
99 Stencil out = Lookup::round_filled_box (b, blotdiameter);
100 return out.smobbed_copy ();
104 Gregorian chant divisio maxima.
106 MAKE_SCHEME_CALLBACK (Breathing_sign, divisio_maxima, 1);
108 Breathing_sign::divisio_maxima (SCM smob)
110 Grob *me = unsmob_grob (smob);
111 Real staff_space = Staff_symbol_referencer::staff_space (me);
113 Real thickness = Staff_symbol_referencer::line_thickness (me);
114 thickness *= robust_scm2double (me->get_property ("thickness"), 1.0);
116 if (Staff_symbol_referencer::get_staff_symbol (me))
117 staff_size = (Staff_symbol_referencer::line_count (me) - 1) * staff_space;
121 Real blotdiameter = me->layout ()->get_dimension (ly_symbol2scm ("blot-diameter"));
123 // like a "|" type bar
124 Interval xdim (0, thickness);
125 Interval ydim (-0.5 * staff_size, +0.5 * staff_size);
127 Stencil out = Lookup::round_filled_box (b, blotdiameter);
128 return out.smobbed_copy ();
132 Gregorian chant finalis.
134 MAKE_SCHEME_CALLBACK (Breathing_sign, finalis, 1);
136 Breathing_sign::finalis (SCM smob)
138 Grob *me = unsmob_grob (smob);
139 Real staff_space = Staff_symbol_referencer::staff_space (me);
141 Real thickness = Staff_symbol_referencer::line_thickness (me);
142 thickness *= robust_scm2double (me->get_property ("thickness"), 1.0);
144 if (Staff_symbol_referencer::get_staff_symbol (me))
145 staff_size = (Staff_symbol_referencer::line_count (me) - 1) * staff_space;
149 Real blotdiameter = me->layout ()->get_dimension (ly_symbol2scm ("blot-diameter"));
151 // like a "||" type bar
152 Interval xdim (0, thickness);
153 Interval ydim (-0.5 * staff_size, +0.5 * staff_size);
155 Stencil line1 = Lookup::round_filled_box (b, blotdiameter);
156 Stencil line2 (line1);
157 line2.translate_axis (0.5 * staff_space, X_AXIS);
158 line1.add_stencil (line2);
160 return line1.smobbed_copy ();
163 MAKE_SCHEME_CALLBACK (Breathing_sign, offset_callback, 1);
165 Breathing_sign::offset_callback (SCM smob)
167 Grob *me = unsmob_grob (smob);
169 Direction d = get_grob_direction (me);
173 set_grob_direction (me, d);
176 Real inter_f = Staff_symbol_referencer::staff_space (me) / 2;
177 int sz = Staff_symbol_referencer::line_count (me) - 1;
178 return scm_from_double (inter_f * sz * d);
181 ADD_INTERFACE (Breathing_sign, "breathing-sign-interface",