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
|
if not modules then modules = { } end modules ['font-oti'] = {
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 lower = string.lower
local fonts = fonts
local constructors = fonts.constructors
local otf = constructors.handlers.otf
local otffeatures = constructors.features.otf
local registerotffeature = otffeatures.register
local otftables = otf.tables or { }
otf.tables = otftables
local allocate = utilities.storage.allocate
registerotffeature {
name = "features",
description = "initialization of feature handler",
default = true,
}
-- these are later hooked into node and base initializaters
local function setmode(tfmdata,value)
if value then
tfmdata.properties.mode = lower(value)
end
end
otf.modeinitializer = setmode
local function setlanguage(tfmdata,value)
if value then
local cleanvalue = lower(value)
local languages = otftables and otftables.languages
local properties = tfmdata.properties
if not languages then
properties.language = cleanvalue
elseif languages[value] then
properties.language = cleanvalue
else
properties.language = "dflt"
end
end
end
local function setscript(tfmdata,value)
if value then
local cleanvalue = lower(value)
local scripts = otftables and otftables.scripts
local properties = tfmdata.properties
if not scripts then
properties.script = cleanvalue
elseif scripts[value] then
properties.script = cleanvalue
else
properties.script = "dflt"
end
end
end
registerotffeature {
name = "mode",
description = "mode",
initializers = {
base = setmode,
node = setmode,
}
}
registerotffeature {
name = "language",
description = "language",
initializers = {
base = setlanguage,
node = setlanguage,
}
}
registerotffeature {
name = "script",
description = "script",
initializers = {
base = setscript,
node = setscript,
}
}
-- here (as also in generic
otftables.featuretypes = allocate {
gpos_single = "position",
gpos_pair = "position",
gpos_cursive = "position",
gpos_mark2base = "position",
gpos_mark2ligature = "position",
gpos_mark2mark = "position",
gpos_context = "position",
gpos_contextchain = "position",
gsub_single = "substitution",
gsub_multiple = "substitution",
gsub_alternate = "substitution",
gsub_ligature = "substitution",
gsub_context = "substitution",
gsub_contextchain = "substitution",
gsub_reversecontextchain = "substitution",
gsub_reversesub = "substitution",
}
function otffeatures.checkeddefaultscript(featuretype,autoscript,scripts)
if featuretype == "position" then
local default = scripts.dflt
if default then
if autoscript == "position" or autoscript == true then
return default
else
report_otf("script feature %s not applied, enable default positioning")
end
else
-- no positioning at all
end
elseif featuretype == "substitution" then
local default = scripts.dflt
if default then
if autoscript == "substitution" or autoscript == true then
return default
end
end
end
end
function otffeatures.checkeddefaultlanguage(featuretype,autolanguage,languages)
if featuretype == "position" then
local default = languages.dflt
if default then
if autolanguage == "position" or autolanguage == true then
return default
else
report_otf("language feature %s not applied, enable default positioning")
end
else
-- no positioning at all
end
elseif featuretype == "substitution" then
local default = languages.dflt
if default then
if autolanguage == "substitution" or autolanguage == true then
return default
end
end
end
end
|