]> git.donarmstrong.com Git - lilypond.git/blob - lily/pango-font.cc
* The grand 2005-2006 replace.
[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 "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                         PangoFontDescription *description,
26                         Real output_scale)
27 {
28   (void) fontmap;
29   physical_font_tab_ = scm_c_make_hash_table (11);
30   PangoDirection pango_dir = PANGO_DIRECTION_LTR;
31   context_
32     = pango_ft2_get_context (PANGO_RESOLUTION, PANGO_RESOLUTION);
33   //  context_ = pango_ft2_font_map_create_context (fontmap);
34
35   pango_description_ = pango_font_description_copy (description);
36   attribute_list_ = pango_attr_list_new ();
37
38   /*
39     urgh. I don't understand this. Why isn't this 1/(scale *
40     resolution * output_scale)
41
42     --hwn
43   */
44   output_scale_ = output_scale;
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 const *item, String str) const
78 {
79   const int GLYPH_NAME_LEN = 256;
80   char glyph_name[GLYPH_NAME_LEN];
81   PangoAnalysis const *pa = &(item->analysis);
82   PangoGlyphString *pgs = pango_glyph_string_new ();
83
84   pango_shape (str.to_str0 () + item->offset,
85                item->length, (PangoAnalysis*) 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
106   bool cid_keyed = false;
107   for (int i = 0; i < pgs->num_glyphs; i++)
108     {
109       PangoGlyphInfo *pgi = pgs->glyphs + i;
110
111       PangoGlyph pg = pgi->glyph;
112       PangoGlyphGeometry ggeo = pgi->geometry;
113
114       FT_Get_Glyph_Name (ftface, pg, glyph_name, GLYPH_NAME_LEN);
115
116       SCM char_id;
117       if (glyph_name[0] == '\0')
118         {
119           /*
120             CID entry
121           */
122           cid_keyed = true;
123           char_id = scm_from_int (pg);
124         }
125       else
126         char_id = scm_makfrom0str (glyph_name);
127       
128       *tail = scm_cons (scm_list_4 (scm_from_double (ggeo.width * scale_),
129                                     scm_from_double (ggeo.x_offset * scale_),
130                                     scm_from_double (ggeo.y_offset * scale_),
131                                     
132                                     char_id),
133                         SCM_EOL);
134       tail = SCM_CDRLOC (*tail);
135     }
136
137   PangoFontDescription *descr = pango_font_describe (pa->font);
138   Real size = pango_font_description_get_size (descr)
139     / (Real (PANGO_SCALE));
140
141   FcPattern *fcpat = fcfont->font_pattern;
142   char *file_name_as_ptr = 0;
143   FcPatternGetString (fcpat, FC_FILE, 0, (FcChar8 **) & file_name_as_ptr);
144
145   String file_name;
146   if (file_name_as_ptr)
147     {
148       /* Normalize file name.  */
149       file_name = File_name (file_name_as_ptr).to_string ();
150     }
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       && (file_name.index (".otf") >= 0
161           || 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 (file_name.index (".otf"),
167                      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
212     = pango_itemize (context_,
213                      str.to_str0 (),
214                      0, str.length (), attribute_list_,
215                      NULL);
216
217   Stencil dest;
218
219   Real last_x = 0.0;
220
221   Direction text_dir = RIGHT;
222   for (GList *p = items; p; p = p->next)
223     {
224       PangoItem *item = (PangoItem *) p->data;
225       if (item->analysis.level == PANGO_DIRECTION_RTL)
226         text_dir = LEFT;
227     }
228  
229   for (GList *ptr = items; ptr; ptr = ptr->next)
230     {
231       PangoItem *item = (PangoItem *) ptr->data;
232
233       Stencil item_stencil = pango_item_string_stencil (item, str);
234
235       if (text_dir == RIGHT)
236         {
237           item_stencil.translate_axis (last_x, X_AXIS);
238           last_x = item_stencil.extent (X_AXIS)[RIGHT];
239         }
240       else if (text_dir == LEFT)
241         {
242           dest.translate_axis (item_stencil.extent (X_AXIS)[RIGHT], X_AXIS);
243         }
244
245 #if 0 /* Check extents.  */
246       if (!item_stencil.extent_box ()[X_AXIS].is_empty ())
247         {
248           Stencil frame = Lookup::frame (item_stencil.extent_box (), 0.1, 0.1);
249           Box empty;
250           empty.set_empty ();
251           Stencil dimless_frame (empty, frame.expr ());
252           dest.add_stencil (frame);
253         }
254 #endif
255   
256       dest.add_stencil (item_stencil);
257     }
258
259   /*
260     UGH. Should have flags per output format signifying supported
261     options.
262   */
263   if (output_backend_global != "ps"
264       && output_backend_global != "eps")
265     {
266       /*
267         For Pango based backends, we take a shortcut.
268       */
269       char *descr_string = pango_font_description_to_string (pango_description_);
270       SCM exp
271         = scm_list_3 (ly_symbol2scm ("utf-8-string"),
272                       scm_makfrom0str (descr_string),
273                       scm_makfrom0str (str.to_str0 ()));
274
275       g_free (descr_string);
276
277       Box b (Interval (0, 0), Interval (0, 0));
278       b.unite (dest.extent_box ());
279       return Stencil (b, exp);
280     }
281
282
283   return dest;
284 }
285
286 SCM
287 Pango_font::font_file_name () const
288 {
289   return SCM_BOOL_F;
290 }
291
292 #endif