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
|
if not modules then modules = { } end modules ['s-fonts-tables'] = {
version = 1.001,
comment = "companion to s-fonts-tables.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local setmetatableindex = table.setmetatableindex
local sortedhash = table.sortedhash
local sortedkeys = table.sortedkeys
local format = string.format
local concat = table.concat
moduledata.fonts = moduledata.fonts or { }
moduledata.fonts.tracers = moduledata.fonts.tracers or { }
moduledata.fonts.tracers.tables = moduledata.fonts.tracers.tables or { }
local tabletracers = moduledata.fonts.tracers.tables
local digits = {
dflt = {
dflt = "1234567890 1/2",
},
}
local punctuation = {
dflt = {
dflt = ". , : ; ? ! ‹ › « »",
},
}
local symbols = {
dflt = {
dflt = "@ # $ % & * () [] {} <> + - = / |",
},
}
local LATN = "abcdefghijklmnopqrstuvwxyz"
local uppercase = {
latn = {
dflt = LATN,
fra = LATN .. " ÀÁÂÈÉÊÒÓÔÙÚÛÆÇ",
},
grek = {
dftl = "ΑΒΓΔΕΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ",
},
cyrl= {
dflt = "АБВГДЕЖЗИІЙКЛМНОПРСТУФХЦЧШЩЪЫЬѢЭЮЯѲ"
},
}
local latn = "abcdefghijklmnopqrstuvwxyz"
local lowercase = {
latn = {
dftl = latn,
nld = latn .. " ïèéë",
deu = latn .. " äöüß",
fra = latn .. " àáâèéêòóôùúûæç",
},
grek = {
dftl = "αβγδεηθικλμνξοπρστυφχψω",
},
cyrl= {
dflt = "абвгдежзиійклмнопрстуфхцчшщъыьѣэюяѳ"
},
}
local samples = {
digits = digits,
punctuation = punctuation,
symbols = symbols,
uppercase = uppercase,
lowercase = lowercase,
}
tabletracers.samples = samples
setmetatableindex(uppercase, function(t,k) return rawget(t,"latn") end)
setmetatableindex(lowercase, function(t,k) return rawget(t,"latn") end)
setmetatableindex(digits, function(t,k) return rawget(t,"dflt") end)
setmetatableindex(symbols, function(t,k) return rawget(t,"dflt") end)
setmetatableindex(punctuation, function(t,k) return rawget(t,"dflt") end)
setmetatableindex(uppercase.latn, function(t,k) return rawget(t,"dflt") end)
setmetatableindex(uppercase.grek, function(t,k) return rawget(t,"dflt") end)
setmetatableindex(uppercase.cyrl, function(t,k) return rawget(t,"dflt") end)
setmetatableindex(lowercase.latn, function(t,k) return rawget(t,"dflt") end)
setmetatableindex(lowercase.grek, function(t,k) return rawget(t,"dflt") end)
setmetatableindex(lowercase.cyrl, function(t,k) return rawget(t,"dflt") end)
setmetatableindex(digits.dflt, function(t,k) return rawget(t,"dflt") end)
setmetatableindex(symbols.dflt, function(t,k) return rawget(t,"dflt") end)
setmetatableindex(punctuation.dflt, function(t,k) return rawget(t,"dflt") end)
local function typesettable(t,keys,synonyms,nesting,prefix)
if t then
if not prefix then
context.starttabulate { "|Tl|Tl|Tl|" }
end
for k, v in sortedhash(keys) do
if k == "synonyms" then
elseif type(v) ~= "table" then
context.NC()
if prefix then
context("%s.%s",prefix,k)
else
context(k)
end
context.NC()
local tk = t[k]
if v == "boolean" then
context(tostring(tk or false))
elseif not tk then
context("<unset>")
elseif v == "filename" then
context(file.basename(tk))
elseif v == "basepoints" then
context("%sbp",tk)
elseif v == "scaledpoints" then
context("%p",tk)
elseif v == "table" then
context("<table>")
else -- if v == "integerscale" then
context(tostring(tk))
end
context.NC()
local synonym = (not prefix and synonyms[k]) or (prefix and synonyms[format("%s.%s",prefix,k)])
if synonym then
context(format("(%s)",concat(synonym," ")))
end
context.NC()
context.NR()
elseif nesting == false then
context("<table>")
else -- true or nil
typesettable(t[k],v,synonyms,nesting,k)
end
end
if not prefix then
context.stoptabulate()
end
end
end
local function typeset(t,keys,nesting,prefix)
local synonyms = keys.synonyms or { }
local collected = { }
for k, v in next, synonyms do
local c = collected[v]
if not c then
c = { }
collected[v] = c
end
c[#c+1] = k
end
for k, v in next, collected do
table.sort(v)
end
typesettable(t,keys,collected,nesting,prefix)
end
tabletracers.typeset = typeset
function tabletracers.properties(nesting)
local tfmdata = fonts.hashes.identifiers[font.current()]
typeset(tfmdata.properties,fonts.constructors.keys.properties,nesting)
end
function tabletracers.parameters(nesting)
local tfmdata = fonts.hashes.identifiers[font.current()]
typeset(tfmdata.parameters,fonts.constructors.keys.parameters,nesting)
end
function tabletracers.positionalfeatures()
local tfmdata = fonts.hashes.identifiers[font.current()]
local resources = tfmdata.resources
if resources then
local features = resources.features
if features then
local gpos = features.gpos
if gpos and next(gpos) then
context.starttabulate { "|Tl|Tl|Tlp|" }
for feature, scripts in sortedhash(gpos) do
for script, languages in sortedhash(scripts) do
context.NC()
context(feature)
context.NC()
context(script)
context.NC()
context(concat(sortedkeys(languages)," "))
context.NC()
context.NR()
end
end
context.stoptabulate()
else
context("no entries")
context.par()
end
end
end
end
local dynamics = true
function tabletracers.substitutionfeatures()
local tfmdata = fonts.hashes.identifiers[font.current()]
local resources = tfmdata.resources
if resources then
local features = resources.features
if features then
local gsub = features.gsub
if gsub then
local makes_sense = { }
for feature, scripts in sortedhash(gsub) do
for script, languages in sortedhash(scripts) do
for language in sortedhash(languages) do
local tag = format("dummy-%s-%s-%s",feature,script,language)
local fnt = format("file:%s*%s",file.basename(tfmdata.properties.filename),tag)
context.definefontfeature (
{ tag },
{
mode = "node",
script = script,
language = language,
[feature] = "yes"
}
)
if not dynamics then
context.definefont( { fnt }, { fnt } )
end
makes_sense[#makes_sense+1] = {
feature = feature,
tag = tag,
script = script,
language = language,
fontname = fnt,
}
end
end
end
if #makes_sense > 0 then
context.starttabulate { "|Tl|Tl|Tl|p|" }
for i=1,#makes_sense do
local data = makes_sense[i]
local script = data.script
local language = data.language
context.NC()
context(data.feature)
context.NC()
context(script)
context.NC()
context(language)
context.NC()
if not dynamics then
context.startfont { data.fontname }
else
context.addff(data.tag)
end
context.verbatim(samples.lowercase [script][language]) context.par()
context.verbatim(samples.uppercase [script][language]) context.par()
context.verbatim(samples.digits [script][language]) context.par()
context.verbatim(samples.punctuation[script][language]) context.quad()
context.verbatim(samples.symbols [script][language])
if not dynamics then
context.stopfont()
end
context.NC()
context.NR()
end
context.stoptabulate()
else
context("no entries")
context.par()
end
end
end
end
end
function tabletracers.all(settings) -- not interfaced
if type(settings) == "string" then
settings = utilities.parsers.settings_to_hash(settings)
end
local title = settings and settings.title or ""
if title == "" then title = false end
if title then
context.starttitle { title = title }
end
context.startsubject { title = "Properties" }
tabletracers.properties()
context.stopsubject()
context.startsubject { title = "Parameters" }
tabletracers.parameters()
context.stopsubject()
context.startsubject { title = "Positional features" }
tabletracers.positionalfeatures()
context.stopsubject()
context.startsubject { title = "Substitution features" }
tabletracers.substitutionfeatures()
context.stopsubject()
if title then
context.stoptitle()
end
end
|