]> git.donarmstrong.com Git - lilypond.git/blob - lily/open-type-font.cc
(transform_heads): replace
[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 alist = scm_c_eval_string (contents.to_str0 ());
59       tab = alist_to_hashq (alist);
60       free (buffer);
61     }
62   return tab;
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 (FT_Face face)
102 {
103   face_ = face;
104   lily_character_table_ = SCM_EOL;
105   lily_global_table_ = SCM_EOL;
106
107   lily_character_table_ = load_scheme_table ("LILC", face_);
108   lily_global_table_ = load_scheme_table ("LILY", face_);
109   index_to_charcode_map_ = make_index_to_charcode_map (face_);
110   //glyph_name_to_charcode_map_ = make_glyph_name_to_charcode_map (face_);
111 }
112
113 Open_type_font::~Open_type_font()
114 {
115   FT_Done_Face (face_);
116 }
117
118 SCM
119 Open_type_font::make_otf (String str)
120 {
121   FT_Face face;
122   int error_code = FT_New_Face(freetype2_library, str.to_str0 (), 0, &face);
123
124   if (error_code == FT_Err_Unknown_File_Format)
125     {
126       error (_f ("Unsupported font format: %s", str.to_str0 ()));
127     }
128   else if (error_code)
129     {
130       error (_f ("Unknown error: %d reading font file: %s", error_code,
131                  str.to_str0 ()));
132     }
133
134   Open_type_font *otf = new Open_type_font (face);
135
136   return otf->self_scm ();
137 }
138
139 Open_type_font::Open_type_font(FT_Face face)
140 {
141   face_ = face;
142   lily_character_table_ = SCM_EOL;
143   lily_global_table_ = SCM_EOL;
144   
145   lily_character_table_ = load_scheme_table ("LILC", face_);
146   lily_global_table_ = load_scheme_table ("LILY", face_);
147   index_to_charcode_map_ = make_index_to_charcode_map (face_);  
148 }
149
150 void
151 Open_type_font::derived_mark () const
152 {
153   scm_gc_mark (lily_character_table_);
154   scm_gc_mark (lily_global_table_);
155 }
156
157 Offset
158 Open_type_font::attachment_point (String glyph_name) const
159 {
160   SCM sym = ly_symbol2scm (glyph_name.to_str0 ());
161   SCM entry = scm_hashq_ref (lily_character_table_, sym, SCM_BOOL_F);
162
163   Offset o;
164   if (entry == SCM_BOOL_F)
165     return o;
166
167   SCM char_alist = entry;
168
169   
170   SCM att_scm = scm_cdr (scm_assq (ly_symbol2scm ("attachment"), char_alist));
171   
172   return point_constant * ly_scm2offset (att_scm);
173 }
174
175 Box
176 Open_type_font::get_indexed_char (int signed_idx) const
177 {
178   FT_UInt idx = signed_idx;
179   FT_Load_Glyph (face_,
180                  idx,
181                  FT_LOAD_NO_SCALE);
182
183   FT_Glyph_Metrics m = face_->glyph->metrics;
184   int hb = m.horiBearingX;
185   int vb = m.horiBearingY;
186   Box b (Interval (-hb, m.width - hb),
187          Interval (-vb, m.height - vb));
188
189   b.scale (design_size () * Real (point_constant) / face_->units_per_EM);
190   return b;
191 }
192
193 int
194 Open_type_font::name_to_index (String nm) const
195 {
196   char *nm_str = (char*) nm.to_str0 ();
197   if (int idx = FT_Get_Name_Index (face_, nm_str))
198     return idx;
199   return -1;
200 }
201
202 unsigned
203 Open_type_font::index_to_charcode (int i) const
204 {
205   return ((Open_type_font*) this)->index_to_charcode_map_[i];
206 }
207
208 #if 0
209 unsigned
210 Open_type_font::glyph_name_to_charcode (String glyph_name) const
211 {
212   return ((Open_type_font*) this)->glyph_name_to_charcode_map_[glyph_name];
213 }
214 #endif
215
216 Real
217 Open_type_font::design_size () const
218 {
219   SCM entry = scm_hashq_ref (lily_global_table_,
220                              ly_symbol2scm ("staffsize"), SCM_BOOL_F);
221   return scm_to_double (entry);
222 }