]> git.donarmstrong.com Git - lilypond.git/blob - lily/all-font-metrics.cc
patch::: 1.3.33.jcn3
[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 "main.hh"
11 #include "all-font-metrics.hh"
12 #include "debug.hh"
13 #include "warn.hh"
14 #include "afm.hh"
15 #include "tfm.hh"
16 #include "lily-guile.hh"
17 #include "tfm-reader.hh"
18
19 const char * default_font_sz_ = "cmr10";
20
21 All_font_metrics::All_font_metrics (String path)
22 {
23   search_path_.parse_path (path);
24 }
25
26 Adobe_font_metric *
27 All_font_metrics::find_afm (String name)
28 {
29   SCM sname = ly_symbol2scm (name.ch_C ());
30   if (!afm_p_dict_.elem_b (sname))
31     {
32       String path = name  + ".afm";
33       path = search_path_.find (path);
34       if (path.empty_b ())
35         return 0;
36       progress_indication ("[" + path);
37       Adobe_font_metric * afm_p = read_afm_file (path);
38
39       afm_p->name_ = ly_symbol2scm (name.ch_C ());
40       progress_indication ("]");
41
42       afm_p_dict_.set (sname,afm_p->self_scm_);
43     }
44   
45   return dynamic_cast<Adobe_font_metric*> (unsmob_metrics (afm_p_dict_.get (sname)));
46 }
47
48 Scaled_font_metric * 
49 All_font_metrics::find_scaled (String nm, int m)
50 {
51   Scaled_font_metric * s=0;
52   String index =  nm + "@" + to_str (m);
53   SCM sname = ly_symbol2scm (index.ch_C ());
54
55   Font_metric *fm =0;
56   if (!scaled_p_dict_.elem_b (sname))
57     {
58       Font_metric *f = find_font (nm);
59       s = new Scaled_font_metric (f, m);
60       scaled_p_dict_.set (sname, s->self_scm_);
61       fm =  s;
62     }
63   else
64     fm = unsmob_metrics (scaled_p_dict_.get (sname));
65
66   return dynamic_cast<Scaled_font_metric*> (fm);
67 }
68
69 Tex_font_metric *
70 All_font_metrics::find_tfm (String name)
71 {
72   SCM sname = ly_symbol2scm (name.ch_C ());  
73   if (!tfm_p_dict_.elem_b (sname))
74     {
75       String path = name  + ".tfm";
76       path = search_path_.find (path);
77       if (path.empty_b ())
78         return 0;
79       progress_indication ("[" + path);
80       Tex_font_metric   * tfm_p = Tex_font_metric_reader::read_file (path);
81       tfm_p->name_ = ly_symbol2scm (name.ch_C( ));
82       progress_indication ("]");
83
84       tfm_p_dict_.set (sname, tfm_p->self_scm_);
85     }
86     
87   return
88     dynamic_cast<Tex_font_metric*> (unsmob_metrics (tfm_p_dict_.get(sname)));
89 }
90
91
92 Font_metric *
93 All_font_metrics::find_font (String name)
94 {
95   Font_metric * f=0;
96   f = find_tfm (name);
97   if (f)
98     return f;
99
100   f= find_afm (name);
101   if (f)
102     return f;
103
104   warning (_f ("Can't find font: `%s'", name.ch_C ()));
105   warning (_ ("Loading default font"));
106   
107   String def_name = default_font_sz_;
108   SCM l = ly_eval_str ("(style-to-cmr \"default\")");
109   if (l != SCM_BOOL_F)
110     def_name = ly_scm2string (gh_cdr (l));
111
112   f =  find_tfm (def_name);
113   if (f)
114     return f;
115
116   f= find_afm (def_name);
117   if (f)
118     return f;
119
120   error (_f ("Can't find default font: `%s'", def_name.ch_C ()));
121   error (_f ("(search path: `%s'", search_path_.str ()));
122   error (_ ("Giving up"));
123
124   return 0;
125 }
126
127 SCM
128 All_font_metrics::font_descriptions () const
129 {
130   SCM l[] = {0,0,0};
131
132   l[0] = afm_p_dict_.to_alist ();
133   l[1] = tfm_p_dict_.to_alist ();
134   l[2] = scaled_p_dict_.to_alist ();  
135
136   SCM list = SCM_EOL;
137   for (int i=0; i < 3; i++)
138     {
139       for (SCM s = l[i];  gh_pair_p (s); s = gh_cdr (s))
140         {
141           Font_metric * fm = unsmob_metrics (gh_cdar (s));
142
143           list = gh_cons (fm->description (), list);
144         }
145     }
146   return list;
147 }
148
149
150
151 Font_metric*
152 find_font (String name)
153 {
154   return   all_fonts_global_p->find_font (name);
155 }