]> git.donarmstrong.com Git - lilypond.git/blob - lily/open-type-font.cc
* buildscripts/gen-bigcheese-scripts.py (i): load .subfonts table.
[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
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       SCM expr = scm_c_eval_string (contents.to_str0 ());
59       free (buffer);
60     }
61   return expr;
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 #if 0
79 Glyph_name_to_charcode_map
80 make_glyph_name_to_charcode_map (FT_Face face)
81 {
82   Glyph_name_to_charcode_map m;
83   FT_ULong charcode;
84   FT_UInt gindex;
85   char buffer[1024];
86
87   for (charcode = FT_Get_First_Char (face, &gindex); gindex != 0;
88        charcode = FT_Get_Next_Char (face, charcode, &gindex))
89     {
90       if (FT_Get_Glyph_Name (face, gindex, buffer, sizeof (buffer) - 1))
91         {
92           programming_error ("no glyph name");
93           continue;
94         }
95       m[String (buffer)] = charcode;
96     }
97   return m;
98 }
99 #endif
100
101 Open_type_font::~Open_type_font()
102 {
103   FT_Done_Face (face_);
104 }
105
106 SCM
107 Open_type_font::make_otf (String str)
108 {
109   FT_Face face;
110   int error_code = FT_New_Face(freetype2_library, str.to_str0 (), 0, &face);
111
112   if (error_code == FT_Err_Unknown_File_Format)
113     {
114       error (_f ("Unsupported font format: %s", str.to_str0 ()));
115     }
116   else if (error_code)
117     {
118       error (_f ("Unknown error: %d reading font file: %s", error_code,
119                  str.to_str0 ()));
120     }
121
122   Open_type_font *otf = new Open_type_font (face);
123
124   return otf->self_scm ();
125 }
126
127
128 Open_type_font::Open_type_font (FT_Face face)
129 {
130   face_ = face;
131   lily_character_table_ = SCM_EOL;
132   lily_global_table_ = SCM_EOL;
133
134   lily_character_table_ = alist_to_hashq (load_scheme_table ("LILC", face_));
135   lily_global_table_ = alist_to_hashq (load_scheme_table ("LILY", face_));
136   lily_subfonts_ = load_scheme_table ("LILF", face_);
137   index_to_charcode_map_ = make_index_to_charcode_map (face_);
138   
139   //glyph_name_to_charcode_map_ = make_glyph_name_to_charcode_map (face_);
140 }
141
142 void
143 Open_type_font::derived_mark () const
144 {
145   scm_gc_mark (lily_character_table_);
146   scm_gc_mark (lily_global_table_);
147   scm_gc_mark (lily_subfonts_);
148 }
149
150 Offset
151 Open_type_font::attachment_point (String glyph_name) const
152 {
153   SCM sym = ly_symbol2scm (glyph_name.to_str0 ());
154   SCM entry = scm_hashq_ref (lily_character_table_, sym, SCM_BOOL_F);
155
156   Offset o;
157   if (entry == SCM_BOOL_F)
158     return o;
159
160   SCM char_alist = entry;
161
162   
163   SCM att_scm = scm_cdr (scm_assq (ly_symbol2scm ("attachment"), char_alist));
164   
165   return point_constant * ly_scm2offset (att_scm);
166 }
167
168 Box
169 Open_type_font::get_indexed_char (int signed_idx) const
170 {
171   FT_UInt idx = signed_idx;
172   FT_Load_Glyph (face_,
173                  idx,
174                  FT_LOAD_NO_SCALE);
175
176   FT_Glyph_Metrics m = face_->glyph->metrics;
177   int hb = m.horiBearingX;
178   int vb = m.horiBearingY;
179   Box b (Interval (-hb, m.width - hb),
180          Interval (-vb, m.height - vb));
181
182   b.scale (design_size () * Real (point_constant) / face_->units_per_EM);
183   return b;
184 }
185
186 int
187 Open_type_font::name_to_index (String nm) const
188 {
189   char *nm_str = (char*) nm.to_str0 ();
190   if (int idx = FT_Get_Name_Index (face_, nm_str))
191     return idx;
192   return -1;
193 }
194
195 unsigned
196 Open_type_font::index_to_charcode (int i) const
197 {
198   return ((Open_type_font*) this)->index_to_charcode_map_[i];
199 }
200
201 #if 0
202 unsigned
203 Open_type_font::glyph_name_to_charcode (String glyph_name) const
204 {
205   return ((Open_type_font*) this)->glyph_name_to_charcode_map_[glyph_name];
206 }
207 #endif
208
209 Real
210 Open_type_font::design_size () const
211 {
212   SCM entry = scm_hashq_ref (lily_global_table_,
213                              ly_symbol2scm ("staffsize"), SCM_BOOL_F);
214   return scm_to_double (entry);
215 }
216
217
218 SCM
219 Open_type_font::sub_fonts () const
220 {
221   return lily_subfonts_;
222 }
223
224 LY_DEFINE (ly_font_magnification, "ly:font-sub-fonts", 1, 0, 0,
225           (SCM font),
226            "Given the font metric @var{font}, return the "
227            "magnification, relative to the current outputscale.")
228 {
229   Font_metric *fm = unsmob_metrics (font);
230   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
231   return scm_cdr (fm->description_);
232 }
233