]> 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--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #define PANGO_ENABLE_BACKEND // ugh, why necessary?
10
11 #include <pango/pangoft2.h>
12
13 #include "main.hh"
14 #include "lookup.hh"
15 #include "dimensions.hh"
16 #include "pango-font.hh"
17 #include "warn.hh"
18
19 #if HAVE_PANGO_FT2
20 #include "stencil.hh"
21
22 Pango_font::Pango_font (PangoFT2FontMap *fontmap,
23                         Direction dir,
24                         PangoFontDescription *description,
25                         Real output_scale)
26 {
27   (void) fontmap;
28   physical_font_tab_ = scm_c_make_hash_table (11);
29   PangoDirection pango_dir = (dir == RIGHT)
30     ? PANGO_DIRECTION_LTR
31     : PANGO_DIRECTION_RTL;
32   context_
33     = pango_ft2_get_context (PANGO_RESOLUTION, PANGO_RESOLUTION);
34   //  context_ = pango_ft2_font_map_create_context (fontmap);
35
36   pango_description_ = pango_font_description_copy (description);
37   attribute_list_ = pango_attr_list_new ();
38
39   /*
40     urgh. I don't understand this. Why isn't this 1/(scale *
41     resolution * output_scale)
42
43     --hwn
44   */
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 *item, String str, Real dx) const
78 {
79   const int GLYPH_NAME_LEN = 256;
80   char glyph_name[GLYPH_NAME_LEN];
81   PangoAnalysis *pa = &(item->analysis);
82   PangoGlyphString *pgs = pango_glyph_string_new ();
83
84   pango_shape (str.to_str0 () + item->offset,
85                item->length, 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   for (int i = 0; i < pgs->num_glyphs; i++)
106     {
107       PangoGlyphInfo *pgi = pgs->glyphs + i;
108
109       PangoGlyph pg = pgi->glyph;
110       PangoGlyphGeometry ggeo = pgi->geometry;
111
112       FT_Get_Glyph_Name (ftface, pg, glyph_name, GLYPH_NAME_LEN);
113       *tail = scm_cons (scm_list_3 (scm_from_double (ggeo.x_offset * scale_ + dx),
114                                     scm_from_double (ggeo.y_offset * scale_),
115                                     scm_makfrom0str (glyph_name)),
116                         SCM_EOL);
117       dx = 0.0;
118       tail = SCM_CDRLOC (*tail);
119     }
120
121   PangoFontDescription *descr = pango_font_describe (pa->font);
122   Real size = pango_font_description_get_size (descr)
123     / (Real (PANGO_SCALE));
124
125   FcPattern *fcpat = fcfont->font_pattern;
126   char *filename = 0;
127   FcPatternGetString (fcpat, FC_FILE, 0, (FcChar8 **) & filename);
128   char const *ps_name_str0 = FT_Get_Postscript_Name (ftface);
129
130   if (!ps_name_str0)
131     warning (_f ("no PostScript font name for font `%s'", filename));
132
133   String ps_name;
134   if (!ps_name_str0
135       && filename
136       && (String (filename).index (".otf") >= 0
137           || String (filename).index (".cff") >= 0))
138     {
139
140       /*
141         UGH: kludge a PS name for OTF/CFF fonts.
142
143       */
144
145       String name = filename;
146       int idx = max (String (filename).index (".otf"),
147                      String (filename).index (".cff"));
148
149       name = name.left_string (idx);
150
151       int slash_idx = name.index_last ('/');    // UGh. What's happens on windows?
152       if (slash_idx >= 0)
153         name = name.right_string (name.length () - slash_idx - 1);
154
155       String initial = name.cut_string (0, 1);
156       initial.to_upper ();
157       name = name.nomid_string (0, 1);
158       name.to_lower ();
159       ps_name = initial + name;
160     }
161   else if (ps_name_str0)
162     ps_name = ps_name_str0;
163
164   if (ps_name.length ())
165     {
166       ((Pango_font *) this)->register_font_file (filename, ps_name);
167       pango_fc_font_unlock_face (fcfont);
168         
169       SCM expr = scm_list_4 (ly_symbol2scm ("glyph-string"),
170                              scm_makfrom0str (ps_name.to_str0 ()),
171                              scm_from_double (size),
172                              ly_quote_scm (glyph_exprs));
173
174       return Stencil (b, expr);
175     }
176   else
177     {
178       warning (_ ("FreeType face has no PostScript font name"));
179       return Stencil ();
180     }
181 }
182
183 SCM
184 Pango_font::physical_font_tab () const
185 {
186   return physical_font_tab_;
187 }
188
189 Stencil
190 Pango_font::text_stencil (String str) const
191 {
192   GList *items = pango_itemize (context_,
193                                 str.to_str0 (),
194                                 0, str.length (), attribute_list_,
195                                 NULL);
196
197   GList *ptr = items;
198   Stencil dest;
199   Real x = 0.0;
200   while (ptr)
201     {
202       PangoItem *item = (PangoItem *) ptr->data;
203
204       Stencil item_stencil = pango_item_string_stencil (item, str, x);
205
206       x = item_stencil.extent (X_AXIS)[RIGHT];
207
208       dest.add_stencil (item_stencil);
209
210       ptr = ptr->next;
211     }
212
213   /*
214     UGH. Should have flags per output format signifying supported
215     options.
216   */
217   if (output_backend_global != "ps"
218       && output_backend_global != "eps")
219     {
220       /*
221         For Pango based backends, we take a shortcut.
222       */
223       char *descr_string = pango_font_description_to_string (pango_description_);
224       SCM exp
225         = scm_list_3 (ly_symbol2scm ("utf8-string"),
226                       scm_makfrom0str (descr_string),
227                       scm_makfrom0str (str.to_str0 ()));
228
229       g_free (descr_string);
230
231       Box b (Interval (0, 0), Interval (0, 0));
232       b.unite (dest.extent_box ());
233       return Stencil (b, exp);
234     }
235
236 #if 0
237   // check extents.
238   if (!dest.extent_box ()[X_AXIS].is_empty ())
239     {
240       Stencil frame = Lookup::frame (dest.extent_box (), 0.1, 0.1);
241       Box empty;
242       empty.set_empty ();
243       Stencil dimless_frame (empty, frame.expr ());
244       dest.add_stencil (frame);
245     }
246 #endif
247
248   return dest;
249 }
250
251 SCM
252 Pango_font::font_file_name () const
253 {
254   return SCM_BOOL_F;
255 }
256
257 #endif