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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
#!/usr/bin/env texlua
-----------------------------------------------------------------------
-- FILE: luaotfload-auxiliary.lua
-- DESCRIPTION: part of luaotfload
-- REQUIREMENTS: luaotfload 2.2
-- AUTHOR: Philipp Gesang (Phg), <phg42.2a@gmail.com>
-- VERSION: 1.0
-- CREATED: 2013-05-01 14:40:50+0200
-----------------------------------------------------------------------
--
--- this file addresses issue #24
--- https://github.com/lualatex/luaotfload/issues/24#
luaotfload = luaotfload or {}
luaotfload.aux = luaotfload.aux or { }
config = config or { }
config.luaotfload = config.luaotfload or { }
local aux = luaotfload.aux
local log = luaotfload.log
local identifiers = fonts.hashes.identifiers
local utf8 = unicode.utf8
local stringlower = string.lower
local stringformat = string.format
local stringgsub = string.gsub
-----------------------------------------------------------------------
--- font patches
-----------------------------------------------------------------------
--[[doc--
This sets two dimensions apparently relied upon by the unicode-math
package.
--doc]]--
local set_sscale_dimens = function (fontdata)
local mathconstants = fontdata.MathConstants
local parameters = fontdata.parameters
if mathconstants then
parameters[10] = mathconstants.ScriptPercentScaleDown or 70
parameters[11] = mathconstants.ScriptScriptPercentScaleDown or 50
end
return fontdata
end
luatexbase.add_to_callback(
"luaotfload.patch_font",
set_sscale_dimens,
"luaotfload.aux.set_sscale_dimens")
--- fontobj -> int
local lookup_units = function (fontdata)
local metadata = fontdata.shared and fontdata.shared.rawdata.metadata
if metadata and metadata.units_per_em then
return metadata.units_per_em
elseif fontdata.parameters and fontdata.parameters.units then
return fontdata.parameters.units
elseif fontdata.units then --- v1.x
return fontdata.units
end
return 1000
end
--[[doc--
This callback corrects some values of the Cambria font.
--doc]]--
local patch_cambria_domh = function (fontdata)
local mathconstants = fontdata.MathConstants
if mathconstants and fontdata.psname == "CambriaMath" then
--- my test Cambria has 2048
local units_per_em = fontdata.units_per_em or lookup_units(fontdata)
local sz = fontdata.parameters.size or fontdata.size
local mh = 2800 / units_per_em * sz
if mathconstants.DisplayOperatorMinHeight < mh then
mathconstants.DisplayOperatorMinHeight = mh
end
end
end
luatexbase.add_to_callback(
"luaotfload.patch_font",
patch_cambria_domh,
"luaotfload.aux.patch_cambria_domh")
-----------------------------------------------------------------------
--- glyphs
-----------------------------------------------------------------------
--- int -> int -> bool
local font_has_glyph = function (font_id, codepoint)
local fontdata = fonts.hashes.identifiers[font_id]
if fontdata then
if fontdata.characters[codepoint] ~= nil then return true end
end
return false
end
aux.font_has_glyph = font_has_glyph
--- int -> bool
local current_font_has_glyph = function (codepoint)
return font_has_glyph (font.current(), codepoint)
end
aux.current_font_has_glyph = current_font_has_glyph
local do_if_glyph_else = function (chr, positive, negative)
local codepoint = tonumber(chr)
if not codepoint then codepoint = utf8.byte(chr) end
if current_font_has_glyph(codepoint) then
tex.sprint(positive)
else
tex.sprint(negative)
end
end
aux.do_if_glyph_else = do_if_glyph_else
-----------------------------------------------------------------------
--- features / scripts / languages
-----------------------------------------------------------------------
--- lots of arrowcode ahead
--[[doc--
This function, modeled after “check_script()” from fontspec, returns
true if in the given font, the script “asked_script” is accounted for in at
least one feature.
--doc]]--
--- int -> string -> bool
local provides_script = function (font_id, asked_script)
asked_script = stringlower(asked_script)
if font_id and font_id > 0 then
local fontdata = identifiers[font_id].shared.rawdata
if fontdata then
local fontname = fontdata.metadata.fontname
local features = fontdata.resources.features
for method, featuredata in next, features do
--- where method: "gpos" | "gsub"
for feature, data in next, featuredata do
if data[asked_script] then
log(stringformat(
"font no %d (%s) defines feature %s for script %s",
font_id, fontname, feature, asked_script))
return true
end
end
end
log(stringformat(
"font no %d (%s) defines no feature for script %s",
font_id, fontname, asked_script))
end
end
log(stringformat("no font with id %d", font_id))
return false
end
aux.provides_script = provides_script
--[[doc--
This function, modeled after “check_language()” from fontspec, returns
true if in the given font, the language with tage “asked_language” is
accounted for in the script with tag “asked_script” in at least one
feature.
--doc]]--
--- int -> string -> string -> bool
local provides_language = function (font_id, asked_script, asked_language)
asked_script = stringlower(asked_script)
asked_language = stringlower(asked_language)
if font_id and font_id > 0 then
local fontdata = identifiers[font_id].shared.rawdata
if fontdata then
local fontname = fontdata.metadata.fontname
local features = fontdata.resources.features
for method, featuredata in next, features do
--- where method: "gpos" | "gsub"
for feature, data in next, featuredata do
local scriptdata = data[asked_script]
if scriptdata and scriptdata[asked_language] then
log(stringformat("font no %d (%s) defines feature %s "
.. "for script %s with language %s",
font_id, fontname, feature,
asked_script, asked_language))
return true
end
end
end
log(stringformat(
"font no %d (%s) defines no feature for script %s with language %s",
font_id, fontname, asked_script, asked_language))
end
end
log(stringformat("no font with id %d", font_id))
return false
end
aux.provides_language = provides_language
--[[doc--
We strip the syntax elements from feature definitions (shouldn’t
actually be there in the first place, but who cares ...)
--doc]]--
local lpeg = require"lpeg"
local C, P, S = lpeg.C, lpeg.P, lpeg.S
local lpegmatch = lpeg.match
local sign = S"+-"
local rhs = P"=" * P(1)^0 * P(-1)
local strip_garbage = sign^-1 * C((1 - rhs)^1)
--s = "+foo" --> foo
--ss = "-bar" --> bar
--sss = "baz" --> baz
--t = "foo=bar" --> foo
--tt = "+bar=baz" --> bar
--ttt = "-baz=true" --> baz
--
--print(lpeg.match(strip_garbage, s))
--print(lpeg.match(strip_garbage, ss))
--print(lpeg.match(strip_garbage, sss))
--print(lpeg.match(strip_garbage, t))
--print(lpeg.match(strip_garbage, tt))
--print(lpeg.match(strip_garbage, ttt))
--[[doc--
This function, modeled after “check_feature()” from fontspec, returns
true if in the given font, the language with tag “asked_language” is
accounted for in the script with tag “asked_script” in feature
“asked_feature”.
--doc]]--
--- int -> string -> string -> string -> bool
local provides_feature = function(font_id, asked_script,
asked_language, asked_feature)
asked_script = stringlower(asked_script)
asked_language = stringlower(asked_language)
asked_feature = lpegmatch(strip_garbage, asked_feature)
if font_id and font_id > 0 then
local fontdata = identifiers[font_id].shared.rawdata
if fontdata then
local features = fontdata.resources.features
local fontname = fontdata.metadata.fontname
for method, featuredata in next, features do
--- where method: "gpos" | "gsub"
local feature = featuredata[asked_feature]
if feature then
local scriptdata = feature[asked_script]
if scriptdata and scriptdata[asked_language] then
log(stringformat("font no %d (%s) defines feature %s "
.. "for script %s with language %s",
font_id, fontname, asked_feature,
asked_script, asked_language))
return true
end
end
end
log(stringformat(
"font no %d (%s) does not define feature %s for script %s with language %s",
font_id, fontname, asked_feature, asked_script, asked_language))
end
end
log(stringformat("no font with id %d", font_id))
return false
end
aux.provides_feature = provides_feature
-- vim:tw=71:sw=2:ts=2:expandtab
|