OSDN Git Service

ltj-jfont.lua: export update_jfm_cache
[luatex-ja/luatexja.git] / src / ltj-jfont.lua
1 --
2 -- luatexja/jfont.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.jfont',
6   date = '2018/06/15',
7   description = 'Loader for Japanese fonts',
8 })
9
10 luatexja.load_module('base');      local ltjb = luatexja.base
11 luatexja.load_module('charrange'); local ltjc = luatexja.charrange
12 luatexja.load_module('rmlgbm');    local ltjr = luatexja.rmlgbm
13 luatexja.load_module('direction'); local ltjd = luatexja.direction
14
15 local setfield = node.direct.setfield
16 local getid = node.direct.getid
17 local to_direct = node.direct.todirect
18
19 local node_new = node.direct.new
20 local node_free = node.direct.free
21 local has_attr = node.direct.has_attribute
22 local set_attr = node.direct.set_attribute
23 local round = tex.round
24 local font_getfont = font.getfont
25
26 local attr_icflag = luatexbase.attributes['ltj@icflag']
27 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
28 local attr_curtfnt = luatexbase.attributes['ltj@curtfnt']
29 local id_glyph = node.id('glyph')
30 local id_kern = node.id('kern')
31 local cat_lp = luatexbase.catcodetables['latex-package']
32 local FROM_JFM     = luatexja.icflag_table.FROM_JFM
33
34 luatexja.jfont = luatexja.jfont or {}
35 ------------------------------------------------------------------------
36 -- LOADING JFM
37 ------------------------------------------------------------------------
38
39 local metrics={} -- this table stores all metric informations
40 local font_metric_table={} -- [font number] -> jfm_name, jfm_var, size
41
42 luatexbase.create_callback("luatexja.load_jfm", "data", function (ft, jn) return ft end)
43
44 local jfm_file_name, jfm_var, jfm_ksp
45 local defjfm_res
46 local jfm_dir, is_def_jfont, is_vert_enabled, auto_enable_vrt2
47
48 local function norm_val(a)
49    if (not a) or (a==0.) then
50       return nil
51    elseif a==true then
52       return 1
53    else
54       return a
55    end
56 end
57
58 function luatexja.jfont.define_jfm(t)
59    local real_char -- Does current character class have the 'real' character?
60    if t.dir~=jfm_dir then
61       defjfm_res= nil; return
62    elseif type(t.zw)~='number' or type(t.zh)~='number' then
63       defjfm_res= nil; return
64    end
65    t.version = (type(t.version)=='number') and t.version or 1
66    t.char_type = {}; t.chars = {}
67    for i,v in pairs(t) do
68       if type(i) == 'number' then -- char_type
69          if not v.chars then
70             if i ~= 0 then defjfm_res= nil; return  end
71          else
72             for j,w in pairs(v.chars) do
73                if type(w) == 'number' and w~=-1 then
74                elseif type(w) == 'string' and utf.len(w)==1 then
75                   w = utf.byte(w)
76                elseif type(w) == 'string' and utf.len(w)==2 and utf.sub(w,2) == '*' then
77                   w = utf.byte(utf.sub(w,1,1))
78                end
79                if not t.chars[w] then
80                   t.chars[w] = i
81                else
82                   defjfm_res= nil; return
83                end
84             end
85             v.chars = nil
86          end
87          if type(v.align)~='string' then
88             v.align = 'left' -- left
89          end
90          if type(v.width)~='number' then
91             v.width = nil
92          end
93          if type(v.height)~='number' then
94             v.height = (jfm_dir=='tate') and  0.0
95          end
96          if type(v.depth)~='number' then
97             v.depth =  (jfm_dir=='tate') and  0.0
98          end
99          if type(v.italic)~='number' then
100             v.italic = 0.0
101          end
102          if type(v.left)~='number' then
103             v.left = 0.0
104          end
105          if type(v.down)~='number' then
106             v.down = 0.0
107          end
108          if t.version>=2 then
109             if v.end_stretch then defjfm_res= nil; return end
110             if v.end_shrink  then defjfm_res= nil; return end
111             if v.end_adjust then
112                if type(v.end_adjust)~='table' then
113                   v.end_adjust = nil
114                elseif #(v.end_adjust)==0 then
115                   v.end_adjust = nil
116                else 
117                   table.sort(v.end_adjust)
118                end
119             end
120          else
121             v.end_adjust = nil
122             if v.end_stretch and v.end_stretch~=0.0 then 
123                v.end_adjust = (v.end_adjust or {}) 
124                v.end_adjust[#(v.end_adjust)+1] = v.end_stretch
125             end
126             if v.end_shrink and v.end_ahrink~=0.0 then 
127                v.end_adjust = (v.end_adjust or {}) 
128                v.end_adjust[#(v.end_adjust)+1] = -v.end_shrink
129             end
130             if v.end_adjust then v.end_adjust[#(v.end_adjust)+1] = 0.0 end
131          end
132          v.kern = v.kern or {}; v.glue = v.glue or {}
133          for j,x in pairs(v.glue) do
134             if v.kern[j] then defjfm_res= nil; return end
135             x.ratio, x[5] = (x.ratio or (x[5] and 0.5*(1+x[5]) or 0.5)), nil
136             do
137                local xp
138                xp, x[4] = (x.priority or x[4]), nil
139                if type(xp)=='table' and t.version>=2 then
140                   if type(xp[1])~='number' or xp[1]<-4 or xp[1]>3 then defjfm_res=nil end  -- stretch
141                   if type(xp[2])~='number' or xp[2]<-4 or xp[2]>3 then defjfm_res=nil end  -- shrink
142                   xp = (xp[1]+4)*8+(xp[2]+4)
143                elseif xp and type(xp)~='number' then
144                   defjfm_res = nil
145                else
146                   xp = (xp or 0)*9+36   
147                   if xp<0 or xp>=64 then defjfm_res=nil end 
148                end
149                x.priority = xp
150             end
151             x.kanjiskip_natural = norm_val(x.kanjiskip_natural)
152             x.kanjiskip_stretch = norm_val(x.kanjiskip_stretch)
153             x.kanjiskip_shrink = norm_val(x.kanjiskip_shrink)
154          end
155          for j,x in pairs(v.kern) do
156             if type(x)=='number' then
157                v.kern[j] = {x, 0.5}
158             elseif type(x)=='table' then
159                v.kern[j] = { x[1], (x.ratio or (x[2] and 0.5*(1+x[2]) or 0.5)) }
160             end
161          end
162          t.char_type[i] = v
163          t[i] = nil
164       end
165    end
166    if t.version<3 then
167       -- In version 3, 'jcharbdd' is divided into 
168       -- 'alchar': ALchar (or math boundary) 
169       -- 'nox_alchar': ALchar (or math boundary), where xkanjiskip won't inserted
170       -- 'glue': glue/kern, 'jcharbdd': other cases (和文B, rule, ...)
171       t.chars.alchar = t.chars.jcharbdd
172       t.chars.nox_alchar = t.chars.jcharbdd
173       t.chars.glue = t.chars.jcharbdd
174    end
175    t = luatexbase.call_callback("luatexja.load_jfm", t, jfm_file_name)
176    t.size_cache = {}
177    defjfm_res = t
178 end
179
180 local update_jfm_cache
181 do
182    local floor = math.floor
183    local function myround(a) return floor(a+0.5) end
184    local function mult_table(old,scale) -- modified from table.fastcopy
185       if old then
186          local new = { }
187          for k,v in next, old do
188             if type(v) == "table" then
189                new[k] = mult_table(v,scale)
190             elseif type(v) == "number" then
191                new[k] = myround(v*scale)
192             else
193                new[k] = v
194             end
195          end
196          return new
197       else return nil end
198    end
199    update_jfm_cache = function (j,sz)
200       if metrics[j].size_cache[sz] then return end
201       local t = {}
202       metrics[j].size_cache[sz] = t
203       t.chars = metrics[j].chars
204       t.char_type = mult_table(metrics[j].char_type, sz)
205       for i,v in pairs(t.char_type) do
206          v.align = (v.align=='left') and 0 or
207             ((v.align=='right') and 1 or 0.5)
208          if type(i) == 'number' then -- char_type
209             for k,w in pairs(v.glue) do
210                v[k] = {
211                   nil,
212                   ratio=w.ratio/sz,
213                   priority=FROM_JFM + w.priority/sz,
214                   width = w[1], stretch = w[2], shrink = w[3],
215                   kanjiskip_natural = w.kanjiskip_natural and w.kanjiskip_natural/sz,
216                   kanjiskip_stretch = w.kanjiskip_stretch and w.kanjiskip_stretch/sz,
217                   kanjiskip_shrink =  w.kanjiskip_shrink  and w.kanjiskip_shrink/sz,
218                }
219             end
220             for k,w in pairs(v.kern) do
221                local g = node_new(id_kern, 1)
222                setfield(g, 'kern', w[1])
223                set_attr(g, attr_icflag, FROM_JFM)
224                v[k] = {g, ratio=w[2]/sz}
225             end
226          end
227          v.glue, v.kern = nil, nil
228       end
229       t.kanjiskip = mult_table(metrics[j].kanjiskip, sz)
230       t.xkanjiskip = mult_table(metrics[j].xkanjiskip,sz)
231       t.zw = round(metrics[j].zw*sz)
232       t.zh = round(metrics[j].zh*sz)
233       t.size = sz
234    end
235 end
236
237 luatexbase.create_callback("luatexja.find_char_class", "data",
238                            function (arg, fmtable, char)
239                               return 0
240                           end)
241 local find_char_class
242 do
243    local start_time_measure = ltjb.start_time_measure
244    local stop_time_measure = ltjb.stop_time_measure
245    local fcc_temp = { chars_cbcache = {} }
246    setmetatable(
247       fcc_temp.chars_cbcache,
248       {
249          __index = function () return 0 end,
250       })
251    function find_char_class(c,m)
252       -- c: character code, m:
253       local r = (m or fcc_temp).chars_cbcache[c]
254       if not r then
255          r = m.chars[c] or
256             luatexbase.call_callback("luatexja.find_char_class", 0, m, c)
257          m.chars_cbcache[c or 0] = r
258       end
259       return r
260    end
261 end
262
263
264 ------------------------------------------------------------------------
265 -- LOADING JAPANESE FONTS
266 ------------------------------------------------------------------------
267
268 do
269    local cstemp
270    local global_flag -- true if \globaljfont, false if \jfont
271    local function load_jfont_metric()
272       if jfm_file_name=='' then
273          ltjb.package_error('luatexja',
274                             'no JFM specified',
275                             'To load and define a Japanese font, a JFM must be specified.'..
276                             "The JFM 'ujis' will be  used for now.")
277          jfm_file_name='ujis'
278       end
279       for j,v in ipairs(metrics) do
280          if v.name==jfm_file_name then return j end
281       end
282       luatexja.load_lua('jfm-' .. jfm_file_name .. '.lua')
283       if defjfm_res then
284          defjfm_res.name = jfm_file_name
285          table.insert(metrics, defjfm_res)
286          return #metrics
287       else
288          return nil
289       end
290    end
291
292 -- EXT
293    local utf8 = unicode.utf8
294    function luatexja.jfont.jfontdefX(g, dir, csname)
295       jfm_dir, is_def_jfont = dir, true
296       cstemp = csname:sub( (utf8.byte(csname,1,1) == tex.escapechar) and 2 or 1, -1)
297       cstemp = cstemp:sub(1, ((cstemp:sub(-1,-1)==' ') and (cstemp:len()>=2)) and -2 or -1)
298       global_flag = g and '\\global' or ''
299       tex.sprint(cat_lp, '\\expandafter\\font\\csname ',
300                  (cstemp==' ') and '\\space' or cstemp, '\\endcsname')
301    end
302
303    luatexbase.create_callback("luatexja.define_jfont", "data", function (ft, fn) return ft end)
304
305 -- EXT
306    local identifiers = fonts.hashes.identifiers
307    local provides_feature = luaotfload.aux.provides_feature
308    function luatexja.jfont.jfontdefY()
309       local j = load_jfont_metric(jfm_dir)
310       local fn = font.id(cstemp)
311       local f = font_getfont(fn)
312       if not j then
313          ltjb.package_error('luatexja',
314                             "bad JFM `" .. jfm_file_name .. "'",
315                             'The JFM file you specified is not valid JFM file.\n'..
316                                'So defining Japanese font is cancelled.')
317          tex.sprint(cat_lp, global_flag, '\\expandafter\\let\\csname ',
318                     (cstemp==' ') and '\\space' or cstemp,
319                        '\\endcsname=\\relax')
320          return
321       end
322       if not f then return end
323       update_jfm_cache(j, f.size)
324       local ad = identifiers[fn].parameters
325       local sz = metrics[j].size_cache[f.size]
326       local fmtable = { jfm = j, size = f.size, var = jfm_var,
327                         with_kanjiskip = jfm_ksp,
328                         zw = sz.zw, zh = sz.zh,
329                         ascent = ad.ascender,
330                         descent = ad.descender,
331                         chars = sz.chars, char_type = sz.char_type,
332                         kanjiskip = sz.kanjiskip, xkanjiskip = sz.xkanjiskip,
333                         chars_cbcache = {},
334                         vert_activated = is_vert_enabled,
335       }
336       if auto_enable_vrt2 then
337          local t = identifiers[fn]
338          local lang, scr = t.properties.language, t.properties.script
339          local vrt2_exist = provides_feature(
340            fn, t.properties.script, t.properties.language, 'vrt2'
341          )
342          t.shared.features[vrt2_exist and 'vrt2' or 'vert'] = true
343       end
344
345       fmtable = luatexbase.call_callback("luatexja.define_jfont", fmtable, fn)
346       font_metric_table[fn]=fmtable
347       tex.sprint(cat_lp, global_flag, '\\protected\\expandafter\\def\\csname ',
348                     (cstemp==' ') and '\\space' or cstemp, '\\endcsname{\\ltj@cur'..
349                     (jfm_dir == 'yoko' and 'j' or 't') .. 'fnt', fn, '\\relax}')
350       jfm_file_name = nil
351    end
352 end
353
354 do
355    local get_dir_count = ltjd.get_dir_count
356    local dir_tate = luatexja.dir_table.dir_tate
357    local tex_get_attr = tex.getattribute
358    -- PUBLIC function
359    function luatexja.jfont.get_zw()
360       local a = font_metric_table[
361          tex_get_attr((get_dir_count()==dir_tate) and attr_curtfnt or attr_curjfnt)]
362       return a and a.zw or 0
363    end
364    function luatexja.jfont.get_zh()
365       local a = font_metric_table[
366          tex_get_attr((get_dir_count()==dir_tate) and attr_curtfnt or attr_curjfnt)]
367       return a and a.zw or 0
368    end
369 end
370
371 do
372    local gmatch = string.gmatch
373    -- extract jfm_file_name and jfm_var
374    -- normalize position of 'jfm=' and 'jfmvar=' keys
375    local function extract_metric(name)
376       do
377          local nametemp
378          nametemp = name:match('^{(.*)}$')
379          if nametemp then name = nametemp
380          else
381             nametemp = name:match('^"(.*)"$')
382             name = nametemp or name
383          end
384       end
385       jfm_file_name = ''; jfm_var = ''; jfm_ksp = true
386       local tmp, index = name:sub(1, 5), 1
387       if tmp == 'file:' or tmp == 'name:' or tmp == 'psft:' then
388          index = 6
389       end
390       local p = name:find(":", index); index = p and (p+1) or index
391       while index do
392          local l = name:len()+1
393          local q = name:find(";", index) or l
394          if name:sub(index, index+3)=='jfm=' and q>index+4 then
395             jfm_file_name = name:sub(index+4, q-1)
396             if l~=q then
397                name = name:sub(1,index-1) .. name:sub(q+1)
398             else
399                name = name:sub(1,index-1)
400                index = nil
401             end
402          elseif name:sub(index, index+6)=='jfmvar=' and q>index+6 then
403             jfm_var = name:sub(index+7, q-1)
404             if l~=q then
405                name = name:sub(1,index-1) .. name:sub(q+1)
406             else
407                name = name:sub(1,index-1)
408                index = nil
409             end
410          else
411             index = (l~=q) and (q+1) or nil
412          end
413       end
414       if jfm_file_name~='' then
415          local l = name:sub(-1)
416          name = name
417             .. ((l==':' or l==';') and '' or ';')
418             .. 'jfm=' .. jfm_file_name
419          if jfm_var~='' then
420             name = name .. 'jfmvar=' .. jfm_var
421          end
422       end
423       for x in gmatch (name, "[:;]([+%%-]?)ltjks") do
424          jfm_ksp = not (x=='-')
425       end
426       if jfm_dir == 'tate' then
427          is_vert_enabled = (not name:match('[:;]%-vert')) and (not  name:match('[:;]%-vrt2'))
428          auto_enable_vrt2 
429            = (not name:match('[:;][+%-]?vert')) and (not name:match('[:;][+%-]?vrt2'))
430       else
431          is_vert_enabled, auto_enable_vrt2 = nil, nil
432       end
433       return name
434    end
435
436    -- define_font callback
437    local otfl_fdr
438    local ltjr_font_callback = ltjr.font_callback
439    function luatexja.font_callback(name, size, id)
440       local new_name = is_def_jfont and extract_metric(name) or name
441       is_def_jfont = false
442       local res =  ltjr_font_callback(new_name, size, id, otfl_fdr)
443       luatexbase.call_callback('luatexja.define_font', res, new_name, size, id)
444       -- this callback processes variation selector, so we execute it always
445       return res
446    end
447    luatexbase.create_callback('luatexja.define_font', 'simple', function (n) return n end)
448    otfl_fdr= luatexbase.remove_from_callback('define_font', 'luaotfload.define_font')
449    luatexbase.add_to_callback('define_font',luatexja.font_callback,"luatexja.font_callback", 1)
450 end
451
452 ------------------------------------------------------------------------
453 -- LATEX INTERFACE
454 ------------------------------------------------------------------------
455 do
456    -- these function are called from ltj-latex.sty
457    local fenc_list, kyenc_list, ktenc_list = {}, {}, {}
458    function luatexja.jfont.add_fenc_list(enc) fenc_list[enc] = 'true ' end
459    function luatexja.jfont.add_kyenc_list(enc) kyenc_list[enc] = 'true ' end
460    function luatexja.jfont.add_ktenc_list(enc) ktenc_list[enc] = 'true ' end
461    function luatexja.jfont.is_kyenc(enc)
462       tex.sprint(cat_lp, '\\let\\ifin@\\if' .. (kyenc_list[enc] or 'false '))
463    end
464    function luatexja.jfont.is_ktenc(enc)
465       tex.sprint(cat_lp, '\\let\\ifin@\\if' .. (ktenc_list[enc] or 'false '))
466    end
467    function luatexja.jfont.is_kenc(enc)
468       tex.sprint(cat_lp, '\\let\\ifin@\\if'
469                  .. (kyenc_list[enc] or ktenc_list[enc] or 'false '))
470    end
471
472    local kfam_list, Nkfam_list = {}, {}
473    function luatexja.jfont.add_kfam(fam)
474       kfam_list[fam]=true
475    end
476    function luatexja.jfont.search_kfam(fam, use_fd)
477       if kfam_list[fam] then
478          tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
479       elseif Nkfam_list[fam] then
480          tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
481       elseif use_fd then
482          for i,_ in pairs(kyenc_list) do
483             if kpse.find_file(string.lower(i)..fam..'.fd') then
484                tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
485             end
486          end
487          for i,_ in pairs(ktenc_list) do
488             if kpse.find_file(string.lower(i)..fam..'.fd') then
489                tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
490             end
491          end
492          Nkfam_list[fam]=true; tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
493       else
494          tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
495       end
496    end
497    local ffam_list, Nffam_list = {}, {}
498    function luatexja.jfont.is_ffam(fam)
499       tex.sprint(cat_lp, '\\let\\ifin@\\if' .. (ffam_list[fam] or 'false '))
500    end
501    function luatexja.jfont.add_ffam(fam)
502       ffam_list[fam]='true '
503    end
504    function luatexja.jfont.search_ffam_declared()
505      local s = ''
506      for i,_ in pairs(fenc_list) do
507         s = s .. '\\cdp@elt{' .. i .. '}'
508      end
509      tex.sprint(cat_lp, s)
510    end
511    function luatexja.jfont.search_ffam_fd(fam)
512       if Nffam_list[fam] then
513          tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
514       else
515          for i,_ in pairs(fenc_list) do
516             if kpse.find_file(string.lower(i)..fam..'.fd') then
517                tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
518             end
519          end
520          Nffam_list[fam]=true; tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
521       end
522    end
523
524 end
525 ------------------------------------------------------------------------
526 -- ALTERNATE FONTS
527 ------------------------------------------------------------------------
528 local alt_font_table = {}
529 local attr_curaltfnt = {}
530 local ucs_out = 0x110000
531
532 ------ for TeX interface
533 -- EXT
534 function luatexja.jfont.set_alt_font(b,e,ind,bfnt)
535    -- ind: 新フォント, bfnt: 基底フォント
536    if b>e then b, e = e, b end
537    if b*e<=0 then
538       ltjb.package_error('luatexja',
539                         'bad character range ([' .. b .. ',' .. e .. ']). ' ..
540                            'I take the intersection with [0x80, 0x10ffff].')
541       b, e = math.max(0x80,b),math.min(ucs_out-1,e)
542    elseif e<0 then -- b<e<0
543       -- do nothing
544    elseif b<0x80 or e>=ucs_out then
545       ltjb.package_warning('luatexja',
546                            'bad character range ([' .. b .. ',' .. e .. ']). ' ..
547                               'I take the intersection with [0x80, 0x10ffff].')
548       b, e = math.max(0x80,b), math.min(ucs_out-1,e)
549    end
550    if not alt_font_table[bfnt] then alt_font_table[bfnt]={} end
551    local t = alt_font_table[bfnt]
552    local ac = font_getfont(ind).characters
553    if bfnt==ind then ind = nil end -- ind == bfnt の場合はテーブルから削除
554    if e>=0 then -- character range
555       for i=b, e do
556          if ac[i]then  t[i]=ind end
557       end
558    else
559       b, e = -e, -b
560       local tx = font_metric_table[bfnt].chars
561       for i,v in pairs(tx) do
562          if b<=v and v<=e and ac[i] then t[i]=ind end
563       end
564    end
565 end
566
567 -- EXT
568 function luatexja.jfont.clear_alt_font(bfnt)
569    if alt_font_table[bfnt] then
570       local t = alt_font_table[bfnt]
571       for i,_ in pairs(t) do t[i]=nil; end
572    end
573 end
574
575 ------ used in ltjp.suppress_hyphenate_ja callback
576 function luatexja.jfont.replace_altfont(pf, pc)
577    local a = alt_font_table[pf]
578    return a and a[pc] or pf
579 end
580
581 ------ for LaTeX interface
582
583 local alt_font_table_latex = {}
584
585 -- EXT
586 function luatexja.jfont.clear_alt_font_latex(bbase)
587    local t = alt_font_table_latex[bbase]
588    if t then
589       for j,v in pairs(t) do t[j] = nil end
590    end
591 end
592
593 -- EXT
594 function luatexja.jfont.set_alt_font_latex(b,e,ind,bbase)
595    -- ind: Alt font の enc/fam/ser/shape, bbase: 基底フォントの enc/fam/ser/shape
596    if b>e then b, e = e, b end
597    if b*e<=0 then
598       ltjb.package_error('luatexja',
599                         'bad character range ([' .. b .. ',' .. e .. ']). ' ..
600                            'I take the intersection with [0x80, 0x10ffff].')
601       b, e = math.max(0x80,b),math.min(ucs_out-1,e)
602    elseif e<0 then -- b<e<0
603       -- do nothing
604    elseif b<0x80 or e>=ucs_out then
605       ltjb.package_warning('luatexja',
606                            'bad character range ([' .. b .. ',' .. e .. ']). ' ..
607                               'I take the intersection with [0x80, 0x10ffff].')
608       b, e = math.max(0x80,b), math.min(ucs_out-1,e)
609    end
610
611    if not alt_font_table_latex[bbase] then alt_font_table_latex[bbase]={} end
612    local t = alt_font_table_latex[bbase]
613    if not t[ind] then t[ind] = {} end
614    for i=b, e do
615       for j,v in pairs(t) do
616          if v[i] then -- remove old entry
617             if j~=ind then v[i]=nil end; break
618          end
619       end
620       t[ind][i]=true
621    end
622    -- remove the empty tables
623    for j,v in pairs(t) do
624       local flag_clear = true
625       for k,_ in pairs(v) do flag_clear = false; break end
626       if flag_clear then t[j]=nil end
627    end
628    if ind==bbase  then t[bbase] = nil end
629 end
630
631 -- ここから先は 新 \selectfont の内部でしか実行されない
632 do
633    local alt_font_base, alt_font_base_num
634    local aftl_base
635    -- EXT
636    function luatexja.jfont.does_alt_set(bbase)
637       aftl_base = alt_font_table_latex[bbase]
638       tex.sprint(cat_lp, '\\if' .. (aftl_base and 'true' or 'false'))
639    end
640    -- EXT
641    function luatexja.jfont.print_aftl_address()
642       tex.sprint(cat_lp, ';ltjaltfont' .. tostring(aftl_base):sub(8))
643    end
644
645 -- EXT
646    function luatexja.jfont.output_alt_font_cmd(dir, bbase)
647       alt_font_base = bbase
648       if dir == 't' then
649          alt_font_base_num = tex.getattribute(attr_curtfnt)
650       else
651          alt_font_base_num = tex.getattribute(attr_curjfnt)
652       end
653       local t = alt_font_table[alt_font_base_num]
654       if t then
655          for i,_ in pairs(t) do t[i]=nil end
656       end
657       t = alt_font_table_latex[bbase]
658       if t then
659        for i,_ in pairs(t) do
660             tex.sprint(cat_lp, '\\ltj@pickup@altfont@aux' .. dir .. '{' .. i .. '}')
661          end
662       end
663    end
664
665 -- EXT
666    function luatexja.jfont.pickup_alt_font_a(size_str)
667       local t = alt_font_table_latex[alt_font_base]
668       if t then
669          for i,v in pairs(t) do
670             tex.sprint(cat_lp, '\\expandafter\\ltj@pickup@altfont@copy'
671                           .. '\\csname ' .. i .. '/' .. size_str .. '\\endcsname{' .. i .. '}')
672          end
673       end
674    end
675
676    local function pickup_alt_font_class(class, afnt_num, afnt_chars)
677       local t  = alt_font_table[alt_font_base_num]
678       local tx = font_metric_table[alt_font_base_num].chars
679       for i,v in pairs(tx) do
680          if v==class and afnt_chars[i] then t[i]=afnt_num end
681       end
682    end
683
684 -- EXT
685    function luatexja.jfont.pickup_alt_font_b(afnt_num, afnt_base)
686       local t = alt_font_table[alt_font_base_num]
687       local ac = font_getfont(afnt_num).characters
688       if not t then t = {}; alt_font_table[alt_font_base_num] = t end
689       for i,v in pairs(alt_font_table_latex[alt_font_base]) do
690          if i == afnt_base then
691             for j,_ in pairs(v) do
692                if j>=0 then
693                   if ac[j] then t[j]=afnt_num end
694                else  -- -n (n>=1) means that the character class n,
695                      -- which is defined in the JFM
696                   pickup_alt_font_class(-j, afnt_num, ac)
697                end
698             end
699             return
700          end
701       end
702    end
703
704 end
705 ------------------------------------------------------------------------
706 -- 終了時に各種ノードを破棄
707 ------------------------------------------------------------------------
708 do
709    function luatexja.jfont.cleanup_size_cache()
710       --local gs, ke = 0, 0
711       for _,n in pairs(metrics) do
712          for i,t in pairs(n.size_cache) do
713             for _,v in pairs(t.char_type) do
714                for k,w in pairs(v) do
715                   if type(k)=='number' then
716                      --if w[1] then gs = gs + 1 else ke = ke + 1 end
717                      if w[1] then node_free(w[1]) end
718                   end
719                end
720             end
721             n.size_cache[i]=nil
722          end
723       end
724    end
725 end
726
727 ------------------------------------------------------------------------
728 -- 追加のフォント情報
729 ------------------------------------------------------------------------
730 local font_extra_info = {}
731 luatexja.jfont.font_extra_info= font_extra_info -- key: fontnumber
732 local font_extra_basename = {} -- key: basename
733
734 local list_rotate_glyphs
735 do
736    -- output of function_uax50.lua
737    -- UAX#50 for Unicode  10.0.0
738    -- t[0] = true
739    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 }
740    local function rotate_in_uax50(i)
741      local lo, hi = 1, #t
742      while lo < hi do
743        local mi = math.ceil((lo+hi)/2)
744        if t[mi]<=i then lo=mi else hi=mi-1 end 
745      end
746      return lo%2==1
747    end
748    list_rotate_glyphs = function (dest, id)
749       if id.specification and id.resources then
750          local rot = {}
751          for i,_ in pairs(id.characters) do
752             if rotate_in_uax50(i) then rot[i] = true end
753          end
754          if id.resources.sequences then
755          for _,i in pairs(id.resources.sequences) do
756             if i.order[1]== 'vert' and i.type == 'gsub_single' and i.steps then
757                for _,j in pairs(i.steps) do
758                   if type(j)=='table' then 
759                      if type(j.coverage)=='table' then
760                         for i,_ in pairs(j.coverage) do rot[i]=nil end
761                      end
762                   end
763                end
764             end
765          end; end
766          -- コードポイントが共有されているグリフについて
767          if id.resources.duplicates then
768          for i,v in pairs(id.resources.duplicates) do
769             local f = rot[i]
770             for j,_ in pairs(v) do f = f and rot[j] end
771             rot[i]=f
772             for j,_ in pairs(v) do rot[j] = f end
773          end; end
774          
775          for i,_ in pairs(rot) do
776             dest = dest or {}
777             dest[i] = dest[i] or {}
778             dest[i].rotation = true
779          end
780       end
781       return dest
782    end
783 end
784
785 -- vertical metrics
786 local prepare_fl_data
787 local supply_vkern_table
788 do
789    local fields = fontloader.fields
790    local function glyph_vmetric(glyph)
791       local flds = fields(glyph)
792       local vw, tsb, vk = nil, nil, nil
793       for _,i in ipairs(flds) do
794          if i=='vwidth' then vw = glyph.vwidth end
795          if i=='tsidebearing' then tsb = glyph.tsidebearing end
796          if i=='vkerns' then vk = glyph.vkerns end
797       end
798       return vw, tsb, vk
799    end
800
801    local sort = table.sort
802    local function add_fl_table(dest, glyphs, unitable, asc_des, units, id)
803       local glyphmin, glyphmax = glyphs.glyphmin, glyphs.glyphmax
804       if glyphmax < 0 then return dest end
805       local tg = glyphs.glyphs
806       for i = glyphmin, glyphmax do
807          local gv = tg[i]
808          if gv then
809             if gv.altuni then
810                for _,at in pairs(gv.altuni) do
811                   local bu, vsel = at.unicode, at.variant
812                   if vsel then
813                      if vsel>=0xE0100 then vsel = vsel - 0xE0100 end
814                      local uniq_flag = true
815                      if dest and dest[bu] then
816                         for i,_ in pairs(dest[bu]) do
817                            if i==vsel then uniq_flag = false; break end
818                         end
819                      end
820                      if uniq_flag then
821                         dest = dest or {}; dest[bu] = dest[bu] or {}
822                         dest[bu][vsel] = unitable[gv.name]
823                      end
824                   end
825                end
826             end
827             -- vertical metric
828             local vw, tsb, vk = glyph_vmetric(gv)
829             local gi = unitable[gv.name]
830             if gi and vw and vw~=asc_des then
831                -- We do not use tsidebearing, since (1) fontloader does not read VORG table
832                -- and (2) 'tsidebearing' doea not appear in the returned table by fontloader.fields.
833                -- Hence, we assume that vertical origin == ascender
834                -- (see capsule_glyph_tate in ltj-setwidth.lua)
835                dest = dest or {}; dest[gi] = dest[gi] or {}
836                dest[gi].vwidth = vw/units
837             end
838             -- vertical kern
839             if gi and vk then
840                dest = dest or {};
841                local dest_vk = dest.vkerns or {}; dest.vkerns = dest_vk
842                for _,v in pairs(vk) do
843                   if unitable[v.char] then
844                      local vl = v.lookup
845                      if type(vl)=='table' then
846                         for _,vlt in pairs(vl) do
847                            dest_vk[vlt] = dest_vk[vlt] or {}
848                            dest_vk[vlt][gi] = dest_vk[vlt][gi] or {}
849                            dest_vk[vlt][gi][unitable[v.char]] = v.off
850                         end
851                      else
852                         dest_vk[vl] = dest_vk[vl] or {}
853                         dest_vk[vl][gi] = dest_vk[vl][gi] or {}
854                         dest_vk[vl][gi][unitable[v.char]] = v.off
855                      end
856                   end
857                end
858             end
859          end
860       end
861       return dest
862    end
863    prepare_fl_data = function (dest, id)
864       local t = fontloader.info(id.filename)
865       if not t then return dest end
866       local fl
867       if t.fontname then
868         fl = fontloader.open(id.filename)
869       else
870         fl = fontloader.open(id.filename, id.fontname) -- マニュアルにはこっちで書いてあるが?
871         if not fl then
872           local index
873           for i,v in ipairs(t) do
874             if v.fontname == id.fontname then index=i; break end
875           end  
876           fl = fontloader.open(id.filename, index)
877         end
878       end
879       if not fl then fontloader.close(fl); return dest end
880       local ind_to_uni, unicodes = {}, {}
881       for i,v in pairs(id.characters) do
882           ind_to_uni[v.index] = i
883       end
884       if fl.glyphs then
885          local tg, glyphmin, glyphmax = fl.glyphs, fl.glyphmin, fl.glyphmax
886          if 0 <= glyphmax then
887             for i = glyphmin, glyphmax do
888                if tg[i] and tg[i].name then unicodes[tg[i].name] = ind_to_uni[i] end
889             end
890          end
891          dest = add_fl_table(dest, fl, unicodes,
892                              fl.ascent + fl.descent, fl.units_per_em, id)
893       end
894       if fl.subfonts then
895          for _,v in pairs(fl.subfonts) do
896             local tg, glyphmin, glyphmax = v.glyphs, v.glyphmin, v.glyphmax
897             if 0 <= glyphmax then
898                for i = glyphmin, glyphmax do
899                   if tg[i] and tg[i].name then unicodes[tg[i].name] = ind_to_uni[i] end
900                end
901            end
902        end
903          for _,v in pairs(fl.subfonts) do
904             dest = add_fl_table(dest, v, unicodes,
905                                 fl.ascent + fl.descent, fl.units_per_em, id)
906          end
907      end
908      if dest then dest.unicodes = unicodes end
909      fontloader.close(fl); collectgarbage("collect")
910      return dest
911    end
912    -- supply vkern table
913    supply_vkern_table = function(id, bname)
914       local bx = font_extra_basename[bname].vkerns
915       local lookuphash =  id.resources.lookuphash
916       local desc = id.shared.rawdata.descriptions
917       if bx and lookuphash then
918          for i,v in pairs(bx) do
919             lookuphash[i] = lookuphash[i] or v
920             for j,w in pairs(v) do
921                desc[j].kerns = desc[j].kerns or {}
922                desc[j].kerns[i] = w
923             end
924          end
925       end
926    end
927 end
928
929 --
930 do
931    local cache_ver = 15
932    local checksum = file.checksum
933
934    local function prepare_extra_data_base(id)
935       if (not id) or (not id.filename) then return end
936       local bname = id.psname or file.nameonly(id.filename)
937       if not font_extra_basename[bname] then
938          -- if the cache is present, read it
939          local newsum = checksum(id.filename) -- MD5 checksum of the fontfile
940          local v = "extra_" .. string.lower(bname)
941          local dat = ltjb.load_cache(
942             v,
943             function (t) return (t.version~=cache_ver) or (t.chksum~=newsum) end
944          )
945          -- if the cache is not found or outdated, save the cache
946          if dat then
947             font_extra_basename[bname] = dat[1] or {}
948          else
949             local dat = nil
950             dat = prepare_fl_data(dat, id)
951             dat = list_rotate_glyphs(dat, id)
952             font_extra_basename[bname] = dat or {}
953             ltjb.save_cache( v,
954                              {
955                                 chksum = newsum,
956                                 version = cache_ver,
957                                 dat,
958                              })
959          end
960          return bname
961       end
962    end
963    local function prepare_extra_data_font(id, res)
964       if type(res)=='table' and res.shared and (res.psname or res.filename) then
965          font_extra_info[id] = font_extra_basename[res.psname or file.nameonly(res.filename)]
966       end
967    end
968     luatexbase.add_to_callback(
969        'luaotfload.patch_font',
970        function (tfmdata)
971           -- these function is executed one time per one fontfile
972           if jfm_file_name then
973             local bname = prepare_extra_data_base(tfmdata)
974             if bname then supply_vkern_table(tfmdata, bname) end
975           end
976           return tfmdata
977        end,
978        'ltj.prepare_extra_data', 1)
979    luatexbase.add_to_callback(
980       'luatexja.define_font',
981       function (res, name, size, id)
982          prepare_extra_data_font(id, res)
983       end,
984       'ltj.prepare_extra_data', 1)
985
986    local nulltable = {} -- dummy
987    ltjr.vert_addfunc = function (n) font_extra_info[n] = nulltable end
988
989    local identifiers = fonts.hashes.identifiers
990    for i=1,font.nextid()-1 do
991       if identifiers[i] then
992          prepare_extra_data_base(identifiers[i])
993          prepare_extra_data_font(i,identifiers[i])
994       end
995    end
996 end
997
998
999 ------------------------------------------------------------------------
1000 -- calculate vadvance
1001 ------------------------------------------------------------------------
1002 do
1003    local function acc_feature(table_vadv, table_vorg, subtables, ft,  already_vert)
1004       for char_num,v in pairs(ft.shared.rawdata.descriptions) do
1005          if v.slookups then
1006             for sn, sv in pairs(v.slookups) do
1007                if subtables[sn] and type(sv)=='table' then
1008                   if sv[4]~=0 then
1009                      table_vadv[char_num]
1010                         = (table_vadv[char_num] or 0) + sv[4]
1011                   end
1012                   if sv[2]~=0 and not already_vert then
1013                      table_vorg[char_num]
1014                         = (table_vorg[char_num] or 0) + sv[2]
1015                   end
1016                end
1017             end
1018          end
1019       end
1020    end
1021
1022 luatexbase.add_to_callback(
1023    "luatexja.define_jfont",
1024    function (fmtable, fnum)
1025       local vadv = {}; fmtable.v_advance = vadv
1026       local vorg = {}; fmtable.v_origin = vorg
1027       local ft = font_getfont(fnum)
1028       local subtables = {}
1029       if ft.specification then
1030          for feat_name,v in pairs(ft.specification.features.normal) do
1031             if v==true and ft.resources then
1032                for _,i in pairs(ft.resources.sequences) do
1033                   if i.order[1]== feat_name and i.type == 'gpos_single' and type(i.subtables)=='table' then
1034                      for _,st in pairs(i.subtables) do
1035                         subtables[st] = true
1036                      end
1037                   end
1038                end
1039             end
1040          end
1041          acc_feature(vadv, vorg, subtables, ft,
1042                      ft.specification.features.normal.vrt2 or ft.specification.features.normal.vert)
1043          for i,v in pairs(vadv) do
1044             vadv[i]=vadv[i]/ft.units_per_em*fmtable.size
1045          end
1046          for i,v in pairs(vorg) do
1047             vorg[i]=vorg[i]/ft.units_per_em*fmtable.size
1048          end
1049       end
1050       return fmtable
1051    end, 'ltj.v_advance', 1
1052 )
1053 end
1054
1055 ------------------------------------------------------------------------
1056 -- make table of vertical glyphs which does not covered by vert feature
1057 -- nor UTR#50
1058 ------------------------------------------------------------------------
1059 do
1060 ------------------------------------------------------------------------
1061 -- VERT VARIANT TABLE
1062 ------------------------------------------------------------------------
1063   local provides_feature = luaotfload.aux.provides_feature
1064   local vert_form_table = {
1065      [0x3001]=0xFE11, [0x3002]=0xFE12, [0x3016]=0xFE17, [0x3017]=0xFE18,
1066      [0x2026]=0xFE19,
1067      [0x2025]=0xFE30, [0x2014]=0xFE31, [0x2013]=0xFE32, [0xFF3F]=0xFE33,
1068      [0xFF08]=0xFE35, [0xFF09]=0xFE36, [0xFF5B]=0xFE37, [0xFF5D]=0xFE38,
1069      [0x3014]=0xFE39, [0x3015]=0xFE3A, [0x3010]=0xFE3B, [0x3011]=0xFE3C,
1070      [0x300A]=0xFE3D, [0x300B]=0xFE3E, [0x3008]=0xFE3F, [0x3009]=0xFE40,
1071      [0x300C]=0xFE41, [0x300D]=0xFE42, [0x300E]=0xFE43, [0x300F]=0xFE44,
1072      [0xFF3B]=0xFE47, [0xFF3D]=0xFE48, 
1073   }
1074   local function add_vform(coverage, vform, ft, add_vert)
1075      if type(coverage)~='table' then return end
1076      for i,v in pairs(vert_form_table) do
1077          if not coverage[i] and ft.characters[v] then
1078              vform[i] = v
1079          end
1080      end
1081      if add_vert then -- vert feature が有効にならない場合
1082         for i,v in pairs(coverage) do vform[i] = vform[i] or v end
1083      end
1084   end
1085
1086 luatexbase.add_to_callback(
1087    "luatexja.define_jfont",
1088    function (fmtable, fnum)
1089       local vform = {}; fmtable.vform = vform
1090       local t = font_getfont(fnum)
1091       if t.specification and t.resources then
1092          local add_vert  
1093            = not (provides_feature(fnum, t.properties.script, t.properties.language, 'vert'))
1094              and not (provides_feature(fnum, t.properties.script, t.properties.language, 'vrt2'))
1095          -- 現在の language, script で vert もvrt2 も有効にできない場合,強制的に vert 適用
1096          for _,i in pairs(t.resources.sequences) do
1097             if i.order[1]== 'vert' and i.type == 'gsub_single' and i.steps then
1098                for _,j in pairs(i.steps) do
1099                   if type(j)=='table' then add_vform(j.coverage,vform, t, add_vert) end
1100                end
1101             end
1102           end
1103       end
1104       return fmtable
1105    end, 'ltj.get_vert_form', 1
1106 )
1107 end
1108
1109 ------------------------------------------------------------------------
1110 -- supply tounicode entries
1111 ------------------------------------------------------------------------
1112 do
1113   local ltjr_prepare_cid_font = ltjr.prepare_cid_font
1114   luatexbase.add_to_callback(
1115      'luaotfload.patch_font',
1116      function (tfmdata)
1117         local cidinfo = tfmdata.cidinfo or tfmdata.resources.cidinfo
1118         if cidinfo and cidinfo.registry and cidinfo.ordering then
1119            local rd = ltjr_prepare_cid_font(cidinfo.registry, cidinfo.ordering)
1120            if rd then
1121               local ru, rc = rd.resources.unicodes, rd.characters
1122               for i,v in pairs(tfmdata.characters) do
1123                  local w = ru["Japan1." .. tostring(v.index)]
1124                  if w then
1125                     v.tounicode = v.tounicode or rc[w]. tounicode
1126                  end
1127               end
1128            end
1129         end
1130
1131         return tfmdata
1132      end,
1133      'ltj.supply_tounicode', 1)
1134 end
1135
1136
1137 ------------------------------------------------------------------------
1138 -- MISC
1139 ------------------------------------------------------------------------
1140 do
1141    local getfont = node.direct.getfont
1142    local getchar = node.direct.getchar
1143    local get_dir_count = ltjd.get_dir_count
1144    local is_ucs_in_japanese_char = ltjc.is_ucs_in_japanese_char_direct
1145    local ensure_tex_attr = ltjb.ensure_tex_attr
1146    local node_write = node.direct.write
1147    local font = font
1148    local new_ic_kern
1149    if status.luatex_version>=89 then
1150        new_ic_kern = function(g)  return node_new(id_kern,3) end
1151    else
1152        local ITALIC       = luatexja.icflag_table.ITALIC
1153        new_ic_kern = function()
1154          local g = node_new(id_kern, 1)
1155          set_attr(g, attr_icflag, ITALIC)
1156          return g
1157        end
1158    end
1159    -- EXT: italic correction
1160    function luatexja.jfont.append_italic()
1161       local p = to_direct(tex.nest[tex.nest.ptr].tail)
1162       local TEMP = node_new(id_kern)
1163       if p and getid(p)==id_glyph then
1164          if is_ucs_in_japanese_char(p) then
1165             local j = font_metric_table[
1166                has_attr(p, (get_dir_count()==dir_tate) and attr_curtfnt or attr_curjfnt)
1167                ]
1168             local g = new_ic_kern()
1169             setfield(g, 'kern', j.char_type[find_char_class(getchar(p), j)].italic)
1170             node_write(g); ensure_tex_attr(attr_icflag, 0)
1171          else
1172             local f = getfont(p)
1173             local h = font_getfont(f) or font.fonts[f]
1174             if h then
1175                local g = new_ic_kern()
1176                if h.characters[getchar(p)] and h.characters[getchar(p)].italic then
1177                   setfield(g, 'kern', h.characters[getchar(p)].italic)
1178                   node_write(g); ensure_tex_attr(attr_icflag, 0)
1179                end
1180             end
1181          end
1182       end
1183       node_free(TEMP)
1184    end
1185 end
1186
1187 luatexja.jfont.metrics = metrics
1188 luatexja.jfont.font_metric_table = font_metric_table
1189 luatexja.jfont.find_char_class = find_char_class
1190
1191 luatexja.jfont.update_jfm_cache = update_jfm_cache