]> git.donarmstrong.com Git - lilypond.git/blob - lily/custos.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / custos.cc
1 /*
2   custos.cc -- implement Custos
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2006 Juergen Reuter <reuter@ipd.uka.de>
7 */
8
9 /* TODO:
10
11 - do not show if a clef change immediately follows in the next line
12
13 - decide: do or do not print custos if the next line starts with a rest
14 */
15
16 #include <cstdio>
17 #include <cmath> // rint
18 using namespace std;
19
20 #include "custos.hh"
21 #include "direction.hh"
22 #include "staff-symbol-referencer.hh"
23 #include "warn.hh"
24 #include "note-head.hh"
25 #include "item.hh"
26 #include "font-interface.hh"
27
28 MAKE_SCHEME_CALLBACK (Custos, print, 1);
29 SCM
30 Custos::print (SCM smob)
31 {
32   Item *me = (Item *)unsmob_grob (smob);
33
34   SCM scm_style = me->get_property ("style");
35   String style;
36   if (scm_is_symbol (scm_style))
37     style = ly_symbol2string (scm_style);
38   else
39     style = "mensural";
40
41   /*
42    * Shall we use a common custos font character regardless if on
43    * staffline or not, or shall we use individual font characters
44    * for both cases?
45    */
46   bool adjust = true;
47
48   int neutral_pos = robust_scm2int (me->get_property ("neutral-position"), 0);
49   Direction neutral_direction
50     = to_dir (me->get_property ("neutral-direction"));
51
52   int pos = Staff_symbol_referencer::get_rounded_position (me);
53   int sz = Staff_symbol_referencer::line_count (me) - 1;
54
55   String font_char = "custodes." + style + ".";
56   if (pos < neutral_pos)
57     font_char += "u";
58   else if (pos > neutral_pos)
59     font_char += "d";
60   else if (neutral_direction == UP)
61     font_char += "u";
62   else if (neutral_direction == DOWN)
63     font_char += "d";
64   else // auto direction; not yet supported -> use "d"
65     font_char += "d";
66
67   if (adjust)
68     font_char += (((pos ^ sz) & 0x1) == 0) ? "1" : "0";
69   else
70     font_char += "2";
71
72   Stencil stencil
73     = Font_interface::get_default_font (me)->find_by_name (font_char);
74   if (stencil.is_empty ())
75     {
76       me->warning (_f ("custos `%s' not found", font_char));
77       return SCM_EOL;
78     }
79
80   return stencil.smobbed_copy ();
81 }
82
83 ADD_INTERFACE (Custos, "custos-interface",
84                "A custos object.",
85                "style neutral-position neutral-direction");