]> git.donarmstrong.com Git - lilypond.git/blob - lily/all-font-metrics.cc
release: 1.3.100
[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   
32   search_path_.parse_path (path);
33 }
34
35 All_font_metrics::~All_font_metrics ()
36 {
37   scm_unprotect_object (afm_p_dict_->self_scm ());
38   scm_unprotect_object (tfm_p_dict_->self_scm ());
39 }
40
41 Adobe_font_metric *
42 All_font_metrics::find_afm (String name)
43 {
44   SCM sname = ly_symbol2scm (name.ch_C ());
45
46   SCM name_str = gh_str02scm (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)->description_ = gh_cons (name_str, gh_double2scm (1.0));
72
73       if (verbose_global_b)
74         progress_indication ("]");
75
76       afm_p_dict_->set (sname,val);
77
78       scm_unprotect_object (val);      
79     }
80   
81   return dynamic_cast<Adobe_font_metric*> (unsmob_metrics (val));
82 }
83
84
85 Tex_font_metric *
86 All_font_metrics::find_tfm (String name)
87 {
88   SCM sname = ly_symbol2scm (name.ch_C ());
89   SCM name_str = gh_str02scm (name.ch_C ());
90
91   SCM val;
92   if (!tfm_p_dict_->try_retrieve (sname, &val))
93     {
94       String path;
95       
96       if (path.empty_b())
97         {
98           char * p = ly_find_tfm (name.ch_C());
99           if (p)
100             path = p;
101         }
102
103       if (path.empty_b())
104         path = search_path_.find (name  + ".tfm");
105       if (path.empty_b())
106         return 0;
107
108       if (verbose_global_b)
109         progress_indication ("[" + path);
110       val = Tex_font_metric::make_tfm (path);
111       if (verbose_global_b)
112         progress_indication ("]");
113
114       unsmob_metrics (val)->description_ = gh_cons (name_str, gh_double2scm (1.0));
115       tfm_p_dict_->set (sname, val);
116
117       scm_unprotect_object (val);
118     }
119     
120   return
121     dynamic_cast<Tex_font_metric*> (unsmob_metrics (val));
122 }
123
124
125 Font_metric *
126 All_font_metrics::find_font (String name)
127 {
128   Font_metric * f= find_afm (name);
129   if (f)
130     return f;
131
132   f = find_tfm (name);
133   if (f)
134     return f;
135
136   warning (_f ("can't find font: `%s'", name.ch_C ()));
137   warning (_ ("Loading default font"));
138   
139   String def_name = default_font_sz_;
140   SCM l = scm_assoc (ly_str02scm ("default"),
141                      scm_eval2 (ly_symbol2scm ("cmr-alist"), SCM_EOL));
142   
143   if (l != SCM_BOOL_F)
144     def_name = ly_scm2string (gh_cdr (l));
145
146   f= find_afm (def_name);
147   if (f)
148     return f;
149
150   f =  find_tfm (def_name);
151   if (f)
152     return f;
153
154   error (_f ("can't find default font: `%s'", def_name.ch_C ()));
155   error (_f ("(search path: `%s')", search_path_.str ()));
156   error (_ ("Giving up"));
157
158   return 0;
159 }
160
161