]> git.donarmstrong.com Git - lilypond.git/blob - lily/pango-font.cc
*** empty log message ***
[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--2006 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 "international.hh"
18 #include "lookup.hh"
19 #include "main.hh"
20 #include "string-convert.hh"
21 #include "warn.hh"
22
23 #if HAVE_PANGO_FT2
24 #include "stencil.hh"
25
26 Pango_font::Pango_font (PangoFT2FontMap *fontmap,
27                         PangoFontDescription *description,
28                         Real output_scale)
29 {
30   (void) fontmap;
31   physical_font_tab_ = scm_c_make_hash_table (11);
32   PangoDirection pango_dir = PANGO_DIRECTION_LTR;
33   context_
34     = pango_ft2_get_context (PANGO_RESOLUTION, PANGO_RESOLUTION);
35   //  context_ = pango_ft2_font_map_create_context (fontmap);
36
37   pango_description_ = pango_font_description_copy (description);
38   attribute_list_ = pango_attr_list_new ();
39
40   /*
41     urgh. I don't understand this. Why isn't this 1/(scale *
42     resolution * output_scale)
43
44     --hwn
45   */
46   output_scale_ = output_scale;
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 (std::string filename, std::string ps_name)
66 {
67   scm_hash_set_x (physical_font_tab_,
68                   scm_makfrom0str (ps_name.c_str ()),
69                   scm_makfrom0str (filename.c_str ()));
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 const *item, std::string str) const
80 {
81   const int GLYPH_NAME_LEN = 256;
82   char glyph_name[GLYPH_NAME_LEN];
83   PangoAnalysis const *pa = &(item->analysis);
84   PangoGlyphString *pgs = pango_glyph_string_new ();
85
86   pango_shape (str.c_str () + item->offset,
87                item->length, (PangoAnalysis*) 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       SCM char_id;
119       if (glyph_name[0] == '\0')
120         {
121           /*
122             CID entry
123           */
124           cid_keyed = true;
125           char_id = scm_from_int (pg);
126         }
127       else
128         char_id = scm_makfrom0str (glyph_name);
129       
130       *tail = scm_cons (scm_list_4 (scm_from_double (ggeo.width * scale_),
131                                     scm_from_double (ggeo.x_offset * scale_),
132                                     scm_from_double (ggeo.y_offset * scale_),
133                                     
134                                     char_id),
135                         SCM_EOL);
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_as_ptr = 0;
145   FcPatternGetString (fcpat, FC_FILE, 0, (FcChar8 **) & file_name_as_ptr);
146
147   std::string file_name;
148   if (file_name_as_ptr)
149     {
150       /* Normalize file name.  */
151       file_name = File_name (file_name_as_ptr).to_string ();
152     }
153   
154   char const *ps_name_str0 = FT_Get_Postscript_Name (ftface);
155
156   if (!ps_name_str0)
157     warning (_f ("no PostScript font name for font `%s'", file_name));
158
159   std::string ps_name;
160   if (!ps_name_str0
161       && file_name != ""
162       && (file_name.find (".otf") != NPOS
163           || file_name.find (".cff") != NPOS))
164     {
165
166       /* UGH: kludge a PS name for OTF/CFF fonts.  */
167       std::string name = file_name;
168       ssize idx = file_name.find (".otf");
169       if (idx == NPOS)
170         idx = file_name.find (".cff");
171
172       name = name.substr (0, idx);
173
174       ssize slash_idx = name.rfind ('/');
175       if (slash_idx != NPOS)
176         name = name.substr (slash_idx - 1);
177
178       std::string initial = name.substr (0, 1);
179       initial = String_convert::to_upper (initial);
180       name = name.substr (1);
181       name = String_convert::to_lower (name);
182       ps_name = initial + name;
183     }
184   else if (ps_name_str0)
185     ps_name = ps_name_str0;
186
187   if (ps_name.length ())
188     {
189       ((Pango_font *) this)->register_font_file (file_name, ps_name);
190       pango_fc_font_unlock_face (fcfont);
191
192       SCM expr = scm_list_5 (ly_symbol2scm ("glyph-string"),
193                              scm_makfrom0str (ps_name.c_str ()),
194                              scm_from_double (size),
195                              scm_from_bool (cid_keyed),
196                              ly_quote_scm (glyph_exprs));
197
198       return Stencil (b, expr);
199     }
200
201   warning (_ ("FreeType face has no PostScript font name"));
202   return Stencil ();
203 }
204
205 SCM
206 Pango_font::physical_font_tab () const
207 {
208   return physical_font_tab_;
209 }
210
211 Stencil
212 Pango_font::text_stencil (std::string str) const
213 {
214   GList *items
215     = pango_itemize (context_,
216                      str.c_str (),
217                      0, str.length (), attribute_list_,
218                      NULL);
219
220   Stencil dest;
221
222   Real last_x = 0.0;
223
224   Direction text_dir = RIGHT;
225   for (GList *p = items; p; p = p->next)
226     {
227       PangoItem *item = (PangoItem *) p->data;
228       if (item->analysis.level == PANGO_DIRECTION_RTL)
229         text_dir = LEFT;
230     }
231  
232   for (GList *ptr = items; ptr; ptr = ptr->next)
233     {
234       PangoItem *item = (PangoItem *) ptr->data;
235
236       Stencil item_stencil = pango_item_string_stencil (item, str);
237
238       if (text_dir == RIGHT)
239         {
240           item_stencil.translate_axis (last_x, X_AXIS);
241           last_x = item_stencil.extent (X_AXIS)[RIGHT];
242         }
243       else if (text_dir == LEFT)
244         {
245           dest.translate_axis (item_stencil.extent (X_AXIS)[RIGHT], X_AXIS);
246         }
247
248 #if 0 /* Check extents.  */
249       if (!item_stencil.extent_box ()[X_AXIS].is_empty ())
250         {
251           Stencil frame = Lookup::frame (item_stencil.extent_box (), 0.1, 0.1);
252           Box empty;
253           empty.set_empty ();
254           Stencil dimless_frame (empty, frame.expr ());
255           dest.add_stencil (frame);
256         }
257 #endif
258   
259       dest.add_stencil (item_stencil);
260     }
261
262   /*
263     UGH. Should have flags per output format signifying supported
264     options.
265   */
266   if (output_backend_global != "ps"
267       && output_backend_global != "eps")
268     {
269       /*
270         For Pango based backends, we take a shortcut.
271       */
272       char *descr_string = pango_font_description_to_string (pango_description_);
273       SCM exp
274         = scm_list_3 (ly_symbol2scm ("utf-8-string"),
275                       scm_makfrom0str (descr_string),
276                       scm_makfrom0str (str.c_str ()));
277
278       g_free (descr_string);
279
280       Box b (Interval (0, 0), Interval (0, 0));
281       b.unite (dest.extent_box ());
282       return Stencil (b, exp);
283     }
284
285
286   return dest;
287 }
288
289 SCM
290 Pango_font::font_file_name () const
291 {
292   return SCM_BOOL_F;
293 }
294
295 #endif