]> git.donarmstrong.com Git - lilypond.git/blob - lily/pango-font.cc
* lily/pango-font.cc (pango_item_string_stencil): make Mingw code
[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                         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_3 (scm_from_double (ggeo.x_offset * scale_),
129                                     scm_from_double (ggeo.y_offset * scale_),
130                                     char_id),
131                         SCM_EOL);
132       tail = SCM_CDRLOC (*tail);
133     }
134
135   PangoFontDescription *descr = pango_font_describe (pa->font);
136   Real size = pango_font_description_get_size (descr)
137     / (Real (PANGO_SCALE));
138
139   FcPattern *fcpat = fcfont->font_pattern;
140   char *file_name_as_ptr = 0;
141   FcPatternGetString (fcpat, FC_FILE, 0, (FcChar8 **) & file_name_as_ptr);
142
143   String file_name;
144   if (file_name_as_ptr)
145     {
146       /* Normalize file name.  */
147       file_name = File_name (file_name_as_ptr).to_string ();
148     }
149   
150   char const *ps_name_str0 = FT_Get_Postscript_Name (ftface);
151
152   if (!ps_name_str0)
153     warning (_f ("no PostScript font name for font `%s'", file_name));
154
155   String ps_name;
156   if (!ps_name_str0
157       && file_name != ""
158       && (file_name.index (".otf") >= 0
159           || file_name.index (".cff") >= 0))
160     {
161
162       /* UGH: kludge a PS name for OTF/CFF fonts.  */
163       String name = file_name;
164       int idx = max (file_name.index (".otf"),
165                      file_name.index (".cff"));
166
167       name = name.left_string (idx);
168
169       int slash_idx = name.index_last ('/');
170       if (slash_idx >= 0)
171         name = name.right_string (name.length () - slash_idx - 1);
172
173       String initial = name.cut_string (0, 1);
174       initial.to_upper ();
175       name = name.nomid_string (0, 1);
176       name.to_lower ();
177       ps_name = initial + name;
178     }
179   else if (ps_name_str0)
180     ps_name = ps_name_str0;
181
182   if (ps_name.length ())
183     {
184       ((Pango_font *) this)->register_font_file (file_name, ps_name);
185       pango_fc_font_unlock_face (fcfont);
186
187       SCM expr = scm_list_5 (ly_symbol2scm ("glyph-string"),
188                              scm_makfrom0str (ps_name.to_str0 ()),
189                              scm_from_double (size),
190                              scm_from_bool (cid_keyed),
191                              ly_quote_scm (glyph_exprs));
192
193       return Stencil (b, expr);
194     }
195
196   warning (_ ("FreeType face has no PostScript font name"));
197   return Stencil ();
198 }
199
200 SCM
201 Pango_font::physical_font_tab () const
202 {
203   return physical_font_tab_;
204 }
205
206 Stencil
207 Pango_font::text_stencil (String str) const
208 {
209   GList *items
210     = pango_itemize (context_,
211                      str.to_str0 (),
212                      0, str.length (), attribute_list_,
213                      NULL);
214
215   Stencil dest;
216
217   Real last_x = 0.0;
218
219   Direction text_dir = RIGHT;
220   for (GList *p = items; p; p = p->next)
221     {
222       PangoItem *item = (PangoItem *) p->data;
223       if (item->analysis.level == PANGO_DIRECTION_RTL)
224         text_dir = LEFT;
225     }
226  
227   for (GList *ptr = items; ptr; ptr = ptr->next)
228     {
229       PangoItem *item = (PangoItem *) ptr->data;
230
231       Stencil item_stencil = pango_item_string_stencil (item, str);
232
233       if (text_dir == RIGHT)
234         {
235           item_stencil.translate_axis (last_x, X_AXIS);
236           last_x = item_stencil.extent (X_AXIS)[RIGHT];
237         }
238       else if (text_dir == LEFT)
239         {
240           dest.translate_axis (item_stencil.extent (X_AXIS)[RIGHT], X_AXIS);
241         }
242
243 #if 0 /* Check extents.  */
244       if (!item_stencil.extent_box ()[X_AXIS].is_empty ())
245         {
246           Stencil frame = Lookup::frame (item_stencil.extent_box (), 0.1, 0.1);
247           Box empty;
248           empty.set_empty ();
249           Stencil dimless_frame (empty, frame.expr ());
250           dest.add_stencil (frame);
251         }
252 #endif
253   
254       dest.add_stencil (item_stencil);
255     }
256
257   /*
258     UGH. Should have flags per output format signifying supported
259     options.
260   */
261   if (output_backend_global != "ps"
262       && output_backend_global != "eps")
263     {
264       /*
265         For Pango based backends, we take a shortcut.
266       */
267       char *descr_string = pango_font_description_to_string (pango_description_);
268       SCM exp
269         = scm_list_3 (ly_symbol2scm ("utf-8-string"),
270                       scm_makfrom0str (descr_string),
271                       scm_makfrom0str (str.to_str0 ()));
272
273       g_free (descr_string);
274
275       Box b (Interval (0, 0), Interval (0, 0));
276       b.unite (dest.extent_box ());
277       return Stencil (b, exp);
278     }
279
280
281   return dest;
282 }
283
284 SCM
285 Pango_font::font_file_name () const
286 {
287   return SCM_BOOL_F;
288 }
289
290 #endif