lilypond-1.3.66
[lilypond.git] / lily / afm.cc
blob9f1f8045f5d4e7bb6567d38e59b89efa464d14b3
1 /*
2 afm.cc -- implement Adobe_font_metric
4 source file of the Flower Library
6 (c) 2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
9 #include "afm.hh"
10 #include "warn.hh"
12 Adobe_font_metric::Adobe_font_metric (AFM_Font_info * fi)
14 font_inf_ = fi;
16 for (int i= 256; i--;)
17 ascii_to_metric_idx_.push (-1);
19 for (int i=0; i < fi->numOfChars; i++)
21 AFM_CharMetricInfo * c = fi->cmi + i;
23 ascii_to_metric_idx_[c->code] = i;
24 name_to_metric_dict_[c->name] = i;
29 AFM_CharMetricInfo const *
30 Adobe_font_metric::find_ascii_metric (int a , bool warn) const
32 if (ascii_to_metric_idx_[a] >=0)
34 int code = ascii_to_metric_idx_[a];
35 if (code>=0)
37 return font_inf_->cmi + code;
40 else if (warn )
42 warning (_f ("can't find character number: %d", a));
45 return 0;
48 AFM_CharMetricInfo const *
49 Adobe_font_metric::find_char_metric (String nm, bool warn) const
51 map<String,int>::const_iterator ai = name_to_metric_dict_.find (nm);
53 if (ai == name_to_metric_dict_.end ())
55 if (warn)
57 warning (_f ("can't find character called: `%s'", nm.ch_C()));
59 return 0;
61 else
62 return font_inf_->cmi + (*ai).second;
66 Box
67 Adobe_font_metric::get_char (int code, bool warn) const
69 AFM_CharMetricInfo const
70 * c = find_ascii_metric (code,warn);
71 if (c)
72 return afm_bbox_to_box (c->charBBox);
73 else
74 return Box (Interval (0,0),Interval(0,0));
77 Adobe_font_metric*
78 read_afm_file (String nm)
80 FILE *f = fopen (nm.ch_C() , "r");
82 AFM_Font_info * fi;
83 int ok = AFM_parseFile (f, &fi, ~1);
85 if (ok)
87 error (_("Error parsing AFM file"));
88 exit (2);
90 fclose (f);
92 return new Adobe_font_metric (fi);
96 Box
97 afm_bbox_to_box (AFM_BBox bb)
99 return Box (Interval (bb.llx, bb.urx)* (1/1000.0),
100 Interval (bb.lly, bb.ury)* (1/1000.0));
105 Adobe_font_metric::~Adobe_font_metric ()
107 AFM_free (font_inf_);