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
|
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 allocate = utilities.storage.allocate
local fonts = fonts
local otf = { }
fonts.handlers.otf = otf
local otffeatures = fonts.constructors.newfeatures("otf")
local registerotffeature = otffeatures.register
registerotffeature {
name = "features",
description = "initialization of feature handler",
default = true,
}
-- these are later hooked into node and base initializaters
local otftables = otf.tables -- not always defined
local function setmode(tfmdata,value)
if value then
tfmdata.properties.mode = lower(value)
end
end
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,
}
}
|