]> git.donarmstrong.com Git - lilypond.git/blob - lily/all-font-metrics.cc
release: 1.3.93
[lilypond.git] / lily / all-font-metrics.cc
1 /*   
2   all-font-metrics.cc --  implement All_font_metrics
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "config.h"
11 #include "main.hh"
12 #include "all-font-metrics.hh"
13 #include "debug.hh"
14 #include "warn.hh"
15 #include "afm.hh"
16 #include "tfm.hh"
17 #include "lily-guile.hh"
18 #include "scm-hash.hh"
19 #include "kpath.hh"
20
21
22
23
24
25 const char * default_font_sz_ = "cmr10";
26
27 All_font_metrics::All_font_metrics (String path)
28 {
29   afm_p_dict_ = new Scheme_hash_table;
30   tfm_p_dict_ = new Scheme_hash_table;
31   scaled_p_dict_ = new Scheme_hash_table;
32   
33   search_path_.parse_path (path);
34 }
35
36 All_font_metrics::~All_font_metrics ()
37 {
38   scm_unprotect_object (afm_p_dict_->self_scm ());
39   scm_unprotect_object (tfm_p_dict_->self_scm ());
40   scm_unprotect_object (scaled_p_dict_->self_scm ());
41 }
42
43 Adobe_font_metric *
44 All_font_metrics::find_afm (String name)
45 {
46   SCM sname = ly_symbol2scm (name.ch_C ());
47
48   SCM val;
49   
50   if (!afm_p_dict_->try_retrieve  (sname, &val))
51     {
52       String path;
53
54       if (path.empty_b())
55         path = search_path_.find (name  + ".afm");
56
57       if (path.empty_b ())
58         {
59           char  * p = ly_find_afm (name.ch_C());
60           if (p)
61             path = p;
62         }
63
64       if (path.empty_b())
65         return 0;
66       
67       if (verbose_global_b)
68         progress_indication ("[" + path);
69       val = read_afm_file (path);
70
71       unsmob_metrics (val)->name_ = sname;
72
73       if (verbose_global_b)
74         progress_indication ("]");
75
76       afm_p_dict_->set (sname,val);
77
78       
79     }
80   
81   return dynamic_cast<Adobe_font_metric*> (unsmob_metrics (val));
82 }
83
84 Scaled_font_metric * 
85 All_font_metrics::find_scaled (String nm, int m)
86 {
87   String index =  nm + "@" + to_str (m);
88   SCM sname = ly_symbol2scm (index.ch_C ());
89
90   SCM val;
91
92   if (!scaled_p_dict_->try_retrieve  (sname, &val))
93     {
94       Font_metric *f = find_font (nm);
95       val =  Scaled_font_metric::make_scaled_font_metric (f, m);
96       scaled_p_dict_->set (sname, val);
97     }
98   
99
100   return dynamic_cast<Scaled_font_metric*> (unsmob_metrics (val));
101 }
102
103 Tex_font_metric *
104 All_font_metrics::find_tfm (String name)
105 {
106   SCM sname = ly_symbol2scm (name.ch_C ());
107
108   SCM val;
109   if (!tfm_p_dict_->try_retrieve (sname, &val))
110     {
111       String path;
112       
113       if (path.empty_b())
114         {
115           char * p = ly_find_tfm (name.ch_C());
116           if (p)
117             path = p;
118         }
119
120       if (path.empty_b())
121         path = search_path_.find (name  + ".tfm");
122       if (path.empty_b())
123         return 0;
124
125       if (verbose_global_b)
126         progress_indication ("[" + path);
127       val = Tex_font_metric::make_tfm (path);
128       if (verbose_global_b)
129         progress_indication ("]");
130
131       unsmob_metrics (val)->name_ = sname;
132       tfm_p_dict_->set (sname, val);
133     }
134     
135   return
136     dynamic_cast<Tex_font_metric*> (unsmob_metrics (val));
137 }
138
139
140 Font_metric *
141 All_font_metrics::find_font (String name)
142 {
143   Font_metric * f=0;
144
145   f= find_afm (name);
146   if (f)
147     return f;
148
149   f = find_tfm (name);
150   if (f)
151     return f;
152
153   warning (_f ("can't find font: `%s'", name.ch_C ()));
154   warning (_ ("Loading default font"));
155   
156   String def_name = default_font_sz_;
157   SCM l = scm_assoc (ly_str02scm ("default"),
158                      scm_eval2 (ly_symbol2scm ("cmr-alist"), SCM_EOL));
159   
160   if (l != SCM_BOOL_F)
161     def_name = ly_scm2string (gh_cdr (l));
162
163   f= find_afm (def_name);
164   if (f)
165     return f;
166
167   f =  find_tfm (def_name);
168   if (f)
169     return f;
170
171   error (_f ("can't find default font: `%s'", def_name.ch_C ()));
172   error (_f ("(search path: `%s')", search_path_.str ()));
173   error (_ ("Giving up"));
174
175   return 0;
176 }
177
178 SCM
179 All_font_metrics::font_descriptions () const
180 {
181   SCM l[] = {0,0,0};
182
183   l[0] = afm_p_dict_->to_alist ();
184   l[1] = tfm_p_dict_->to_alist ();
185   l[2] = scaled_p_dict_->to_alist ();  
186
187   SCM list = SCM_EOL;
188   for (int i=0; i < 3; i++)
189     {
190       for (SCM s = l[i];  gh_pair_p (s); s = gh_cdr (s))
191         {
192           Font_metric * fm = unsmob_metrics (gh_cdar (s));
193
194           list = gh_cons (fm->description (), list);
195         }
196     }
197   return list;
198 }
199
200
201
202 Font_metric*
203 find_font (String name)
204 {
205   return   all_fonts_global_p->find_font (name);
206 }