OSDN Git Service

32caa3fc1f564d4075d23e67314a67eba3531dd3
[luatex-ja/luatexja.git] / src / ltj-lotf_aux.lua
1 --
2 -- ltj-lotf_aux.lua
3 --
4
5 -- functions which access to caches by luaotfload gathered in this file.
6 -- lines with marked by "-- HARFLOAD" are codes for harfload
7 local aux = {}
8 luatexja.lotf_aux = aux
9
10 local font_metric_table = {}
11 aux.font_metric_table = font_metric_table
12
13 local getfont = font.getfont
14 local provides_feature = luaotfload.aux.provides_feature
15 function aux.exist_feature(id, name)
16   local t = getfont(id)
17   if t and t.properties then
18     return provides_feature(id, t.properties.script, t.properties.language, name)
19   else return false
20   end
21 end 
22
23 function aux.enable_feature(id, name)
24   local t = getfont(id)
25   if t and t.shared and t.shared.features then
26     t.shared.features[name] = true
27   elseif t and t.hb then -- HARF
28     local hb, tf = luaotfload.harfbuzz, t.hb.spec.hb_features
29     tf[#tf+1] = hb.Feature.new(name)
30   end
31 end
32 function aux.specified_feature(id, name)
33   local t = getfont(id)
34   return t and (t.shared and t.shared.features and t.shared.features[name])
35          or (t.hb and t.hb.spec and t.hb.spec.features.raw and t.hb.spec.features.raw[name]) -- HARF
36 end
37
38
39 do
40 local nulltable = {}
41 local function get_cidinfo(id) -- table
42   local t = getfont(id)
43   local a = t and (t.cidinfo or (t.resources and t.resources and t.resources.cidinfo)) or nulltable
44   return a
45 end
46 aux.get_cidinfo = get_cidinfo
47 end
48
49 local function get_asc_des(id)
50   local t, v = getfont(id), font_metric_table[id]
51   local a, d
52   if t and t.shared and t.shared.rawdata then
53     local u = t.units
54     local t2 = t.shared.rawdata.metadata
55     if t2 then
56       a, d = t2.ascender and t2.ascender/u, t2.descender and -t2.descender/u
57     end
58   elseif t.hb then -- HARF
59     local hbfont, u = t.hb.shared.font, t.hb.shared.upem
60     local h = hbfont:get_h_extents()
61     if h and u then 
62        a, d = h.ascender and h.ascender/u, h.descender and -h.descender/u
63     end
64   end
65   v.ascender, v.descender =  (a or 0.88)*t.size, (d or 0.12)*t.size
66 end
67 local function get_ascender(id) -- scaled points
68   if not font_metric_table[id].ascender then get_asc_des(id) end
69   return font_metric_table[id].ascender
70 end
71
72 local function get_descender(id) -- scaled points
73   if not font_metric_table[id].descender then get_asc_des(id) end
74   return font_metric_table[id].descender
75 end
76 aux.get_ascender, aux.get_descender = get_ascender, get_descender
77
78 do
79 local dummy_vht, dummy_vorg = {}, {}
80 setmetatable(dummy_vht, {__index = function () return 1 end } )
81 setmetatable(dummy_vorg, {__index = function () return 0.88 end } )
82 local function get_vmet_table(tfmdata, dest)
83    if (not tfmdata) or (not tfmdata.shared) or (not tfmdata.shared.rawdata) then
84      dest = dest or {}
85      dest.vorigin, dest.vheight = dummy_vorg, dummy_vht
86      return dest
87    end
88    local rawdata = tfmdata.shared.rawdata
89    local ascender = rawdata.metadata.ascender or 0
90    local default_vheight 
91      = rawdata.metadata.defaultvheight
92        or (rawdata.metadata.descender and (ascender+rawdata.metadata.descender) or units)
93    local units = tfmdata.units
94    local t_vorigin, t_vheight, t_ind_to_uni = {}, {}, {}
95    for i,v in pairs(rawdata.descriptions) do
96      t_ind_to_uni[v.index] = i
97      if v.tsb then
98        local j = v.boundingbox[4] + v.tsb
99        if j~=ascender then t_vorigin[i]= j / units end
100      end
101      if v.vheight then
102        if v.vheight~=default_vheight then t_vheight[i] = v.vheight / units end
103      end
104    end
105    setmetatable(t_vheight, {__index = function () return default_vheight / units end } )
106    setmetatable(t_vorigin, {__index = function () return ascender / units end } )
107    dest = dest or {}
108    dest.ind_to_uni = t_ind_to_uni
109    dest.vorigin = t_vorigin -- designed size = 1.0
110    dest.vheight = t_vheight -- designed size = 1.0
111    return dest
112 end
113 aux.get_vmet_table = get_vmet_table
114 end
115 local function loop_over_duplicates(id, func)
116 -- func: return non-nil iff abort this fn
117   local t = (type(id)=="table") and id or getfont(id)
118   if t and t.resources and t.resources.duplicates then -- HARF: not executed
119     for i,v in pairs(t.resources.duplicates) do
120       func(i,v)
121     end
122   end
123 end
124 aux.loop_over_duplicates = loop_over_duplicates
125
126 local function loop_over_feat(id, feature_name, func, universal)
127 -- feature_name: like { vert=true, vrt2 = true, ...}
128 -- func: return non-nil iff abort this fn
129 -- universal: true iff look up all (script, lang) pair
130   local t = (type(id)=="table") and id or getfont(id)
131   if t and t.resources and t.resources.sequences then -- HARF: not executed
132     for _,i in pairs(t.resources.sequences) do
133       if i.order[1] and feature_name[i.order[1]] then
134         local f = i.features and i.features[i.order[1]]
135         if i.type == 'gsub_single' and i.steps 
136           and f and (universal or (f[t.properties.script] and f[t.properties.script][t.properties.language])) then
137           for _,j in pairs(i.steps) do
138             if type(j)=='table' then 
139               if type(j.coverage)=='table' then
140                 for i,k in pairs(j.coverage) do
141                   local s = func(i,k); if s then return s end
142                 end
143               end
144             end
145           end
146         end
147       end
148     end
149   end
150 end
151 aux.loop_over_feat = loop_over_feat
152
153 local vert_vrt2 = { vert=true, vrt2=true }
154 function aux.replace_vert_variant(id, c)
155   return loop_over_feat(id, vert_vrt2, 
156            function (i,k) if i==c then return k end end)
157          or c
158 end
159
160
161 --for name, func in pairs(aux) do
162 --  if type(func)=="function" then 
163 --    aux[name] = function(...)
164 --      print('LOTF_AUX', name, ...);
165 --      local a = func(...); print('RESULT', a); return a
166 --    end
167 --  end
168 --end
169
170 local search
171 search = function (t, key, prefix)
172   if type(t)=="table" then
173     prefix = prefix or ''
174     for i,v in pairs(t) do 
175       if i==key then print(prefix..'.'..i, v) 
176       else  search(v,key,prefix..'.'..tostring(i)) end
177     end
178   end
179 end
180 aux.t_search = search
181
182
183
184 -- EOF