]> git.donarmstrong.com Git - lilypond.git/blob - lily/mensural-ligature.cc
* lily/include/lily-guile.hh: many new ly_ functions. Thanks to
[lilypond.git] / lily / mensural-ligature.cc
1 /*
2   mensural-ligature.cc -- implement Mensural_ligature
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 2002--2004 Juergen Reuter <reuter@ipd.uka.de>
7 */
8
9 #include <math.h>
10 #include "item.hh"
11 #include "mensural-ligature.hh"
12 #include "font-interface.hh"
13 #include "stencil.hh"
14 #include "lookup.hh"
15 #include "staff-symbol-referencer.hh"
16 #include "note-head.hh"
17 #include "paper-def.hh"
18 #include "warn.hh"
19
20 /*
21  * TODO: divide this function into mensural and neo-mensural style.
22  *
23  * TODO: move this function to class Lookup?
24  */
25 Stencil
26 brew_flexa (Grob *me,
27             Real interval,
28             bool solid,
29             Real width,
30             Real thickness,
31             bool add_cauda,
32             Direction cauda_direction)
33 {
34   Real staff_space = Staff_symbol_referencer::staff_space (me);
35   Real height = 0.6 * staff_space;
36   Stencil stencil = Stencil ();
37
38   if (add_cauda)
39     {
40       bool consider_interval =
41         cauda_direction * interval > 0.0;
42
43       Interval cauda_box_x (0, thickness);
44       Interval cauda_box_y;
45
46       if (consider_interval)
47         {
48           Real y_length = max (interval/2.0*staff_space, 1.2*staff_space);
49           cauda_box_y = Interval (0, y_length);
50         }
51       else
52         cauda_box_y = Interval (0, staff_space);
53
54       Real y_correction =
55         (cauda_direction == UP) ?
56         +0.5*height :
57         -0.5*height - cauda_box_y.length ();
58
59       Box cauda_box (cauda_box_x, cauda_box_y);
60       Stencil cauda = Lookup::filled_box (cauda_box);
61       cauda.translate_axis (y_correction, Y_AXIS);
62       stencil.add_stencil (cauda);
63     }
64
65   Real slope = (interval / 2.0 * staff_space) / width;
66
67   // Compensate optical illusion regarding vertical position of left
68   // and right endings due to slope.
69   Real ypos_correction = -0.1*staff_space * sign (slope);
70   Real slope_correction = 0.2*staff_space * sign (slope);
71   Real corrected_slope = slope + slope_correction/width;
72
73   if (solid)
74     {
75       Stencil solid_head =
76         Lookup::beam (corrected_slope, width, height, 0.0);
77       stencil.add_stencil (solid_head);
78     }
79   else // outline
80     {
81       Stencil left_edge =
82         Lookup::beam (corrected_slope, thickness, height, 0.0);
83       stencil.add_stencil (left_edge);
84
85       Stencil right_edge =
86         Lookup::beam (corrected_slope, thickness, height, 0.0);
87       right_edge.translate_axis (width-thickness, X_AXIS);
88       right_edge.translate_axis (corrected_slope * (width-thickness), Y_AXIS);
89       stencil.add_stencil (right_edge);
90
91       Stencil bottom_edge =
92         Lookup::beam (corrected_slope, width, thickness, 0.0);
93       bottom_edge.translate_axis (-0.5*height, Y_AXIS);
94       stencil.add_stencil (bottom_edge);
95
96       Stencil top_edge =
97         Lookup::beam (corrected_slope, width, thickness, 0.0);
98       top_edge.translate_axis (+0.5*height, Y_AXIS);
99       stencil.add_stencil (top_edge);
100     }
101   stencil.translate_axis (ypos_correction, Y_AXIS);
102   return stencil;
103 }
104
105 void
106 add_ledger_lines (Grob *me, Stencil *out, int pos, Real offs,
107                   bool ledger_take_space)
108 {
109   int interspaces = Staff_symbol_referencer::line_count (me)-1;
110   if (abs (pos) - interspaces > 1)
111     {
112       Interval hd = out->extent (X_AXIS);
113       Real left_ledger_protusion = hd.length ()/4;
114       Real right_ledger_protusion = left_ledger_protusion;
115
116       Interval l_extents = Interval (hd[LEFT] - left_ledger_protusion,
117                                      hd[RIGHT] + right_ledger_protusion);
118       Stencil ledger_lines =
119         Note_head::brew_ledger_lines (me, pos, interspaces,
120                                       l_extents,0,
121                                       ledger_take_space);
122       ledger_lines.translate_axis (offs, Y_AXIS);
123       out->add_stencil (ledger_lines);
124     }
125 }
126
127 Stencil
128 internal_brew_primitive (Grob *me, bool ledger_take_space)
129 {
130   SCM primitive_scm = me->get_property ("primitive");
131   if (primitive_scm == SCM_EOL)
132     {
133       programming_error ("Mensural_ligature:"
134                          "undefined primitive -> ignoring grob");
135       return Stencil ();
136     }
137
138   Stencil out;
139   int primitive = ly_scm2int (primitive_scm);
140   int delta_pitch = 0;
141   Real thickness = 0.0;
142   Real flexa_width = 0.0;
143   Real staff_space = Staff_symbol_referencer::staff_space (me);
144   if (primitive & MLP_ANY)
145     {
146       thickness = robust_scm2double ( me->get_property ("thickness"), .14);
147     }
148
149   if (primitive & MLP_FLEXA)
150     {
151       delta_pitch = robust_scm2int (me->get_property ("delta-pitch"),
152                                     0);
153
154       flexa_width = robust_scm2double (me->get_property ("flexa-width"), 2.0 * staff_space);
155     }
156
157   switch (primitive)
158     {
159       case MLP_NONE:
160         return Stencil ();
161       case MLP_BB:
162         out = brew_flexa (me, delta_pitch, false,
163                           flexa_width, thickness, true, DOWN);
164         break;
165       case MLP_sc:
166         out = Font_interface::get_default_font (me)->find_by_name ("noteheads--2mensural");
167         break;
168       case MLP_ss:
169         out = Font_interface::get_default_font (me)->find_by_name ("noteheads--1mensural");
170         break;
171       case MLP_cs:
172         out = Font_interface::get_default_font (me)->find_by_name ("noteheads-lmensural");
173         break;
174       case MLP_SS:
175         out = brew_flexa (me, delta_pitch, false,
176                           flexa_width, thickness, true, UP);
177         break;
178       case MLP_LB:
179         out = brew_flexa (me, delta_pitch, false,
180                           flexa_width, thickness, false, CENTER);
181         break;
182       default:
183         programming_error (_f ("Mensural_ligature:"
184                                "unexpected case fall-through"));
185         return Stencil ();
186     }
187
188   SCM join_left_scm = me->get_property ("join-left-amount");
189   if (join_left_scm != SCM_EOL)
190     {
191       int join_left = ly_scm2int (join_left_scm);
192       if (!join_left)
193         programming_error (_f ("Mensural_ligature: (join_left == 0)"));
194       Real blotdiameter = (me->get_paper ()->get_dimension (ly_symbol2scm ("blotdiameter")));
195       Interval x_extent = Interval (0, thickness);
196       Interval y_extent = (join_left > 0) ?
197         Interval (-join_left * 0.5 * staff_space, 0) :
198         Interval (0, -join_left * 0.5 * staff_space);
199       Box join_box (x_extent, y_extent);
200
201       Stencil join = Lookup::round_filled_box (join_box, blotdiameter);
202       out.add_stencil (join);
203     }
204
205   int pos = Staff_symbol_referencer::get_rounded_position (me);
206   add_ledger_lines (me, &out, pos, 0, ledger_take_space);
207   if (primitive & MLP_FLEXA)
208     {
209       pos += delta_pitch;
210       add_ledger_lines (me, &out, pos, 0.5*delta_pitch, ledger_take_space);
211     }
212
213   return out;
214 }
215
216 MAKE_SCHEME_CALLBACK (Mensural_ligature, brew_ligature_primitive, 1);
217 SCM
218 Mensural_ligature::brew_ligature_primitive (SCM smob)
219 {
220   Grob *me = unsmob_grob (smob);
221   return internal_brew_primitive (me, false).smobbed_copy ();
222 }
223
224 MAKE_SCHEME_CALLBACK (Mensural_ligature, print, 1);
225 SCM
226 Mensural_ligature::print (SCM)
227 {
228   return SCM_EOL;
229 }
230
231 ADD_INTERFACE (Mensural_ligature, "mensural-ligature-interface",
232                "A mensural ligature",
233                "delta-pitch flexa-width head-width join-left join-left-amount "
234                "ligature-primitive-callback primitive thickness");