]> git.donarmstrong.com Git - lilypond.git/blob - lily/pango-font.cc
handle CID CFFs.
[lilypond.git] / lily / pango-font.cc
1 /*
2   pango-font.cc -- implement Pango_font
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2004--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #define PANGO_ENABLE_BACKEND // ugh, why necessary?
10 #include <pango/pangoft2.h>
11
12 /* Ugh.  */
13 #include "pango-font.hh"
14
15 #include "dimensions.hh"
16 #include "file-name.hh"
17 #include "lookup.hh"
18 #include "main.hh"
19 #include "warn.hh"
20
21 #if HAVE_PANGO_FT2
22 #include "stencil.hh"
23
24 Pango_font::Pango_font (PangoFT2FontMap *fontmap,
25                         Direction dir,
26                         PangoFontDescription *description,
27                         Real output_scale)
28 {
29   (void) fontmap;
30   physical_font_tab_ = scm_c_make_hash_table (11);
31   PangoDirection pango_dir = (dir == RIGHT)
32     ? PANGO_DIRECTION_LTR
33     : PANGO_DIRECTION_RTL;
34   context_
35     = pango_ft2_get_context (PANGO_RESOLUTION, PANGO_RESOLUTION);
36   //  context_ = pango_ft2_font_map_create_context (fontmap);
37
38   pango_description_ = pango_font_description_copy (description);
39   attribute_list_ = pango_attr_list_new ();
40
41   /*
42     urgh. I don't understand this. Why isn't this 1/(scale *
43     resolution * output_scale)
44
45     --hwn
46   */
47   scale_ = INCH_TO_BP / (Real (PANGO_SCALE) * Real (PANGO_RESOLUTION) * output_scale);
48
49   /*
50     ugh. Should make this configurable.
51   */
52   pango_context_set_language (context_, pango_language_from_string ("en_US"));
53   pango_context_set_base_dir (context_, pango_dir);
54   pango_context_set_font_description (context_, description);
55 }
56
57 Pango_font::~Pango_font ()
58 {
59   pango_font_description_free (pango_description_);
60   g_object_unref (context_);
61   pango_attr_list_unref (attribute_list_);
62 }
63
64 void
65 Pango_font::register_font_file (String filename, String ps_name)
66 {
67   scm_hash_set_x (physical_font_tab_,
68                   scm_makfrom0str (ps_name.to_str0 ()),
69                   scm_makfrom0str (filename.to_str0 ()));
70 }
71
72 void
73 Pango_font::derived_mark () const
74 {
75   scm_gc_mark (physical_font_tab_);
76 }
77
78 Stencil
79 Pango_font::pango_item_string_stencil (PangoItem *item, String str, Real dx) const
80 {
81   const int GLYPH_NAME_LEN = 256;
82   char glyph_name[GLYPH_NAME_LEN];
83   PangoAnalysis *pa = &(item->analysis);
84   PangoGlyphString *pgs = pango_glyph_string_new ();
85
86   pango_shape (str.to_str0 () + item->offset,
87                item->length, pa, pgs);
88
89   PangoRectangle logical_rect;
90   PangoRectangle ink_rect;
91   pango_glyph_string_extents (pgs, pa->font, &ink_rect, &logical_rect);
92
93   PangoFcFont *fcfont = G_TYPE_CHECK_INSTANCE_CAST (pa->font,
94                                                     PANGO_TYPE_FC_FONT,
95                                                     PangoFcFont);
96
97   FT_Face ftface = pango_fc_font_lock_face (fcfont);
98   Box b (Interval (PANGO_LBEARING (ink_rect),
99                    PANGO_RBEARING (ink_rect)),
100          Interval (-PANGO_DESCENT (ink_rect),
101                    PANGO_ASCENT (ink_rect)));
102
103   b.scale (scale_);
104   
105   SCM glyph_exprs = SCM_EOL;
106   SCM *tail = &glyph_exprs;
107
108   bool cid_keyed = false;
109   for (int i = 0; i < pgs->num_glyphs; i++)
110     {
111       PangoGlyphInfo *pgi = pgs->glyphs + i;
112
113       PangoGlyph pg = pgi->glyph;
114       PangoGlyphGeometry ggeo = pgi->geometry;
115
116       FT_Get_Glyph_Name (ftface, pg, glyph_name, GLYPH_NAME_LEN);
117
118
119       SCM char_id; 
120       if (glyph_name[0] == '\0')
121         {
122           /*
123             CID entry
124            */
125           cid_keyed = true;
126           char_id = scm_from_int (pg);
127         }
128       else
129         char_id = scm_makfrom0str (glyph_name);
130       *tail = scm_cons (scm_list_3 (scm_from_double (ggeo.x_offset * scale_
131                                                      + dx),
132                                     scm_from_double (ggeo.y_offset * scale_),
133                                     char_id),
134                         SCM_EOL);
135       dx = 0.0;
136       tail = SCM_CDRLOC (*tail);
137     }
138
139   PangoFontDescription *descr = pango_font_describe (pa->font);
140   Real size = pango_font_description_get_size (descr)
141     / (Real (PANGO_SCALE));
142
143   FcPattern *fcpat = fcfont->font_pattern;
144   char *file_name = 0;
145   FcPatternGetString (fcpat, FC_FILE, 0, (FcChar8 **) & file_name);
146 #ifdef __MINGW32__
147   /* Normalize file name.  */
148   // FIXME: memleak(s?), drop the #ifdef?
149   file_name = File_name (file_name).to_string ().get_copy_str0 ();
150 #endif
151
152   char const *ps_name_str0 = FT_Get_Postscript_Name (ftface);
153
154   if (!ps_name_str0)
155     warning (_f ("no PostScript font name for font `%s'", file_name));
156
157   String ps_name;
158   if (!ps_name_str0
159       && file_name
160       && (String (file_name).index (".otf") >= 0
161           || String (file_name).index (".cff") >= 0))
162     {
163
164       /* UGH: kludge a PS name for OTF/CFF fonts.  */
165       String name = file_name;
166       int idx = max (String (file_name).index (".otf"),
167                      String (file_name).index (".cff"));
168
169       name = name.left_string (idx);
170
171       int slash_idx = name.index_last ('/');
172       if (slash_idx >= 0)
173         name = name.right_string (name.length () - slash_idx - 1);
174
175       String initial = name.cut_string (0, 1);
176       initial.to_upper ();
177       name = name.nomid_string (0, 1);
178       name.to_lower ();
179       ps_name = initial + name;
180     }
181   else if (ps_name_str0)
182     ps_name = ps_name_str0;
183
184   if (ps_name.length ())
185     {
186       ((Pango_font *) this)->register_font_file (file_name, ps_name);
187       pango_fc_font_unlock_face (fcfont);
188         
189       SCM expr = scm_list_5 (ly_symbol2scm ("glyph-string"),
190                              scm_makfrom0str (ps_name.to_str0 ()),
191                              scm_from_double (size),
192                              scm_from_bool (cid_keyed),
193                              ly_quote_scm (glyph_exprs));
194
195       return Stencil (b, expr);
196     }
197
198   warning (_ ("FreeType face has no PostScript font name"));
199   return Stencil ();
200 }
201
202 SCM
203 Pango_font::physical_font_tab () const
204 {
205   return physical_font_tab_;
206 }
207
208 Stencil
209 Pango_font::text_stencil (String str) const
210 {
211   GList *items = pango_itemize (context_,
212                                 str.to_str0 (),
213                                 0, str.length (), attribute_list_,
214                                 NULL);
215
216   GList *ptr = items;
217   Stencil dest;
218   Real x = 0.0;
219   while (ptr)
220     {
221       PangoItem *item = (PangoItem *) ptr->data;
222
223       Stencil item_stencil = pango_item_string_stencil (item, str, x);
224
225       x = item_stencil.extent (X_AXIS)[RIGHT];
226
227       dest.add_stencil (item_stencil);
228
229       ptr = ptr->next;
230     }
231
232   /*
233     UGH. Should have flags per output format signifying supported
234     options.
235   */
236   if (output_backend_global != "ps"
237       && output_backend_global != "eps")
238     {
239       /*
240         For Pango based backends, we take a shortcut.
241       */
242       char *descr_string = pango_font_description_to_string (pango_description_);
243       SCM exp
244         = scm_list_3 (ly_symbol2scm ("utf8-string"),
245                       scm_makfrom0str (descr_string),
246                       scm_makfrom0str (str.to_str0 ()));
247
248       g_free (descr_string);
249
250       Box b (Interval (0, 0), Interval (0, 0));
251       b.unite (dest.extent_box ());
252       return Stencil (b, exp);
253     }
254
255 #if 0
256   // check extents.
257   if (!dest.extent_box ()[X_AXIS].is_empty ())
258     {
259       Stencil frame = Lookup::frame (dest.extent_box (), 0.1, 0.1);
260       Box empty;
261       empty.set_empty ();
262       Stencil dimless_frame (empty, frame.expr ());
263       dest.add_stencil (frame);
264     }
265 #endif
266
267   return dest;
268 }
269
270 SCM
271 Pango_font::font_file_name () const
272 {
273   return SCM_BOOL_F;
274 }
275
276 #endif