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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
|
if not modules then modules = { } end modules ['font-imp-effects'] = {
version = 1.001,
comment = "companion to font-ini.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- todo: pickup from goodies: if type(effect) then ...
local next, type, tonumber = next, type, tonumber
local is_boolean = string.is_boolean
local fonts = fonts
local handlers = fonts.handlers
local registerotffeature = handlers.otf.features.register
local registerafmfeature = handlers.afm.features.register
local settings_to_hash = utilities.parsers.settings_to_hash_colon_too
local helpers = fonts.helpers
local prependcommands = helpers.prependcommands
local charcommand = helpers.commands.char
local leftcommand = helpers.commands.left
local rightcommand = helpers.commands.right
local upcommand = helpers.commands.up
local downcommand = helpers.commands.down
local dummycommand = helpers.commands.dummy
----- constructors = fonts.constructors
----- getmathparameter = constructors.getmathparameter
----- setmathparameter = constructors.setmathparameter
local report_effect = logs.reporter("fonts","effect")
local report_slant = logs.reporter("fonts","slant")
local report_extend = logs.reporter("fonts","extend")
local report_squeeze = logs.reporter("fonts","squeeze")
local trace = false
trackers.register("fonts.effect", function(v) trace = v end)
trackers.register("fonts.slant", function(v) trace = v end)
trackers.register("fonts.extend", function(v) trace = v end)
trackers.register("fonts.squeeze",function(v) trace = v end)
local function initializeslant(tfmdata,value)
value = tonumber(value)
if not value then
value = 0
elseif value > 1 then
value = 1
elseif value < -1 then
value = -1
end
if trace then
report_slant("applying %0.3f",value)
end
tfmdata.parameters.slantfactor = value
end
local specification = {
name = "slant",
description = "slant glyphs",
initializers = {
base = initializeslant,
node = initializeslant,
}
}
registerotffeature(specification)
registerafmfeature(specification)
local function initializeextend(tfmdata,value)
value = tonumber(value)
if not value then
value = 0
elseif value > 10 then
value = 10
elseif value < -10 then
value = -10
end
if trace then
report_extend("applying %0.3f",value)
end
tfmdata.parameters.extendfactor = value
end
local specification = {
name = "extend",
description = "scale glyphs horizontally",
initializers = {
base = initializeextend,
node = initializeextend,
}
}
registerotffeature(specification)
registerafmfeature(specification)
local function initializesqueeze(tfmdata,value)
value = tonumber(value)
if not value then
value = 0
elseif value > 10 then
value = 10
elseif value < -10 then
value = -10
end
if trace then
report_squeeze("applying %0.3f",value)
end
tfmdata.parameters.squeezefactor = value
end
local specification = {
name = "squeeze",
description = "scale glyphs vertically",
initializers = {
base = initializesqueeze,
node = initializesqueeze,
}
}
registerotffeature(specification)
registerafmfeature(specification)
local effects = {
inner = 0,
normal = 0,
outer = 1,
outline = 1,
both = 2,
hidden = 3,
}
local function initializeeffect(tfmdata,value)
local spec
if type(value) == "number" then
spec = { width = value }
else
spec = settings_to_hash(value)
end
local effect = spec.effect or "both"
local width = tonumber(spec.width) or 0
local mode = effects[effect]
if not mode then
report_effect("invalid effect %a",effect)
elseif width == 0 and mode == 0 then
report_effect("invalid width %a for effect %a",width,effect)
else
local parameters = tfmdata.parameters
local properties = tfmdata.properties
parameters.mode = mode
parameters.width = width * 1000
if is_boolean(spec.auto) == true then
local squeeze = 1 - width/20
local average = (1 - squeeze) * width * 100
spec.squeeze = squeeze
spec.extend = 1 + width/2
spec.wdelta = average
spec.hdelta = average/2
spec.ddelta = average/2
spec.vshift = average/2
end
local factor = tonumber(spec.factor) or 0
local hfactor = tonumber(spec.hfactor) or factor
local vfactor = tonumber(spec.vfactor) or factor
local delta = tonumber(spec.delta) or 1
local wdelta = tonumber(spec.wdelta) or delta
local hdelta = tonumber(spec.hdelta) or delta
local ddelta = tonumber(spec.ddelta) or hdelta
local vshift = tonumber(spec.vshift) or 0
local slant = spec.slant
local extend = spec.extend
local squeeze = spec.squeeze
if slant then
initializeslant(tfmdata,slant)
end
if extend then
initializeextend(tfmdata,extend)
end
if squeeze then
initializesqueeze(tfmdata,squeeze)
end
properties.effect = {
effect = effect,
width = width,
factor = factor,
hfactor = hfactor,
vfactor = vfactor,
wdelta = wdelta,
hdelta = hdelta,
ddelta = ddelta,
vshift = vshift,
slant = tfmdata.parameters.slantfactor,
extend = tfmdata.parameters.extendfactor,
squeeze = tfmdata.parameters.squeezefactor,
}
end
end
local rules = {
"RadicalRuleThickness",
"OverbarRuleThickness",
"FractionRuleThickness",
"UnderbarRuleThickness",
}
-- local commands = char.commands
-- if commands then
-- local command = commands[1]
-- if command and command[1] == "right" then
-- commands[1] = rightcommand[command[2]-snap]
-- end
-- end
local function setmathparameters(tfmdata,characters,mathparameters,dx,dy,squeeze)
if delta ~= 0 then
for i=1,#rules do
local name = rules[i]
local value = mathparameters[name]
if value then
mathparameters[name] = (squeeze or 1) * (value + dx)
end
end
end
end
local function setmathcharacters(tfmdata,characters,mathparameters,dx,dy,squeeze,wdelta,hdelta,ddelta)
local function wdpatch(char)
if wsnap ~= 0 then
char.width = char.width + wdelta/2
end
end
local function htpatch(char)
if hsnap ~= 0 then
local height = char.height
if height then
char.height = char.height + 2 * dy
end
end
end
local character = characters[0x221A]
if character and character.next then
-- print("base char",0x221A,table.sequenced(character))
local char = character
local next = character.next
wdpatch(char)
htpatch(char)
while next do
char = characters[next]
wdpatch(char)
htpatch(char)
-- print("next char",next,table.sequenced(char))
next = char.next
end
if char then
local v = char.vert_variants
if v then
local top = v[#v]
if top then
local char = characters[top.glyph]
-- print("top char",top.glyph,table.sequenced(char))
htpatch(char)
end
end
end
end
end
-- local show_effect = { "lua", function(f,c)
-- report_effect("font id %i, char %C",f,c)
-- inspect(fonts.hashes.characters[f][c])
-- end }
-- local show_effect = { "lua", "print('!')" }
local function manipulateeffect(tfmdata)
local effect = tfmdata.properties.effect
if effect then
local characters = tfmdata.characters
local parameters = tfmdata.parameters
local mathparameters = tfmdata.mathparameters
local multiplier = effect.width * 100
local factor = parameters.factor
local hfactor = parameters.hfactor
local vfactor = parameters.vfactor
local wdelta = effect.wdelta * hfactor * multiplier
local hdelta = effect.hdelta * vfactor * multiplier
local ddelta = effect.ddelta * vfactor * multiplier
local vshift = effect.vshift * vfactor * multiplier
local squeeze = effect.squeeze
local hshift = wdelta / 2
local dx = multiplier * vfactor
local dy = vshift
local factor = (1 + effect.factor) * factor
local hfactor = (1 + effect.hfactor) * hfactor
local vfactor = (1 + effect.vfactor) * vfactor
local vshift = vshift ~= 0 and upcommand[vshift] or false
for unicode, character in next, characters do
local oldwidth = character.width
local oldheight = character.height
local olddepth = character.depth
if oldwidth and oldwidth > 0 then
character.width = oldwidth + wdelta
local commands = character.commands
local hshift = rightcommand[hshift]
if vshift then
if commands then
prependcommands ( commands,
-- show_effect,
hshift,
vshift
)
else
character.commands = {
-- show_effect,
hshift,
vshift,
charcommand[unicode]
}
end
else
if commands then
prependcommands ( commands,
-- show_effect,
hshift
)
else
character.commands = {
-- show_effect,
hshift,
charcommand[unicode]
}
end
end
end
if oldheight and oldheight > 0 then
character.height = oldheight + hdelta
end
if olddepth and olddepth > 0 then
character.depth = olddepth + ddelta
end
end
if mathparameters then
setmathparameters(tfmdata,characters,mathparameters,dx,dy,squeeze)
setmathcharacters(tfmdata,characters,mathparameters,dx,dy,squeeze,wdelta,hdelta,ddelta)
end
parameters.factor = factor
parameters.hfactor = hfactor
parameters.vfactor = vfactor
if trace then
report_effect("applying")
report_effect(" effect : %s", effect.effect)
report_effect(" width : %s => %s", effect.width, multiplier)
report_effect(" factor : %s => %s", effect.factor, factor )
report_effect(" hfactor : %s => %s", effect.hfactor,hfactor)
report_effect(" vfactor : %s => %s", effect.vfactor,vfactor)
report_effect(" wdelta : %s => %s", effect.wdelta, wdelta)
report_effect(" hdelta : %s => %s", effect.hdelta, hdelta)
report_effect(" ddelta : %s => %s", effect.ddelta, ddelta)
end
end
end
local specification = {
name = "effect",
description = "apply effects to glyphs",
initializers = {
base = initializeeffect,
node = initializeeffect,
},
manipulators = {
base = manipulateeffect,
node = manipulateeffect,
},
}
registerotffeature(specification)
registerafmfeature(specification)
local function initializeoutline(tfmdata,value)
value = tonumber(value)
if not value then
value = 0
else
value = tonumber(value) or 0
end
local parameters = tfmdata.parameters
local properties = tfmdata.properties
parameters.mode = effects.outline
parameters.width = value * 1000
properties.effect = {
effect = effect,
width = width,
}
end
local specification = {
name = "outline",
description = "outline glyphs",
initializers = {
base = initializeoutline,
node = initializeoutline,
}
}
registerotffeature(specification)
registerafmfeature(specification)
|