2 time-signature.cc -- implement Time_signature
4 source file of the GNU LilyPond music typesetter
6 (c) 1996--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
11 #include "molecule.hh"
12 #include "text-item.hh"
13 #include "time-signature.hh"
14 #include "paper-def.hh"
15 #include "font-interface.hh"
17 #include "staff-symbol-referencer.hh"
19 MAKE_SCHEME_CALLBACK (Time_signature
, brew_molecule
, 1);
20 /* TODO: make different functions for special and normal timesigs. */
22 Time_signature::brew_molecule (SCM smob
)
24 Grob
* me
= unsmob_grob (smob
);
25 SCM st
= me
->get_grob_property ("style");
26 SCM frac
= me
->get_grob_property ("fraction");
31 n
= gh_scm2int (ly_car (frac
));
32 d
= gh_scm2int (ly_cdr (frac
));
38 String
style (ly_scm2string (scm_symbol_to_string (st
)));
41 m
= numbered_time_signature (me
, n
, 0);
45 m
= special_time_signature (me
, st
, n
, d
);
49 m
= numbered_time_signature (me
, n
,d
);
51 if (Staff_symbol_referencer::line_count (me
) % 2 == 0)
52 m
.translate_axis (Staff_symbol_referencer::staff_space (me
)/2 , Y_AXIS
);
54 return m
.smobbed_copy ();
58 Time_signature::special_time_signature (Grob
*me
, SCM scm_style
, int n
, int d
)
60 String style
= ly_scm2string (scm_symbol_to_string (scm_style
));
62 if (style
== "numbered")
63 return numbered_time_signature (me
, n
, d
);
65 if ((style
== "default") || (style
== ""))
66 style
= to_string ("C");
70 if /* neither C2/2 nor C4/4 */
71 (((n
!= 2) || (d
!= 2)) &&
72 ((n
!= 4) || (d
!= 4)))
74 return numbered_time_signature (me
, n
, d
);
78 String char_name
= style
+ to_string (n
) + "/" + to_string (d
);
79 me
->set_grob_property ("font-family", ly_symbol2scm ("music"));
80 Molecule out
= Font_interface::get_default_font (me
)
81 ->find_by_name ("timesig-" + char_name
);
85 /* If there is no such symbol, we default to the numbered style.
86 (Here really with a warning!) */
87 me
->warning (_f ("time signature symbol `%s' not found; "
88 "reverting to numbered style", char_name
));
89 return numbered_time_signature (me
, n
, d
);
93 Time_signature::numbered_time_signature (Grob
*me
,int num
, int den
)
95 SCM chain
= Font_interface::font_alist_chain (me
);
96 me
->set_grob_property ("font-family", ly_symbol2scm ("number"));
99 Text_item::text2molecule (me
, scm_makfrom0str (to_string (num
).to_str0 ()),
102 Text_item::text2molecule (me
, scm_makfrom0str (to_string (den
).to_str0 ()),
104 n
.align_to (X_AXIS
, CENTER
);
105 d
.align_to (X_AXIS
, CENTER
);
109 m
.add_at_edge (Y_AXIS
, UP
, n
, 0.0, 0);
110 m
.add_at_edge (Y_AXIS
, DOWN
, d
, 0.0,0);
115 m
.align_to (Y_AXIS
, CENTER
);
118 m
.align_to (X_AXIS
, LEFT
);
123 ADD_INTERFACE (Time_signature
, "time-signature-interface",
124 "A time signature, in different styles.\n"
125 " The following values for 'style are are recognized:\n"
129 " 4/4 and 2/2 are typeset as C and struck C, respectively. All\n"
130 " other time signatures are written with two digits.\n"
132 " @item @code{neo_mensural}\n"
133 " 2/2, 3/2, 2/4, 3/4, 4/4, 6/4, 9/4, 4/8, 6/8 and 9/8 are\n"
134 " typeset with neo-mensural style mensuration marks. All other time\n"
135 " signatures are written with two digits.\n"
137 " @item @code{mensural}\n"
138 " 2/2, 3/2, 2/4, 3/4, 4/4, 6/4, 9/4, 4/8, 6/8 and 9/8 are\n"
139 " typeset with mensural style mensuration marks. All other time\n"
140 " signatures are written with two digits.\n"
142 " @item @code{1xxx}\n"
143 " All time signatures are typeset with a single\n"
144 " digit, e.g. 3/2 is written as 3. (Any symbol starting\n"
145 " with the digit @code{1} will do.)\n"
148 "See also the test-file @file{input/test/time.ly}.\n",