OSDN Git Service

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