summaryrefslogtreecommitdiff
path: root/tex/context/base/node-acc.lua
blob: 81ae496b2bf932ea535128f62f3c1c0d0f9cdd5a (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
if not modules then modules = { } end modules ['node-acc'] = {
    version   = 1.001,
    comment   = "companion to node-ini.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

local nodes, node = nodes, node

local nodecodes      = nodes.nodecodes
local tasks          = nodes.tasks

local traverse_nodes = node.traverse
local traverse_id    = node.traverse_id
local copy_node      = node.copy
local free_nodelist  = node.flush_list

local glue_code      = nodecodes.glue
local kern_code      = nodecodes.kern
local glyph_code     = nodecodes.glyph
local hlist_code     = nodecodes.hlist
local vlist_code     = nodecodes.vlist

local a_characters   = attributes.private("characters")

local threshold      = 65536

-- todo: nbsp etc
-- todo: collapse kerns

local function injectspaces(head)
    local p
    local n = head
    while n do
        local id = n.id
        if id == glue_code then -- todo: check for subtype related to spacing (13/14 but most seems to be 0)
       -- if n.spec.width > 0 then -- threshold
            if p and p.id == glyph_code then
                local g = copy_node(p)
                local c = g.components
                if c then -- it happens that we copied a ligature
                    free_nodelist(c)
                    g.components = nil
                    g.subtype = 256
                end
                local a = n[a_characters]
                local s = copy_node(n.spec)
                g.char, n.spec = 32, s
                p.next, g.prev = g, p
                g.next, n.prev = n, g
                s.width = s.width - g.width
                if a then
                    g[a_characters] = a
                end
                s[a_characters] = 0
                n[a_characters] = 0
            end
       -- end
        elseif id == hlist_code or id == vlist_code then
            injectspaces(n.list,attribute)
     -- elseif id == kern_code then -- the backend already collapses
     --     local first = n
     --     while true do
     --         local nn = n.next
     --         if nn and nn.id == kern_code then
     --          -- maybe we should delete kerns but who cares at this stage
     --             first.kern = first.kern + nn.kern
     --             nn.kern = 0
     --             n = nn
     --         else
     --             break
     --         end
     --     end
        end
        p = n
        n = n.next
    end
    return head, true
end

nodes.handlers.accessibility = injectspaces

-- todo:

-- local a_hyphenated = attributes.private('hyphenated')
--
-- local hyphenated, codes = { }, { }
--
-- local function compact(n)
--     local t = { }
--     for n in traverse_id(glyph_code,n) do
--         t[#t+1] = utfchar(n.char) -- check for unicode
--     end
--     return concat(t,"")
-- end
--
-- local function injectspans(head)
--     for n in traverse_nodes(head) do
--         local id = n.id
--         if id == disc then
--             local r, p = n.replace, n.pre
--             if r and p then
--                 local str = compact(r)
--                 local hsh = hyphenated[str]
--                 if not hsh then
--                     hsh = #codes + 1
--                     hyphenated[str] = hsh
--                     codes[hsh] = str
--                 end
--                 n[a_hyphenated] = hsh
--             end
--         elseif id == hlist_code or id == vlist_code then
--             injectspans(n.list)
--         end
--     end
--     return head, true
-- end
--
-- nodes.injectspans = injectspans
--
-- tasks.appendaction("processors", "words", "nodes.injectspans")
--
-- local function injectspans(head)
--     for n in traverse_nodes(head) do
--         local id = n.id
--         if id == disc then
--             local a = n[a_hyphenated]
--             if a then
--                 local str = codes[a]
--                 local b = new_pdfliteral(format("/Span << /ActualText %s >> BDC", lpdf.tosixteen(str)))
--                 local e = new_pdfliteral("EMC")
--                 node.insert_before(head,n,b)
--                 node.insert_after(head,n,e)
--             end
--         elseif id == hlist_code or id == vlist_code then
--             injectspans(n.list)
--         end
--     end
-- end