]> git.donarmstrong.com Git - lilypond.git/blob - lily/font-metric-scheme.cc
64d6f5c40026b76613d83a8dd02505243d73f036
[lilypond.git] / lily / font-metric-scheme.cc
1 /*
2   font-metric-scheme.cc -- implement Font_metric scheme bindings
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "warn.hh"
10 #include "stencil.hh"
11 #include "font-metric.hh"
12 #include "modified-font-metric.hh"
13
14 LY_DEFINE (ly_font_get_glyph, "ly:font-get-glyph",
15            2, 0, 0,
16            (SCM font, SCM name),
17            "Return a Stencil from @var{font} for the glyph named @var{name}.  "
18            "@var{font} must be available as an AFM file.  If the glyph "
19            "is not available, return @code{#f}.")
20 {
21   Font_metric *fm = unsmob_metrics (font);
22   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
23   SCM_ASSERT_TYPE (scm_is_string (name), name, SCM_ARG2, __FUNCTION__, "string");
24
25   Stencil m = fm->find_by_name (ly_scm2string (name));
26
27   /* TODO: make optional argument for default if not found.  */
28   return m.smobbed_copy ();
29 }
30
31 LY_DEFINE (ly_get_glyph, "ly:get-glyph",
32            2, 0, 0,
33            (SCM font, SCM index),
34            "Retrieve a Stencil for the glyph numbered @var{index} "
35            "in @var{font}.")
36 {
37   Font_metric *fm = unsmob_metrics (font);
38   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
39   SCM_ASSERT_TYPE (scm_is_number (index), index, SCM_ARG2, __FUNCTION__, "number");
40
41   return fm->get_ascii_char_stencil (scm_to_int (index)).smobbed_copy ();
42 }
43
44 LY_DEFINE (ly_font_glyph_name_to_index, "ly:font-glyph-name-to-index",
45            2, 0, 0,
46            (SCM font, SCM name),
47            "Return the index for @var{name} in @var{font}.")
48 {
49   Font_metric *fm = unsmob_metrics (font);
50   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
51   SCM_ASSERT_TYPE (scm_is_string (name), name, SCM_ARG2, __FUNCTION__, "string");
52
53   return scm_from_int (fm->name_to_index (ly_scm2string (name)));
54 }
55
56 LY_DEFINE (ly_font_index_to_charcode, "ly:font-index-to-charcode",
57            2, 0, 0,
58            (SCM font, SCM index),
59            "Return the character code for @var{index} @var{font}.")
60 {
61   Font_metric *fm = unsmob_metrics (font);
62   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
63   SCM_ASSERT_TYPE (scm_is_integer (index), index, SCM_ARG2, __FUNCTION__, "index");
64
65   return scm_from_unsigned_integer (fm->index_to_charcode (scm_to_int (index)));
66 }
67
68 LY_DEFINE (ly_font_glyph_name_to_charcode, "ly:font-glyph-name-to-charcode",
69            2, 0, 0,
70            (SCM font, SCM name),
71            "Return the character code for glyph @var{name} in @var{font}.")
72 {
73   Font_metric *fm = unsmob_metrics (font);
74   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
75   SCM_ASSERT_TYPE (scm_is_string (name), name, SCM_ARG2, __FUNCTION__, "string");
76
77   return scm_from_unsigned_integer (fm->index_to_charcode (fm->name_to_index (ly_scm2string (name))));
78 }
79
80 LY_DEFINE (ly_text_dimension, "ly:text-dimension",
81            2, 0, 0,
82            (SCM font, SCM text),
83            "Given the font metric in @var{font} and the string @var{text}, "
84            "compute the extents of that text in that font.  "
85            "The return value is a pair of number-pairs.")
86 {
87   Box b;
88   Modified_font_metric *fm = dynamic_cast<Modified_font_metric *>
89     (unsmob_metrics (font));
90
91   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "modified font metric");
92   SCM_ASSERT_TYPE (scm_is_string (text), text, SCM_ARG2, __FUNCTION__, "string");
93   Stencil stc (fm->text_stencil (ly_scm2string (text)));
94   return scm_cons (ly_interval2scm (stc.extent (X_AXIS)),
95                    ly_interval2scm (stc.extent (Y_AXIS)));
96 }
97
98
99 /*
100   TODO: when are non string retvals allowed?
101  */
102 LY_DEFINE (ly_font_file_name, "ly:font-file-name",
103            1, 0, 0,
104            (SCM font),
105            "Given the font metric @var{font}, "
106            "return the corresponding file name.")
107 {
108   Font_metric *fm = unsmob_metrics (font);
109   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
110   SCM name = fm->font_file_name ();
111
112   return name;
113 }
114
115 LY_DEFINE (ly_font_name, "ly:font-name",
116            1, 0, 0,
117            (SCM font),
118            "Given the font metric @var{font}, "
119            "return the corresponding name.")
120 {
121   Font_metric *fm = unsmob_metrics (font);
122
123   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
124   return scm_makfrom0str (fm->font_name ().c_str ());
125 }
126
127 LY_DEFINE (ly_font_magnification, "ly:font-magnification", 1, 0, 0,
128            (SCM font),
129            "Given the font metric @var{font}, return the "
130            "magnification, relative to the current outputs-cale.")
131 {
132   Font_metric *fm = unsmob_metrics (font);
133   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
134   return scm_cdr (fm->description_);
135 }
136
137 LY_DEFINE (ly_font_design_size, "ly:font-design-size", 1, 0, 0,
138            (SCM font),
139            "Given the font metric @var{font}, return the "
140            "design size, relative to the current output-scale.")
141 {
142   Font_metric *fm = unsmob_metrics (font);
143   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
144   return scm_from_double (fm->design_size ());
145 }
146