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
|
if not modules then modules = { } end modules ['font-hsh'] = {
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 setmetatableindex = table.setmetatableindex
local currentfont = font.current
local allocate = utilities.storage.allocate
local fonts = fonts
local hashes = fonts.hashes or allocate()
fonts.hashes = hashes
local identifiers = hashes.identifiers or allocate()
local characters = hashes.characters or allocate() -- chardata
local descriptions = hashes.descriptions or allocate()
local parameters = hashes.parameters or allocate()
local properties = hashes.properties or allocate()
local resources = hashes.resources or allocate()
local quads = hashes.quads or allocate() -- maybe also spacedata
local xheights = hashes.xheights or allocate()
local csnames = hashes.csnames or allocate() -- namedata
local marks = hashes.marks or allocate()
local italics = hashes.italics or allocate()
local lastmathids = hashes.lastmathids or allocate()
local dynamics = hashes.dynamics or allocate()
hashes.characters = characters
hashes.descriptions = descriptions
hashes.parameters = parameters
hashes.properties = properties
hashes.resources = resources
hashes.quads = quads hashes.emwidths = quads
hashes.xheights = xheights hashes.exheights = xheights
hashes.csnames = csnames
hashes.marks = marks
hashes.italics = italics
hashes.lastmathids = lastmathids
hashes.dynamics = dynamics
local nulldata = allocate {
name = "nullfont",
characters = { },
descriptions = { },
properties = { },
parameters = { -- lmromanregular @ 12pt
slant = 0, -- 1
space = 256377, -- 2
space_stretch = 128188, -- 3
space_shrink = 85459, -- 4
x_height = 338952, -- 5
quad = 786432, -- 6
extra_space = 85459, -- 7
},
}
fonts.nulldata = nulldata
fonts.constructors.enhanceparameters(nulldata.parameters) -- official copies for us
setmetatableindex(identifiers, function(t,k)
return k == true and identifiers[currentfont()] or nulldata
end)
setmetatableindex(characters, function(t,k)
if k == true then
return characters[currentfont()]
else
local characters = identifiers[k].characters
t[k] = characters
return characters
end
end)
setmetatableindex(descriptions, function(t,k)
if k == true then
return descriptions[currentfont()]
else
local descriptions = identifiers[k].descriptions
t[k] = descriptions
return descriptions
end
end)
setmetatableindex(parameters, function(t,k)
if k == true then
return parameters[currentfont()]
else
local parameters = identifiers[k].parameters
t[k] = parameters
return parameters
end
end)
setmetatableindex(properties, function(t,k)
if k == true then
return properties[currentfont()]
else
local properties = identifiers[k].properties
t[k] = properties
return properties
end
end)
setmetatableindex(resources, function(t,k)
if k == true then
return resources[currentfont()]
else
local shared = identifiers[k].shared
local rawdata = shared and shared.rawdata
local resources = rawdata and rawdata.resources
t[k] = resources or false -- better than resolving each time
return resources
end
end)
setmetatableindex(quads, function(t,k)
if k == true then
return quads[currentfont()]
else
local parameters = parameters[k]
local quad = parameters and parameters.quad or 0
t[k] = quad
return quad
end
end)
setmetatableindex(marks, function(t,k)
if k == true then
return marks[currentfont()]
else
local resources = identifiers[k].resources or { }
local marks = resources.marks or { }
t[k] = marks
return marks
end
end)
setmetatableindex(xheights, function(t,k)
if k == true then
return xheights[currentfont()]
else
local parameters = parameters[k]
local xheight = parameters and parameters.xheight or 0
t[k] = xheight
return xheight
end
end)
setmetatableindex(italics, function(t,k) -- is test !
if k == true then
return italics[currentfont()]
else
local properties = identifiers[k].properties
local hasitalics = properties and properties.hasitalics
if hasitalics then
hasitalics = characters[k] -- convenient return
else
hasitalics = false
end
t[k] = hasitalics
return hasitalics
end
end)
setmetatableindex(dynamics, function(t,k)
if k == true then
return dynamics[currentfont()]
else
local shared = identifiers[k].shared
local dynamics = shared and shared.dynamics or false
t[k] = dynamics
return dynamics
end
end)
function font.getfont(id)
return identifiers[id]
end
|