]> git.donarmstrong.com Git - lilypond.git/blob - lily/open-type-font.cc
*** empty log message ***
[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 ("Not enough memory");
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   charcode = FT_Get_First_Char( face, &gindex );                   
73   while ( gindex != 0 )                                            
74     {
75       m[gindex] = charcode;
76       charcode = FT_Get_Next_Char( face, charcode, &gindex );        
77     }
78   return m;
79 }                                                                  
80
81 SCM
82 Open_type_font::make_otf (String str)
83 {
84   FT_Face face;
85   int error_code = FT_New_Face(freetype2_library, str.to_str0(),
86                                0, &face);
87   
88   if (error_code == FT_Err_Unknown_File_Format)
89     {
90       error("Unsupported font format");
91     }
92   else if (error_code)
93     {
94       error ("Unknown error reading font file.");
95     }
96
97
98   Open_type_font * otf = new Open_type_font (face);
99
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   
110   lily_character_table_ =  load_scheme_table ("LILC", face_);
111   lily_global_table_ =  load_scheme_table ("LILY", face_);
112   index_to_charcode_map_ = make_index_to_charcode_map (face_);  
113 }
114
115 void
116 Open_type_font::derived_mark () const
117 {
118   scm_gc_mark (lily_character_table_);
119   scm_gc_mark (lily_global_table_);
120 }
121
122 Offset
123 Open_type_font::attachment_point (String glyph_name) const
124 {
125   SCM sym = ly_symbol2scm (glyph_name.to_str0 ());
126   SCM entry = scm_hashq_ref (lily_character_table_, sym, SCM_BOOL_F);
127
128   Offset o;
129   if  (entry == SCM_BOOL_F)
130     return o;
131
132   SCM char_alist = entry;
133
134   SCM att_scm =scm_cdr (scm_assq (ly_symbol2scm ("attachment"), char_alist));
135   
136   return ly_scm2offset (att_scm);
137 }
138
139
140 Open_type_font::~Open_type_font()
141 {
142   FT_Done_Face (face_);
143 }
144
145
146 Box
147 Open_type_font::get_indexed_char (int signed_idx) const
148 {
149   FT_UInt idx = signed_idx;
150   FT_Load_Glyph (face_,
151                  idx,
152                  FT_LOAD_NO_SCALE);
153
154   FT_Glyph_Metrics m = face_->glyph->metrics;
155   int hb = m.horiBearingX;
156   int vb = m.horiBearingY;
157   Box b (Interval (-hb, m.width - hb),
158          Interval (-vb, m.height - vb));
159
160   
161
162   b.scale (design_size() * Real (point_constant) / face_->units_per_EM);
163   return b;
164 }
165
166 int
167 Open_type_font::name_to_index (String nm) const
168 {
169   char * nm_str = (char * )nm.to_str0 ();
170   int idx = FT_Get_Name_Index (face_, nm_str);
171
172   if (idx == 0)
173     return -1;
174   else
175     return idx;
176 }
177
178
179 Real
180 Open_type_font::design_size () const
181 {
182   return point_constant * scm_to_double (scm_hashq_ref (lily_global_table_, ly_symbol2scm ("staffsize"), SCM_BOOL_F));
183 }