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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
|
if not modules then modules = { } end modules ['node-inj'] = {
version = 1.001,
comment = "companion to node-ini.tex",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- tricky ... fonts.ids is not yet defined .. to be solved (maybe general tex ini)
-- This is very experimental (this will change when we have luatex > .50 and
-- a few pending thingies are available. Also, Idris needs to make a few more
-- test fonts.
local next = next
local trace_injections = false trackers.register("nodes.injections", function(v) trace_injections = v end)
fonts = fonts or { }
fonts.tfm = fonts.tfm or { }
fonts.ids = fonts.ids or { }
local fontdata = fonts.ids
local glyph = node.id('glyph')
local kern = node.id('kern')
local traverse_id = node.traverse_id
local has_attribute = node.has_attribute
local set_attribute = node.set_attribute
local insert_node_before = node.insert_before
local insert_node_after = node.insert_after
local newkern = nodes.kern
local markbase = attributes.private('markbase')
local markmark = attributes.private('markmark')
local markdone = attributes.private('markdone')
local cursbase = attributes.private('cursbase')
local curscurs = attributes.private('curscurs')
local cursdone = attributes.private('cursdone')
local kernpair = attributes.private('kernpair')
local cursives = { }
local marks = { }
local kerns = { }
-- currently we do gpos/kern in a bit inofficial way but when we
-- have the extra fields in glyphnodes to manipulate ht/dp/wd
-- explicitly i will provide an alternative; also, we can share
-- tables
function nodes.set_cursive(start,nxt,factor,rlmode,exit,entry,tfmstart,tfmnext)
local dx, dy = factor*(exit[1]-entry[1]), factor*(exit[2]-entry[2])
local ws, wn = tfmstart.width, tfmnext.width
local bound = #cursives + 1
set_attribute(start,cursbase,bound)
set_attribute(nxt,curscurs,bound)
cursives[bound] = { rlmode, dx, dy, ws, wn }
return dx, dy, bound
end
function nodes.set_pair(current,factor,rlmode,spec,tfmchr)
local x, y, w, h = factor*spec[1], factor*spec[2], factor*spec[3], factor*spec[4]
-- dy = y - h
if x ~= 0 or w ~= 0 or y ~= 0 or h ~= 0 then
local bound = has_attribute(current,kernpair)
if bound then
local kb = kerns[bound]
kb[2], kb[3], kb[4], kb[5] = kb[2] + x, kb[3] + y, kb[4] + w, kb[5] + h
else
bound = #kerns + 1
set_attribute(current,kernpair,bound)
kerns[bound] = { rlmode, x, y, w, h }
end
return x, y, w, h, bound
end
return x, y, w, h -- no bound
end
function nodes.set_kern(current,factor,rlmode,x,tfmchr)
local dx = factor*x
if dx ~= 0 then
local bound = #kerns + 1
set_attribute(current,kernpair,bound)
kerns[bound] = { rlmode, dx }
end
return dx, bound
end
function nodes.set_mark(start,base,factor,rlmode,ba,ma,index) --ba=baseanchor, ma=markanchor
local dx, dy = factor*(ba[1]-ma[1]), factor*(ba[2]-ma[2])
local bound = has_attribute(base,markbase)
if bound then
local mb = marks[bound]
if mb then
if not index then index = #mb + 1 end
mb[index] = { dx, dy }
set_attribute(start,markmark,bound)
set_attribute(start,markdone,index)
return dx, dy, bound
else
logs.report("nodes mark", "possible problem, U+%04X is base without data (id: %s)",base.char,bound)
end
end
index = index or 1
bound = #marks + 1
set_attribute(base,markbase,bound)
set_attribute(start,markmark,bound)
set_attribute(start,markdone,index)
marks[bound] = { [index] = { dx, dy } }
return dx, dy, bound
end
function nodes.trace_injection(head)
local function dir(n)
return (n<0 and "r-to-l") or (n>0 and "l-to-r") or ("unset")
end
local function report(...)
logs.report("nodes finisher",...)
end
report("begin run")
for n in traverse_id(glyph,head) do
if n.subtype < 256 then
local kp = has_attribute(n,kernpair)
local mb = has_attribute(n,markbase)
local mm = has_attribute(n,markmark)
local md = has_attribute(n,markdone)
local cb = has_attribute(n,cursbase)
local cc = has_attribute(n,curscurs)
report("char U+%05X, font=%s",n.char,n.font)
if kp then
local k = kerns[kp]
if k[3] then
report(" pairkern: dir=%s, x=%s, y=%s, w=%s, h=%s",dir(k[1]),k[2],k[3],k[4],k[5])
else
report(" kern: dir=%s, dx=%s",dir(k[1]),k[2])
end
end
if mb then
report(" markbase: bound=%s",mb)
end
if mm then
local m = marks[mm]
if mb then
local m = m[mb]
if m then
report(" markmark: bound=%s, index=%s, dx=%s, dy=%s",mm,j,m[1],m[2])
else
report(" markmark: bound=%s, missing index",mm)
end
else
m = m[1]
report(" markmark: bound=%s, dx=%s, dy=%s",mm,m[1],m[2])
end
end
if cb then
report(" cursbase: bound=%s",cb)
end
if cc then
local c = cursives[cc]
report(" curscurs: bound=%s, dir=%s, dx=%s, dy=%s",cc,dir(c[1]),c[2],c[3])
end
end
end
report("end run")
end
-- todo: reuse tables (i.e. no collection), but will be extra fields anyway
function nodes.inject_kerns(head,tail,where,keep)
if trace_injections then
nodes.trace_injection(head)
end
local has_marks, has_cursives, has_kerns = next(marks), next(cursives), next(kerns)
if has_marks or has_cursives then
-- in the future variant we will not copy items but refs to tables
local done, ky, rl, valid, cx, wx = false, { }, { }, { }, { }, { }
if has_kerns then -- move outside loop
for n in traverse_id(glyph,head) do
if n.subtype < 256 then
valid[#valid+1] = n
local k = has_attribute(n,kernpair)
if k then
local kk = kerns[k]
if kk then
local x, y, w, h = kk[2], kk[3], kk[4], kk[5]
local dy = y - h
if dy ~= 0 then
ky[n] = dy
end
if w ~= 0 or x ~= 0 then
wx[n] = kk
end
rl[n] = kk[1] -- could move in test
end
end
end
end
else
for n in traverse_id(glyph,head) do
if n.subtype < 256 then
valid[#valid+1] = n
end
end
end
if #valid > 0 then
-- we can assume done == true because we have cursives and marks
local cx = { }
if has_kerns and next(ky) then
for n, k in next, ky do
n.yoffset = k
end
end
-- todo: reuse t and use maxt
if has_cursives then
local n_cursbase, n_curscurs, p_cursbase, n, p, nf, tm = nil, nil, nil, nil, nil, nil, nil
-- since we need valid[n+1] we can also use a "while true do"
local t, d, maxt = { }, { }, 0
for i=1,#valid do -- valid == glyphs
n = valid[i]
if n.font ~= nf then
nf = n.font
--~ print(n.font,nf,fontdata[nf])
tm = fontdata[nf].marks
-- maybe flush
maxt = 0
end
if not tm[n.char] then
n_cursbase = has_attribute(n,cursbase)
n_curscurs = has_attribute(n,curscurs)
if p_cursbase then
if p_cursbase == n_curscurs then
local c = cursives[n_curscurs]
if c then
local rlmode, dx, dy, ws, wn = c[1], c[2], c[3], c[4], c[5]
if rlmode >= 0 then
dx = dx - ws
else
dx = dx + wn
end
if dx ~= 0 then
cx[n] = dx
rl[n] = rlmode
end
-- if rlmode and rlmode < 0 then
dy = -dy
-- end
maxt = maxt + 1
t[maxt] = p
d[maxt] = dy
else
maxt = 0
end
end
elseif maxt > 0 then
local ny = n.yoffset
for i=maxt,1,-1 do
ny = ny + d[i]
t[i].yoffset = t[i].yoffset + ny
end
maxt = 0
end
if not n_cursbase and maxt > 0 then
local ny = n.yoffset
for i=maxt,1,-1 do
ny = ny + d[i]
t[i].yoffset = ny
end
maxt = 0
end
p_cursbase, p = n_cursbase, n
end
end
if maxt > 0 then
local ny = n.yoffset
for i=maxt,1,-1 do
ny = ny + d[i]
t[i].yoffset = ny
end
maxt = 0
end
if not keep then
cursives = { }
end
end
if has_marks then
local p_markbase, n_markmark = nil, nil
for i=1,#valid do
local p = valid[i]
p_markbase = has_attribute(p,markbase)
if p_markbase then
local mrks = marks[p_markbase]
for n in traverse_id(glyph,p.next) do
n_markmark = has_attribute(n,markmark)
if p_markbase == n_markmark then
local index = has_attribute(n,markdone) or 1
local d = mrks[index]
if d then
-- local rlmode = d[3] -- not used
-- if rlmode and rlmode < 0 then
-- n.xoffset = p.xoffset + d[1]
-- else
n.xoffset = p.xoffset - d[1]
-- end
n.yoffset = p.yoffset + d[2]
end
else
break
end
end
end
end
if not keep then
marks = { }
end
end
-- todo : combine
if next(wx) then
for n, k in next, wx do
-- only w can be nil, can be sped up when w == nil
local rl, x, w = k[1], k[2] or 0, k[4] or 0
local wx = w - x
if rl < 0 then
if wx ~= 0 then
insert_node_before(head,n,newkern(wx))
end
if x ~= 0 then
insert_node_after (head,n,newkern(x))
end
else
-- if wx ~= 0 then
-- insert_node_after(head,n,newkern(wx))
-- end
if x ~= 0 then
insert_node_before(head,n,newkern(x))
end
end
end
end
if next(cx) then
for n, k in next, cx do
if k ~= 0 then
local rln = rl[n]
if rln and rln < 0 then
insert_node_before(head,n,newkern(-k))
else
insert_node_before(head,n,newkern(k))
end
end
end
end
if not keep then
kerns = { }
end
return head, true
elseif not keep then
kerns, cursives, marks = { }, { }, { }
end
elseif has_kerns then
-- we assume done is true because there are kerns
for n in traverse_id(glyph,head) do
local k = has_attribute(n,kernpair)
if k then
local kk = kerns[k]
if kk then
-- only w can be nil, can be sped up when w == nil
local rl, x, y, w = kk[1], kk[2] or 0, kk[3] or 0, kk[4] or 0
if y ~= 0 then
n.yoffset = y -- todo: h ?
end
local wx = w - x
if rl < 0 then
if wx ~= 0 then
insert_node_before(head,n,newkern(wx))
end
if x ~= 0 then
insert_node_after (head,n,newkern(x))
end
else
-- if wx ~= 0 then
-- insert_node_after(head,n,newkern(wx))
-- end
if x ~= 0 then
insert_node_before(head,n,newkern(x))
end
end
end
end
end
if not keep then
kerns = { }
end
return head, true
end
return head, false
end
-- -- -- KEEP OLD ONE, THE NEXT IS JUST OPTIMIZED -- -- --
function nodes.XXXXXXXxinject_kerns(head,tail,keep)
if trace_injections then
nodes.trace_injection(head)
end
local has_marks, has_cursives, has_kerns = next(marks), next(cursives), next(kerns)
if has_marks or has_cursives then
-- in the future variant we will not copy items but refs to tables
local done, ky, valid, cx, wx = false, { }, { }, { }, { }
for n in traverse_id(glyph,head) do
if n.subtype < 256 then
valid[#valid+1] = n
if has_kerns then -- move outside loop
local k = has_attribute(n,kernpair)
if k then
local kk = kerns[k]
if kk then
local x, y, w, h = kk[2], kk[3], kk[4], kk[5]
local dy = y - h
if dy ~= 0 then
ky[n] = dy
end
if w ~= 0 or x ~= 0 then
wx[n] = kk
end
end
end
end
end
end
if #valid > 0 then
-- we can assume done == true because we have cursives and marks
local cx = { }
if has_kerns and next(ky) then
for n, k in next, ky do
n.yoffset = k
end
end
-- todo: reuse t and use maxt
if has_cursives then
local n_cursbase, n_curscurs, p_cursbase, n, p, nf, tm = nil, nil, nil, nil, nil, nil, nil
-- since we need valid[n+1] we can also use a "while true do"
local t, d, maxt = { }, { }, 0
for i=1,#valid do -- valid == glyphs
n = valid[i]
if n.font ~= nf then
nf = n.font
tm = fontdata[nf].marks
-- maybe flush
maxt = 0
end
if not tm[n.char] then
n_cursbase = has_attribute(n,cursbase)
n_curscurs = has_attribute(n,curscurs)
if p_cursbase then
if p_cursbase == n_curscurs then
local c = cursives[n_curscurs]
if c then
local rlmode, dx, dy, ws, wn = c[1], c[2], c[3], c[4], c[5]
if rlmode >= 0 then
dx = dx - ws
else
dx = dx + wn
end
if dx ~= 0 then
if rlmode < 0 then
cx[n] = -dx
else
cx[n] = dx
end
end
-- if rlmode and rlmode < 0 then
dy = -dy
-- end
maxt = maxt + 1
t[maxt] = p
d[maxt] = dy
else
maxt = 0
end
end
elseif maxt > 0 then
local ny = n.yoffset
for i=maxt,1,-1 do
ny = ny + d[i]
t[i].yoffset = t[i].yoffset + ny
end
maxt = 0
end
if not n_cursbase and maxt > 0 then
local ny = n.yoffset
for i=maxt,1,-1 do
ny = ny + d[i]
t[i].yoffset = ny
end
maxt = 0
end
p_cursbase, p = n_cursbase, n
end
end
if maxt > 0 then
local ny = n.yoffset
for i=maxt,1,-1 do
ny = ny + d[i]
t[i].yoffset = ny
end
maxt = 0
end
if not keep then
cursives = { }
end
end
if has_marks then
local p_markbase, n_markmark = nil, nil
for i=1,#valid do
local p = valid[i]
p_markbase = has_attribute(p,markbase)
if p_markbase then
local mrks = marks[p_markbase]
for n in traverse_id(glyph,p.next) do
n_markmark = has_attribute(n,markmark)
if p_markbase == n_markmark then
local index = has_attribute(n,markdone) or 1
local d = mrks[index]
if d then
local d1, d2 = d[1], d[2]
if d1 ~= 0 then
n.xoffset = p.xoffset - d[1]
end
if d2 ~= 0 then
n.yoffset = p.yoffset + d[2]
end
end
else
break
end
end
end
end
if not keep then
marks = { }
end
end
-- todo : combine
if next(wx) then
for n, k in next, wx do
-- only w can be nil, can be sped up when w == nil
local rl, x, w = k[1], k[2] or 0, k[4] or 0
local wx = w - x
if rl < 0 then
if wx ~= 0 then
insert_node_before(head,n,newkern(wx))
end
if x ~= 0 then
insert_node_after (head,n,newkern(x))
end
else
-- if wx ~= 0 then
-- insert_node_after(head,n,newkern(wx))
-- end
if x ~= 0 then
insert_node_before(head,n,newkern(x))
end
end
end
end
if next(cx) then
for n, k in next, cx do
insert_node_before(head,n,newkern(k))
end
end
if not keep then
kerns = { }
end
return head, true
elseif not keep then
kerns, cursives, marks = { }, { }, { }
end
elseif has_kerns then
-- we assume done is true because there are kerns
for n in traverse_id(glyph,head) do
local k = has_attribute(n,kernpair)
if k then
local kk = kerns[k]
if kk then
-- only w can be nil, can be sped up when w == nil
local rl, x, y, w = kk[1], kk[2] or 0, kk[3] or 0, kk[4] or 0
if y ~= 0 then
n.yoffset = y -- todo: h ?
end
local wx = w - x
if rl < 0 then
if wx ~= 0 then
insert_node_before(head,n,newkern(wx))
end
if x ~= 0 then
insert_node_after (head,n,newkern(x))
end
else
-- if wx ~= 0 then
-- insert_node_after(head,n,newkern(wx))
-- end
if x ~= 0 then
insert_node_before(head,n,newkern(x))
end
end
end
end
end
if not keep then
kerns = { }
end
return head, true
end
return head, false
end
|