summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/driv-shp.lua
blob: bc8073233175fa1a7125feed51c7dbd1463850a8 (plain)
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
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
if not modules then modules = { } end modules ['driv-shp'] = {
    version   = 1.001,
    comment   = "companion to driv-ini.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

local type, next = type, next
local round = math.round

local setmetatableindex       = table.setmetatableindex
local formatters              = string.formatters
local concat                  = table.concat
local keys                    = table.keys
local sortedhash              = table.sortedhash
local splitstring             = string.split
local idiv                    = number.idiv
local extract                 = bit32.extract
local nuts                    = nodes.nuts

local tonut                   = nodes.tonut
local tonode                  = nodes.tonode

local getdirection            = nuts.getdirection
local getlist                 = nuts.getlist
local getoffsets              = nuts.getoffsets
local getorientation          = nuts.getorientation
local getfield                = nuts.getfield
local getwhd                  = nuts.getwhd
local getkern                 = nuts.getkern
local getheight               = nuts.getheight
local getdepth                = nuts.getdepth
local getwidth                = nuts.getwidth
local getnext                 = nuts.getnext
local getsubtype              = nuts.getsubtype
local getid                   = nuts.getid
local getleader               = nuts.getleader
local getglue                 = nuts.getglue
local getshift                = nuts.getshift
local getdata                 = nuts.getdata
local getboxglue              = nuts.getboxglue
local getexpansion            = nuts.getexpansion

----- getall                  = node.direct.getall

local setdirection            = nuts.setdirection
local setfield                = nuts.setfield
local setlink                 = nuts.setlink

local isglyph                 = nuts.isglyph
local findtail                = nuts.tail
local nextdir                 = nuts.traversers.dir
local nextnode                = nuts.traversers.node

local rangedimensions         = nuts.rangedimensions
local effectiveglue           = nuts.effective_glue

local nodecodes               = nodes.nodecodes
local whatsitcodes            = nodes.whatsitcodes
local leadercodes             = nodes.leadercodes
local subtypes                = nodes.subtypes

local dircodes                = nodes.dircodes
local normaldir_code          = dircodes.normal

local dirvalues               = nodes.dirvalues
local lefttoright_code        = dirvalues.lefttoright
local righttoleft_code        = dirvalues.righttoleft

local glyph_code              = nodecodes.glyph
local kern_code               = nodecodes.kern
local glue_code               = nodecodes.glue
local hlist_code              = nodecodes.hlist
local vlist_code              = nodecodes.vlist
local dir_code                = nodecodes.dir
local disc_code               = nodecodes.disc
local math_code               = nodecodes.math
local rule_code               = nodecodes.rule
local marginkern_code         = nodecodes.marginkern
local whatsit_code            = nodecodes.whatsit

local leader_code             = leadercodes.leader
local cleader_code            = leadercodes.cleader
local xleader_code            = leadercodes.xleader
local gleader_code            = leadercodes.gleader

local saveposwhatsit_code     = whatsitcodes.savepos
local userdefinedwhatsit_code = whatsitcodes.userdefined
local openwhatsit_code        = whatsitcodes.open
local writewhatsit_code       = whatsitcodes.write
local closewhatsit_code       = whatsitcodes.close
local lateluawhatsit_code     = whatsitcodes.latelua
local literalwhatsit_code     = whatsitcodes.literal
local setmatrixwhatsit_code   = whatsitcodes.setmatrix
local savewhatsit_code        = whatsitcodes.save
local restorewhatsit_code     = whatsitcodes.restore

local texget                  = tex.get

local fonthashes              = fonts.hashes
local fontdata                = fonthashes.identifiers
local characters              = fonthashes.characters
local parameters              = fonthashes.parameters

local report                  = logs.reporter("drivers")

local getpagedimensions  getpagedimensions = function()
    getpagedimensions = backends.codeinjections.getpagedimensions
    return getpagedimensions()
end

local drivers           = drivers
local instances         = drivers.instances

---------------------------------------------------------------------------------------

local lastfont         = nil
local fontcharacters   = nil

local magicconstants   = tex.magicconstants
local trueinch         = magicconstants.trueinch
local maxdimen         = magicconstants.maxdimen
local running          = magicconstants.running

local pos_h            = 0
local pos_v            = 0
local pos_r            = lefttoright_code
local shippingmode     = "none"

local abs_max_v        = 0
local abs_max_h        = 0

local shipbox_h        = 0
local shipbox_v        = 0
local page_size_h      = 0
local page_size_v      = 0
----- page_h_origin    = 0 -- trueinch
----- page_v_origin    = 0 -- trueinch

local initialize
local finalize
local updatefontstate
local pushorientation
local poporientation
local flushcharacter
local flushrule
local flushpdfliteral
local flushpdfsetmatrix
local flushpdfsave
local flushpdfrestore
local flushspecial
local flushpdfimage

-- make local

function drivers.getpos () return round(pos_h), round(pos_v) end
function drivers.gethpos() return round(pos_h)               end
function drivers.getvpos() return               round(pos_v) end

-- local function synch_pos_with_cur(ref_h, ref_v, h, v)
--     if pos_r == righttoleft_code then
--         pos_h = ref_h - h
--     else
--         pos_h = ref_h + h
--     end
--     pos_v = ref_v - v
-- end

-- characters

local flush_character

local stack   = setmetatableindex("table")
local level   = 0
local nesting = 0
local main    = 0

-- todo: cache streams

local function flush_vf_packet(pos_h,pos_v,pos_r,font,char,data,factor,vfcommands)

    if nesting > 100 then
        return
    elseif nesting == 0 then
        main = font
    end

    nesting = nesting + 1

    local saved_h = pos_h
    local saved_v = pos_v
    local saved_r = pos_r
            pos_r = lefttoright_code

    local data  = fontdata[font]
    local fnt   = font
    local fonts = data.fonts
    local siz   = (data.parameters.factor or 1)/65536

    local function flushchar(font,char,fnt,chr,f,e)
        if fnt then
            local nest = char ~= chr or font ~= fnt
            if fnt == 0 then
                fnt = main
            end
            return flush_character(false,fnt,chr,factor,nest,pos_h,pos_v,pos_r,f,e)
        else
            return 0
        end
    end

    -- we assume resolved fonts: id mandate but maybe also size

    for i=1,#vfcommands do
        local packet  = vfcommands[i]
        local command = packet[1]
        if command == "char" then
            local chr = packet[2]
            local f   = packet[3]
            local e   = packet[4]
            pos_h = pos_h + flushchar(font,char,fnt,chr,f,e)
        elseif command == "slot" then
            local index = packet[2]
            local chr   = packet[3]
            local f     = packet[4]
            local e     = packet[5]
            if index == 0 then
                pos_h = pos_h + flushchar(font,char,font,chr,f,e)
            else
                local okay = fonts and fonts[index]
                if okay then
                    local fnt = okay.id
                    if fnt then
                        pos_h = pos_h + flushchar(font,char,fnt,chr,f,e)
                    end
                end
            end
        elseif command == "right" then
            local h = packet[2] -- * siz
            if factor ~= 0 and h ~= 0 then
                h = h + h * factor / 1000 -- expansion
            end
            pos_h = pos_h + h
        elseif command == "down" then
            local v = packet[2] -- * siz
            pos_v = pos_v - v
        elseif command == "push" then
            level = level + 1
            local s = stack[level]
            s[1] = pos_h
            s[2] = pos_v
        elseif command == "pop" then
            if level > 0 then
                local s = stack[level]
                pos_h = s[1]
                pos_v = s[2]
                level = level - 1
            end
        elseif command == "pdf" then
            flushpdfliteral(false,pos_h,pos_v,packet[2],packet[3])
        elseif command == "rule" then
            local size_v = packet[2]
            local size_h = packet[3]
            if factor ~= 0 and size_h > 0 then
                size_h = size_h + size_h * factor / 1000
            end
            if size_h > 0 and size_v > 0 then
                flushsimplerule(pos_h,pos_v,pos_r,size_h,size_v)
                pos_h = pos_h + size_h
            end
        elseif command == "font" then
            local index = packet[2]
            local okay  = fonts and fonts[index]
            if okay then
                fnt = okay.id or fnt -- or maybe just return
            end
        elseif command == "lua" then
            local code = packet[2]
            if type(code) ~= "function" then
                code = loadstring(code)
            end
            if type(code) == "function" then
                code(font,char,pos_h,pos_v)
            end
        elseif command == "node" then
            hlist_out(packet[2])
        elseif command == "image" then
            -- doesn't work because intercepted by engine so we use a different
            -- mechanism (for now)
            local image = packet[2]
            -- to do
        elseif command == "pdfmode" then
            -- doesn't happen
     -- elseif command == "special" then
     --     -- not supported
     -- elseif command == "nop" then
     --     -- nothing to do|
     -- elseif command == "scale" then
     --     -- not supported
        end
    end

    pos_h = saved_h
    pos_v = saved_v
    pos_r = saved_r

 -- synch_pos_with_cur(ref_h, ref_v, pos_h,pos_v)
    nesting = nesting - 1
end

local onetimemessage -- could be defined later (todo: make plug for this)

flush_character = function(current,font,char,factor,vfcommands,pos_h,pos_v,pos_r,f,e)

    if font ~= lastfont then
        lastfont       = font
        fontcharacters = characters[font]
        updatefontstate(font)
    end

    local data = fontcharacters[char]
    if not data then
        if char > 0 then
            if not onetimemessage then
                onetimemessage = fonts.loggers.onetimemessage
            end
            onetimemessage(font,char,"missing")
        end
        return 0, 0, 0
    end

    local width, height, depth, naturalwidth
    if current then
        width, height, depth, factor = getwhd(current,true)
        naturalwidth = width
        if factor ~= 0 then
            width = (1.0 + factor/1000000.0) * width
        end
    else
        width  = data.width or 0
        height = data.height or 0
        depth  = data.depth or 0
        naturalwidth = width
        if not factor then
            factor = 0
        end
    end
    if pos_r == righttoleft_code then
        pos_h = pos_h - width
    end
    if vfcommands then
        vfcommands = data.commands
    end
    if vfcommands then
        flush_vf_packet(pos_h,pos_v,pos_r,font,char,data,factor,vfcommands) -- also f ?
    else
        local orientation = data.orientation
        if orientation and (orientation == 1 or orientation == 3) then
            local x = data.xoffset
            local y = data.yoffset
            if x then
                pos_h = pos_h + x
            end
            if y then
                pos_v = pos_v + y
            end
            pushorientation(orientation,pos_h,pos_v)
            flushcharacter(current,pos_h,pos_v,pos_r,font,char,data,factor,naturalwidth,f,e)
            poporientation(orientation,pos_h,pos_v)
        else
            flushcharacter(current,pos_h,pos_v,pos_r,font,char,data,factor,naturalwidth,f,e)
        end
    end
    return width, height, depth
end

-- end of characters

local function reset_state()
    pos_h         = 0
    pos_v         = 0
    pos_r         = lefttoright_code
    shipbox_h     = 0
    shipbox_v     = 0
    shippingmode  = "none"
    page_size_h   = 0
    page_size_v   = 0
 -- page_h_origin = 0 -- trueinch
 -- page_v_origin = 0 -- trueinch
end

local function dirstackentry(t,k)
    local v = {
        cur_h = 0,
        cur_v = 0,
        ref_h = 0,
        ref_v = 0,
    }
    t[k] = v
    return v
end

local dirstack = setmetatableindex(dirstackentry)

local function reset_dir_stack()
    dirstack = setmetatableindex(dirstackentry)
end

local function flushlatelua(current)
    return backends.latelua(current)
end

local function flushwriteout(current)
    if not doing_leaders then
        backends.writeout(current)
    end
end

local function flushopenout(current)
    if not doing_leaders then
        backends.openout(current)
    end
end

local function flushcloseout(current)
    if not doing_leaders then
        backends.closeout(current)
    end
end

local hlist_out, vlist_out  do

    -- effective_glue :
    --
    -- local cur_g      = 0
    -- local cur_glue   = 0.0
    --
    -- local width, stretch, shrink, stretch_order, shrink_order = getglue(current)
    -- if g_sign == 1 then -- stretching
    --     if stretch_order == g_order then
    --      -- rule_wd  = width - cur_g
    --      -- cur_glue = cur_glue + stretch
    --      -- cur_g    = g_set * cur_glue
    --      -- rule_wd  = rule_wd + cur_g
    --         rule_ht = width + g_set * stretch
    --     else
    --         rule_wd  = width
    --     end
    -- else
    --     if shrink_order == g_order then
    --      -- rule_wd  = width - cur_g
    --      -- cur_glue = cur_glue - shrink
    --      -- cur_g    = g_set * cur_glue
    --      -- rule_wd  = rule_wd + cur_g
    --         rule_ht = width - g_set * shrink
    --     else
    --         rule_wd  = width
    --     end
    -- end

    local function applyanchor(orientation,x,y,width,height,depth,woffset,hoffset,doffset,xoffset,yoffset)
        local ot = extract(orientation, 0,4)
        local ay = extract(orientation, 4,4)
        local ax = extract(orientation, 8,4)
        local of = extract(orientation,12,4)
        if ot == 4 then
            ot, ay = 0, 1
        elseif ot == 5 then
            ot, ay = 0, 2
        end
        if ot == 0 or ot == 2 then
            if     ax == 1 then x = x - width
            elseif ax == 2 then x = x + width
            elseif ax == 3 then x = x - width/2
            elseif ax == 4 then x = x + width/2
            end
            if ot == 2 then
                doffset, hoffset = hoffset, doffset
            end
            if     ay == 1 then y = y - doffset
            elseif ay == 2 then y = y + hoffset
            elseif ay == 3 then y = y + (doffset + hoffset)/2 - doffset
            end
        elseif ot == 1 or ot == 3 then
            if     ay == 1 then y = y - height
            elseif ay == 2 then y = y + height
            elseif ay == 3 then y = y - height/2
            end
            if ot == 1 then
                doffset, hoffset = hoffset, doffset
            end
            if     ax == 1 then x = x - width
            elseif ax == 2 then x = x + width
            elseif ax == 3 then x = x - width/2
            elseif ax == 4 then x = x + width/2
            elseif ax == 5 then x = x - hoffset
            elseif ax == 6 then x = x + doffset
            end
        end
        return ot, x + xoffset, y - yoffset
    end

    -- rangedir can stick to widths only

    rangedimensions = node.direct.naturalwidth or rangedimensions

    local function calculate_width_to_enddir(this_box,begindir) -- can be a helper
        local dir_nest = 1
        local enddir   = begindir
        for current, subtype in nextdir, getnext(begindir) do
            if subtype == normaldir_code then -- todo
                dir_nest = dir_nest + 1
            else
                dir_nest = dir_nest - 1
            end
            if dir_nest == 0 then -- does the type matter
                enddir = current
                local width = rangedimensions(this_box,begindir,enddir)
                return enddir, width
            end
        end
        if enddir == begindir then
            local width = rangedimensions(this_box,begindir) -- ,enddir)
            return enddir, width
        end
        return enddir, 0
    end

    -- check frequencies of nodes

    hlist_out = function(this_box,current)
        local outer_doing_leaders = false

        local ref_h = pos_h
        local ref_v = pos_v
        local ref_r = pos_r
              pos_r = getdirection(this_box)

        local boxwidth,
              boxheight,
              boxdepth   = getwhd(this_box)
        local g_set,
              g_order,
              g_sign     = getboxglue(this_box)

        local cur_h      = 0
        local cur_v      = 0

        if not current then
            current = getlist(this_box)
        end

        while current do
            local char, id = isglyph(current)
            if char then
                local x_offset, y_offset = getoffsets(current)
                if x_offset ~= 0 or y_offset ~= 0 then
                    -- synch_pos_with_cur(ref_h, ref_v, cur_h + x_offset, cur_v - y_offset)
                    if pos_r == righttoleft_code then
                        pos_h = ref_h - (cur_h + x_offset)
                    else
                        pos_h = ref_h + (cur_h + x_offset)
                    end
                    pos_v = ref_v - (cur_v - y_offset)
                    -- synced
                end
                local wd, ht, dp = flush_character(current,id,char,false,true,pos_h,pos_v,pos_r)
                cur_h = cur_h + wd
            elseif id == glue_code then
                local gluewidth
                if g_sign == 0 then
                    gluewidth = getwidth(current)
                else
                    gluewidth = effectiveglue(current,this_box)
                end
                if gluewidth ~= 0 then
                    local leader = getleader(current)
                    if leader then
                        local width, height, depth = getwhd(leader)
                        if getid(leader) == rule_code then
                            if gluewidth > 0 then
                                if height == running then
                                    height = boxheight
                                end
                                if depth == running then
                                    depth = boxdepth
                                end
                                local total = height + depth
                                if total > 0 then
                                    if pos_r == righttoleft_code then
                                        pos_h = pos_h - gluewidth
                                    end
                                    pos_v = pos_v - depth
                                    flushrule(leader,pos_h,pos_v,pos_r,gluewidth,total)
                                end
                                cur_h = cur_h + gluewidth
                            end
                        elseif width > 0 and gluewidth > 0 then
                            local boxdir = getdirection(leader) or lefttoright_code
                            gluewidth = gluewidth + 10
                            local edge = cur_h + gluewidth
                            local lx = 0
                            local subtype = getsubtype(current)
                            if subtype == gleader_code then
                                local save_h = cur_h
                                if pos_r == righttoleft_code then
                                    cur_h = ref_h - shipbox_h - cur_h
                                    cur_h = width * (cur_h / width)
                                    cur_h = ref_h - shipbox_h - cur_h
                                else
                                    cur_h = cur_h + ref_h - shipbox_h
                                    cur_h = width * (cur_h / width)
                                    cur_h = cur_h - ref_h - shipbox_h
                                end
                                if cur_h < save_h then
                                    cur_h = cur_h + width
                                end
                            elseif subtype == leader_code then -- aleader ?
                                local save_h = cur_h
                                cur_h = width * (cur_h / width)
                                if cur_h < save_h then
                                    cur_h = cur_h + width
                                end
                            else
                                lq = gluewidth / width
                                lr = gluewidth % width
                                if subtype == cleader_code then
                                    cur_h = cur_h + lr / 2
                                else
                                    lx = lr / (lq + 1)
                                    cur_h = cur_h + (lr - (lq - 1) * lx) / 2
                                end
                            end
                            local shift = getshift(leader)
                            while cur_h + width <= edge do
                                local basepoint_h = 0
                             -- local basepoint_v = shift
                                if boxdir ~= pos_r then
                                    basepoint_h = boxwidth
                                end
                                -- synch_pos_with_cur(ref_h,ref_v,cur_h + basepoint_h,shift)
                                if pos_r == righttoleft_code then
                                    pos_h = ref_h - (cur_h + basepoint_h)
                                else
                                    pos_h = ref_h + (cur_h + basepoint_h)
                                end
                                pos_v = ref_v - shift
                                -- synced
                                outer_doing_leaders = doing_leaders
                                doing_leaders       = true
                                if getid(leader) == vlist_code then
                                    vlist_out(leader)
                                else
                                    hlist_out(leader)
                                end
                                doing_leaders = outer_doing_leaders
                                cur_h = cur_h + width + lx
                            end
                            cur_h = edge - 10
                        else
                            cur_h = cur_h + gluewidth
                        end
                    else
                        cur_h = cur_h + gluewidth
                    end
                end
            elseif id == hlist_code or id == vlist_code then
                -- w h d dir l, s, o = getall(current)
                local boxdir = getdirection(current) or lefttoright_code
                local width, height, depth = getwhd(current)
                local list = getlist(current)
                if list then
                    local shift, orientation = getshift(current)
                    if not orientation then
                     --
                     -- local width, height, depth, list, boxdir, shift, orientation = getall(current)
                     -- if list then
                     --     if not orientation then
                     --
                        local basepoint_h = boxdir ~= pos_r and width or 0
                     -- local basepoint_v = shift
                        -- synch_pos_with_cur(ref_h,ref_v,cur_h + basepoint_h,shift)
                        if pos_r == righttoleft_code then
                            pos_h = ref_h - (cur_h + basepoint_h)
                        else
                            pos_h = ref_h + (cur_h + basepoint_h)
                        end
                        pos_v = ref_v - shift
                        -- synced
                        if id == vlist_code then
                            vlist_out(current,list)
                        else
                            hlist_out(current,list)
                        end
                    elseif orientation == 0x1000 then
                        local orientation, xoffset, yoffset = getorientation(current)
                        local basepoint_h = boxdir ~= pos_r and width or 0
                     -- local basepoint_v = shift
                        -- synch_pos_with_cur(ref_h,ref_v,cur_h + basepoint_h + xoffset,shift - yoffset)
                        if pos_r == righttoleft_code then
                            pos_h = ref_h - (cur_h + basepoint_h + xoffset)
                        else
                            pos_h = ref_h + (cur_h + basepoint_h + xoffset)
                        end
                        pos_v = ref_v - (shift - yoffset)
                        -- synced
                        if id == vlist_code then
                            vlist_out(current,list)
                        else
                            hlist_out(current,list)
                        end
                    else
                        local orientation, xoffset, yoffset, woffset, hoffset, doffset = getorientation(current)
                        local orientation, basepoint_h, basepoint_v = applyanchor(orientation,0,shift,width,height,depth,woffset,hoffset,doffset,xoffset,yoffset)
                        if orientation == 1 then
                            basepoint_h = basepoint_h + doffset
                            if boxdir == pos_r then
                                basepoint_v = basepoint_v - height
                            end
                        elseif orientation == 2 then
                            if boxdir == pos_r then
                                basepoint_h = basepoint_h + width
                            end
                        elseif orientation == 3 then
                            basepoint_h = basepoint_h + hoffset
                            if boxdir ~= pos_r then
                                basepoint_v = basepoint_v - height
                            end
                        end
                        -- synch_pos_with_cur(ref_h,ref_v,cur_h+basepoint_h,cur_v + basepoint_v)
                        if pos_r == righttoleft_code then
                            pos_h = ref_h - (cur_h + basepoint_h)
                        else
                            pos_h = ref_h + (cur_h + basepoint_h)
                        end
                        pos_v = ref_v - (cur_v + basepoint_v)
                        -- synced
                        pushorientation(orientation,pos_h,pos_v,pos_r)
                        if id == vlist_code then
                            vlist_out(current,list)
                        else
                            hlist_out(current,list)
                        end
                        poporientation(orientation,pos_h,pos_v,pos_r)
                    end
                end
                cur_h = cur_h + width
            elseif id == disc_code then
                local replace = getfield(current,"replace")
                if replace and getsubtype(current) ~= select_disc then
                    -- we could flatten .. no gain
                    setlink(findtail(replace),getnext(current))
                    setlink(current,replace)
                    setfield(current,"replace")
                end
            elseif id == kern_code then
                local kern, factor = getkern(current,true)
                if kern ~= 0 then
                    if factor and factor ~= 0 then
                        cur_h = cur_h + (1.0 + factor/1000000.0) * kern
                    else
                        cur_h = cur_h + kern
                    end
                end
            elseif id == rule_code then
                -- w h d x y = getall(current)
                local width, height, depth = getwhd(current)
                if width > 0 then
                    if height == running then
                        height = boxheight
                    end
                    if depth == running then
                        depth = boxdepth
                    end
                    local total = height + depth
                    if total > 0 then
                        local xoffset, yoffset, left, right = getoffsets(current)
                        if left ~= 0 then
                            pos_v  = pos_v + left
                            total  = total - left
                        end
                        if right ~= 0 then
                            depth = depth - right
                            total = total - right
                        end
                        if pos_r == righttoleft_code then
                            pos_h   = pos_h - width
                            xoffset = - xoffset
                        end
                        pos_v = pos_v - depth
                        flushrule(current,pos_h + xoffset,pos_v + yoffset,pos_r,width,total)
                    end
                    cur_h = cur_h + width
                end
            elseif id == math_code then
                local kern = getkern(current)
                if kern ~= 0 then
                    cur_h = cur_h + kern
                elseif g_sign == 0 then
                    cur_h = cur_h + getwidth(current)
                else
                    cur_h = cur_h + effectiveglue(current,this_box)
                end
            elseif id == dir_code then
                -- we normally have proper begin-end pairs
                -- a begin without end is (silently) handled
                -- an end without a begin will be (silently) skipped
                -- we only need to move forward so a faster calculation
                local dir, cancel = getdirection(current)
                if cancel then
                    local ds = dirstack[current]
                    ref_h = ds.ref_h
                    ref_v = ds.ref_v
                    cur_h = ds.cur_h
                    cur_v = ds.cur_v
                    pos_r = dir
                else
                    local enddir, width = calculate_width_to_enddir(this_box,current)
                    local ds = dirstack[enddir]
                    ds.cur_h = cur_h + width
                    if dir ~= pos_r then
                        cur_h = ds.cur_h
                    end
                    if enddir ~= current then
                        local ds = dirstack[enddir]
                        ds.cur_v = cur_v
                        ds.ref_h = ref_h
                        ds.ref_v = ref_v
                        setdirection(enddir,pos_r)
                    end
                    -- synch_pos_with_cur(ref_h,ref_v,cur_h,cur_v)
                    if pos_r == righttoleft_code then
                        pos_h = ref_h - cur_h
                    else
                        pos_h = ref_h + cur_h
                    end
                    pos_v = ref_v - cur_v
                    -- synced
                    ref_h = pos_h
                    ref_v = pos_v
                    cur_h = 0
                    cur_v = 0
                    pos_r = dir
                end
            elseif id == whatsit_code then
                local subtype = getsubtype(current)
                if subtype == literalwhatsit_code then
                    flushpdfliteral(current,pos_h,pos_v)
                elseif subtype == lateluawhatsit_code then
                    flushlatelua(current,pos_h,pos_v,cur_h,cur_v)
                elseif subtype == setmatrixwhatsit_code then
                    flushpdfsetmatrix(current,pos_h,pos_v)
                elseif subtype == savewhatsit_code then
                    flushpdfsave(current,pos_h,pos_v)
                elseif subtype == restorewhatsit_code then
                    flushpdfrestore(current,pos_h,pos_v)
                elseif subtype == saveposwhatsit_code then
                    last_position_x = pos_h -- or pdf_h
                    last_position_y = pos_v -- or pdf_v
                elseif subtype == writewhatsit_code then
                    flushwriteout(current)
                elseif subtype == closewhatsit_code then
                    flushcloseout(current)
                elseif subtype == openwhatsit_code then
                    flushopenout(current)
                end
            elseif id == marginkern_code then
                cur_h = cur_h + getkern(current)
            end
            current = getnext(current)
            -- synch_pos_with_cur(ref_h, ref_v, cur_h, cur_v) -- already done in list so skip
            if pos_r == righttoleft_code then
                pos_h = ref_h - cur_h
            else
                pos_h = ref_h + cur_h
            end
            pos_v = ref_v - cur_v
            -- synced
        end
        pos_h = ref_h
        pos_v = ref_v
        pos_r = ref_r
    end

    vlist_out = function(this_box,current)
        local outer_doing_leaders = false

        local ref_h = pos_h
        local ref_v = pos_v
        local ref_r = pos_r
              pos_r = getdirection(this_box)

        local boxwidth,
              boxheight,
              boxdepth   = getwhd(this_box)
        local g_set,
              g_order,
              g_sign     = getboxglue(this_box)

        local cur_h      = 0
        local cur_v      = - boxheight

        local top_edge   = cur_v

        -- synch_pos_with_cur(ref_h, ref_v, cur_h, cur_v)
        if pos_r == righttoleft_code then
            pos_h = ref_h - cur_h
        else
            pos_h = ref_h + cur_h
        end
        pos_v = ref_v - cur_v
        -- synced

        if not current then
            current = getlist(this_box)
        end

     -- while current do
     --     local id = getid(current)
        for current, id, subtype in nextnode, current do
            if id == glue_code then
                local glueheight
                if g_sign == 0 then
                    glueheight = getwidth(current)
                else
                    glueheight = effectiveglue(current,this_box)
                end
                local leader = getleader(current)
                if leader then
                    local width, height, depth = getwhd(leader)
                    local total = height + depth
                    if getid(leader) == rule_code then
                        depth = 0 -- hm
                        if total > 0 then
                            if width == running then
                                width = boxwidth
                            end
                            if width > 0 then
                                if pos_r == righttoleft_code then
                                    cur_h = cur_h - width
                                end
                                flushrule(leader,pos_h,pos_v - total,pos_r,width,total)
                            end
                            cur_v = cur_v + total
                        end
                    else
                        if total > 0 and glueheight > 0 then
                            glueheight = glueheight + 10
                            local edge = cur_v + glueheight
                            local ly   = 0
                            if subtype == gleader_code then
                                save_v = cur_v
                                cur_v  = ref_v - shipbox_v - cur_v
                                cur_v  = total * (cur_v / total)
                                cur_v  = ref_v - shipbox_v - cur_v
                                if cur_v < save_v then
                                    cur_v = cur_v + total
                                end
                            elseif subtype == leader_code then -- aleader
                                save_v = cur_v
                                cur_v = top_edge + total * ((cur_v - top_edge) / total)
                                if cur_v < save_v then
                                    cur_v = cur_v + total
                                end
                            else
                                lq = glueheight / total
                                lr = glueheight % total
                                if subtype == cleaders_code then
                                    cur_v = cur_v + lr / 2
                                else
                                    ly = lr / (lq + 1)
                                    cur_v = cur_v + (lr - (lq - 1) * ly) / 2
                                end
                            end
                            local shift = getshift(leader)
                            while cur_v + total <= edge do -- todo: <= edge - total
                                -- synch_pos_with_cur(ref_h, ref_v, getshift(leader), cur_v + height)
                                if pos_r == righttoleft_code then
                                    pos_h = ref_h - shift
                                else
                                    pos_h = ref_h + shift
                                end
                                pos_v = ref_v - (cur_v + height)
                                -- synced
                                outer_doing_leaders = doing_leaders
                                doing_leaders = true
                                if getid(leader) == vlist_code then
                                    vlist_out(leader)
                                else
                                    hlist_out(leader)
                                end
                                doing_leaders = outer_doing_leaders
                                cur_v = cur_v + total + ly
                            end
                            cur_v = edge - 10
                        else
                            cur_v = cur_v + glueheight
                        end
                    end
                else
                    cur_v = cur_v + glueheight
                end
            elseif id == hlist_code or id == vlist_code then
                -- w h d dir l, s, o = getall(current)
                local boxdir = getdirection(current) or lefttoright_code
                local width, height, depth = getwhd(current)
                local list = getlist(current)
                if list then
                    local shift, orientation = getshift(current)
                    if not orientation then
-- local width, height, depth, list, boxdir, shift, orientation = getall(current)
-- if list then
--     if not orientation then
                     -- local basepoint_h = shift
                     -- local basepoint_v = height
                        if boxdir ~= pos_r then
                            shift = shift + width
                        end
                        -- synch_pos_with_cur(ref_h,ref_v,shift,cur_v + height)
                        if pos_r == righttoleft_code then
                            pos_h = ref_h - shift
                        else
                            pos_h = ref_h + shift
                        end
                        pos_v = ref_v - (cur_v + height)
                        -- synced
                        if id == vlist_code then
                            vlist_out(current,list)
                        else
                            hlist_out(current,list)
                        end
                    elseif orientation == 0x1000 then
                        local orientation, xoffset, yoffset = getorientation(current)
                     -- local basepoint_h = shift
                     -- local basepoint_v = height
                        if boxdir ~= pos_r then
                            shift = shift + width
                        end
                        -- synch_pos_with_cur(ref_h,ref_v,shift + xoffset,cur_v + height - yoffset)
                        if pos_r == righttoleft_code then
                            pos_h = ref_h - (shift + xoffset)
                        else
                            pos_h = ref_h + (shift + xoffset)
                        end
                        pos_v = ref_v - (cur_v + height - yoffset)
                        -- synced
                        if id == vlist_code then
                            vlist_out(current,list)
                        else
                            hlist_out(current,list)
                        end
                    else
                        local orientation, xoffset, yoffset, woffset, hoffset, doffset = getorientation(current)
                        local orientation, basepoint_h, basepoint_v = applyanchor(orientation,shift,height,width,height,depth,woffset,hoffset,doffset,xoffset,yoffset)
                        if orientation == 1 then
                            basepoint_h = basepoint_h + width - height
                            basepoint_v = basepoint_v - height
                        elseif orientation == 2 then
                            basepoint_h = basepoint_h + width
                            basepoint_v = basepoint_v + depth - height
                        elseif orientation == 3 then -- weird
                            basepoint_h = basepoint_h + height
                        end
                        -- synch_pos_with_cur(ref_h,ref_v,basepoint_h,cur_v + basepoint_v)
                        if pos_r == righttoleft_code then
                            pos_h = ref_h - basepoint_h
                        else
                            pos_h = ref_h + basepoint_h
                        end
                        pos_v = ref_v - (cur_v + basepoint_v)
                        -- synced
                        pushorientation(orientation,pos_h,pos_v,pos_r)
                        if id == vlist_code then
                            vlist_out(current,list)
                        else
                            hlist_out(current,list)
                        end
                        poporientation(orientation,pos_h,pos_v,pos_r)
                    end
                end
                cur_v = cur_v + height + depth
            elseif id == kern_code then
                cur_v = cur_v + getkern(current)
            elseif id == rule_code then
                -- w h d x y = getall(current)
                local width, height, depth = getwhd(current)
                local total = height + depth
                if total > 0 then
                    if width == running then
                        width = boxwidth
                    end
                    if width > 0 then
                        local xoffset, yoffset, left, right = getoffsets(current)
                        if left ~= 0 then
                            width = width - left
                            cur_h = cur_h + left
                        end
                        if right ~= 0 then
                            width = width - right
                        end
                        if pos_r == righttoleft_code then
                            cur_h   = cur_h - width
                            xoffset = - xoffset
                        end
                        flushrule(current,pos_h + xoffset,pos_v - total - yoffset,pos_r,width,total)
                    end
                    cur_v = cur_v + total
                end
            elseif id == whatsit_code then
                if subtype == literalwhatsit_code then
                    flushpdfliteral(current,pos_h,pos_v)
                elseif subtype == lateluawhatsit_code then
                    flushlatelua(current,pos_h,pos_v,cur_h,cur_v)
                elseif subtype == setmatrixwhatsit_code then
                    flushpdfsetmatrix(current,pos_h,pos_v)
                elseif subtype == savewhatsit_code then
                    flushpdfsave(current,pos_h,pos_v)
                elseif subtype == restorewhatsit_code then
                    flushpdfrestore(current,pos_h,pos_v)
                elseif subtype == saveposwhatsit_code then
                    last_position_x = pos_h -- or pdf_h
                    last_position_y = pos_v -- or pdf_v
                elseif subtype == writewhatsit_code then
                    flushwriteout(current)
                elseif subtype == closewhatsit_code then
                    flushcloseout(current)
                elseif subtype == openwhatsit_code then
                    flushopenout(current)
                end
            end
            -- synch_pos_with_cur(ref_h, ref_v, cur_h, cur_v)
            if pos_r == righttoleft_code then
                pos_h = ref_h - cur_h
            else
                pos_h = ref_h + cur_h
            end
            pos_v = ref_v - cur_v
            -- synced
        end
        pos_h = ref_h
        pos_v = ref_v
        pos_r = ref_r
    end

end

function lpdf.convert(box,smode,objnum,specification) -- temp name

    if box then
        box = tonut(box)
    else
        report("error in converter, no box")
        return
    end

    local driver = instances.pdf
    if driver then
        -- tracing
    else
        return
    end

    local actions     = driver.actions
    local flushers    = driver.flushers

    initialize        = actions.initialize
    finalize          = actions.finalize
    updatefontstate   = actions.updatefontstate

    pushorientation   = flushers.pushorientation
    poporientation    = flushers.poporientation

    flushcharacter    = flushers.character
    flushrule         = flushers.rule
    flushsimplerule   = flushers.simplerule
    flushspecial      = flushers.special
    flushpdfliteral   = flushers.pdfliteral
    flushpdfsetmatrix = flushers.pdfsetmatrix
    flushpdfsave      = flushers.pdfsave
    flushpdfrestore   = flushers.pdfrestore
    flushpdfimage     = flushers.pdfimage

    reset_dir_stack()
    reset_state()

    shippingmode = smode

    local width, height, depth = getwhd(box)

    local total = height + depth

    ----- v_offset_par    = 0
    ----- h_offset_par    = 0

    local max_v = total -- + v_offset_par
    local max_h = width -- + h_offset_par

    if height > maxdimen or depth > maxdimen or width > maxdimen then
        goto DONE
    end

    if max_v > maxdimen then
        goto DONE
    elseif max_v > abs_max_v then
        abs_max_v = max_v
    end

    if max_h > maxdimen then
        goto DONE
    elseif max_h > abs_max_h then
        abs_max_h = max_h
    end

    if shippingmode == "page" then

        -- We have zero offsets in ConTeXt.

        local pagewidth, pageheight = getpagedimensions()
     -- local h_offset_par, v_offset_par = texget("hoffset"), texget("voffset")

     -- page_h_origin = trueinch
     -- page_v_origin = trueinch

        pos_r = lefttoright_code

        if pagewidth > 0 then
            page_size_h = pagewidth
        else
            page_size_h = width
        end

        if page_size_h == 0 then
            page_size_h = width
        end

        if pageheight > 0 then
            page_size_v = pageheight
        else
            page_size_v = total
        end

        if page_size_v == 0 then
            page_size_v = total
        end

        local refpoint_h = 0           -- + page_h_origin + h_offset_par
        local refpoint_v = page_size_v -- - page_v_origin - v_offset_par

        -- synch_pos_with_cur(refpoint_h,refpoint_v,0,height)
        if pos_r == righttoleft_code then
            pos_h = refpoint_h
        else
            pos_h = refpoint_h
        end
        pos_v = refpoint_v - height
        -- synced

    else

     -- page_h_origin = 0
     -- page_v_origin = 0
        page_size_h   = width
        page_size_v   = total
        pos_r         = getdirection(box)
        pos_v         = depth
        pos_h         = pos_r == righttoleft_code and width or 0

    end

    shipbox_ref_h = pos_h
    shipbox_ref_v = pos_v

    initialize {
        shippingmode = smode, -- target
        boundingbox  = { 0, 0, page_size_h, page_size_v },
        objectnumber = objnum,
    }

    if getid(box) == vlist_code then
        vlist_out(box)
    else
        hlist_out(box)
    end

    ::DONE::

    finalize(objnum,specification)
    shippingmode = "none"
end

-- This will move to back-out.lua eventually.

do

    ----- sortedhash = table.sortedhash

    ----- tonut      = nodes.tonut
    local properties = nodes.properties.data
    local flush      = texio.write_nl

    local periods    = utilities.strings.newrepeater(".")

    local function showdetails(n,l)
        local p = properties[tonut(n)]
        if p then
            local done = false
            for k, v in sortedhash(p) do
                if done then
                    flush("\n")
                else
                    done = true
                end
                flush(periods[l+1] .. " " .. k .. " = " .. tostring(v))
            end
        end
    end

    local whatsittracers = {
        latelua = showdetails,
        literal = showdetails,
    }

    callback.register("show_whatsit",function(n,l)
        local s = nodes.whatsitcodes[n.subtype]
        texio.write(" [" .. s .. "]")
        local w = whatsittracers[s]
        if w then
            w(n,l)
        end
    end)

end