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
|
if not modules then modules = { } end modules ['font-enh'] = {
version = 1.001,
comment = "companion to font-ini.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local next = next
local trace_defining = false trackers.register("fonts.defining", function(v) trace_defining = v end)
local report_defining = logs.reporter("fonts","defining")
local fonts = fonts
local constructors = fonts.constructors
local tfmfeatures = constructors.newfeatures("tfm")
local registertfmfeature = tfmfeatures.register
local afmfeatures = fonts.constructors.newfeatures("afm")
local registerafmfeature = afmfeatures.register
local otffeatures = fonts.constructors.newfeatures("otf")
local registerotffeature = otffeatures.register
-- -- these will become goodies (when needed at all)
--
-- local fontencodings = fonts.encodings
-- fontencodings.remappings = fontencodings.remappings or { }
--
-- local function reencode(tfmdata,encoding)
-- if encoding and fontencodings.known[encoding] then
-- local data = fontencodings.load(encoding)
-- if data then
-- tfmdata.properties.encoding = encoding
-- local characters = tfmdata.characters
-- local original = { }
-- local vector = data.vector
-- for unicode, character in next, characters do
-- character.name = vector[unicode]
-- character.index = unicode, character
-- original[unicode] = character
-- end
-- for newcode, oldcode in next, data.unicodes do
-- if newcode ~= oldcode then
-- if trace_defining then
-- report_defining("reencoding U+%05X to U+%05X",oldcode,newcode)
-- end
-- characters[newcode] = original[oldcode]
-- end
-- end
-- end
-- end
-- end
--
-- registertfmfeature {
-- name = "reencode",
-- description = "reencode",
-- manipulators = {
-- base = reencode,
-- node = reencode,
-- }
-- }
--
-- local function remap(tfmdata,remapping)
-- local vector = remapping and fontencodings.remappings[remapping]
-- if vector then
-- local characters, original = tfmdata.characters, { }
-- for k, v in next, characters do
-- original[k], characters[k] = v, nil
-- end
-- for k,v in next, vector do
-- if k ~= v then
-- if trace_defining then
-- report_defining("remapping U+%05X to U+%05X",k,v)
-- end
-- local c = original[k]
-- characters[v] = c
-- c.index = k
-- end
-- end
-- local properties = tfmdata.properties
-- if not properties then
-- properties = { }
-- tfmdata.properties = properties
-- else
-- properties.encodingbytes = 2
-- properties.format = properties.format or 'type1'
-- end
-- end
-- end
--
-- registertfmfeature {
-- name = "remap",
-- description = "remap",
-- manipulators = {
-- base = remap,
-- node = remap,
-- }
-- }
-- \definefontfeature[dingbats][goodies=dingbats,unicoding=yes]
-- we only add and don't replace
-- we could also add kerns but we asssume symbols
-- todo: complain if not basemode
-- remapping = {
-- tounicode = true,
-- unicodes = {
-- a1 = 0x2701,
local tosixteen = fonts.mappings.tounicode16
local function initializeunicoding(tfmdata)
local goodies = tfmdata.goodies
local newcoding = nil
local tounicode = false
for i=1,#goodies do
local remapping = goodies[i].remapping
if remapping and remapping.unicodes then
newcoding = remapping.unicodes -- names to unicodes
tounicode = remapping.tounicode
end
end
if newcoding then
local characters = tfmdata.characters
local descriptions = tfmdata.descriptions
local oldcoding = tfmdata.resources.unicodes
local tounicodes = tfmdata.resources.tounicode -- index to unicode
local originals = { }
for name, newcode in next, newcoding do
local oldcode = oldcoding[name]
if characters[newcode] and not originals[newcode] then
originals[newcode] = {
character = characters [newcode],
description = descriptions[newcode],
}
end
local original = originals[oldcode]
if original then
characters [newcode] = original.character
descriptions[newcode] = original.description
else
characters [newcode] = characters [oldcode]
descriptions[newcode] = descriptions[oldcode]
end
if tounicode then
local index = descriptions[newcode].index
if not tounicodes[index] then
tounicodes[index] = tosixteen(newcode) -- shared (we could have a metatable)
end
end
if trace_defining then
report_defining("aliasing glyph '%s' from U+%05X to U+%05X",name,oldcode,newcode)
end
end
end
end
registerafmfeature {
name = "unicoding",
description = "adapt unicode table",
initializers = {
base = initializeunicoding,
node = initializeunicoding,
}
}
registerotffeature {
name = "unicoding",
description = "adapt unicode table",
initializers = {
base = initializeunicoding,
node = initializeunicoding,
}
}
|