summaryrefslogtreecommitdiff
path: root/tex/context/base/mkxl/node-cmp.lmt
blob: 8870203513ec3f747a5261d48bb836152ad0d4fa (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
if not modules then modules = { } end modules ['node-cmp'] = {
    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"
}

-- This is a LuaTeX compatibility module. The code below is no longer
-- present in node-met or node-aux. These functions are rarely used.

if node.count then
    return
end

local type = type

local node     = node
local direct   = node.direct
local todirect = direct.tovaliddirect
local tonode   = direct.tonode

local count  = direct.count
local length = direct.length
local slide  = direct.slide

function node.count(id,first,last)
    return count(id,first and todirect(first), last and todirect(last) or nil)
end

function node.length(first,last)
    return length(first and todirect(first), last and todirect(last) or nil)
end

function node.slide(n)
    if n then
        n = slide(todirect(n))
        if n then
            return tonode(n)
        end
    end
    return nil
end

local hyphenating = direct.hyphenating
local ligaturing  = direct.ligaturing
local kerning     = direct.kerning

-- kind of inconsistent

function node.hyphenating(first,last)
    if first then
        local h, t = hyphenating(todirect(first), last and todirect(last) or nil)
        return h and tonode(h) or nil, t and tonode(t) or nil, true
    else
        return nil, false
    end
end

function node.ligaturing(first,last)
    if first then
        local h, t = ligaturing(todirect(first), last and todirect(last) or nil)
        return h and tonode(h) or nil, t and tonode(t) or nil, true
    else
        return nil, false
    end
end

function node.kerning(first,last)
    if first then
        local h, t = kerning(todirect(first), last and todirect(last) or nil)
        return h and tonode(h) or nil, t and tonode(t) or nil, true
    else
        return nil, false
    end
 end

local protectglyph    = direct.protectglyph
local unprotectglyph  = direct.unprotectglyph
local protectglyphs   = direct.protectglyphs
local unprotectglyphs = direct.unprotectglyphs

function node.protectglyphs(first,last)
    protectglyphs(todirect(first), last and todirect(last) or nil)
end

function node.unprotectglyphs(first,last)
    unprotectglyphs(todirect(first), last and todirect(last) or nil)
end

function node.protectglyph(first)
    protectglyph(todirect(first))
end

function node.unprotectglyph(first)
    unprotectglyph(todirect(first))
end

local flattendiscretionaries = direct.flattendiscretionaries
local checkdiscretionaries   = direct.checkdiscretionaries
local checkdiscretionary     = direct.checkdiscretionary

function node.flattendiscretionaries(first)
    local h, count = flattendiscretionaries(todirect(first))
    return tonode(h), count
end

function node.checkdiscretionaries(n) checkdiscretionaries(todirect(n)) end
function node.checkdiscretionary  (n) checkdiscretionary  (todirect(n)) end

local hpack        = direct.hpack
local vpack        = direct.vpack
local mlisttohlist = direct.mlisttohlist

function node.hpack(head,...)
    local h, badness = hpack(head and todirect(head) or nil,...)
    return tonode(h), badness
end

function node.vpack(head,...)
    local h, badness = vpack(head and todirect(head) or nil,...)
    return tonode(h), badness
end

function node.mlisttohlist(head,...)
    return tonode(mlisttohlist(head and todirect(head) or nil,...))
end

local endofmath      = direct.endofmath
local findattribute  = direct.findattribute
local firstglyph     = direct.firstglyph

function node.endofmath(n)
    if n then
        n = endofmath(todirect(n))
        if n then
            return tonode(n)
        end
    end
    return nil
end

function node.findattribute(n,a)
    if n then
        local v, n = findattribute(todirect(n),a)
        if n then
            return v, tonode(n)
        end
    end
    return nil
end

function node.firstglyph(first,last)
    local n = firstglyph(todirect(first), last and todirect(last) or nil)
    return n and tonode(n) or nil
end

local dimensions      = direct.dimensions
local rangedimensions = direct.rangedimensions
local effectiveglue   = direct.effectiveglue

function node.dimensions(a,b,c,d,e)
    if type(a) == "userdata" then
        a = todirect(a)
        if type(b) == "userdata" then
            b = todirect(b)
        end
        return dimensions(a,b)
    else
        d = todirect(d)
        if type(e) == "userdata" then
            e = todirect(e)
        end
        return dimensions(a,b,c,d,e)
    end
    return 0, 0, 0
end

function node.rangedimensions(parent,first,last)
    return rangedimenensions(todirect(parent),todirect(first),last and todirect(last))
end

function node.effectiveglue(list,parent)
    return effectiveglue(list and todirect(list) or nil,parent and todirect(parent) or nil)
end

local usesfont            = direct.usesfont
local hasglyph            = direct.hasglyph
local protrusionskippable = direct.protrusionskippable

function node.usesfont           (n,f) return usesfont(todirect(n),f)          end
function node.hasglyph           (n)   return hasglyph(todirect(n))            end
function node.protrusionskippable(n)   return protrusionskippable(todirect(n)) end

local makeextensible = direct.make_extensible
local lastnode       = direct.lastnode

function node.makeextensible(...) local n = makeextensible(...) return n and tonode(n) or nil end
function node.lastnode      ()    local n = lastnode()          return n and tonode(n) or nil end

local iszeroglue = direct.iszeroglue
local getglue    = direct.getglue
local setglue    = direct.setglue

function node.iszeroglue(n)     return iszeroglue(todirect(n))     end
function node.getglue   (n)     return getglue   (todirect(n))     end
function node.setglue   (n,...) return setglue   (todirect(n),...) end

node.family_font = tex.getfontoffamily