]> git.donarmstrong.com Git - lilypond.git/blob - lily/open-type-font.cc
* scm/output-tex.scm (named-glyph): new function. This fixes TeX output.
[lilypond.git] / lily / open-type-font.cc
1 /*
2   open-type-font.cc --  implement Open_type_font
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2004 Han-Wen Nienhuys <hanwen@xs4all.nl>
7
8 */
9
10 #include <map>
11 #include <stdio.h>
12
13 #include <freetype/tttables.h>
14
15 #include "warn.hh"
16 #include "open-type-font.hh"
17 #include "dimensions.hh"
18 #include "modified-font-metric.hh"
19
20 const Real point_constant = 1 PT;
21
22 FT_Byte *
23 load_table (char const *tag_str, FT_Face face, FT_ULong *length)
24 {
25   FT_ULong tag = FT_MAKE_TAG(tag_str[0], tag_str[1], tag_str[2], tag_str[3]);
26
27   int error_code = FT_Load_Sfnt_Table (face, tag, 0, NULL, length);
28   if (!error_code)
29     {
30       FT_Byte *buffer = (FT_Byte*) malloc (*length);
31       if (buffer == NULL)
32         error (_f ("Cannot allocate %d bytes", *length));
33
34       error_code = FT_Load_Sfnt_Table (face, tag, 0, buffer, length );
35       if (error_code)
36         {
37           error (_f ("Could not load %s font table", tag_str));
38         }
39
40       return buffer;
41     }
42
43   return 0;
44 }
45
46 SCM
47 load_scheme_table (char const *tag_str, FT_Face face)
48 {
49   FT_ULong length = 0;
50   FT_Byte *buffer = load_table (tag_str, face, &length);
51
52   SCM tab = SCM_EOL;
53   if (buffer)
54     {
55       String contents ((Byte const*)buffer, length);
56       contents = "(quote (" +  contents + "))";
57
58       tab = scm_c_eval_string (contents.to_str0 ());
59       free (buffer);
60     }
61   return tab;
62 }
63
64
65 Index_to_charcode_map 
66 make_index_to_charcode_map (FT_Face face)
67 {
68   Index_to_charcode_map m;
69   FT_ULong charcode;
70   FT_UInt gindex;
71
72   for (charcode = FT_Get_First_Char (face, &gindex); gindex != 0;
73        charcode = FT_Get_Next_Char (face, charcode, &gindex))
74     m[gindex] = charcode;
75   return m;
76 }
77
78 Open_type_font::~Open_type_font()
79 {
80   FT_Done_Face (face_);
81 }
82
83 SCM
84 Open_type_font::make_otf (String str)
85 {
86   FT_Face face;
87   int error_code = FT_New_Face(freetype2_library, str.to_str0 (), 0, &face);
88
89   if (error_code == FT_Err_Unknown_File_Format)
90     {
91       error (_f ("Unsupported font format: %s", str.to_str0 ()));
92     }
93   else if (error_code)
94     {
95       error (_f ("Unknown error: %d reading font file: %s", error_code,
96                  str.to_str0 ()));
97     }
98
99   Open_type_font *otf = new Open_type_font (face);
100
101   return otf->self_scm ();
102 }
103
104 Open_type_font::Open_type_font (FT_Face face)
105 {
106   face_ = face;
107   lily_character_table_ = SCM_EOL;
108   lily_global_table_ = SCM_EOL;
109   lily_subfonts_ = SCM_EOL;
110   
111   lily_character_table_ = alist_to_hashq (load_scheme_table ("LILC", face_));
112   lily_global_table_ = alist_to_hashq (load_scheme_table ("LILY", face_));
113   lily_subfonts_ = load_scheme_table ("LILF", face_);
114   index_to_charcode_map_ = make_index_to_charcode_map (face_);
115 }
116
117 void
118 Open_type_font::derived_mark () const
119 {
120   scm_gc_mark (lily_character_table_);
121   scm_gc_mark (lily_global_table_);
122   scm_gc_mark (lily_subfonts_);
123 }
124
125 Offset
126 Open_type_font::attachment_point (String glyph_name) const
127 {
128   SCM sym = ly_symbol2scm (glyph_name.to_str0 ());
129   SCM entry = scm_hashq_ref (lily_character_table_, sym, SCM_BOOL_F);
130
131   Offset o;
132   if (entry == SCM_BOOL_F)
133     return o;
134
135   SCM char_alist = entry;
136   SCM att_scm = scm_cdr (scm_assq (ly_symbol2scm ("attachment"), char_alist));
137   
138   return point_constant * ly_scm2offset (att_scm);
139 }
140
141
142 Box
143 Open_type_font::get_indexed_char (int signed_idx) const
144 {
145   if (SCM_HASHTABLE_P (lily_character_table_))
146     {
147       const int len =256;
148       char name[len];
149       int code = FT_Get_Glyph_Name (face_, signed_idx, name, len);
150       if (code)
151         {
152           warning ("FT_Get_Glyph_Name() returned error");
153         }
154         
155       SCM sym = ly_symbol2scm (name);
156       SCM alist = scm_hashq_ref (lily_character_table_, sym, SCM_BOOL_F);
157       
158       if (alist != SCM_BOOL_F)
159         {
160           SCM bbox = scm_cdr (scm_assq (ly_symbol2scm ("bbox"), alist));
161       
162           Box b;
163           b[X_AXIS][LEFT] = scm_to_double (scm_car (bbox));
164           bbox = scm_cdr (bbox);
165           b[Y_AXIS][LEFT] = scm_to_double (scm_car (bbox));
166           bbox = scm_cdr (bbox);
167           b[X_AXIS][RIGHT] = scm_to_double (scm_car (bbox));
168           bbox = scm_cdr (bbox);
169           b[Y_AXIS][RIGHT] = scm_to_double (scm_car (bbox));
170           bbox = scm_cdr (bbox);
171
172           b.scale (point_constant);
173           return b;
174         }
175     }
176   
177   FT_UInt idx = signed_idx;
178   FT_Load_Glyph (face_,
179                  idx,
180                  FT_LOAD_NO_SCALE);
181
182   FT_Glyph_Metrics m = face_->glyph->metrics;
183   int hb = m.horiBearingX;
184   int vb = m.horiBearingY;
185   Box b (Interval (-hb, m.width - hb),
186          Interval (-vb, m.height - vb));
187
188   b.scale (design_size () * Real (point_constant) / face_->units_per_EM);
189   return b;
190 }
191
192 int
193 Open_type_font::name_to_index (String nm) const
194 {
195   char *nm_str = (char*) nm.to_str0 ();
196   if (int idx = FT_Get_Name_Index (face_, nm_str))
197     return idx;
198   return -1;
199 }
200
201 unsigned
202 Open_type_font::index_to_charcode (int i) const
203 {
204   return ((Open_type_font*) this)->index_to_charcode_map_[i];
205 }
206
207 #if 0
208 unsigned
209 Open_type_font::glyph_name_to_index (String glyph_name) const
210 {
211   return ((Open_type_font*) this)->glyph_name_to_charcode_map_[glyph_name];
212 }
213 #endif
214
215 Real
216 Open_type_font::design_size () const
217 {
218   SCM entry = scm_hashq_ref (lily_global_table_,
219                              ly_symbol2scm ("staffsize"),
220                              scm_from_int (12));
221   return scm_to_double (entry);
222 }
223
224
225 SCM
226 Open_type_font::sub_fonts () const
227 {
228   return lily_subfonts_;
229 }
230
231 LY_DEFINE (ly_font_sub_fonts, "ly:font-sub-fonts", 1, 0, 0,
232           (SCM font),
233            "Given the font metric @var{font} of an OpenType font, return the "
234            "names of the subfonts within @var{font}.")
235 {
236   Font_metric *fm = unsmob_metrics (font);
237   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
238   return fm->sub_fonts ();
239 }
240
241 LY_DEFINE (ly_otf_font_glyph_info, "ly:otf-font-glyph-info", 2, 0, 0,
242           (SCM font, SCM glyph),
243            "Given the font metric @var{font} of an OpenType font, return the "
244            "information about named glyph @var{glyph} (a string)")
245 {
246   Modified_font_metric * fm
247     = dynamic_cast<Modified_font_metric*> (unsmob_metrics (font));
248   Open_type_font * otf = dynamic_cast<Open_type_font*> (fm->original_font ());
249   SCM_ASSERT_TYPE (otf, font, SCM_ARG1, __FUNCTION__, "OTF font-metric");
250   SCM_ASSERT_TYPE (scm_is_string (glyph), glyph, SCM_ARG1,
251                    __FUNCTION__, "string");
252
253   SCM sym = scm_string_to_symbol (glyph);
254   return scm_hashq_ref (otf->get_char_table (), sym, SCM_EOL);
255 }
256
257 SCM
258 Open_type_font::get_char_table () const
259 {
260   return lily_character_table_;
261 }
262
263 SCM
264 Open_type_font::get_subfonts () const
265 {
266   return lily_subfonts_;
267 }
268
269 SCM
270 Open_type_font::get_global_table () const
271 {
272   return lily_global_table_;
273 }