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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
if not modules then modules = { } end modules ["extralibs"] = {
version = "2.4",
comment = "companion to luaotfload.lua",
author = "Philipp Gesang, based on code by Hans Hagen",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "GPL v.2.0",
}
--===================================================================--
--- PREPARE
--===================================================================--
local getmetatable = getmetatable
local require = require
local setmetatable = setmetatable
local tonumber = tonumber
local new_node = node.new
local copy_node = node.copy
local otffeatures = fonts.constructors.newfeatures "otf"
-----------------------------------------------------------------------
--- namespace
-----------------------------------------------------------------------
--[[doc--
Since the letterspacing method was derived initially from Context’s
typo-krn.lua we keep the sub-namespace “typesetters” inside the
“luaotfload” table.
--doc]]--
luaotfload.typesetters = luaotfload.typesetters or { }
local typesetters = luaotfload.typesetters
typesetters.kernfont = typesetters.kernfont or { }
local kernfont = typesetters.kernfont
-----------------------------------------------------------------------
--- node-ini
-----------------------------------------------------------------------
nodes = nodes or { } --- should be present with luaotfload
local bothways = function (t) return table.swapped (t, t) end
local kerncodes = bothways({
[0] = "fontkern",
[1] = "userkern",
[2] = "accentkern",
})
kerncodes.kerning = kerncodes.fontkern --- idiosyncrasy
nodes.kerncodes = kerncodes
-----------------------------------------------------------------------
--- node-res
-----------------------------------------------------------------------
nodes.pool = nodes.pool or { }
local pool = nodes.pool
local kern = new_node ("kern", nodes.kerncodes.userkern)
local glue_spec = new_node "glue_spec"
pool.kern = function (k)
local n = copy_node (kern)
n.kern = k
return n
end
pool.glue = function (width, stretch, shrink,
stretch_order, shrink_order)
local n = new_node"glue"
if not width then
-- no spec
elseif width == false or tonumber(width) then
local s = copy_node(glue_spec)
if width then s.width = width end
if stretch then s.stretch = stretch end
if shrink then s.shrink = shrink end
if stretch_order then s.stretch_order = stretch_order end
if shrink_order then s.shrink_order = shrink_order end
n.spec = s
else
-- shared
n.spec = copy_node(width)
end
return n
end
-----------------------------------------------------------------------
--- font-hsh
-----------------------------------------------------------------------
--- some initialization resembling font-hsh
local fonthashes = fonts.hashes
local identifiers = fonthashes.identifiers --- was: fontdata
local chardata = fonthashes.characters
local quaddata = fonthashes.quads
local parameters = fonthashes.parameters
--- ('a, 'a) hash -> (('a, 'a) hash -> 'a -> 'a) -> ('a, 'a) hash
local setmetatableindex = function (t, f)
local mt = getmetatable(t)
if mt then
mt.__index = f
else
setmetatable(t, { __index = f })
end
return t
end
if not parameters then
parameters = { }
setmetatableindex(parameters, function(t, k)
if k == true then
return parameters[currentfont()]
else
local parameters = identifiers[k].parameters
t[k] = parameters
return parameters
end
end)
fonthashes.parameters = parameters
end
if not chardata then
chardata = { }
setmetatableindex(chardata, function(t, k)
if k == true then
return chardata[currentfont()]
else
local tfmdata = identifiers[k]
if not tfmdata then --- unsafe
tfmdata = font.fonts[k]
end
if tfmdata then
local characters = tfmdata.characters
t[k] = characters
return characters
end
end
end)
fonthashes.characters = chardata
end
if not quaddata then
quaddata = { }
setmetatableindex(quaddata, function(t, k)
if k == true then
return quads[currentfont()]
else
local parameters = parameters[k]
local quad = parameters and parameters.quad or 0
t[k] = quad
return quad
end
end)
fonthashes.quads = quaddata
end
--===================================================================--
--- LOAD
--===================================================================--
--- we should be ready at this moment to insert the libraries
require "luaotfload-letterspace" --- typesetters.kernfont
--===================================================================--
--- CLEAN
--===================================================================--
--- kernfont_callback : fontwise
--- · callback: kernfont.handler
--- · enabler: enablefontkerning
--- · disabler: disablefontkerning
--- callback wrappers
--- (node_t -> node_t) -> string -> string list -> bool
local registered_as = { } --- procname -> callbacks
local add_processor = function (processor, name, ...)
local callbacks = { ... }
for i=1, #callbacks do
luatexbase.add_to_callback(callbacks[i], processor, name)
end
registered_as[name] = callbacks --- for removal
return true
end
--- string -> bool
local remove_processor = function (name)
local callbacks = registered_as[name]
if callbacks then
for i=1, #callbacks do
luatexbase.remove_from_callback(callbacks[i], name)
end
return true
end
return false --> unregistered
end
--- now for the simplistic variant
--- unit -> bool
local enablefontkerning = function ( )
return add_processor( kernfont.handler
, "typesetters.kernfont"
, "pre_linebreak_filter"
, "hpack_filter")
end
--- unit -> bool
local disablefontkerning = function ( )
return remove_processor "typesetters.kernfont"
end
--- fontwise kerning uses a font property for passing along the
--- letterspacing factor
local fontkerning_enabled = false --- callback state
--- fontobj -> float -> unit
local initializefontkerning = function (tfmdata, factor)
if factor ~= "max" then
factor = tonumber(factor) or 0
end
if factor == "max" or factor ~= 0 then
local fontproperties = tfmdata.properties
if fontproperties then
--- hopefully this field stays unused otherwise
fontproperties.kerncharacters = factor
end
if not fontkerning_enabled then
fontkerning_enabled = enablefontkerning()
end
end
end
--- like the font colorization, fontwise kerning is hooked into the
--- feature mechanism
otffeatures.register {
name = "kernfactor",
description = "kernfactor",
initializers = {
base = initializefontkerning,
node = initializefontkerning,
}
}
--[[doc--
The “letterspace” feature is essentially identical with the above
“kernfactor” method, but scales the factor to percentages to match
Xetex’s behavior. (See the Xetex reference, page 5, section 1.2.2.)
Since Xetex doesn’t appear to have a (documented) “max” keyword, we
assume all input values are numeric.
--doc]]--
local initializecompatfontkerning = function (tfmdata, percentage)
local factor = tonumber (percentage)
if not factor then
logs.names_report ("both", 0, "letterspace",
"Invalid argument to letterspace: %s (type %q), " ..
"was expecting percentage as Lua number instead.",
percentage, type (percentage))
return
end
return initializefontkerning (tfmdata, factor * 0.01)
end
otffeatures.register {
name = "letterspace",
description = "letterspace",
initializers = {
base = initializecompatfontkerning,
node = initializecompatfontkerning,
}
}
-----------------------------------------------------------------------
--- erase fake Context layer
-----------------------------------------------------------------------
attributes = nil
--commands = nil --- used in lualibs
storage = nil --- not to confuse with utilities.storage
nodes.tasks = nil
collectgarbage"collect"
--[[example--
See https://bitbucket.org/phg/lua-la-tex-tests/src/tip/pln-letterspace-8-compare.tex
for an example.
--example]]--
-- vim:ts=2:sw=2:expandtab
|