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