1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
/*
This file is part of LilyPond, the GNU music typesetter.
Copyright (C) 1999--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
LilyPond is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
LilyPond is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
*/
#include "all-font-metrics.hh"
#include "string-convert.hh"
#include "international.hh"
#include "main.hh"
#include "open-type-font.hh"
#include "pango-font.hh"
#include "scm-hash.hh"
#include "warn.hh"
Index_to_charcode_map const *
All_font_metrics::get_index_to_charcode_map (const string &filename,
int face_index,
FT_Face face)
{
string key = filename + String_convert::int_string (face_index);
if (filename_charcode_maps_map_.find (key)
== filename_charcode_maps_map_.end ())
filename_charcode_maps_map_[key] = make_index_to_charcode_map (face);
return &filename_charcode_maps_map_[key];
}
All_font_metrics::All_font_metrics (const string &path)
{
#if HAVE_PANGO_FT2
pango_dict_ = 0;
#endif
otf_dict_ = 0;
smobify_self ();
otf_dict_ = unsmob<Scheme_hash_table> (Scheme_hash_table::make_smob ());
#if HAVE_PANGO_FT2
pango_dict_ = unsmob<Scheme_hash_table> (Scheme_hash_table::make_smob ());
PangoFontMap *pfm = pango_ft2_font_map_new ();
pango_ft2_fontmap_ = PANGO_FT2_FONT_MAP (pfm);
pango_dpi_ = PANGO_RESOLUTION;
pango_ft2_font_map_set_resolution (pango_ft2_fontmap_,
pango_dpi_, pango_dpi_);
#endif
search_path_.parse_path (path);
}
All_font_metrics::~All_font_metrics ()
{
#if HAVE_PANGO_FT2
g_object_unref (pango_ft2_fontmap_);
#endif
}
SCM
All_font_metrics::mark_smob () const
{
#if HAVE_PANGO_FT2
if (pango_dict_)
scm_gc_mark (pango_dict_->self_scm ());
#endif
if (otf_dict_)
return otf_dict_->self_scm ();
return SCM_UNDEFINED;
}
#if HAVE_PANGO_FT2
Pango_font *
All_font_metrics::find_pango_font (PangoFontDescription const *description,
Real output_scale
)
{
gchar *pango_fn = pango_font_description_to_filename (description);
SCM key = ly_symbol2scm (pango_fn);
SCM val;
if (!pango_dict_->try_retrieve (key, &val))
{
debug_output ("[" + string (pango_fn), true); // start on a new line
Pango_font *pf = new Pango_font (pango_ft2_fontmap_,
description,
output_scale
);
val = pf->self_scm ();
pango_dict_->set (key, val);
pf->unprotect ();
debug_output ("]", false);
pf->description_ = scm_cons (SCM_BOOL_F,
scm_from_double (1.0));
}
g_free (pango_fn);
return unsmob<Pango_font> (val);
}
#endif
Open_type_font *
All_font_metrics::find_otf (const string &name)
{
SCM sname = ly_symbol2scm (name.c_str ());
SCM val;
if (!otf_dict_->try_retrieve (sname, &val))
{
string file_name;
if (file_name.empty ())
file_name = search_path_.find (name + ".otf");
if (file_name.empty ())
return 0;
debug_output ("[" + file_name, true); // start on a new line
val = Open_type_font::make_otf (file_name);
debug_output ("]", false);
unsmob<Font_metric> (val)->file_name_ = file_name;
SCM name_string = ly_string2scm (name);
unsmob<Font_metric> (val)->description_ = scm_cons (name_string,
scm_from_double (1.0));
otf_dict_->set (sname, val);
unsmob<Font_metric> (val)->unprotect ();
}
return unsmob<Open_type_font> (val);
}
Font_metric *
All_font_metrics::find_font (const string &name)
{
Font_metric *f = find_otf (name);
if (!f)
{
error (_f ("cannot find font: `%s'", name.c_str ()));
}
return f;
}
|