]> git.donarmstrong.com Git - lilypond.git/blob - lily/pango-font.cc
* stepmake/aclocal.m4 (STEPMAKE_KPATHSEA): Do not include
[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
10
11 #define PANGO_ENABLE_BACKEND // ugh, why necessary?
12
13 #include <pango/pangoft2.h>
14
15 #include "main.hh"
16 #include "lookup.hh"
17 #include "dimensions.hh"
18 #include "pango-font.hh"
19 #include "warn.hh"
20
21 #if HAVE_PANGO_FT2
22 #include "stencil.hh"
23
24
25 Pango_font::Pango_font (PangoFT2FontMap *fontmap,
26                         Direction dir,
27                         PangoFontDescription *description,
28                         Real output_scale)
29 {
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
37   pango_description_ = pango_font_description_copy (description);
38   //  context_ = pango_ft2_font_map_create_context (fontmap);
39   attribute_list_= pango_attr_list_new();
40
41
42   /*
43     urgh. I don't understand this. Why isn't this 1/(scale *
44     resolution * output_scale)
45
46     --hwn
47    */
48   scale_ = INCH_TO_BP / (Real (PANGO_SCALE) * Real (PANGO_RESOLUTION) * output_scale);
49
50   /*
51     ugh. Should make this configurable.
52   */
53   pango_context_set_language (context_, pango_language_from_string ("en_US"));
54   pango_context_set_base_dir (context_, pango_dir);
55   pango_context_set_font_description (context_, description);
56 }
57
58 Pango_font::~Pango_font ()
59 {
60   pango_font_description_free (pango_description_);
61   g_object_unref (context_);
62   pango_attr_list_unref (attribute_list_);
63 }
64
65 void
66 Pango_font::register_font_file (String filename, String ps_name)
67 {
68   scm_hash_set_x (physical_font_tab_,
69                   scm_makfrom0str (ps_name.to_str0 ()),
70                   scm_makfrom0str (filename.to_str0 ()));
71 }
72
73 void
74 Pango_font::derived_mark () const
75 {
76   scm_gc_mark (physical_font_tab_);
77 }
78
79 Stencil
80 Pango_font::pango_item_string_stencil (PangoItem *item, String str, Real dx) const
81 {
82   const int GLYPH_NAME_LEN = 256;
83   char glyph_name[GLYPH_NAME_LEN];
84   PangoAnalysis *pa = &(item->analysis);
85   PangoGlyphString *pgs = pango_glyph_string_new ();
86
87   pango_shape (str.to_str0 () + item->offset,
88                item->length, pa, pgs);
89
90   PangoRectangle logical_rect;
91   PangoRectangle ink_rect;
92   pango_glyph_string_extents (pgs, pa->font, &ink_rect, &logical_rect);
93
94   PangoFcFont *fcfont = G_TYPE_CHECK_INSTANCE_CAST(pa->font,
95                                                    PANGO_TYPE_FC_FONT,
96                                                    PangoFcFont);
97
98   FT_Face ftface = pango_fc_font_lock_face (fcfont);
99   Box b (Interval (PANGO_LBEARING (ink_rect),
100                    PANGO_RBEARING (ink_rect)),
101          Interval (-PANGO_DESCENT (ink_rect),
102                    PANGO_ASCENT (ink_rect)));
103
104   b.scale (scale_);
105
106   SCM glyph_exprs = SCM_EOL;
107   SCM *tail = &glyph_exprs;
108   for (int i = 0; i < pgs->num_glyphs; i++)
109     {
110       PangoGlyphInfo *pgi = pgs->glyphs + i;
111
112       PangoGlyph pg = pgi->glyph;
113       PangoGlyphGeometry ggeo = pgi->geometry;
114
115       FT_Get_Glyph_Name (ftface, pg, glyph_name, GLYPH_NAME_LEN);
116       *tail = scm_cons (scm_list_3 (scm_from_double (ggeo.x_offset * scale_ + dx),
117                                     scm_from_double (ggeo.y_offset * scale_),
118                                     scm_makfrom0str (glyph_name)),
119                         SCM_EOL);
120       dx = 0.0;
121       tail = SCM_CDRLOC (*tail);
122     }
123
124   PangoFontDescription *descr = pango_font_describe (pa->font);
125   Real size = pango_font_description_get_size (descr)
126     /  (Real (PANGO_SCALE));
127
128   FcPattern *fcpat = fcfont->font_pattern;
129   char *filename = 0;
130   FcPatternGetString (fcpat, FC_FILE, 0, (FcChar8 **) &filename);
131   char const *ps_name_str0 = FT_Get_Postscript_Name (ftface);
132
133   if (!ps_name_str0)
134     warning (_f ("No PS font name for font `%s'", filename));
135
136   String ps_name;
137   if (!ps_name_str0
138       && filename
139       && (String (filename).index (".otf") >= 0
140           || String (filename).index (".cff") >= 0))
141     {
142
143       /*
144         UGH: kludge a PS name for OTF/CFF fonts.
145
146       */
147
148       String name = filename;
149       int idx = String (filename).index (".otf")
150         >? String (filename).index (".cff");
151
152       name = name.left_string (idx);
153
154       int slash_idx = name.index_last ('/');    // UGh. What's happens on windows?
155       if (slash_idx >=  0)
156         name = name.right_string (name.length() - slash_idx - 1);
157
158       String initial = name.cut_string (0, 1);
159       initial.to_upper ();
160       name = name.nomid_string (0, 1);
161       name.to_lower ();
162       ps_name = initial + name;
163     }
164   else if (ps_name_str0)
165     ps_name = ps_name_str0;
166
167   if (ps_name.length ())
168     {
169       ((Pango_font *) this)->register_font_file (filename, ps_name);
170       pango_fc_font_unlock_face (fcfont);
171
172       SCM expr = scm_list_4 (ly_symbol2scm ("glyph-string"),
173                              scm_makfrom0str (ps_name.to_str0 ()),
174                              scm_from_double (size),
175                              ly_quote_scm (glyph_exprs));
176
177       return Stencil (b, expr);
178     }
179   else
180     {
181       warning (_ ("FreeType face has no PostScript font name."));
182       return Stencil();
183     }
184 }
185
186 SCM
187 Pango_font::physical_font_tab () const
188 {
189   return physical_font_tab_;
190 }
191
192 Stencil
193 Pango_font::text_stencil (String str) const
194 {
195   GList *items = pango_itemize (context_,
196                                 str.to_str0 (),
197                                 0, str.length (), attribute_list_,
198                                 NULL);
199
200   GList *ptr = items;
201   Stencil dest;
202   Real x = 0.0;
203   while (ptr)
204     {
205       PangoItem *item = (PangoItem*) ptr->data;
206
207       Stencil item_stencil = pango_item_string_stencil (item, str, x);
208
209       x = item_stencil.extent (X_AXIS)[RIGHT];
210
211       dest.add_stencil (item_stencil);
212
213       ptr = ptr->next;
214     }
215
216   /*
217     UGH. Should have flags per output format signifying supported
218     options.
219    */
220   if (output_backend_global != "ps"
221       && output_backend_global != "eps")
222     {
223       /*
224         For Pango based backends, we take a shortcut.
225        */
226       char *descr_string = pango_font_description_to_string (pango_description_);
227       SCM exp
228         = scm_list_3 (ly_symbol2scm ("utf8-string"),
229                       scm_makfrom0str (descr_string),
230                       scm_makfrom0str (str.to_str0 ()));
231
232       g_free (descr_string);
233
234       Box b (Interval (0, 0), Interval (0, 0));
235       b.unite (dest.extent_box ());
236       return Stencil (b, exp);
237     }
238
239 #if 0
240   // check extents.
241   if (!dest.extent_box ()[X_AXIS].is_empty ())
242     {
243       Stencil frame = Lookup::frame (dest.extent_box (), 0.1, 0.1);
244       dest.add_stencil (frame);
245     }
246 #endif
247
248   return dest;
249 }
250
251
252 SCM
253 Pango_font::font_file_name () const
254 {
255   return SCM_BOOL_F;
256 }
257
258
259 #endif
260
261
262
263 #if 0
264 void test_pango ()
265 {
266   int dpi = 1200;
267
268   char * font_family = "Emmentaler";
269   PangoContext * pango_context =
270     pango_ft2_get_context (dpi, dpi);
271   PangoFontDescription *font_description;
272   font_description = pango_font_description_new ();
273   pango_font_description_set_family (font_description, g_strdup (font_family));
274   pango_font_description_set_style (font_description, (PangoStyle) 20);
275   pango_context_set_font_description (pango_context, font_description);
276
277
278   PangoAttrList *attr_list = pango_attr_list_new();
279   char *str = "sfz";
280   GList *items = pango_itemize (pango_context, str, 0, strlen (str),
281                                 attr_list, NULL);
282
283
284   GList *ptr = items;
285   while (ptr)
286     {
287       PangoItem *item = (PangoItem*)ptr->data;
288       printf( "off %d len %d num %d\n", item->offset, item->length, item->num_chars);
289
290       PangoAnalysis paobj = item->analysis;
291       PangoAnalysis * pa = &paobj;
292
293       PangoFontDescription *descr = pango_font_describe (pa->font);
294       //      assert (font_description == descr);
295       printf ("font descr string '%s' fname '%s'",
296               pango_font_description_to_string (descr),
297               pango_font_description_to_filename (descr)
298               );
299
300       printf ("type name %s\n", g_type_name (G_TYPE_FROM_INSTANCE (pa->font)));
301       PangoFcFont * fcfont = G_TYPE_CHECK_INSTANCE_CAST (pa->font,
302                                                          PANGO_TYPE_FC_FONT,
303                                                          PangoFcFont);
304
305       FcPattern *fcpat = fcfont->font_pattern;
306       FcPatternPrint (fcpat);
307       char *retval ="bla";
308
309       FcPatternGetString(fcpat, FC_FILE, 0, (FcChar8 **) &retval);
310       printf ("retval %s\n", retval);
311
312       FT_Face ftface = pango_fc_font_lock_face (fcfont);
313
314       printf ("shape %ux %s lang %ux font %ux languagae %ux\nft face %ux\n", pa->shape_engine,
315               G_OBJECT_TYPE_NAME (pa->shape_engine),
316               pa->lang_engine, pa->font, pa->language, ftface);
317
318       PangoGlyphString *pgs = pango_glyph_string_new ();
319       pango_shape (str, strlen (str), pa, pgs);
320
321       int i;
322       for (i = 0; i < pgs->num_glyphs; i++)
323         {
324           PangoGlyphInfo *pgi = pgs->glyphs + i;
325
326           PangoGlyph pg = pgi->glyph;
327           PangoGlyphGeometry ggeo = pgi->geometry;
328
329           printf ("c %d w %d x %d y %d\n", pg, ggeo.width, ggeo.x_offset,
330                   ggeo.y_offset );
331
332           char str[1024];
333           FT_Get_Glyph_Name (ftface, pg, str, 1024);
334           printf ("glyph %s\n", str);
335         }
336       printf ("\nPS name %s\n", FT_Get_Postscript_Name (ftface));
337
338       PangoRectangle r1;
339       PangoRectangle r2;
340
341       pango_glyph_string_extents (pgs, pa->font, &r1, &r2);
342
343       ptr = ptr->next;
344       printf ("\nnext item\n");
345     }
346 }
347 #endif