X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fopen-type-font-scheme.cc;h=db4c89c177d705a7b1e77a00a6eb2f105774c6d8;hb=459d4d5eaa90373349eb0461af7b6e3cdfd56981;hp=147320521004d006052c76e1a9ebd50c4a61291e;hpb=1dd803cf0f3ed07a0e9e8b49dd66b84152c64b27;p=lilypond.git diff --git a/lily/open-type-font-scheme.cc b/lily/open-type-font-scheme.cc index 1473205210..db4c89c177 100644 --- a/lily/open-type-font-scheme.cc +++ b/lily/open-type-font-scheme.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2004--2005 Han-Wen Nienhuys + (c) 2004--2006 Han-Wen Nienhuys */ #include "modified-font-metric.hh" @@ -35,27 +35,55 @@ LY_DEFINE (ly_otf_font_glyph_info, "ly:otf-font-glyph-info", 2, 0, 0, return scm_hashq_ref (otf->get_char_table (), sym, SCM_EOL); } +LY_DEFINE (ly_otf_font_table_data, "ly:otf-font-table-data", 2, 0, 0, + (SCM font, SCM tag), + "Extract a table @var{tag} from @var{font}. Return empty string for " + "non-existent @var{tag}.") +{ + Modified_font_metric *fm + = dynamic_cast (unsmob_metrics (font)); + + Open_type_font *otf = fm ? dynamic_cast (fm->original_font ()) + : dynamic_cast (unsmob_metrics (font)); + + SCM_ASSERT_TYPE (otf, font, SCM_ARG1, __FUNCTION__, "Open type font"); + SCM_ASSERT_TYPE (scm_is_string (tag), tag, SCM_ARG1, __FUNCTION__, "Open type font"); + + char ctag [5] = " "; + + string tag_string = ly_scm2string (tag); + strncpy (ctag, tag_string.c_str (), tag_string.length ()); + + string tab = otf->get_otf_table (string (ctag)); -LY_DEFINE(ly_otf_font_table_data, "ly:otf-font-table-data", 2, 0, 0, - (SCM font, SCM tag), - "Extract a table @var{tag} from @var{font}.") + return scm_from_locale_stringn ((char const *) tab.data (), tab.length ()); +} + +LY_DEFINE (ly_otf_font_p, "ly:otf-font?", 1, 0, 0, + (SCM font), + "Is @var{font} an OpenType font?") { Modified_font_metric *fm = dynamic_cast (unsmob_metrics (font)); - + Open_type_font *otf = fm ? dynamic_cast (fm->original_font ()) : dynamic_cast (unsmob_metrics (font)); + return scm_from_bool (otf); +} - SCM_ASSERT_TYPE (otf, font, SCM_ARG1, __FUNCTION__, "Open type font"); - SCM_ASSERT_TYPE (scm_is_string (tag), tag, SCM_ARG1, __FUNCTION__, "Open type font"); +LY_DEFINE (ly_otf_glyph_list, "ly:otf-glyph-list", + 1, 0, 0, (SCM font), + "Return a list of glyphnames for @var{font}.") +{ + Modified_font_metric *fm + = dynamic_cast (unsmob_metrics (font)); - char ctag [5] = " "; + Open_type_font *otf = fm ? dynamic_cast (fm->original_font ()) + : dynamic_cast (unsmob_metrics (font)); - String tag_string = ly_scm2string (tag); - strncpy (ctag, tag_string.to_str0 (), tag_string.length()); - String tab = otf->get_otf_table (String (ctag)); + SCM_ASSERT_TYPE (otf,font, SCM_ARG1, __FUNCTION__, "OTF font"); + return otf->glyph_list (); - return scm_from_locale_stringn ((char const*) tab.to_bytes (), tab.length ()); }