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
|
if not modules then modules = { } end modules ['node-aux'] = {
version = 1.001,
comment = "companion to node-spl.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local gsub, format = string.gsub, string.format
local free_node = node.free
local hpack_nodes = node.hpack
local node_fields = node.fields
function nodes.repack_hlist(list,...)
local temp, b = hpack_nodes(list,...)
list = temp.list
temp.list = nil
free_node(temp)
return list, b
end
function nodes.merge(a,b)
if a and b then
local t = node.fields(a.id)
for i=3,#t do
local name = t[i]
a[name] = b[name]
end
end
return a, b
end
local fields, whatsitfields = { }, { }
for k, v in next, node.types() do
if v == "whatsit" then
fields[k], fields[v] = { }, { }
for kk, vv in next, node.whatsits() do
local f = node_fields(k,kk)
whatsitfields[kk], whatsitfields[vv] = f, f
end
else
local f = node_fields(k)
fields[k], fields[v] = f, f
end
end
nodes.fields, nodes.whatsitfields = fields, whatsitfields
function nodes.info(n)
local id = n.id
local tp = node.type(id)
local list = (tp == "whatsit" and whatsitfields[n.subtype]) or fields[id]
logs.report(format("%14s","type"),tp)
for k,v in next, list do
logs.report(format("%14s",v),gsub(gsub(tostring(n[v]),"%s+"," "),"node ",""))
end
end
-- history:
--
-- local function cp_skipable(a,id) -- skipable nodes at the margins during character protrusion
-- return (
-- id ~= glyph_node
-- or id == ins_node
-- or id == mark_node
-- or id == adjust_node
-- or id == penalty_node
-- or (id == glue_node and a.spec.writable)
-- or (id == disc_node and a.pre == nil and a.post == nil and a.replace == nil)
-- or (id == math_node and a.surround == 0)
-- or (id == kern_node and (a.kern == 0 or a.subtype == NORMAL))
-- or (id == hlist_node and a.width == 0 and a.height == 0 and a.depth == 0 and a.list == nil)
-- or (id == whatsit_node and a.subtype ~= pdf_refximage_node and a.subtype ~= pdf_refxform_node)
-- )
-- end
--
-- local function glyph_width(a)
-- local ch = chardata[a.font][a.char]
-- return (ch and ch.width) or 0
-- end
--
-- local function glyph_total(a)
-- local ch = chardata[a.font][a.char]
-- return (ch and (ch.height+ch.depth)) or 0
-- end
--
-- local function non_discardable(a) -- inline
-- return a.id < math_node -- brrrr
-- end
--
-- local function calculate_badness(t,s)
-- if t == 0 then
-- return 0
-- elseif s <= 0 then
-- return INF_BAD
-- else
-- local r
-- if t <= 7230584 then
-- r = t * 297 / s
-- elseif s >= 1663497 then
-- r = t / floor(s / 297)
-- else
-- r = t
-- end
-- r = floor(r)
-- if r > 1290 then
-- return INF_BAD
-- else
-- return floor((r * r * r + 0x20000) / 0x40000) -- 0400000 / 01000000
-- end
-- end
-- end
--
-- left-overs
--
-- local function round_xn_over_d(x, n, d)
-- local positive -- was x >= 0
-- if x >= 0 then
-- positive = true
-- else
-- x = -x
-- positive = false
-- end
-- local t = floor(x % 0x8000) * n -- 0100000
-- local f = floor(t / 0x8000) -- 0100000
-- local u = floor(x / 0x8000) * n + f -- 0100000
-- local v = floor(u % d) * 0x8000 + f -- 0100000
-- if floor(u / d) >= 0x8000 then -- 0100000
-- logs.error("parbuilder",'arith_error')
-- else
-- u = 0x8000 * floor(u / d) + floor(v / d) -- 0100000
-- end
-- v = floor(v % d)
-- if 2*v >= d then
-- u = u + 1
-- end
-- if positive then
-- return u
-- else
-- return -u
-- end
-- end
|