summaryrefslogtreecommitdiff
path: root/tex/context/base/mkxl/font-imp-tracing.lmt
blob: 3de48af6fe01348c1f9ab78a287de7902b790b45 (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
if not modules then modules = { } end modules ['font-imp-tracing'] = {
    version   = 1.001,
    comment   = "companion to font-ini.mkiv and hand-ini.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

local abs = math.abs

local next, type = next, type
local concat = table.concat
local formatters = string.formatters

local fonts              = fonts

local handlers           = fonts.handlers
local registerotffeature = handlers.otf.features.register
local registerafmfeature = handlers.afm.features.register

local settings_to_array  = utilities.parsers.settings_to_array
local setmetatableindex  = table.setmetatableindex

local helpers            = fonts.helpers
local appendcommandtable = helpers.appendcommandtable
local prependcommands    = helpers.prependcommands
local charcommand        = helpers.commands.char

local variables          = interfaces.variables

local v_background       = variables.background
local v_frame            = variables.frame
local v_empty            = variables.empty
local v_none             = variables.none

-- d:width d:height d:depth d:rulethickness b:outline b:advance b:baseline s:color

-- local function initialize(tfmdata,key,value)
--     if value then
--         local vfspecials  = fonts.helpers.vfspecials
--         local vfcommands  = fonts.helpers.commands
--         local backgrounds = vfspecials.backgrounds
--         local outlines    = vfspecials.outlines
--         local characters  = tfmdata.characters
--         local rulecache   = backgrounds
--         local showchar    = true
--         local color       = "palegray"
--         if type(value) == "string" then
--             value = settings_to_array(value)
--             for i=1,#value do
--                 local v = value[i]
--                 if v == v_frame then
--                     rulecache = outlines
--                 elseif v == v_background then
--                     rulecache = backgrounds
--                 elseif v == v_empty then
--                     showchar = false
--                 elseif v == v_none then
--                     color = nil
--                 else
--                     color = v
--                 end
--             end
--         end
--         local gray  = color and { "startcolor", color } or nil
--         local black = gray  and { "stopcolor" }         or nil
--         for unicode, character in next, characters do
--             local width  = character.width  or 0
--             local height = character.height or 0
--             local depth  = character.depth  or 0
--             local rule   = rulecache[height][depth][width]
--             if showchar then
--                 local commands = character.commands
--                 if commands then
--                     if gray then
--                         character.commands = prependcommands (
--                             commands, gray, rule, black
--                         )
--                     else
--                         character.commands = prependcommands (
--                             commands, rule
--                         )
--                     end
--                 else
--                     local char = charcommand[unicode]
--                     if gray then
--                         character.commands = {
--                             gray, rule, black, char
--                         }
--                      else
--                         character.commands = {
--                             rule, char
--                         }
--                     end
--                 end
--             else
--                 if gray then
--                     character.commands = {
--                         gray, rule, black
--                     }
--                 else
--                     character.commands = {
--                         rule
--                     }
--                 end
--             end
--         end
--     end
-- end

local function initialize(tfmdata,key,value)
    if value then
        local vfspecials  = fonts.helpers.vfspecials
        local vfcommands  = fonts.helpers.commands
        local backgrounds = vfspecials.backgrounds
        local outlines    = vfspecials.outlines
        local characters  = tfmdata.characters
        local rule        = { "frame", true, true, true, false, false, false, false, "palegray" }
        local showchar    = true
        if type(value) == "string" then
            value = settings_to_array(value)
            for i=1,#value do
                local v = value[i]
                if v == v_frame then
                    rule[6] = true
                elseif v == v_background then
                    rule[6] = false
                elseif v == v_empty then
                    showchar = false
                elseif v == v_none then
                    rule[9] = false
                else
                    local thickness = string.todimen(v)
                    if thickness and thickness > 0 then
                        rule[5] = thickness
                    else
                        rule[9] = v
                    end
                end
            end
        end
        if not showchar then
            rule = { rule }
        end
        for unicode, character in next, characters do
            if showchar then
                local commands = character.commands
                if commands then
                    character.commands = prependcommands ( commands, rule )
                else
                    character.commands = { rule, charcommand[unicode] }
                end
            else
                character.commands = rule
            end
        end
    end
end

local specification = {
    name        = "boundingbox",
    description = "show boundingbox",
    manipulators = {
        base = initialize,
        node = initialize,
    }
}

registerotffeature(specification)
registerafmfeature(specification)

local function initialize(tfmdata,key,value)
    if value then
        local rawdata       = tfmdata.shared.rawdata
        local rawresources  = rawdata and rawdata.resources
        local mathconstants = rawresources.mathconstants
        if mathconstants then
            local vfspecials  = fonts.helpers.vfspecials
            local vfcommands  = fonts.helpers.commands
            local backgrounds = vfspecials.backgrounds
            local outlines    = vfspecials.outlines
            local characters  = tfmdata.characters
            local rulecache   = backgrounds
            local push        = vfcommands.push
            local pop         = vfcommands.pop
            local black       = { "stopcolor" }
            local itcolor     = { "startcolor", "trace:0" } -- s / dd (transparent)
            local brcolor     = { "startcolor", "trace:1" } -- r / dr
            local trcolor     = { "startcolor", "trace:2" } -- g / dg
            local blcolor     = { "startcolor", "trace:3" } -- b / db
            local tlcolor     = { "startcolor", "trace:4" } -- y / dy
            for unicode, character in next, characters do
                local mathkerns = character.mathkerns
                local italic    = character.vitalic or character.italic
                if mathkerns or (italic and italic ~= 0) then
                    local width  = character.width  or 0
                    local height = character.height or 0
                    local depth  = character.depth  or 0
                    local list   = { }
                    local count  = 0
                    if italic and italic ~= 0 then
                        count = count + 1 list[count] = itcolor
                        count = count + 1 list[count] = push
                        count = count + 1 list[count] = { "offset", width + (italic < 0 and -italic or 0), 0 }
                        count = count + 1 list[count] = rulecache[height][depth][abs(-italic)]
                        count = count + 1 list[count] = pop
                        count = count + 1 list[count] = black
                    end
                    if mathkerns then
                        local br = mathkerns.bottomright
                        local tr = mathkerns.topright
                        local bl = mathkerns.bottomleft
                        local tl = mathkerns.topleft
                        if br then
                            local done = false
                            for i=1,#br do
                                local l = br[i]
                                local h = l.height or 0
                                local k = l.kern or 0
                                if k ~= 0 then
                                    if h == 0 then
                                        h = height + depth -- todo max
                                    end
                                    if not done then
                                        count = count + 1 list[count] = brcolor
                                        done  = true
                                    end
                                    count = count + 1 list[count] = push
                                    count = count + 1 list[count] = { "offset", width + (k < 0 and k or 0), - depth }
                                    count = count + 1 list[count] = rulecache[h][0][abs(k)]
                                    count = count + 1 list[count] = pop
                                end
                            end
                            if done then
                                count = count + 1 list[count] = black
                            end
                        end
                        if tr then
                            local done = false
                            for i=1,#tr do
                                local l = tr[i]
                                local h = l.height or 0
                                local k = l.kern or 0
                                if k ~= 0 then
                                    if h == 0 then
                                        h = height + depth -- todo max
                                    end
                                    if not done then
                                        count = count + 1 list[count] = trcolor
                                        done  = true
                                    end
                                    count = count + 1 list[count] = push
                                    count = count + 1 list[count] = { "offset", width + (k < 0 and k or 0), height - h }
                                    count = count + 1 list[count] = rulecache[h][0][abs(k)]
                                    count = count + 1 list[count] = pop
                                end
                            end
                            if done then
                                count = count + 1 list[count] = black
                            end
                        end
                        if bl then
                            local done = false
                            for i=1,#bl do
                                local l = bl[i]
                                local h = l.height or 0
                                local k = l.kern or 0
                                if k ~= 0 then
                                    if h == 0 then
                                        h = height + depth -- todo max
                                    end
                                    if not done then
                                        count = count + 1 list[count] = blcolor
                                        done  = true
                                    end
                                    count = count + 1 list[count] = push
                                    count = count + 1 list[count] = { "offset", (k < 0 and k or 0), -depth }
                                    count = count + 1 list[count] = rulecache[h][0][abs(k)]
                                    count = count + 1 list[count] = pop
                                end
                            end
                            if done then
                                count = count + 1 list[count] = black
                            end
                        end
                        if tl then
                            local done = false
                            for i=1,#tl do
                                local l = tl[i]
                                local h = l.height or 0
                                local k = l.kern or 0
                                if k ~= 0 then
                                    if h == 0 then
                                        h = height + depth -- todo max
                                    end
                                    if not done then
                                        count = count + 1 list[count] = tlcolor
                                        done  = true
                                    end
                                    count = count + 1 list[count] = push
                                    count = count + 1 list[count] = { "offset", (k < 0 and k or 0), height - h }
                                    count = count + 1 list[count] = rulecache[h][0][abs(k)]
                                    count = count + 1 list[count] = pop
                                end
                            end
                            if done then
                                count = count + 1 list[count] = black
                            end
                        end
                    end
                    if count > 0 then
                        local commands = character.commands
                        if commands then
                            character.commands = appendcommandtable(commands,list)
                        else
                            list[#list+1] = charcommand[unicode]
                            character.commands = list
                        end
                    end
                end
            end
        end
    end
end

local specification = {
    name         = "staircase",
    description  = "show staircase kerns",
--  position     = 1,
    manipulators = {
        base = initialize,
        node = initialize,
    }
}

registerotffeature(specification)
registerafmfeature(specification)