X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=lily%2Fpango-font.cc;h=7d50025c388197c9629e84a48fa55d3ecaea791c;hb=57a2a2ef1c3a62ce1897c827c0fee6223d193e2e;hp=6c5735fec83d18df443a3a926927979e844e9911;hpb=5d7f3453a3060d227d9c30b44bf66164f7a674c8;p=lilypond.git diff --git a/lily/pango-font.cc b/lily/pango-font.cc index 6c5735fec8..7d50025c38 100644 --- a/lily/pango-font.cc +++ b/lily/pango-font.cc @@ -8,6 +8,7 @@ #define PANGO_ENABLE_BACKEND // ugh, why necessary? #include +#include /* Ugh. */ #include "pango-font.hh" @@ -76,16 +77,26 @@ Pango_font::derived_mark () const } +map filename_charcode_maps_map; +Index_to_charcode_map const *get_index_to_charcode_map (string postscript_name, FT_Face face); + + Index_to_charcode_map const * -Pango_font::get_index_to_charcode_map (string key, FT_Face face) +get_index_to_charcode_map (string filename, FT_Face face) { - if (charcode_maps_.find (key) == charcode_maps_.end ()) - charcode_maps_[key] = make_index_to_charcode_map (face); + if (filename_charcode_maps_map.find (filename) == filename_charcode_maps_map.end ()) + filename_charcode_maps_map[filename] = make_index_to_charcode_map (face); - if (charcode_maps_.find (key) == charcode_maps_.end ()) + if (filename_charcode_maps_map.find (filename) == filename_charcode_maps_map.end ()) return 0; - return &charcode_maps_[key]; + return &filename_charcode_maps_map[filename]; +} + +void +get_glyph_index_name (char *s, FT_ULong code) +{ + sprintf (s, "glyphIndex%lX", code); } void @@ -149,8 +160,9 @@ Pango_font::pango_item_string_stencil (PangoItem const *item, string str, Index_to_charcode_map const *cmap = 0; bool has_glyph_names = ftface->face_flags & FT_FACE_FLAG_GLYPH_NAMES; if (! has_glyph_names) - cmap = ((Pango_font*)this)->get_index_to_charcode_map (file_name, ftface); - + cmap = get_index_to_charcode_map (file_name, ftface); + + bool is_ttf = string (FT_Get_X11_Font_Format (ftface)) == "TrueType"; bool cid_keyed = false; for (int i = 0; i < pgs->num_glyphs; i++) { @@ -172,8 +184,8 @@ Pango_font::pango_item_string_stencil (PangoItem const *item, string str, && cmap /* Ugh should ask FreeType about font type. */ - && (file_name.find (".ttf") != NPOS - || file_name.find (".TTF") != NPOS)) + && is_ttf + && cmap->find (pg) != cmap->end ()) { FT_ULong char_code = cmap->find (pg)->second; get_unicode_name (glyph_name, char_code); @@ -181,11 +193,19 @@ Pango_font::pango_item_string_stencil (PangoItem const *item, string str, if (glyph_name[0] == '\0' && has_glyph_names) { - programming_error ("Glyph has no name, but font supports glyph naming. Skipping glyph: " - + description_string ()); + programming_error (_f ("Glyph has no name, but font supports glyph naming.\n" + "Skipping glyph U+%0X, file %s", + pg, + file_name.c_str ())); continue; } - + + if (glyph_name[0] == '\0' && is_ttf) + { + // access by glyph index directly. + get_glyph_index_name (glyph_name, pg); + } + if (glyph_name[0] == '\0') { /*