]> git.donarmstrong.com Git - lilypond.git/blob - lily/pango-font.cc
* lily/font-config.cc (init_fontconfig): add
[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 = FT_Get_Postscript_Name (ftface);
132
133   if (ps_name)
134     {
135       ((Pango_font *) this)->register_font_file (filename, ps_name);
136       pango_fc_font_unlock_face (fcfont);
137       
138       SCM expr = scm_list_4 (ly_symbol2scm ("glyph-string"),
139                              scm_makfrom0str (ps_name),
140                              scm_from_double (size),
141                              ly_quote_scm (glyph_exprs));
142
143       return Stencil (b, expr);
144     }
145   else
146     {
147       warning (_ ("FreeType face has no PostScript font name."));      
148       return Stencil();
149     }
150 }
151
152 SCM
153 Pango_font::physical_font_tab () const
154 {
155   return physical_font_tab_;
156 }
157
158 Stencil
159 Pango_font::text_stencil (String str) const
160 {
161   GList *items = pango_itemize (context_,
162                                 str.to_str0 (),
163                                 0, str.length (), attribute_list_,
164                                 NULL);
165   
166   GList *ptr = items;
167   Stencil dest;
168   Real x = 0.0;
169   while (ptr)
170     {
171       PangoItem *item = (PangoItem*) ptr->data;
172
173       Stencil item_stencil = pango_item_string_stencil (item, str, x);
174
175       x = item_stencil.extent (X_AXIS)[RIGHT];
176       
177       dest.add_stencil (item_stencil);
178       
179       ptr = ptr->next;      
180     }
181
182   /*
183     UGH. Should have flags per output format signifying supported
184     options.
185    */
186   if (output_backend_global != "ps"
187       && output_backend_global != "eps")
188     {
189       /*
190         For Pango based backends, we take a shortcut.
191        */
192       SCM exp
193         = scm_list_3 (ly_symbol2scm ("utf8-string"),
194                       scm_makfrom0str (pango_font_description_to_string (pango_description_)),
195                       scm_makfrom0str (str.to_str0 ()));
196
197
198       Box b (Interval (0, 0), Interval (0, 0));
199       b.unite (dest.extent_box ());
200       return Stencil (b, exp);
201     }
202   
203 #if 0
204   // check extents.
205   if (!dest.extent_box ()[X_AXIS].is_empty ())
206     {
207       Stencil frame = Lookup::frame (dest.extent_box(), 0.1, 0.1);
208       dest.add_stencil (frame);
209     }
210 #endif
211
212   return dest;
213 }
214
215
216 SCM 
217 Pango_font::font_file_name () const
218 {
219   return SCM_BOOL_F;
220 }
221
222
223 #endif
224
225
226
227
228 void test_pango()
229 {
230   int dpi = 1200;
231   
232   char * font_family = "Emmentaler";
233   PangoContext * pango_context =
234     pango_ft2_get_context (dpi, dpi);
235   PangoFontDescription *font_description;
236   font_description = pango_font_description_new ();
237   pango_font_description_set_family (font_description, g_strdup (font_family));
238   pango_font_description_set_style (font_description, (PangoStyle) 20);
239   pango_context_set_font_description (pango_context, font_description);
240
241
242   PangoAttrList *attr_list = pango_attr_list_new();
243   char *str = "sfz";
244   GList * items = pango_itemize (pango_context, str, 0, strlen(str),
245                                  attr_list, NULL);
246   
247   
248   GList * ptr = items;
249   while (ptr)
250     {
251       PangoItem *item = (PangoItem*)ptr->data;
252       printf( "off %d len %d num %d\n", item->offset, item->length, item->num_chars);
253       
254       PangoAnalysis paobj = item->analysis;
255       PangoAnalysis * pa = &paobj;
256
257       PangoFontDescription *descr = pango_font_describe (pa->font);
258       //      assert (font_description == descr);
259       printf ("font descr string '%s' fname '%s'",
260               pango_font_description_to_string (descr),
261               pango_font_description_to_filename (descr)
262               );
263       
264       printf ("type name %s\n", g_type_name (G_TYPE_FROM_INSTANCE(pa->font)));
265       PangoFcFont * fcfont = G_TYPE_CHECK_INSTANCE_CAST(pa->font,
266                                                         PANGO_TYPE_FC_FONT,
267                                                         PangoFcFont);
268
269       FcPattern *fcpat = fcfont->font_pattern;
270       FcPatternPrint (fcpat);
271       char *retval ="bla";
272       
273       FcPatternGetString(fcpat, FC_FILE, 0, (FcChar8 **) &retval);
274       printf ("retval %s\n", retval);
275
276       FT_Face ftface = pango_fc_font_lock_face (fcfont);
277
278       printf ("shape %ux %s lang %ux font %ux languagae %ux\nft face %ux\n", pa->shape_engine,
279               G_OBJECT_TYPE_NAME(pa->shape_engine),
280               pa->lang_engine, pa->font, pa->language, ftface);
281
282       PangoGlyphString *pgs = pango_glyph_string_new();
283       pango_shape (str, strlen(str), pa, pgs); 
284
285       int i;
286       for (i = 0; i < pgs->num_glyphs; i++)
287         {
288           PangoGlyphInfo *pgi = pgs->glyphs + i;
289           
290           PangoGlyph pg = pgi->glyph;
291           PangoGlyphGeometry ggeo = pgi->geometry;
292           
293           printf ("c %d w %d x %d y %d\n", pg, ggeo.width, ggeo.x_offset,
294                   ggeo.y_offset );
295
296           char str[1024];
297           FT_Get_Glyph_Name (ftface, pg, str, 1024);
298           printf ("glyph %s\n", str);
299         }
300       printf ("\nPS name %s\n", FT_Get_Postscript_Name (ftface));
301
302       PangoRectangle r1;
303       PangoRectangle r2;
304       
305       pango_glyph_string_extents (pgs, pa->font, &r1, &r2);
306       
307       ptr = ptr->next;
308       printf ("\nnext item\n");
309     }
310
311 }