2 font-metric.cc -- implement Font_metric
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 Mats Bengtsson <matsb@s3.kth.se> (the ugly TeX parsing in text_dimension)
14 #include "scaled-font-metric.hh"
15 #include "virtual-methods.hh"
18 #include "ly-smobs.icc"
19 #include "font-metric.hh"
23 Font_metric::design_size () const
29 Font_metric::coding_scheme () const
31 return "FontSpecific";
35 Font_metric::find_by_name (String s) const
37 int idx = name_to_index (s);
43 expr = scm_list_3 (ly_symbol2scm ("char"),
45 scm_int2num (index_to_ascii (idx)));
46 b = get_indexed_char (idx);
53 Font_metric::Font_metric ()
55 description_ = SCM_EOL;
60 Font_metric::Font_metric (Font_metric const &)
65 Font_metric::~Font_metric ()
70 Font_metric::count () const
76 Font_metric::get_ascii_char (int) const
78 return Box (Interval (0, 0), Interval (0, 0));
82 Font_metric::get_indexed_char (int k) const
84 return get_ascii_char (k);
88 Font_metric::name_to_index (String) const
94 Font_metric::get_indexed_wxwy (int) const
100 Font_metric::derived_mark () const
105 Font_metric::mark_smob (SCM s)
107 Font_metric *m = (Font_metric*) SCM_CELL_WORD_1 (s);
109 return m->description_;
113 Font_metric::print_smob (SCM s, SCM port, scm_print_state *)
115 Font_metric *m = unsmob_metrics (s);
116 scm_puts ("#<", port);
117 scm_puts (classname (m), port);
118 scm_puts (" ", port);
119 scm_write (m->description_, port);
120 scm_puts (">", port);
126 IMPLEMENT_SMOBS (Font_metric);
127 IMPLEMENT_DEFAULT_EQUAL_P (Font_metric);
128 IMPLEMENT_TYPE_P (Font_metric, "ly:font-metric?");
131 LY_DEFINE (ly_find_glyph_by_name, "ly:find-glyph-by-name",
133 (SCM font, SCM name),
134 "This function retrieves a Stencil for the glyph named @var{name} "
137 "The font must be available as an AFM file. If the glyph "
138 "is not found, @code{#f} is returned. ")
140 Font_metric *fm = unsmob_metrics (font);
141 SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
142 SCM_ASSERT_TYPE (ly_c_string_p (name), name, SCM_ARG2, __FUNCTION__, "string");
144 Stencil m = fm->find_by_name (ly_scm2string (name));
146 /* TODO: make optional argument for default if not found. */
147 return m.smobbed_copy ();
150 LY_DEFINE (ly_get_glyph, "ly:get-glyph",
152 (SCM font, SCM index),
153 "Retrieve a Stencil for the glyph numbered @var{index} "
156 Font_metric *fm = unsmob_metrics (font);
157 SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
158 SCM_ASSERT_TYPE (ly_c_number_p (index), index, SCM_ARG2, __FUNCTION__, "number");
160 return fm->get_ascii_char_stencil (ly_scm2int (index)).smobbed_copy ();
163 LY_DEFINE (ly_text_dimension,"ly:text-dimension",
165 (SCM font, SCM text),
166 "Given the font metric in @var{font} and the string @var{text}, "
167 "compute the extents of that text in that font. "
168 "The return value is a pair of number-pairs.")
171 Modified_font_metric*fm = dynamic_cast<Modified_font_metric*>
172 (unsmob_metrics (font));
173 SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "modified font metric");
174 SCM_ASSERT_TYPE (ly_c_string_p (text), text, SCM_ARG2, __FUNCTION__, "string");
176 b = fm->text_dimension (ly_scm2string (text));
178 return scm_cons (ly_interval2scm (b[X_AXIS]), ly_interval2scm (b[Y_AXIS]));
181 LY_DEFINE (ly_font_filename,"ly:font-filename",
184 "Given the font metric @var{font}, "
185 "return the corresponding file name.")
187 Font_metric *fm = unsmob_metrics (font);
188 SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
189 return ly_car (fm->description_);
195 LY_DEFINE (ly_font_name,"ly:font-name",
198 "Given the font metric @var{font}, "
199 "return the corresponding name.")
201 Font_metric *fm = unsmob_metrics (font);
203 SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
206 if (Modified_font_metric* mfm = dynamic_cast<Modified_font_metric*> (fm))
207 return ly_font_name (mfm->original_font ()->self_scm ());
208 else if (Adobe_font_metric* afm = dynamic_cast<Adobe_font_metric*> (fm))
210 return scm_makfrom0str (afm->font_info_->gfi->fontName);
218 LY_DEFINE (ly_font_magnification,"ly:font-magnification", 1 , 0, 0,
220 "Given the font metric @var{font}, return the "
221 "magnification, relative to the current outputscale.")
223 Font_metric *fm = unsmob_metrics (font);
224 SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
225 return ly_cdr (fm->description_);
228 LY_DEFINE (ly_font_design_size,"ly:font-design-size", 1 , 0, 0,
230 "Given the font metric @var{font}, return the "
231 "design size, relative to the current outputscale.")
233 Font_metric *fm = unsmob_metrics (font);
234 SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
235 return scm_make_real (fm->design_size ());
241 Font_metric::index_to_ascii (int i) const
247 Font_metric::get_ascii_char_stencil (int code) const
249 SCM at = scm_list_3 (ly_symbol2scm ("char"),
252 Box b = get_ascii_char (code);
253 return Stencil (b, at);
257 Font_metric::get_indexed_char_stencil (int code) const
259 SCM at = scm_list_3 (ly_symbol2scm ("char"),
262 Box b = get_indexed_char (code);
263 return Stencil (b, at);
268 get_encoded_index (Font_metric *m, String input_coding, int code)
270 String font_coding = m->coding_scheme ();
271 if (font_coding == input_coding)
273 SCM s = scm_call_3 (ly_scheme_function ("encoded-index"),
274 scm_makfrom0str (input_coding.to_str0 ()),
275 scm_makfrom0str (font_coding.to_str0 ()),
277 return ly_scm2int (s);