OSDN Git Service

ltj-pretreat.lua: removed debug print()
[luatex-ja/luatexja.git] / src / ltj-jfont.lua
1 --
2 -- luatexja/jfont.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.jfont',
6   date = '2017/08/09',
7   description = 'Loader for Japanese fonts',
8 })
9 module('luatexja.jfont', package.seeall)
10
11 luatexja.load_module('base');      local ltjb = luatexja.base
12 luatexja.load_module('charrange'); local ltjc = luatexja.charrange
13 luatexja.load_module('rmlgbm');    local ltjr = luatexja.rmlgbm
14 luatexja.load_module('direction'); local ltjd = luatexja.direction
15
16 local setfield = node.direct.setfield
17 local getid = node.direct.getid
18 local to_direct = node.direct.todirect
19
20 local node_new = node.direct.new
21 local node_free = node.direct.free
22 local has_attr = node.direct.has_attribute
23 local set_attr = node.direct.set_attribute
24 local round = tex.round
25 local font_getfont = font.getfont
26
27 local attr_icflag = luatexbase.attributes['ltj@icflag']
28 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
29 local attr_curtfnt = luatexbase.attributes['ltj@curtfnt']
30 local id_glyph = node.id('glyph')
31 local id_kern = node.id('kern')
32 local cat_lp = luatexbase.catcodetables['latex-package']
33 local FROM_JFM     = luatexja.icflag_table.FROM_JFM
34 ------------------------------------------------------------------------
35 -- LOADING JFM
36 ------------------------------------------------------------------------
37
38 metrics={} -- this table stores all metric informations
39 font_metric_table={} -- [font number] -> jfm_name, jfm_var, size
40
41 luatexbase.create_callback("luatexja.load_jfm", "data", function (ft, jn) return ft end)
42
43 local jfm_file_name, jfm_var, jfm_ksp
44 local defjfm_res
45 local jfm_dir, is_def_jfont, is_vert_enabled, auto_enable_vrt2
46
47 local function norm_val(a)
48    if (not a) or (a==0.) then
49       return nil
50    elseif a==true then
51       return 1
52    else
53       return a
54    end
55 end
56
57 function define_jfm(t)
58    local real_char -- Does current character class have the 'real' character?
59    if t.dir~=jfm_dir then
60       defjfm_res= nil; return
61    elseif type(t.zw)~='number' or type(t.zh)~='number' then
62       defjfm_res= nil; return
63    end
64    t.version = (type(t.version)=='number') and t.version or 1
65    t.char_type = {}; t.chars = {}
66    for i,v in pairs(t) do
67       if type(i) == 'number' then -- char_type
68          if not v.chars then
69             if i ~= 0 then defjfm_res= nil; return  end
70          else
71             for j,w in pairs(v.chars) do
72                if type(w) == 'number' and w~=-1 then
73                elseif type(w) == 'string' and utf.len(w)==1 then
74                   w = utf.byte(w)
75                elseif type(w) == 'string' and utf.len(w)==2 and utf.sub(w,2) == '*' then
76                   w = utf.byte(utf.sub(w,1,1))
77                end
78                if not t.chars[w] then
79                   t.chars[w] = i
80                else
81                   defjfm_res= nil; return
82                end
83             end
84             v.chars = nil
85          end
86          if type(v.align)~='string' then
87             v.align = 'left' -- left
88          end
89          if type(v.width)~='number' then
90             v.width = nil
91          end
92          if type(v.height)~='number' then
93             v.height = (jfm_dir=='tate') and  0.0
94          end
95          if type(v.depth)~='number' then
96             v.depth =  (jfm_dir=='tate') and  0.0
97          end
98          if type(v.italic)~='number' then
99             v.italic = 0.0
100          end
101          if type(v.left)~='number' then
102             v.left = 0.0
103          end
104          if type(v.down)~='number' then
105             v.down = 0.0
106          end
107          if t.version>=2 then
108             if v.end_stretch then defjfm_res= nil; return end
109             if v.end_shrink  then defjfm_res= nil; return end
110             if v.end_adjust then
111                if type(v.end_adjust)~='table' then
112                   v.end_adjust = nil
113                elseif #(v.end_adjust)==0 then
114                   v.end_adjust = nil
115                else 
116                   table.sort(v.end_adjust)
117                end
118             end
119          else
120             v.end_adjust = nil
121             if v.end_stretch and v.end_stretch~=0.0 then 
122                v.end_adjust = (v.end_adjust or {}) 
123                v.end_adjust[#(v.end_adjust)+1] = v.end_stretch
124             end
125             if v.end_shrink and v.end_ahrink~=0.0 then 
126                v.end_adjust = (v.end_adjust or {}) 
127                v.end_adjust[#(v.end_adjust)+1] = -v.end_shrink
128             end
129             if v.end_adjust then v.end_adjust[#(v.end_adjust)+1] = 0.0 end
130          end
131          v.kern = v.kern or {}; v.glue = v.glue or {}
132          for j,x in pairs(v.glue) do
133             if v.kern[j] then defjfm_res= nil; return end
134             x.ratio, x[5] = (x.ratio or (x[5] and 0.5*(1+x[5]) or 0.5)), nil
135             do
136                local xp
137                xp, x[4] = (x.priority or x[4]), nil
138                if type(xp)=='table' and t.version>=2 then
139                   if type(xp[1])~='number' or xp[1]<-4 or xp[1]>3 then defjfm_res=nil end  -- stretch
140                   if type(xp[2])~='number' or xp[2]<-4 or xp[2]>3 then defjfm_res=nil end  -- shrink
141                   xp = (xp[1]+4)*8+(xp[2]+4)
142                elseif xp and type(xp)~='number' then
143                   defjfm_res = nil
144                else
145                   xp = (xp or 0)*9+36   
146                   if xp<0 or xp>=64 then defjfm_res=nil end 
147                end
148                x.priority = xp
149             end
150             x.kanjiskip_natural = norm_val(x.kanjiskip_natural)
151             x.kanjiskip_stretch = norm_val(x.kanjiskip_stretch)
152             x.kanjiskip_shrink = norm_val(x.kanjiskip_shrink)
153          end
154          for j,x in pairs(v.kern) do
155             if type(x)=='number' then
156                v.kern[j] = {x, 0.5}
157             elseif type(x)=='table' then
158                v.kern[j] = { x[1], (x.ratio or (x[2] and 0.5*(1+x[2]) or 0.5)) }
159             end
160          end
161          t.char_type[i] = v
162          t[i] = nil
163       end
164    end
165    if t.version<3 then
166       -- In version 3, 'jcharbdd' is divided into 
167       -- 'alchar': ALchar (or math boundary) 
168       -- 'nox_alchar': ALchar (or math boundary), where xkanjiskip won't inserted
169       -- 'glue': glue/kern, 'jcharbdd': other cases (和文B, rule, ...)
170       t.chars.alchar = t.chars.jcharbdd
171       t.chars.nox_alchar = t.chars.jcharbdd
172       t.chars.glue = t.chars.jcharbdd
173    end
174    t = luatexbase.call_callback("luatexja.load_jfm", t, jfm_file_name)
175    t.size_cache = {}
176    defjfm_res = t
177 end
178
179 local update_jfm_cache
180 do
181    local function mult_table(old,scale) -- modified from table.fastcopy
182       if old then
183          local new = { }
184          for k,v in next, old do
185             if type(v) == "table" then
186                new[k] = mult_table(v,scale)
187             elseif type(v) == "number" then
188                new[k] = round(v*scale)
189             else
190                new[k] = v
191             end
192          end
193          return new
194       else return nil end
195    end
196    update_jfm_cache = function (j,sz)
197       if metrics[j].size_cache[sz] then return end
198       local t = {}
199       metrics[j].size_cache[sz] = t
200       t.chars = metrics[j].chars
201       t.char_type = mult_table(metrics[j].char_type, sz)
202       for i,v in pairs(t.char_type) do
203          v.align = (v.align=='left') and 0 or
204             ((v.align=='right') and 1 or 0.5)
205          if type(i) == 'number' then -- char_type
206             for k,w in pairs(v.glue) do
207                v[k] = {
208                   nil,
209                   ratio=w.ratio/sz,
210                   priority=FROM_JFM + w.priority/sz,
211                   width = w[1], stretch = w[2], shrink = w[3],
212                   kanjiskip_natural = w.kanjiskip_natural and w.kanjiskip_natural/sz,
213                   kanjiskip_stretch = w.kanjiskip_stretch and w.kanjiskip_stretch/sz,
214                   kanjiskip_shrink =  w.kanjiskip_shrink  and w.kanjiskip_shrink/sz,
215                }
216             end
217             for k,w in pairs(v.kern) do
218                local g = node_new(id_kern, 1)
219                setfield(g, 'kern', w[1])
220                set_attr(g, attr_icflag, FROM_JFM)
221                v[k] = {g, ratio=w[2]/sz}
222             end
223          end
224          v.glue, v.kern = nil, nil
225       end
226       t.kanjiskip = mult_table(metrics[j].kanjiskip, sz)
227       t.xkanjiskip = mult_table(metrics[j].xkanjiskip,sz)
228       t.zw = round(metrics[j].zw*sz)
229       t.zh = round(metrics[j].zh*sz)
230       t.size = sz
231    end
232 end
233
234 luatexbase.create_callback("luatexja.find_char_class", "data",
235                            function (arg, fmtable, char)
236                               return 0
237                            end)
238 do
239    local start_time_measure = ltjb.start_time_measure
240    local stop_time_measure = ltjb.stop_time_measure
241    local fcc_temp = { chars_cbcache = {} }
242    setmetatable(
243       fcc_temp.chars_cbcache,
244       {
245          __index = function () return 0 end,
246       })
247    function find_char_class(c,m)
248       -- c: character code, m:
249       local r = (m or fcc_temp).chars_cbcache[c]
250       if not r then
251          r = m.chars[c] or
252             luatexbase.call_callback("luatexja.find_char_class", 0, m, c)
253          m.chars_cbcache[c or 0] = r
254       end
255       return r
256    end
257 end
258
259
260 ------------------------------------------------------------------------
261 -- LOADING JAPANESE FONTS
262 ------------------------------------------------------------------------
263
264 do
265    local cstemp
266    local global_flag -- true if \globaljfont, false if \jfont
267    local function load_jfont_metric()
268       if jfm_file_name=='' then
269          ltjb.package_error('luatexja',
270                             'no JFM specified',
271                             'To load and define a Japanese font, a JFM must be specified.'..
272                             "The JFM 'ujis' will be  used for now.")
273          jfm_file_name='ujis'
274       end
275       for j,v in ipairs(metrics) do
276          if v.name==jfm_file_name then return j end
277       end
278       luatexja.load_lua('jfm-' .. jfm_file_name .. '.lua')
279       if defjfm_res then
280          defjfm_res.name = jfm_file_name
281          table.insert(metrics, defjfm_res)
282          return #metrics
283       else
284          return nil
285       end
286    end
287
288 -- EXT
289    local utf8 = unicode.utf8
290    function jfontdefX(g, dir, csname)
291       jfm_dir, is_def_jfont = dir, true
292       cstemp = csname:sub( (utf8.byte(csname,1,1) == tex.escapechar) and 2 or 1, -1)
293       cstemp = cstemp:sub(1, ((cstemp:sub(-1,-1)==' ') and (cstemp:len()>=2)) and -2 or -1)
294       global_flag = g and '\\global' or ''
295       tex.sprint(cat_lp, '\\expandafter\\font\\csname ',
296                  (cstemp==' ') and '\\space' or cstemp, '\\endcsname')
297    end
298
299    luatexbase.create_callback("luatexja.define_jfont", "data", function (ft, fn) return ft end)
300
301 -- EXT
302    local identifiers = fonts.hashes.identifiers
303    local provides_feature = luaotfload.aux.provides_feature
304    function jfontdefY()
305       local j = load_jfont_metric(jfm_dir)
306       local fn = font.id(cstemp)
307       local f = font_getfont(fn)
308       if not j then
309          ltjb.package_error('luatexja',
310                             "bad JFM `" .. jfm_file_name .. "'",
311                             'The JFM file you specified is not valid JFM file.\n'..
312                                'So defining Japanese font is cancelled.')
313          tex.sprint(cat_lp, global_flag, '\\expandafter\\let\\csname ',
314                     (cstemp==' ') and '\\space' or cstemp,
315                        '\\endcsname=\\relax')
316          return
317       end
318       if not f then return end
319       update_jfm_cache(j, f.size)
320       local ad = identifiers[fn].parameters
321       local sz = metrics[j].size_cache[f.size]
322       local fmtable = { jfm = j, size = f.size, var = jfm_var,
323                         with_kanjiskip = jfm_ksp,
324                         zw = sz.zw, zh = sz.zh,
325                         ascent = ad.ascender,
326                         descent = ad.descender,
327                         chars = sz.chars, char_type = sz.char_type,
328                         kanjiskip = sz.kanjiskip, xkanjiskip = sz.xkanjiskip,
329                         chars_cbcache = {},
330                         vert_activated = is_vert_enabled,
331       }
332       if auto_enable_vrt2 then
333          local t = identifiers[fn]
334          local lang, scr = t.properties.language, t.properties.script
335          local vrt2_exist = provides_feature(
336            fn, t.properties.script, t.properties.language, 'vrt2'
337          )
338          t.shared.features[vrt2_exist and 'vrt2' or 'vert'] = true
339       end
340
341       fmtable = luatexbase.call_callback("luatexja.define_jfont", fmtable, fn)
342       font_metric_table[fn]=fmtable
343       tex.sprint(cat_lp, global_flag, '\\protected\\expandafter\\def\\csname ',
344                     (cstemp==' ') and '\\space' or cstemp, '\\endcsname{\\ltj@cur'..
345                     (jfm_dir == 'yoko' and 'j' or 't') .. 'fnt', fn, '\\relax}')
346       jfm_file_name = nil
347    end
348 end
349
350 do
351    local get_dir_count = ltjd.get_dir_count
352    local dir_tate = luatexja.dir_table.dir_tate
353    local tex_get_attr = tex.getattribute
354    -- PUBLIC function
355    function get_zw()
356       local a = font_metric_table[
357          tex_get_attr((get_dir_count()==dir_tate) and attr_curtfnt or attr_curjfnt)]
358       return a and a.zw or 0
359    end
360    function get_zh()
361       local a = font_metric_table[
362          tex_get_attr((get_dir_count()==dir_tate) and attr_curtfnt or attr_curjfnt)]
363       return a and a.zw or 0
364    end
365 end
366
367 do
368    -- extract jfm_file_name and jfm_var
369    -- normalize position of 'jfm=' and 'jfmvar=' keys
370    local function extract_metric(name)
371       local is_braced = name:match('^{(.*)}$')
372       name= is_braced or name
373       jfm_file_name = ''; jfm_var = ''; jfm_ksp = true
374       local tmp, index = name:sub(1, 5), 1
375       if tmp == 'file:' or tmp == 'name:' or tmp == 'psft:' then
376          index = 6
377       end
378       local p = name:find(":", index); index = p and (p+1) or index
379       while index do
380          local l = name:len()+1
381          local q = name:find(";", index+1) or l
382          if name:sub(index, index+3)=='jfm=' and q>index+4 then
383             jfm_file_name = name:sub(index+4, q-1)
384             if l~=q then
385                name = name:sub(1,index-1) .. name:sub(q+1)
386             else
387                name = name:sub(1,index-1)
388                index = nil
389             end
390          elseif name:sub(index, index+6)=='jfmvar=' and q>index+6 then
391             jfm_var = name:sub(index+7, q-1)
392             if l~=q then
393                name = name:sub(1,index-1) .. name:sub(q+1)
394             else
395                name = name:sub(1,index-1)
396                index = nil
397             end
398          else
399             index = (l~=q) and (q+1) or nil
400          end
401       end
402       if jfm_file_name~='' then
403          local l = name:sub(-1)
404          name = name
405             .. ((l==':' or l==';') and '' or ';')
406             .. 'jfm=' .. jfm_file_name
407          if jfm_var~='' then
408             name = name .. 'jfmvar=' .. jfm_var
409          end
410       end
411       for x in string.gmatch (name, "[:;]([+%%-]?)ltjks") do
412          jfm_ksp = not (x=='-')
413       end
414       if jfm_dir == 'tate' then
415          is_vert_enabled = (not name:match('[:;]%-vert')) and (not  name:match('[:;]%-vrt2'))
416          auto_enable_vrt2 = (not name:match('vert') and not name:match('vrt2'))
417       else
418          is_vert_enabled, auto_enable_vrt2 = nil, nil
419       end
420       return is_braced and ('{' .. name .. '}') or name
421    end
422
423    -- define_font callback
424    local otfl_fdr
425    local ltjr_font_callback = ltjr.font_callback
426    function luatexja.font_callback(name, size, id)
427       local new_name = is_def_jfont and extract_metric(name) or name
428       is_def_jfont = false
429       local res =  ltjr_font_callback(new_name, size, id, otfl_fdr)
430       luatexbase.call_callback('luatexja.define_font', res, new_name, size, id)
431       -- this callback processes variation selector, so we execute it always
432       return res
433    end
434    luatexbase.create_callback('luatexja.define_font', 'simple', function (n) return n end)
435    otfl_fdr= luatexbase.remove_from_callback('define_font', 'luaotfload.define_font')
436    luatexbase.add_to_callback('define_font',luatexja.font_callback,"luatexja.font_callback", 1)
437 end
438
439 ------------------------------------------------------------------------
440 -- LATEX INTERFACE
441 ------------------------------------------------------------------------
442 do
443    -- these function are called from ltj-latex.sty
444    local fenc_list, kyenc_list, ktenc_list = {}, {}, {}
445    function add_fenc_list(enc) fenc_list[enc] = 'true ' end
446    function add_kyenc_list(enc) kyenc_list[enc] = 'true ' end
447    function add_ktenc_list(enc) ktenc_list[enc] = 'true ' end
448    function is_kyenc(enc)
449       tex.sprint(cat_lp, '\\let\\ifin@\\if' .. (kyenc_list[enc] or 'false '))
450    end
451    function is_ktenc(enc)
452       tex.sprint(cat_lp, '\\let\\ifin@\\if' .. (ktenc_list[enc] or 'false '))
453    end
454    function is_kenc(enc)
455       tex.sprint(cat_lp, '\\let\\ifin@\\if'
456                  .. (kyenc_list[enc] or ktenc_list[enc] or 'false '))
457    end
458
459    local kfam_list, Nkfam_list = {}, {}
460    function add_kfam(fam)
461       kfam_list[fam]=true
462    end
463    function search_kfam(fam, use_fd)
464       if kfam_list[fam] then
465          tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
466       elseif Nkfam_list[fam] then
467          tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
468       elseif use_fd then
469          for i,_ in pairs(kyenc_list) do
470             if kpse.find_file(string.lower(i)..fam..'.fd') then
471                tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
472             end
473          end
474          for i,_ in pairs(ktenc_list) do
475             if kpse.find_file(string.lower(i)..fam..'.fd') then
476                tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
477             end
478          end
479          Nkfam_list[fam]=true; tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
480       else
481          tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
482       end
483    end
484    local ffam_list, Nffam_list = {}, {}
485    function is_ffam(fam)
486       tex.sprint(cat_lp, '\\let\\ifin@\\if' .. (ffam_list[fam] or 'false '))
487    end
488    function add_ffam(fam)
489       ffam_list[fam]='true '
490    end
491    function search_ffam_declared()
492      local s = ''
493      for i,_ in pairs(fenc_list) do
494         s = s .. '\\cdp@elt{' .. i .. '}'
495      end
496      tex.sprint(cat_lp, s)
497    end
498    function search_ffam_fd(fam)
499       if Nffam_list[fam] then
500          tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
501       else
502          for i,_ in pairs(fenc_list) do
503             if kpse.find_file(string.lower(i)..fam..'.fd') then
504                tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
505             end
506          end
507          Nffam_list[fam]=true; tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
508       end
509    end
510
511 end
512 ------------------------------------------------------------------------
513 -- ALTERNATE FONTS
514 ------------------------------------------------------------------------
515 alt_font_table = {}
516 local alt_font_table = alt_font_table
517 local attr_curaltfnt = {}
518 local ucs_out = 0x110000
519
520 ------ for TeX interface
521 -- EXT
522 function set_alt_font(b,e,ind,bfnt)
523    -- ind: 新フォント, bfnt: 基底フォント
524    if b>e then b, e = e, b end
525    if b*e<=0 then
526       ltjb.package_error('luatexja',
527                         'bad character range ([' .. b .. ',' .. e .. ']). ' ..
528                            'I take the intersection with [0x80, 0x10ffff].')
529       b, e = math.max(0x80,b),math.min(ucs_out-1,e)
530    elseif e<0 then -- b<e<0
531       -- do nothing
532    elseif b<0x80 or e>=ucs_out then
533       ltjb.package_warning('luatexja',
534                            'bad character range ([' .. b .. ',' .. e .. ']). ' ..
535                               'I take the intersection with [0x80, 0x10ffff].')
536       b, e = math.max(0x80,b), math.min(ucs_out-1,e)
537    end
538    if not alt_font_table[bfnt] then alt_font_table[bfnt]={} end
539    local t = alt_font_table[bfnt]
540    local ac = font_getfont(ind).characters
541    if bfnt==ind then ind = nil end -- ind == bfnt の場合はテーブルから削除
542    if e>=0 then -- character range
543       for i=b, e do
544          if ac[i]then  t[i]=ind end
545       end
546    else
547       b, e = -e, -b
548       local tx = font_metric_table[bfnt].chars
549       for i,v in pairs(tx) do
550          if b<=v and v<=e and ac[i] then t[i]=ind end
551       end
552    end
553 end
554
555 -- EXT
556 function clear_alt_font(bfnt)
557    if alt_font_table[bfnt] then
558       local t = alt_font_table[bfnt]
559       for i,_ in pairs(t) do t[i]=nil; end
560    end
561 end
562
563 ------ used in ltjp.suppress_hyphenate_ja callback
564 function replace_altfont(pf, pc)
565    local a = alt_font_table[pf]
566    return a and a[pc] or pf
567 end
568
569 ------ for LaTeX interface
570
571 local alt_font_table_latex = {}
572
573 -- EXT
574 function clear_alt_font_latex(bbase)
575    local t = alt_font_table_latex[bbase]
576    if t then
577       for j,v in pairs(t) do t[j] = nil end
578    end
579 end
580
581 -- EXT
582 function set_alt_font_latex(b,e,ind,bbase)
583    -- ind: Alt font の enc/fam/ser/shape, bbase: 基底フォントの enc/fam/ser/shape
584    if b>e then b, e = e, b end
585    if b*e<=0 then
586       ltjb.package_error('luatexja',
587                         'bad character range ([' .. b .. ',' .. e .. ']). ' ..
588                            'I take the intersection with [0x80, 0x10ffff].')
589       b, e = math.max(0x80,b),math.min(ucs_out-1,e)
590    elseif e<0 then -- b<e<0
591       -- do nothing
592    elseif b<0x80 or e>=ucs_out then
593       ltjb.package_warning('luatexja',
594                            'bad character range ([' .. b .. ',' .. e .. ']). ' ..
595                               'I take the intersection with [0x80, 0x10ffff].')
596       b, e = math.max(0x80,b), math.min(ucs_out-1,e)
597    end
598
599    if not alt_font_table_latex[bbase] then alt_font_table_latex[bbase]={} end
600    local t = alt_font_table_latex[bbase]
601    if not t[ind] then t[ind] = {} end
602    for i=b, e do
603       for j,v in pairs(t) do
604          if v[i] then -- remove old entry
605             if j~=ind then v[i]=nil end; break
606          end
607       end
608       t[ind][i]=true
609    end
610    -- remove the empty tables
611    for j,v in pairs(t) do
612       local flag_clear = true
613       for k,_ in pairs(v) do flag_clear = false; break end
614       if flag_clear then t[j]=nil end
615    end
616    if ind==bbase  then t[bbase] = nil end
617 end
618
619 -- ここから先は 新 \selectfont の内部でしか実行されない
620 do
621    local alt_font_base, alt_font_base_num
622    local aftl_base
623    -- EXT
624    function does_alt_set(bbase)
625       aftl_base = alt_font_table_latex[bbase]
626       tex.sprint(cat_lp, '\\if' .. (aftl_base and 'true' or 'false'))
627    end
628    -- EXT
629    function print_aftl_address()
630       tex.sprint(cat_lp, ';ltjaltfont' .. tostring(aftl_base):sub(8))
631    end
632
633 -- EXT
634    function output_alt_font_cmd(dir, bbase)
635       alt_font_base = bbase
636       if dir == 't' then
637          alt_font_base_num = tex.getattribute(attr_curtfnt)
638       else
639          alt_font_base_num = tex.getattribute(attr_curjfnt)
640       end
641       local t = alt_font_table[alt_font_base_num]
642       if t then
643          for i,_ in pairs(t) do t[i]=nil end
644       end
645       t = alt_font_table_latex[bbase]
646       if t then
647        for i,_ in pairs(t) do
648             tex.sprint(cat_lp, '\\ltj@pickup@altfont@aux' .. dir .. '{' .. i .. '}')
649          end
650       end
651    end
652
653 -- EXT
654    function pickup_alt_font_a(size_str)
655       local t = alt_font_table_latex[alt_font_base]
656       if t then
657          for i,v in pairs(t) do
658             tex.sprint(cat_lp, '\\expandafter\\ltj@pickup@altfont@copy'
659                           .. '\\csname ' .. i .. '/' .. size_str .. '\\endcsname{' .. i .. '}')
660          end
661       end
662    end
663
664    local function pickup_alt_font_class(class, afnt_num, afnt_chars)
665       local t  = alt_font_table[alt_font_base_num]
666       local tx = font_metric_table[alt_font_base_num].chars
667       for i,v in pairs(tx) do
668          if v==class and afnt_chars[i] then t[i]=afnt_num end
669       end
670    end
671
672 -- EXT
673    function pickup_alt_font_b(afnt_num, afnt_base)
674       local t = alt_font_table[alt_font_base_num]
675       local ac = font_getfont(afnt_num).characters
676       if not t then t = {}; alt_font_table[alt_font_base_num] = t end
677       for i,v in pairs(alt_font_table_latex[alt_font_base]) do
678          if i == afnt_base then
679             for j,_ in pairs(v) do
680                if j>=0 then
681                   if ac[j] then t[j]=afnt_num end
682                else  -- -n (n>=1) means that the character class n,
683                      -- which is defined in the JFM
684                   pickup_alt_font_class(-j, afnt_num, ac)
685                end
686             end
687             return
688          end
689       end
690    end
691
692 end
693 ------------------------------------------------------------------------
694 -- 終了時に各種ノードを破棄
695 ------------------------------------------------------------------------
696 do
697    function cleanup_size_cache()
698       --local gs, ke = 0, 0
699       for _,n in pairs(metrics) do
700          for i,t in pairs(n.size_cache) do
701             for _,v in pairs(t.char_type) do
702                for k,w in pairs(v) do
703                   if type(k)=='number' then
704                      --if w[1] then gs = gs + 1 else ke = ke + 1 end
705                      if w[1] then node_free(w[1]) end
706                   end
707                end
708             end
709             n.size_cache[i]=nil
710          end
711       end
712    end
713 end
714
715 ------------------------------------------------------------------------
716 -- 追加のフォント情報
717 ------------------------------------------------------------------------
718 font_extra_info = {}
719 local font_extra_info = font_extra_info -- key: fontnumber
720 local font_extra_basename = {} -- key: basename
721
722 local list_rotate_glyphs
723 do
724    -- output of function_uax50.lua
725    -- UAX#50 for Unicode  10.0.0
726    -- t[0] = true
727    local t={ 0, 167, 168, 169, 170, 174, 175, 177, 178, 188, 191, 215, 216, 247, 248, 746, 748, 888, 890, 896, 900, 907, 908, 909, 910, 930, 931, 1328, 1329, 1367, 1369, 1376, 1377, 1416, 1417, 1419, 1421, 1424, 1425, 1480, 1488, 1515, 1520, 1525, 1536, 1565, 1566, 1806, 1807, 1867, 1869, 1970, 1984, 2043, 2048, 2094, 2096, 2111, 2112, 2140, 2142, 2143, 2144, 2155, 2208, 2229, 2230, 2238, 2260, 2436, 2437, 2445, 2447, 2449, 2451, 2473, 2474, 2481, 2482, 2483, 2486, 2490, 2492, 2501, 2503, 2505, 2507, 2511, 2519, 2520, 2524, 2526, 2527, 2532, 2534, 2558, 2561, 2564, 2565, 2571, 2575, 2577, 2579, 2601, 2602, 2609, 2610, 2612, 2613, 2615, 2616, 2618, 2620, 2621, 2622, 2627, 2631, 2633, 2635, 2638, 2641, 2642, 2649, 2653, 2654, 2655, 2662, 2678, 2689, 2692, 2693, 2702, 2703, 2706, 2707, 2729, 2730, 2737, 2738, 2740, 2741, 2746, 2748, 2758, 2759, 2762, 2763, 2766, 2768, 2769, 2784, 2788, 2790, 2802, 2809, 2816, 2817, 2820, 2821, 2829, 2831, 2833, 2835, 2857, 2858, 2865, 2866, 2868, 2869, 2874, 2876, 2885, 2887, 2889, 2891, 2894, 2902, 2904, 2908, 2910, 2911, 2916, 2918, 2936, 2946, 2948, 2949, 2955, 2958, 2961, 2962, 2966, 2969, 2971, 2972, 2973, 2974, 2976, 2979, 2981, 2984, 2987, 2990, 3002, 3006, 3011, 3014, 3017, 3018, 3022, 3024, 3025, 3031, 3032, 3046, 3067, 3072, 3076, 3077, 3085, 3086, 3089, 3090, 3113, 3114, 3130, 3133, 3141, 3142, 3145, 3146, 3150, 3157, 3159, 3160, 3163, 3168, 3172, 3174, 3184, 3192, 3204, 3205, 3213, 3214, 3217, 3218, 3241, 3242, 3252, 3253, 3258, 3260, 3269, 3270, 3273, 3274, 3278, 3285, 3287, 3294, 3295, 3296, 3300, 3302, 3312, 3313, 3315, 3328, 3332, 3333, 3341, 3342, 3345, 3346, 3397, 3398, 3401, 3402, 3408, 3412, 3428, 3430, 3456, 3458, 3460, 3461, 3479, 3482, 3506, 3507, 3516, 3517, 3518, 3520, 3527, 3530, 3531, 3535, 3541, 3542, 3543, 3544, 3552, 3558, 3568, 3570, 3573, 3585, 3643, 3647, 3676, 3713, 3715, 3716, 3717, 3719, 3721, 3722, 3723, 3725, 3726, 3732, 3736, 3737, 3744, 3745, 3748, 3749, 3750, 3751, 3752, 3754, 3756, 3757, 3770, 3771, 3774, 3776, 3781, 3782, 3783, 3784, 3790, 3792, 3802, 3804, 3808, 3840, 3912, 3913, 3949, 3953, 3992, 3993, 4029, 4030, 4045, 4046, 4059, 4096, 4294, 4295, 4296, 4301, 4302, 4304, 4352, 4608, 4681, 4682, 4686, 4688, 4695, 4696, 4697, 4698, 4702, 4704, 4745, 4746, 4750, 4752, 4785, 4786, 4790, 4792, 4799, 4800, 4801, 4802, 4806, 4808, 4823, 4824, 4881, 4882, 4886, 4888, 4955, 4957, 4989, 4992, 5018, 5024, 5110, 5112, 5118, 5120, 5121, 5760, 5789, 5792, 5881, 5888, 5901, 5902, 5909, 5920, 5943, 5952, 5972, 5984, 5997, 5998, 6001, 6002, 6004, 6016, 6110, 6112, 6122, 6128, 6138, 6144, 6159, 6160, 6170, 6176, 6264, 6272, 6315, 6400, 6431, 6432, 6444, 6448, 6460, 6464, 6465, 6468, 6510, 6512, 6517, 6528, 6572, 6576, 6602, 6608, 6619, 6622, 6684, 6686, 6751, 6752, 6781, 6783, 6794, 6800, 6810, 6816, 6830, 6832, 6847, 6912, 6988, 6992, 7037, 7040, 7156, 7164, 7224, 7227, 7242, 7245, 7305, 7360, 7368, 7376, 7418, 7424, 7674, 7675, 7958, 7960, 7966, 7968, 8006, 8008, 8014, 8016, 8024, 8025, 8026, 8027, 8028, 8029, 8030, 8031, 8062, 8064, 8117, 8118, 8133, 8134, 8148, 8150, 8156, 8157, 8176, 8178, 8181, 8182, 8191, 8192, 8214, 8215, 8224, 8226, 8240, 8242, 8251, 8253, 8258, 8259, 8263, 8266, 8273, 8274, 8293, 8294, 8306, 8308, 8335, 8336, 8349, 8352, 8384, 8400, 8413, 8417, 8418, 8421, 8433, 8450, 8451, 8458, 8463, 8464, 8467, 8469, 8470, 8472, 8478, 8484, 8485, 8486, 8487, 8488, 8489, 8490, 8494, 8495, 8501, 8512, 8517, 8523, 8524, 8526, 8527, 8586, 8588, 8592, 8734, 8735, 8756, 8758, 8960, 8968, 8972, 8992, 8996, 9001, 9003, 9004, 9085, 9115, 9150, 9166, 9167, 9168, 9169, 9180, 9186, 9251, 9252, 9472, 9632, 9754, 9760, 10088, 10102, 10132, 11026, 11056, 11088, 11098, 11124, 11126, 11158, 11160, 11192, 11218, 11219, 11244, 11248, 11264, 11311, 11312, 11359, 11360, 11508, 11513, 11558, 11559, 11560, 11565, 11566, 11568, 11624, 11631, 11633, 11647, 11671, 11680, 11687, 11688, 11695, 11696, 11703, 11704, 11711, 11712, 11719, 11720, 11727, 11728, 11735, 11736, 11743, 11744, 11850, 12296, 12306, 12308, 12320, 12336, 12337, 12448, 12449, 12540, 12541, 42192, 42540, 42560, 42744, 42752, 42927, 42928, 42936, 42999, 43052, 43056, 43066, 43072, 43128, 43136, 43206, 43214, 43226, 43232, 43262, 43264, 43348, 43359, 43360, 43392, 43470, 43471, 43482, 43486, 43519, 43520, 43575, 43584, 43598, 43600, 43610, 43612, 43715, 43739, 43767, 43777, 43783, 43785, 43791, 43793, 43799, 43808, 43815, 43816, 43823, 43824, 43878, 43888, 44014, 44016, 44026, 55296, 57344, 64256, 64263, 64275, 64280, 64285, 64311, 64312, 64317, 64318, 64319, 64320, 64322, 64323, 64325, 64326, 64450, 64467, 64832, 64848, 64912, 64914, 64968, 65008, 65022, 65024, 65040, 65056, 65072, 65097, 65104, 65112, 65119, 65123, 65127, 65136, 65141, 65142, 65277, 65279, 65280, 65288, 65290, 65293, 65294, 65306, 65311, 65339, 65340, 65341, 65342, 65343, 65344, 65371, 65471, 65474, 65480, 65482, 65488, 65490, 65496, 65498, 65501, 65507, 65508, 65512, 65519, 65529, 65532, 65536, 65548, 65549, 65575, 65576, 65595, 65596, 65598, 65599, 65614, 65616, 65630, 65664, 65787, 65792, 65795, 65799, 65844, 65847, 65935, 65936, 65948, 65952, 65953, 66000, 66046, 66176, 66205, 66208, 66257, 66272, 66300, 66304, 66340, 66349, 66379, 66384, 66427, 66432, 66462, 66463, 66500, 66504, 66518, 66560, 66718, 66720, 66730, 66736, 66772, 66776, 66812, 66816, 66856, 66864, 66916, 66927, 66928, 67072, 67383, 67392, 67414, 67424, 67432, 67584, 67590, 67592, 67593, 67594, 67638, 67639, 67641, 67644, 67645, 67647, 67670, 67671, 67743, 67751, 67760, 67808, 67827, 67828, 67830, 67835, 67868, 67871, 67898, 67903, 67904, 68000, 68024, 68028, 68048, 68050, 68100, 68101, 68103, 68108, 68116, 68117, 68120, 68121, 68148, 68152, 68155, 68159, 68168, 68176, 68185, 68192, 68256, 68288, 68327, 68331, 68343, 68352, 68406, 68409, 68438, 68440, 68467, 68472, 68498, 68505, 68509, 68521, 68528, 68608, 68681, 68736, 68787, 68800, 68851, 68858, 68864, 69216, 69247, 69632, 69710, 69714, 69744, 69759, 69826, 69840, 69865, 69872, 69882, 69888, 69941, 69942, 69956, 69968, 70007, 70016, 70094, 70096, 70112, 70113, 70133, 70144, 70162, 70163, 70207, 70272, 70279, 70280, 70281, 70282, 70286, 70287, 70302, 70303, 70314, 70320, 70379, 70384, 70394, 70400, 70404, 70405, 70413, 70415, 70417, 70419, 70441, 70442, 70449, 70450, 70452, 70453, 70458, 70460, 70469, 70471, 70473, 70475, 70478, 70480, 70481, 70487, 70488, 70493, 70500, 70502, 70509, 70512, 70517, 70656, 70746, 70747, 70748, 70749, 70750, 70784, 70856, 70864, 70874, 71168, 71237, 71248, 71258, 71264, 71277, 71296, 71352, 71360, 71370, 71424, 71450, 71453, 71468, 71472, 71488, 71840, 71923, 71935, 71936, 72384, 72441, 72704, 72713, 72714, 72759, 72760, 72774, 72784, 72813, 72816, 72848, 72850, 72872, 72873, 72887, 72960, 72967, 72968, 72970, 72971, 73015, 73018, 73019, 73020, 73022, 73023, 73032, 73040, 73050, 73728, 74650, 74752, 74863, 74864, 74869, 74880, 75076, 92160, 92729, 92736, 92767, 92768, 92778, 92782, 92784, 92880, 92910, 92912, 92918, 92928, 92998, 93008, 93018, 93019, 93026, 93027, 93048, 93053, 93072, 93952, 94021, 94032, 94079, 94095, 94112, 113664, 113771, 113776, 113789, 113792, 113801, 113808, 113818, 113820, 113828, 119296, 119366, 119808, 119893, 119894, 119965, 119966, 119968, 119970, 119971, 119973, 119975, 119977, 119981, 119982, 119994, 119995, 119996, 119997, 120004, 120005, 120070, 120071, 120075, 120077, 120085, 120086, 120093, 120094, 120122, 120123, 120127, 120128, 120133, 120134, 120135, 120138, 120145, 120146, 120486, 120488, 120780, 120782, 120832, 122880, 122887, 122888, 122905, 122907, 122914, 122915, 122917, 122918, 122923, 124928, 125125, 125127, 125143, 125184, 125259, 125264, 125274, 125278, 125280, 126464, 126468, 126469, 126496, 126497, 126499, 126500, 126501, 126503, 126504, 126505, 126515, 126516, 126520, 126521, 126522, 126523, 126524, 126530, 126531, 126535, 126536, 126537, 126538, 126539, 126540, 126541, 126544, 126545, 126547, 126548, 126549, 126551, 126552, 126553, 126554, 126555, 126556, 126557, 126558, 126559, 126560, 126561, 126563, 126564, 126565, 126567, 126571, 126572, 126579, 126580, 126584, 126585, 126589, 126590, 126591, 126592, 126602, 126603, 126620, 126625, 126628, 126629, 126634, 126635, 126652, 126704, 126706, 129024, 129036, 129040, 129096, 129104, 129114, 129120, 129160, 129168, 129198, 917505, 917506, 917536, 917632, 917760, 918000 }
728    local function rotate_in_uax50(i)
729      local lo, hi = 1, #t
730      while lo < hi do
731        local mi = math.ceil((lo+hi)/2)
732        if t[mi]<=i then lo=mi else hi=mi-1 end 
733      end
734      return lo%2==1
735    end
736    list_rotate_glyphs = function (dest, id)
737       if id.specification and id.resources then
738          local rot = {}
739          for i,_ in pairs(id.characters) do
740             if rotate_in_uax50(i) then rot[i] = true end
741          end
742          if id.resources.sequences then
743          for _,i in pairs(id.resources.sequences) do
744             if i.order[1]== 'vert' and i.type == 'gsub_single' and i.steps then
745                for _,j in pairs(i.steps) do
746                   if type(j)=='table' then 
747                      if type(j,coverage)=='table' then
748                         for i,_ in pairs(j.coverage) do rot[i]=nil end
749                      end
750                   end
751                end
752             end
753          end; end
754          -- コードポイントが共有されているグリフについて
755          if id.resources.duplicates then
756          for i,v in pairs(id.resources.duplicates) do
757             local f = rot[i]
758             for j,_ in pairs(v) do f = f and rot[j] end
759             rot[i]=f
760             for j,_ in pairs(v) do rot[j] = f end
761          end; end
762          
763          for i,_ in pairs(rot) do
764             dest = dest or {}
765             dest[i] = dest[i] or {}
766             dest[i].rotation = true
767          end
768       end
769       return dest
770    end
771 end
772
773 -- vertical metrics
774 local prepare_fl_data
775 local supply_vkern_table
776 do
777    local fields = fontloader.fields
778    local function glyph_vmetric(glyph)
779       local flds = fields(glyph)
780       local vw, tsb, vk = nil, nil, nil
781       for _,i in ipairs(flds) do
782          if i=='vwidth' then vw = glyph.vwidth end
783          if i=='tsidebearing' then tsb = glyph.tsidebearing end
784          if i=='vkerns' then vk = glyph.vkerns end
785       end
786       return vw, tsb, vk
787    end
788
789    local sort = table.sort
790    local function add_fl_table(dest, glyphs, unitable, asc_des, units, id)
791       local glyphmin, glyphmax = glyphs.glyphmin, glyphs.glyphmax
792       if glyphmax < 0 then return dest end
793       local tg = glyphs.glyphs
794       for i = glyphmin, glyphmax do
795          local gv = tg[i]
796          if gv then
797             if gv.altuni then
798                for _,at in pairs(gv.altuni) do
799                   local bu, vsel = at.unicode, at.variant
800                   if vsel then
801                      if vsel>=0xE0100 then vsel = vsel - 0xE0100 end
802                      local uniq_flag = true
803                      if dest and dest[bu] then
804                         for i,_ in pairs(dest[bu]) do
805                            if i==vsel then uniq_flag = false; break end
806                         end
807                      end
808                      if uniq_flag then
809                         dest = dest or {}; dest[bu] = dest[bu] or {}
810                         dest[bu][vsel] = unitable[gv.name]
811                      end
812                   end
813                end
814             end
815             -- vertical metric
816             local vw, tsb, vk = glyph_vmetric(gv)
817             local gi = unitable[gv.name]
818             if gi and vw and vw~=asc_des then
819                -- We do not use tsidebearing, since (1) fontloader does not read VORG table
820                -- and (2) 'tsidebearing' doea not appear in the returned table by fontloader.fields.
821                -- Hence, we assume that vertical origin == ascender
822                -- (see capsule_glyph_tate in ltj-setwidth.lua)
823                dest = dest or {}; dest[gi] = dest[gi] or {}
824                dest[gi].vwidth = vw/units
825             end
826             -- vertical kern
827             if gi and vk then
828                dest = dest or {};
829                local dest_vk = dest.vkerns or {}; dest.vkerns = dest_vk
830                for _,v in pairs(vk) do
831                   if unitable[v.char] then
832                      local vl = v.lookup
833                      if type(vl)=='table' then
834                         for _,vlt in pairs(vl) do
835                            dest_vk[vlt] = dest_vk[vlt] or {}
836                            dest_vk[vlt][gi] = dest_vk[vlt][gi] or {}
837                            dest_vk[vlt][gi][unitable[v.char]] = v.off
838                         end
839                      else
840                         dest_vk[vl] = dest_vk[vl] or {}
841                         dest_vk[vl][gi] = dest_vk[vl][gi] or {}
842                         dest_vk[vl][gi][unitable[v.char]] = v.off
843                      end
844                   end
845                end
846             end
847          end
848       end
849       return dest
850    end
851    prepare_fl_data = function (dest, id)
852       local t = fontloader.info(id.filename)
853       local fl
854       if t.filename then
855         fl = fontloader.open(id.filename)
856       else
857         fl = fontloader.open(id.filename, id.fullname)
858       end
859       local ind_to_uni, unicodes = {}, {}
860       for i,v in pairs(id.characters) do
861           ind_to_uni[v.index] = i
862       end
863       if fl.glyphs then
864          local tg, glyphmin, glyphmax = fl.glyphs, fl.glyphmin, fl.glyphmax
865          if 0 <= glyphmax then
866             for i = glyphmin, glyphmax do
867                if tg[i] and tg[i].name then unicodes[tg[i].name] = ind_to_uni[i] end
868             end
869          end
870          dest = add_fl_table(dest, fl, unicodes,
871                              fl.ascent + fl.descent, fl.units_per_em, id)
872       end
873       if fl.subfonts then
874          for _,v in pairs(fl.subfonts) do
875             local tg, glyphmin, glyphmax = v.glyphs, v.glyphmin, v.glyphmax
876             if 0 <= glyphmax then
877                for i = glyphmin, glyphmax do
878                   if tg[i] and tg[i].name then unicodes[tg[i].name] = ind_to_uni[i] end
879                end
880            end
881        end
882          for _,v in pairs(fl.subfonts) do
883             dest = add_fl_table(dest, v, unicodes,
884                                 fl.ascent + fl.descent, fl.units_per_em, id)
885          end
886      end
887      if dest then dest.unicodes = unicodes end
888      fontloader.close(fl); collectgarbage("collect")
889      return dest
890    end
891    -- supply vkern table
892    supply_vkern_table = function(id, bname)
893       local bx = font_extra_basename[bname].vkerns
894       local lookuphash =  id.resources.lookuphash
895       local desc = id.shared.rawdata.descriptions
896       if bx and lookuphash then
897          for i,v in pairs(bx) do
898             lookuphash[i] = lookuphash[i] or v
899             for j,w in pairs(v) do
900                desc[j].kerns = desc[j].kerns or {}
901                desc[j].kerns[i] = w
902             end
903          end
904       end
905    end
906 end
907
908 --
909 do
910    local cache_ver = 15
911    local checksum = file.checksum
912
913    local function prepare_extra_data_base(id)
914       if (not id) or (not id.filename) then return end
915       local bname = id.psname or file.nameonly(id.filename)
916       if not font_extra_basename[bname] then
917          -- if the cache is present, read it
918          local newsum = checksum(id.filename) -- MD5 checksum of the fontfile
919          local v = "extra_" .. string.lower(bname)
920          local dat = ltjb.load_cache(
921             v,
922             function (t) return (t.version~=cache_ver) or (t.chksum~=newsum) end
923          )
924          -- if the cache is not found or outdated, save the cache
925          if dat then
926             font_extra_basename[bname] = dat[1] or {}
927          else
928             local dat = nil
929             dat = prepare_fl_data(dat, id)
930             dat = list_rotate_glyphs(dat, id)
931             font_extra_basename[bname] = dat or {}
932             ltjb.save_cache( v,
933                              {
934                                 chksum = checksum(id.filename),
935                                 version = cache_ver,
936                                 dat,
937                              })
938          end
939          return bname
940       end
941    end
942    local function prepare_extra_data_font(id, res)
943       if type(res)=='table' and res.shared and (res.psname or res.filename) then
944          font_extra_info[id] = font_extra_basename[res.psname or file.nameonly(res.filename)]
945       end
946    end
947     luatexbase.add_to_callback(
948        'luaotfload.patch_font',
949        function (tfmdata)
950           -- these function is executed one time per one fontfile
951           if jfm_file_name then
952             local bname = prepare_extra_data_base(tfmdata)
953             if bname then supply_vkern_table(tfmdata, bname) end
954           end
955           return tfmdata
956        end,
957        'ltj.prepare_extra_data', 1)
958    luatexbase.add_to_callback(
959       'luatexja.define_font',
960       function (res, name, size, id)
961          prepare_extra_data_font(id, res)
962       end,
963       'ltj.prepare_extra_data', 1)
964
965    local nulltable = {} -- dummy
966    ltjr.vert_addfunc = function (n) font_extra_info[n] = nulltable end
967
968    local identifiers = fonts.hashes.identifiers
969    for i=1,font.nextid()-1 do
970       if identifiers[i] then
971          prepare_extra_data_base(identifiers[i])
972          prepare_extra_data_font(i,identifiers[i])
973       end
974    end
975 end
976
977
978 ------------------------------------------------------------------------
979 -- calculate vadvance
980 ------------------------------------------------------------------------
981 do
982    local function acc_feature(table_vadv, table_vorg, subtables, ft,  already_vert)
983       for char_num,v in pairs(ft.shared.rawdata.descriptions) do
984          if v.slookups then
985             for sn, sv in pairs(v.slookups) do
986                if subtables[sn] and type(sv)=='table' then
987                   if sv[4]~=0 then
988                      table_vadv[char_num]
989                         = (table_vadv[char_num] or 0) + sv[4]
990                   end
991                   if sv[2]~=0 and not already_vert then
992                      table_vorg[char_num]
993                         = (table_vorg[char_num] or 0) + sv[2]
994                   end
995                end
996             end
997          end
998       end
999    end
1000
1001 luatexbase.add_to_callback(
1002    "luatexja.define_jfont",
1003    function (fmtable, fnum)
1004       local vadv = {}; fmtable.v_advance = vadv
1005       local vorg = {}; fmtable.v_origin = vorg
1006       local ft = font_getfont(fnum)
1007       local subtables = {}
1008       if ft.specification then
1009          for feat_name,v in pairs(ft.specification.features.normal) do
1010             if v==true and ft.resources then
1011                for _,i in pairs(ft.resources.sequences) do
1012                   if i.order[1]== feat_name and i.type == 'gpos_single' and type(i.subtables)=='table' then
1013                      for _,st in pairs(i.subtables) do
1014                         subtables[st] = true
1015                      end
1016                   end
1017                end
1018             end
1019          end
1020          acc_feature(vadv, vorg, subtables, ft,
1021                      ft.specification.features.normal.vrt2 or ft.specification.features.normal.vert)
1022          for i,v in pairs(vadv) do
1023             vadv[i]=vadv[i]/ft.units_per_em*fmtable.size
1024          end
1025          for i,v in pairs(vorg) do
1026             vorg[i]=vorg[i]/ft.units_per_em*fmtable.size
1027          end
1028       end
1029       return fmtable
1030    end, 'ltj.v_advance', 1
1031 )
1032 end
1033
1034 ------------------------------------------------------------------------
1035 -- make table of vertical glyphs which does not covered by vert feature
1036 -- nor UTR#50
1037 ------------------------------------------------------------------------
1038 do
1039 ------------------------------------------------------------------------
1040 -- VERT VARIANT TABLE
1041 ------------------------------------------------------------------------
1042   local provides_feature = luaotfload.aux.provides_feature
1043   local vert_form_table = {
1044      [0x3001]=0xFE11, [0x3002]=0xFE12, [0x3016]=0xFE17, [0x3017]=0xFE18,
1045      [0x2026]=0xFE19,
1046      [0x2025]=0xFE30, [0x2014]=0xFE31, [0x2013]=0xFE32, [0xFF3F]=0xFE33,
1047      [0xFF08]=0xFE35, [0xFF09]=0xFE36, [0xFF5B]=0xFE37, [0xFF5D]=0xFE38,
1048      [0x3014]=0xFE39, [0x3015]=0xFE3A, [0x3010]=0xFE3B, [0x3011]=0xFE3C,
1049      [0x300A]=0xFE3D, [0x300B]=0xFE3E, [0x3008]=0xFE3F, [0x3009]=0xFE40,
1050      [0x300C]=0xFE41, [0x300D]=0xFE42, [0x300E]=0xFE43, [0x300F]=0xFE44,
1051      [0xFF3B]=0xFE47, [0xFF3D]=0xFE48, 
1052   }
1053   local function add_vform(coverage, vform, ft, add_vert)
1054      if type(coverage)~='table' then return end
1055      for i,v in pairs(vert_form_table) do
1056          if not coverage[i] and ft.characters[v] then
1057              vform[i] = v
1058          end
1059      end
1060      if add_vert then -- vert feature が有効にならない場合
1061         for i,v in pairs(coverage) do vform[i] = vform[i] or v end
1062      end
1063   end
1064
1065 luatexbase.add_to_callback(
1066    "luatexja.define_jfont",
1067    function (fmtable, fnum)
1068       local vform = {}; fmtable.vform = vform
1069       local t = font_getfont(fnum)
1070       if t.specification and t.resources then
1071          local add_vert  
1072            = not (provides_feature(fnum, t.properties.script, t.properties.language, 'vert'))
1073              and not (provides_feature(fnum, t.properties.script, t.properties.language, 'vrt2'))
1074          -- 現在の language, script で vert もvrt2 も有効にできない場合,強制的に vert 適用
1075          for _,i in pairs(t.resources.sequences) do
1076             if i.order[1]== 'vert' and i.type == 'gsub_single' and i.steps then
1077                for _,j in pairs(i.steps) do
1078                   if type(j)=='table' then add_vform(j.coverage,vform, t, add_vert) end
1079                end
1080             end
1081           end
1082       end
1083       return fmtable
1084    end, 'ltj.get_vert_form', 1
1085 )
1086 end
1087
1088 ------------------------------------------------------------------------
1089 -- supply tounicode entries
1090 ------------------------------------------------------------------------
1091 do
1092   local ltjr_prepare_cid_font = ltjr.prepare_cid_font
1093   luatexbase.add_to_callback(
1094      'luaotfload.patch_font',
1095      function (tfmdata)
1096         local cidinfo = tfmdata.cidinfo or tfmdata.resources.cidinfo
1097         if cidinfo and cidinfo.registry and cidinfo.ordering then
1098            local rd = ltjr_prepare_cid_font(cidinfo.registry, cidinfo.ordering)
1099            if rd then
1100               local ru, rc = rd.resources.unicodes, rd.characters
1101               for i,v in pairs(tfmdata.characters) do
1102                  local w = ru["Japan1." .. tostring(v.index)]
1103                  if w then
1104                     v.tounicode = v.tounicode or rc[w]. tounicode
1105                  end
1106               end
1107            end
1108         end
1109
1110         return tfmdata
1111      end,
1112      'ltj.supply_tounicode', 1)
1113 end
1114
1115
1116 ------------------------------------------------------------------------
1117 -- MISC
1118 ------------------------------------------------------------------------
1119 do
1120    local getfont = node.direct.getfont
1121    local getchar = node.direct.getchar
1122    local get_dir_count = ltjd.get_dir_count
1123    local is_ucs_in_japanese_char = ltjc.is_ucs_in_japanese_char_direct
1124    local ensure_tex_attr = ltjb.ensure_tex_attr
1125    local node_write = node.direct.write
1126    local font = font
1127    local new_ic_kern
1128    if status.luatex_version>=89 then
1129        new_ic_kern = function(g)  return node_new(id_kern,3) end
1130    else
1131        local ITALIC       = luatexja.icflag_table.ITALIC
1132        new_ic_kern = function()
1133          local g = node_new(id_kern, 1)
1134          set_attr(g, attr_icflag, ITALIC)
1135          return g
1136        end
1137    end
1138    -- EXT: italic correction
1139    function append_italic()
1140       local p = to_direct(tex.nest[tex.nest.ptr].tail)
1141       local TEMP = node_new(id_kern)
1142       if p and getid(p)==id_glyph then
1143          if is_ucs_in_japanese_char(p) then
1144             local j = font_metric_table[
1145                has_attr(p, (get_dir_count()==dir_tate) and attr_curtfnt or attr_curjfnt)
1146                ]
1147             local g = new_ic_kern()
1148             setfield(g, 'kern', j.char_type[find_char_class(getchar(p), j)].italic)
1149             node_write(g); ensure_tex_attr(attr_icflag, 0)
1150          else
1151             local f = getfont(p)
1152             local h = font_getfont(f) or font.fonts[f]
1153             if h then
1154                local g = new_ic_kern()
1155                if h.characters[getchar(p)] and h.characters[getchar(p)].italic then
1156                   setfield(g, 'kern', h.characters[getchar(p)].italic)
1157                   node_write(g); ensure_tex_attr(attr_icflag, 0)
1158                end
1159             end
1160          end
1161       end
1162       node_free(TEMP)
1163    end
1164 end
1165