OSDN Git Service

updated documents, avoid errors in non-embedded fonts
[luatex-ja/luatexja.git] / src / ltj-jfont.lua
1 --
2 -- ltj-jfont.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.jfont',
6   date = '2020-09-16',
7   description = 'Loader for Japanese fonts',
8 })
9
10 luatexja.load_module 'lotf_aux';  local ltju = luatexja.lotf_aux
11 luatexja.load_module 'base';      local ltjb = luatexja.base
12 luatexja.load_module 'charrange'; local ltjc = luatexja.charrange
13 luatexja.load_module 'rmlgbm';    local ltjr = luatexja.rmlgbm
14 luatexja.load_module 'direction'; local ltjd = luatexja.direction
15
16 local setfield = node.direct.setfield
17 local getid = node.direct.getid
18 local to_direct = node.direct.todirect
19
20 local node_new = node.direct.new
21 local node_free = node.direct.free
22 local has_attr = node.direct.has_attribute
23 local set_attr = node.direct.set_attribute
24 local round = tex.round
25 local font_getfont = font.getfont
26
27 local attr_icflag = luatexbase.attributes['ltj@icflag']
28 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
29 local attr_curtfnt = luatexbase.attributes['ltj@curtfnt']
30 local id_glyph = node.id('glyph')
31 local id_kern = node.id('kern')
32 local cat_lp = luatexbase.catcodetables['latex-package']
33 local FROM_JFM     = luatexja.icflag_table.FROM_JFM
34
35 luatexja.jfont = luatexja.jfont or {}
36 ------------------------------------------------------------------------
37 -- LOADING JFM
38 ------------------------------------------------------------------------
39
40 local metrics = {} -- this table stores all metric informations
41 local font_metric_table = ltju.font_metric_table -- [font number] -> jfm_name, jfm_var, size
42
43 luatexbase.create_callback("luatexja.load_jfm", "data", function (ft, jn) return ft end)
44
45 local jfm_spec, jfm_name, jfm_var, jfm_ksp
46 local defjfm_res
47 local jfm_dir, is_def_jfont, vert_activated, auto_enable_vrt2
48
49 local function norm_val(a)
50    if (not a) or (a==0.) then
51       return nil
52    elseif a==true then
53       return 1
54    else
55       return a
56    end
57 end
58
59 local fastcopy=table.fastcopy
60 function luatexja.jfont.define_jfm(to)
61    local t = fastcopy(to)
62    local real_char -- Does current character class have the 'real' character?
63    if t.dir~=jfm_dir then
64       defjfm_res= nil; return
65    elseif type(t.zw)~='number' or type(t.zh)~='number' then
66       defjfm_res= nil; return
67    end
68    t.version = (type(t.version)=='number') and t.version or 1
69    t.char_type = {}; t.chars = {}
70    for i,v in pairs(t) do
71       if type(i) == 'number' then -- char_type
72          if not v.chars then
73             if i ~= 0 then defjfm_res= nil; return  end
74          else
75             for j,w in pairs(v.chars) do
76                if type(w) == 'number' and w~=-1 then
77                elseif type(w) == 'string' and utf.len(w)==1 then
78                   w = utf.byte(w)
79                elseif type(w) == 'string' and utf.len(w)==2 and utf.sub(w,2) == '*' then
80                   w = utf.byte(utf.sub(w,1,1))
81                end
82                if not t.chars[w] then
83                   t.chars[w] = i
84                else
85                   defjfm_res= nil; return
86                end
87             end
88             v.chars = nil
89          end
90          if type(v.align)~='string' then
91             v.align = 'left' -- left
92          end
93          if type(v.width)~='number' then
94             v.width = nil
95          end
96          if type(v.height)~='number' then
97             v.height = (jfm_dir=='tate') and  0.0 or nil
98          end
99          if type(v.depth)~='number' then
100             v.depth =  (jfm_dir=='tate') and  0.0 or nil
101          end
102          if type(v.italic)~='number' then
103             v.italic = 0.0
104          end
105          if type(v.left)~='number' then
106             v.left = 0.0
107          end
108          if type(v.down)~='number' then
109             v.down = 0.0
110          end
111          v.round_threshold = ((t.version>=3)and(i==0)and(type(v.round_threshold)=='number'))
112             and v.round_threshold or nil
113          if t.version>=2 then
114             if v.end_stretch then defjfm_res= nil; return end
115             if v.end_shrink  then defjfm_res= nil; return end
116             if v.end_adjust then
117                if type(v.end_adjust)~='table' then
118                   v.end_adjust = nil
119                elseif #(v.end_adjust)==0 then
120                   v.end_adjust = nil
121                else 
122                   table.sort(v.end_adjust)
123                end
124             end
125          else
126             v.end_adjust = nil
127             if v.end_stretch and v.end_stretch~=0.0 then 
128                v.end_adjust = (v.end_adjust or {}) 
129                v.end_adjust[#(v.end_adjust)+1] = v.end_stretch
130             end
131             if v.end_shrink and v.end_ahrink~=0.0 then 
132                v.end_adjust = (v.end_adjust or {}) 
133                v.end_adjust[#(v.end_adjust)+1] = -v.end_shrink
134             end
135             if v.end_adjust then v.end_adjust[#(v.end_adjust)+1] = 0.0 end
136          end
137          v.kern = v.kern or {}; v.glue = v.glue or {}
138          for j,x in pairs(v.glue) do
139             if v.kern[j] then defjfm_res= nil; return end
140             x.ratio, x[5] = (x.ratio or (x[5] and 0.5*(1+x[5]) or 0.5)), nil
141             do
142                local xp
143                xp, x[4] = (x.priority or x[4]), nil
144                if type(xp)=='table' and t.version>=2 then
145                   if type(xp[1])~='number' or xp[1]<-4 or xp[1]>3 then defjfm_res=nil end  -- stretch
146                   if type(xp[2])~='number' or xp[2]<-4 or xp[2]>3 then defjfm_res=nil end  -- shrink
147                   xp = (xp[1]+4)*8+(xp[2]+4)
148                elseif xp and type(xp)~='number' then
149                   defjfm_res = nil
150                else
151                   xp = (xp or 0)*9+36        
152                   if xp<0 or xp>=64 then defjfm_res=nil end 
153                end
154                x.priority = xp
155             end
156             x.kanjiskip_natural = norm_val(x.kanjiskip_natural)
157             x.kanjiskip_stretch = norm_val(x.kanjiskip_stretch)
158             x.kanjiskip_shrink = norm_val(x.kanjiskip_shrink)
159          end
160          for j,x in pairs(v.kern) do
161             if type(x)=='number' then
162                v.kern[j] = {x, 0.5}
163             elseif type(x)=='table' then
164                v.kern[j] = { x[1], (x.ratio or (x[2] and 0.5*(1+x[2]) or 0.5)) }
165             end
166          end
167          t.char_type[i] = v
168          t[i] = nil
169       end
170    end
171    if t.version<3 then
172       -- In version 3, 'jcharbdd' is divided into 
173       -- 'alchar': ALchar (or math boundary) 
174       -- 'nox_alchar': ALchar (or math boundary), where xkanjiskip won't inserted
175       -- 'glue': glue/kern, 'jcharbdd': other cases (和文B, rule, ...)
176       t.chars.alchar = t.chars.jcharbdd
177       t.chars.nox_alchar = t.chars.jcharbdd
178       t.chars.glue = t.chars.jcharbdd
179    end
180    t = luatexbase.call_callback("luatexja.load_jfm", t, jfm_spec, luatexja.jfont.jfm_feature)
181    t.size_cache = {}
182    defjfm_res = t
183 end
184
185 local update_jfm_cache
186 do
187    local floor = math.floor
188    local function myround(a) return floor(a+0.5) end
189    local mult_ignore_key = {
190      round_threshold=true, kanjiskip_natural=true, kanjiskip_stretch=true, kanjiskip_shrink=true,
191      ratio=true, priority=true
192    }
193    local function mult_table(old,scale) -- modified from table.fastcopy
194       if old then
195          local new = { }
196          for k,v in next, old do
197             if type(v) == "table" then
198                new[k] = mult_table(v,scale)
199             elseif type(v) == "number" and not mult_ignore_key[k] then
200                new[k] = myround(v*scale)
201             else
202                new[k] = v
203             end
204          end
205          return new
206       else return nil end
207    end
208    local size_cache_num = 1
209    update_jfm_cache = function (j,sz)
210       if metrics[j].size_cache[sz] then return metrics[j].size_cache[sz].index end
211       local t = {}
212       metrics[j].size_cache[sz] = t
213       t.chars = metrics[j].chars
214       t.char_type = mult_table(metrics[j].char_type, sz)
215       for i,v in pairs(t.char_type) do
216          v.align = (v.align=='left') and 0 or
217             ((v.align=='right') and 1 or 0.5)
218          if type(i) == 'number' then -- char_type
219             for k,w in pairs(v.glue) do
220                v[k] = {
221                   nil,
222                   ratio=w.ratio,
223                   priority=FROM_JFM + w.priority,
224                   width = w[1], stretch = w[2], shrink = w[3],
225                   kanjiskip_natural = w.kanjiskip_natural,
226                   kanjiskip_stretch = w.kanjiskip_stretch,
227                   kanjiskip_shrink =  w.kanjiskip_shrink,
228                   round_threshold = w.round_threshold,
229                   }
230             end
231             for k,w in pairs(v.kern) do
232                local g = node_new(id_kern, 1)
233                setfield(g, 'kern', w[1])
234                set_attr(g, attr_icflag, FROM_JFM)
235                v[k] = {g, ratio=w[2]/sz}
236             end
237          end
238          v.glue, v.kern = nil, nil
239       end
240       t.kanjiskip = mult_table(metrics[j].kanjiskip, sz)
241       t.xkanjiskip = mult_table(metrics[j].xkanjiskip,sz)
242       t.zw = round(metrics[j].zw*sz)
243       t.zh = round(metrics[j].zh*sz)
244       t.size = sz
245       size_cache_num = size_cache_num + 1
246       t.index = size_cache_num
247       return size_cache_num
248    end
249 end
250
251 luatexbase.create_callback("luatexja.find_char_class", "data",
252                            function (arg, fmtable, char)
253                               return 0
254                           end)
255 local find_char_class
256 do
257    local start_time_measure = ltjb.start_time_measure
258    local stop_time_measure = ltjb.stop_time_measure
259    local fcc_temp = { chars_cbcache = {} }
260    setmetatable(
261       fcc_temp.chars_cbcache,
262       {
263          __index = function () return 0 end,
264       })
265    function find_char_class(c,m)
266       -- c: character code, m:
267       local r = (m or fcc_temp).chars_cbcache[c]
268       if not r then
269          r = m.chars[c] or
270             luatexbase.call_callback("luatexja.find_char_class", 0, m, c)
271          m.chars_cbcache[c or 0] = r
272       end
273       return r
274    end
275 end
276
277
278 ------------------------------------------------------------------------
279 -- LOADING JAPANESE FONTS
280 ------------------------------------------------------------------------
281
282 local load_jfont_metric, check_callback_order
283 local font_extra_info = {} -- defined later
284 do
285    local cstemp
286    local global_flag -- true if \globaljfont, false if \jfont
287    load_jfont_metric = function()
288      if jfm_name=='' then
289          ltjb.package_error('luatexja', 'no JFM specified',
290                             'To load and define a Japanese font, a JFM must be specified.'..
291                             "The JFM 'ujis' will be  used for now.")
292          jfm_name, jfm_spec = 'ujis', 'ujis'
293       end
294       for j,v in ipairs(metrics) do if v.name==jfm_spec then return j end end
295       luatexja.load_lua('jfm-' .. jfm_name .. '.lua')
296       if defjfm_res then
297          defjfm_res.name = jfm_spec; table.insert(metrics, defjfm_res)
298          return #metrics
299       else
300          return nil
301       end
302    end
303
304 -- EXT
305    local utfbyte = utf.byte
306    function luatexja.jfont.jfontdefX(g, dir, csname)
307       jfm_dir, is_def_jfont = dir, true
308       cstemp = csname:sub( (utfbyte(csname,1,1) == tex.escapechar) and 2 or 1, -1)
309       cstemp = cstemp:sub(1, ((cstemp:sub(-1,-1)==' ') and (cstemp:len()>=2)) and -2 or -1)
310       global_flag = g and '\\global' or ''
311       tex.sprint(cat_lp, '\\expandafter\\font\\csname ',
312                  (cstemp==' ') and '\\space' or cstemp, '\\endcsname')
313    end
314
315    luatexbase.create_callback("luatexja.define_jfont", "data", function (ft, fn) return ft end)
316
317 -- EXT
318    local fastcopy=table.fastcopy
319    function luatexja.jfont.jfontdefY()
320       local j = load_jfont_metric(jfm_dir)
321       local fn = font.id(cstemp)
322       local f = font_getfont(fn)
323       if not j then
324          ltjb.package_error('luatexja', "bad JFM `" .. jfm_name .. "'",
325                             'The JFM file you specified is not valid JFM file.\n'..
326                                'So defining Japanese font is cancelled.')
327          tex.sprint(cat_lp, global_flag, '\\expandafter\\let\\csname ',
328                     (cstemp==' ') and '\\space' or cstemp,
329                        '\\endcsname=\\relax')
330          return
331       end
332       if not f then return end
333       update_jfm_cache(j, f.size); check_callback_order()
334       local sz = metrics[j].size_cache[f.size]
335       local fmtable = { jfm = j, size = f.size, var = jfm_var,
336                         with_kanjiskip = jfm_ksp,
337                         zw = sz.zw, zh = sz.zh,
338                         chars = sz.chars, char_type = sz.char_type,
339                         kanjiskip = sz.kanjiskip, xkanjiskip = sz.xkanjiskip,
340                         chars_cbcache = {},
341                         vert_activated = vert_activated,
342                         rotation = fastcopy(font_extra_info[fn].rotation),
343       }
344       if auto_enable_vrt2 then
345          local vert_name = ltju.exist_feature(fn, 'vrt2') and 'vrt2' or 'vert'
346          local rot = fmtable.rotation 
347          ltju.enable_feature(fn, vert_name)
348          ltju.loop_over_feat(f, {[vert_name]=true}, function (i,k) rot[i] = nil end)
349       end
350
351       fmtable = luatexbase.call_callback("luatexja.define_jfont", fmtable, fn)
352       font_metric_table[fn]=fmtable
353       tex.sprint(cat_lp, global_flag, '\\protected\\expandafter\\def\\csname ',
354                     (cstemp==' ') and '\\space' or cstemp, '\\endcsname{\\ltj@cur'..
355                     (jfm_dir == 'yoko' and 'j' or 't') .. 'fnt', fn, '\\relax}')
356       jfm_spec = nil
357    end
358 end
359
360 do
361     local ltb = luatexbase
362     local to_be_checked = { 'pre_linebreak_filter', 'hpack_filter' }
363     check_callback_order = function()
364         for i,n in pairs(to_be_checked) do
365             local lotf_cb = ltb.priority_in_callback(n, 'luaotfload.letterspace')
366             local ltj_cb  = ltb.priority_in_callback(n, 'ltj.main')
367             if lotf_cb then
368                 to_be_checked[i]=nil
369                 if ltj_cb<lotf_cb then
370                     local f = ltb.remove_from_callback(n,'luaotfload.letterspace')
371                     ltb.add_to_callback(n, f, 'luaotfload.letterspace', 
372                         ltb.priority_in_callback(n, 'luaotfload.node_processor') + 1)
373                 end
374             end
375         end
376     end
377 end
378
379 do
380    local get_dir_count = ltjd.get_dir_count
381    local dir_tate = luatexja.dir_table.dir_tate
382    local tex_get_attr = tex.getattribute
383    -- PUBLIC function
384    function luatexja.jfont.get_zw()
385       local a = font_metric_table[
386          tex_get_attr((get_dir_count()==dir_tate) and attr_curtfnt or attr_curjfnt)]
387       return a and a.zw or 0
388    end
389    function luatexja.jfont.get_zh()
390       local a = font_metric_table[
391          tex_get_attr((get_dir_count()==dir_tate) and attr_curtfnt or attr_curjfnt)]
392       return a and a.zw or 0
393    end
394 end
395
396 do
397     local P, R, S, V        = lpeg.P, lpeg.R, lpeg.S, lpeg.V
398     local lpegmatch         = lpeg.match
399     local C, Cc, Cf, Ct, Cg = lpeg.C, lpeg.Cc, lpeg.Cf, lpeg.Ct, lpeg.Cg
400     local Cs, B             = lpeg.Cs, lpeg.B
401     local spacing           = S" \t\v"
402     local ws                = spacing^0
403     local slash             = P'/'
404     local semicolon         = P';'
405     local comma             = P','
406     local equals            = P'='
407     local jf_field_char     = 1 - S'/{};,='
408     local jf_field          = C(jf_field_char^1)
409     local jf_assignment     = jf_field * equals * jf_field
410     local jf_switch         = P'-'    * jf_field * Cc(false) + P'+'^-1 * jf_field * Cc(true)
411     local jf_feature_expr   = Cg(jf_assignment + jf_switch) * comma^0
412     local jf_feature_list   = P'{' * jf_feature_expr^0 * P'}' + jf_feature_expr^0
413     local jf_list           = C((1-slash)^1) * (slash * Cf(Ct'' * jf_feature_list, rawset))^-1
414     local jf_value          = (1 - semicolon)^1
415     local function rem(name,value)
416       if name=='jfm' then
417         local flag, t; jfm_name, t = lpegmatch(jf_list, value)
418         if type(t)=='table' then
419           for i,v in pairs(t) do
420             flag=true
421             if v=='true' then t[i]=true elseif v=='false' then t[i]=false end
422             end
423         end
424         luatexja.jfont.jfm_feature = flag and t
425       elseif name=='jfmvar' then jfm_var = value end
426       return ''
427     end
428     local jf_remainder      = Cs( ( ( B(S':;') *
429       C(P'jfm' * P'var'^-1) * ws * equals * ws * C(jf_value) * semicolon^-1 ) / rem +1 )^0 )
430
431    local parser=luaotfload.parsers.font_request
432    function is_feature_specified(s,fname)
433      local t = lpegmatch(parser,s); return t and t.features and t.features[fname]
434    end    
435    -- extract jfm_name, jfm_spec and jfm_var
436    -- normalize position of 'jfm=' and 'jfmvar=' keys
437    local function extract_jfm_spec(name)
438       name = (name:match '^{(.*)}$') or (name:match '^"(.*)"$') or name
439       jfm_spec, jfm_var = '', ''
440       local tmp, index = name:sub(1, 5), 1
441       if tmp == 'file:' or tmp == 'name:' or tmp == 'psft:' then
442          index = 6
443       end
444       name = lpegmatch(jf_remainder, name)
445       if jfm_name~='' then
446          if luatexja.jfont.jfm_feature then
447             local l, t2 = name:sub(-1), {}
448             for i,v in pairs(luatexja.jfont.jfm_feature) do
449                -- print(i,type(v),v)
450                t2[#t2+1] = (v==true) and i
451                   or ((v==false) and ('-'..i) or (i..'='..tostring(v)))
452             end
453             table.sort(t2); jfm_spec = jfm_name .. '/{' .. table.concat(t2, ',') .. '}'
454          else
455             jfm_spec = jfm_name
456          end
457          l = name:sub(-1)
458          name = name .. ((l==':' or l==';') and '' or ';') .. 'jfm=' .. jfm_spec
459          if jfm_var~='' then
460             name = name .. ';jfmvar=' .. jfm_var
461          end
462          -- print('NN>', name)
463       end
464       jfm_ksp = (is_feature_specified(name,'ltjksp')~=false)
465       if jfm_dir == 'tate' then
466          vert_activated = (is_feature_specified(name,'vert')~=false) and (is_feature_specified(name,'vrt2')~=false)
467          auto_enable_vrt2 
468            = (is_feature_specified(name,'vert')==nil) and (is_feature_specified(name,'vrt2')==nil)
469       else
470          vert_activated, auto_enable_vrt2 = nil, nil
471       end
472       return name
473    end
474
475    -- define_font callback
476    local otfl_fdr
477    local ltjr_font_callback = ltjr.font_callback
478    function luatexja.font_callback(name, size, id)
479       local new_name = is_def_jfont and extract_jfm_spec(name) or name
480       is_def_jfont = false
481       local res =  ltjr_font_callback(new_name, size, id, otfl_fdr)
482       luatexbase.call_callback('luatexja.define_font', res, new_name, size, id)
483       -- this callback processes variation selector, so we execute it always
484       return res
485    end
486    luatexbase.create_callback('luatexja.define_font', 'simple', function (n) return n end)
487    otfl_fdr= luatexbase.remove_from_callback('define_font', 'luaotfload.define_font')
488    luatexbase.add_to_callback('define_font',luatexja.font_callback,"luatexja.font_callback", 1)
489
490    local match, sp, scan_arg = string.match, tex.sp, token.scan_argument
491    local function load_jfmonly()
492       local spec, size = match(scan_arg(), '(.+)%s+at%s*([%.%w]*)')
493       local dir = scan_arg()
494       size = sp(size); extract_jfm_spec(spec)
495       jfm_dir = dir
496       local i = load_jfont_metric()
497       local j = -update_jfm_cache(i, size)
498       font_metric_table[j]=metrics[i].size_cache[size]
499       tex.sprint(cat_lp, '\\ltj@cur' .. (dir=='yoko' and 'j' or 't') .. 'fnt' .. tostring(j) .. '\\relax')
500    end
501    luatexja.jfont.load_jfmonly = load_jfmonly
502 end
503
504 ------------------------------------------------------------------------
505 -- LATEX INTERFACE
506 ------------------------------------------------------------------------
507 do
508    local scan_arg = token.scan_argument
509    -- these function are called from ltj-latex.sty
510    local fenc_list, kyenc_list, ktenc_list = {}, {}, {}
511    function luatexja.jfont.add_fenc_list() fenc_list[scan_arg()] = 'true ' end
512    function luatexja.jfont.add_kyenc_list() kyenc_list[scan_arg()] = 'true ' end
513    function luatexja.jfont.add_ktenc_list() ktenc_list[scan_arg()] = 'true ' end
514    function luatexja.jfont.is_kyenc()
515       tex.sprint(cat_lp, '\\let\\ifin@\\if' .. (kyenc_list[scan_arg()] or 'false '))
516    end
517    function luatexja.jfont.is_ktenc()
518       tex.sprint(cat_lp, '\\let\\ifin@\\if' .. (ktenc_list[scan_arg()] or 'false '))
519    end
520    function luatexja.jfont.is_kenc()
521       local enc = scan_arg()
522       tex.sprint(cat_lp, '\\let\\ifin@\\if'
523                  .. (kyenc_list[enc] or ktenc_list[enc] or 'false '))
524    end
525
526    local kfam_list, Nkfam_list = {}, {}
527    function luatexja.jfont.add_kfam()
528       kfam_list[scan_arg()]=true
529    end
530    function luatexja.jfont.search_kfam()
531       local fam = scan_arg()
532       local use_fd = (scan_arg() =='true')
533       if kfam_list[fam] then
534          tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
535       elseif Nkfam_list[fam] then
536          tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
537       elseif use_fd then
538          for i,_ in pairs(kyenc_list) do
539             if kpse.find_file(string.lower(i)..fam..'.fd') then
540                tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
541             end
542          end
543          for i,_ in pairs(ktenc_list) do
544             if kpse.find_file(string.lower(i)..fam..'.fd') then
545                tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
546             end
547          end
548          Nkfam_list[fam]=true; tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
549       else
550          tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
551       end
552    end
553    local ffam_list, Nffam_list = {}, {}
554    function luatexja.jfont.is_ffam()
555       tex.sprint(cat_lp, '\\let\\ifin@\\if' .. (ffam_list[scan_arg()] or 'false '))
556    end
557    function luatexja.jfont.add_ffam()
558       ffam_list[scan_arg()]='true '
559    end
560    function luatexja.jfont.search_ffam_declared()
561      local s = ''
562      for i,_ in pairs(fenc_list) do
563         s = s .. '\\cdp@elt{' .. i .. '}'
564      end
565      tex.sprint(cat_lp, s)
566    end
567    function luatexja.jfont.search_ffam_fd()
568       local fam = scan_arg()
569       if Nffam_list[fam] then
570          tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
571       else
572          for i,_ in pairs(fenc_list) do
573             if kpse.find_file(string.lower(i)..fam..'.fd') then
574                tex.sprint(cat_lp, '\\let\\ifin@\\iftrue '); return
575             end
576          end
577          Nffam_list[fam]=true; tex.sprint(cat_lp, '\\let\\ifin@\\iffalse '); return
578       end
579    end
580
581 end
582 ------------------------------------------------------------------------
583 -- ALTERNATE FONTS
584 ------------------------------------------------------------------------
585 local alt_font_table = {}
586 local attr_curaltfnt = {}
587 local ucs_out = 0x110000
588
589 ------ for TeX interface
590 -- EXT
591 function luatexja.jfont.set_alt_font(b,e,ind,bfnt)
592    -- ind: 新フォント, bfnt: 基底フォント
593    if b>e then b, e = e, b end
594    if b*e<=0 then
595       ltjb.package_error('luatexja',
596                         'bad character range ([' .. b .. ',' .. e .. ']). ' ..
597                            'I take the intersection with [0x80, 0x10ffff].')
598       b, e = math.max(0x80,b),math.min(ucs_out-1,e)
599    elseif e<0 then -- b<e<0
600       -- do nothing
601    elseif b<0x80 or e>=ucs_out then
602       ltjb.package_warning('luatexja',
603                            'bad character range ([' .. b .. ',' .. e .. ']). ' ..
604                               'I take the intersection with [0x80, 0x10ffff].')
605       b, e = math.max(0x80,b), math.min(ucs_out-1,e)
606    end
607    if not alt_font_table[bfnt] then alt_font_table[bfnt]={} end
608    local t = alt_font_table[bfnt]
609    local ac = font_getfont(ind).characters
610    if bfnt==ind then ind = nil end -- ind == bfnt の場合はテーブルから削除
611    if e>=0 then -- character range
612       for i=b, e do
613          if ac[i]then  t[i]=ind end
614       end
615    else
616       b, e = -e, -b
617       local tx = font_metric_table[bfnt].chars
618       for i,v in pairs(tx) do
619          if b<=v and v<=e and ac[i] then t[i]=ind end
620       end
621    end
622 end
623
624 -- EXT
625 function luatexja.jfont.clear_alt_font(bfnt)
626    if alt_font_table[bfnt] then
627       local t = alt_font_table[bfnt]
628       for i,_ in pairs(t) do t[i]=nil; end
629    end
630 end
631
632 ------ used in ltjp.suppress_hyphenate_ja callback
633 function luatexja.jfont.replace_altfont(pf, pc)
634    local a = alt_font_table[pf]
635    return a and a[pc] or pf
636 end
637
638 ------ for LaTeX interface
639
640 local alt_font_table_latex = {}
641
642 -- EXT
643 function luatexja.jfont.clear_alt_font_latex(bbase)
644    local t = alt_font_table_latex[bbase]
645    if t then
646       for j,v in pairs(t) do t[j] = nil end
647    end
648 end
649
650 -- EXT
651 function luatexja.jfont.set_alt_font_latex(b,e,ind,bbase)
652    -- ind: Alt font の enc/fam/ser/shape, bbase: 基底フォントの enc/fam/ser/shape
653    if b>e then b, e = e, b end
654    if b*e<=0 then
655       ltjb.package_error('luatexja',
656                         'bad character range ([' .. b .. ',' .. e .. ']). ' ..
657                            'I take the intersection with [0x80, 0x10ffff].')
658       b, e = math.max(0x80,b),math.min(ucs_out-1,e)
659    elseif e<0 then -- b<e<0
660       -- do nothing
661    elseif b<0x80 or e>=ucs_out then
662       ltjb.package_warning('luatexja',
663                            'bad character range ([' .. b .. ',' .. e .. ']). ' ..
664                               'I take the intersection with [0x80, 0x10ffff].')
665       b, e = math.max(0x80,b), math.min(ucs_out-1,e)
666    end
667
668    if not alt_font_table_latex[bbase] then alt_font_table_latex[bbase]={} end
669    local t = alt_font_table_latex[bbase]
670    if not t[ind] then t[ind] = {} end
671    for i=b, e do
672       for j,v in pairs(t) do
673          if v[i] then -- remove old entry
674             if j~=ind then v[i]=nil end; break
675          end
676       end
677       t[ind][i]=true
678    end
679    -- remove the empty tables
680    for j,v in pairs(t) do
681       local flag_clear = true
682       for k,_ in pairs(v) do flag_clear = false; break end
683       if flag_clear then t[j]=nil end
684    end
685    if ind==bbase  then t[bbase] = nil end
686 end
687
688 -- ここから先は 新 \selectfont の内部でしか実行されない
689 do
690    local scan_arg = token.scan_argument
691    local alt_font_base, alt_font_base_num
692    local aftl_base
693    -- EXT
694    function luatexja.jfont.does_alt_set()
695       aftl_base = alt_font_table_latex[scan_arg()]
696       tex.sprint(cat_lp, aftl_base and '\\@firstofone' or '\\@gobble')
697    end
698    -- EXT
699    function luatexja.jfont.print_aftl_address()
700       return ';ltjaltfont' .. tostring(aftl_base):sub(8)
701    end
702
703 -- EXT
704    function luatexja.jfont.output_alt_font_cmd(dir, bbase)
705       alt_font_base = bbase
706       alt_font_base_num = tex.getattribute((dir == 't') and attr_curtfnt or attr_curjfnt)
707       local t = alt_font_table[alt_font_base_num]
708       if t then
709          for i,_ in pairs(t) do t[i]=nil end
710       end
711       t = alt_font_table_latex[bbase]
712       if t then
713          for i,_ in pairs(t) do
714             tex.sprint(cat_lp, '\\ltj@pickup@altfont@aux' .. dir .. '{' .. i .. '}')
715          end
716       end
717    end
718
719 -- EXT
720    function luatexja.jfont.pickup_alt_font_a(size_str)
721       local t = alt_font_table_latex[alt_font_base]
722       if t then
723          for i,v in pairs(t) do
724             tex.sprint(cat_lp, '\\expandafter\\ltj@pickup@altfont@copy'
725                           .. '\\csname ' .. i .. '/' .. size_str .. '\\endcsname{' .. i .. '}')
726          end
727       end
728    end
729
730    local function pickup_alt_font_class(class, afnt_num, afnt_chars)
731       local t  = alt_font_table[alt_font_base_num]
732       local tx = font_metric_table[alt_font_base_num].chars
733       for i,v in pairs(tx) do
734          if v==class and afnt_chars[i] then t[i]=afnt_num end
735       end
736    end
737
738 -- EXT
739    function luatexja.jfont.pickup_alt_font_b(afnt_num, afnt_base)
740       local t = alt_font_table[alt_font_base_num]
741       local ac = font_getfont(afnt_num).characters
742       if not t then t = {}; alt_font_table[alt_font_base_num] = t end
743       for i,v in pairs(alt_font_table_latex[alt_font_base]) do
744          if i == afnt_base then
745             for j,_ in pairs(v) do
746                if j>=0 then
747                   if ac[j] then t[j]=afnt_num end
748                else  -- -n (n>=1) means that the character class n,
749                      -- which is defined in the JFM
750                   pickup_alt_font_class(-j, afnt_num, ac)
751                end
752             end
753             return
754          end
755       end
756    end
757
758 end
759 ------------------------------------------------------------------------
760 -- 終了時に各種ノードを破棄
761 ------------------------------------------------------------------------
762 do
763    function luatexja.jfont.cleanup_size_cache()
764       --local gs, ke = 0, 0
765       for _,n in pairs(metrics) do
766          for i,t in pairs(n.size_cache) do
767             for _,v in pairs(t.char_type) do
768                for k,w in pairs(v) do
769                   if type(k)=='number' then
770                      --if w[1] then gs = gs + 1 else ke = ke + 1 end
771                      if w[1] then node_free(w[1]) end
772                   end
773                end
774             end
775             n.size_cache[i]=nil
776          end
777       end
778    end
779 end
780
781 ------------------------------------------------------------------------
782 -- 追加のフォント情報
783 ------------------------------------------------------------------------
784 luatexja.jfont.font_extra_info = font_extra_info -- key: fontnumber
785 local font_extra_basename = {} -- key: basename
786
787 local list_rotate_glyphs
788 do
789   local ceil = math.ceil
790   -- output of function_uax50.lua
791   -- UAX#50 for Unicode  13.0.0
792   -- t[0] = true
793   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, 1419, 1421, 1424, 1425, 1480, 1488, 1515, 1519, 1525, 1536, 1565, 1566, 1806, 1807, 1867, 1869, 1970, 1984, 2043, 2045, 2094, 2096, 2111, 2112, 2140, 2142, 2143, 2144, 2155, 2208, 2229, 2230, 2248, 2259, 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, 2559, 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, 2679, 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, 2901, 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, 3085, 3086, 3089, 3090, 3113, 3114, 3130, 3133, 3141, 3142, 3145, 3146, 3150, 3157, 3159, 3160, 3163, 3168, 3172, 3174, 3184, 3191, 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, 3341, 3342, 3345, 3346, 3397, 3398, 3401, 3402, 3408, 3412, 3428, 3430, 3456, 3457, 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, 3718, 3723, 3724, 3748, 3749, 3750, 3751, 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, 6265, 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, 6849, 6912, 6988, 6992, 7037, 7040, 7156, 7164, 7224, 7227, 7242, 7245, 7305, 7312, 7355, 7357, 7368, 7376, 7419, 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, 11856, 11858, 11859, 12296, 12306, 12308, 12320, 12336, 12337, 12448, 12449, 12540, 12541, 42192, 42540, 42560, 42744, 42752, 42944, 42946, 42955, 42997, 43053, 43056, 43066, 43072, 43128, 43136, 43206, 43214, 43226, 43232, 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, 43884, 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, 65949, 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, 68150, 68152, 68155, 68159, 68169, 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, 68904, 68912, 68922, 69216, 69247, 69248, 69290, 69291, 69294, 69296, 69298, 69376, 69416, 69424, 69466, 69552, 69580, 69600, 69623, 69632, 69710, 69714, 69744, 69759, 69826, 69837, 69838, 69840, 69865, 69872, 69882, 69888, 69941, 69942, 69960, 69968, 70007, 70016, 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, 70459, 70469, 70471, 70473, 70475, 70478, 70480, 70481, 70487, 70488, 70493, 70500, 70502, 70509, 70512, 70517, 70656, 70748, 70749, 70754, 70784, 70856, 70864, 70874, 71168, 71237, 71248, 71258, 71264, 71277, 71296, 71353, 71360, 71370, 71424, 71451, 71453, 71468, 71472, 71488, 71680, 71740, 71840, 71923, 71935, 71943, 71945, 71946, 71948, 71956, 71957, 71959, 71960, 71990, 71991, 71993, 71995, 72007, 72016, 72026, 72096, 72104, 72106, 72152, 72154, 72165, 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, 73056, 73062, 73063, 73065, 73066, 73103, 73104, 73106, 73107, 73113, 73120, 73130, 73440, 73465, 73648, 73649, 73664, 73714, 73727, 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, 93760, 93851, 93952, 94027, 94031, 94088, 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, 123136, 123181, 123184, 123198, 123200, 123210, 123214, 123216, 123584, 123642, 123647, 123648, 124928, 125125, 125127, 125143, 125184, 125260, 125264, 125274, 125278, 125280, 126065, 126133, 126209, 126270, 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, 129200, 129202, 129792, 129939, 129940, 129995, 130032, 130042, 917505, 917506, 917536, 917632, 917760, 918000 }
794   local function rotate_in_uax50(i)
795     local lo, hi = 1, #t
796     while lo < hi do
797       local mi = ceil((lo+hi)/2)
798       if t[mi]<=i then lo=mi else hi=mi-1 end 
799     end
800     return lo%2==1
801   end
802   local function list_rorate_dup (i, v, dest)
803     local f = dest[i]
804     if not f then
805       for j,_ in pairs(v) do if dest[j] then f=true; break end end
806     end
807     dest[i]=f; for j,_ in pairs(v) do dest[j]=f end
808   end
809   list_rotate_glyphs = function (tfmdata, dest)
810     local rot = {}
811     for i,_ in pairs(tfmdata.characters) do
812       if rotate_in_uax50(i) then rot[i] = true end
813     end
814     -- ↓「TeX Live 2019のLuaLaTeXで縦書きの三点リーダーが横書きになる」
815     -- (https://oku.edu.mie-u.ac.jp/tex/mod/forum/discuss.php?d=2722) により無効化
816     -- -- 同じグリフが複数の Unicode ポイントを持っている場合.
817     -- -- いずれかの Unicode ポイントで rot = true ならば全体で rotate
818     --ltju.loop_over_duplicates(tfmdata,
819     --   function (i, v)
820     --     local f = rot[i]
821     --     if not f then
822     --        for j,_ in pairs(v) do if rot[j] then f=true; break end end
823     --     end
824     --     rot[i]=f; for j,_ in pairs(v) do rot[j]=f end
825     --   end)
826     for i,_ in pairs(rot) do
827        dest = dest or {}; dest.rotation = dest.rotation or {}
828        dest.rotation[i] = true
829     end
830     return dest
831   end
832 end
833
834 do
835    local cache_ver = 23
836    local nameonly, lower = file.nameonly, string.lower
837    local lfs = require"lfs"
838    local file_attributes = lfs.attributes
839    local load_cache, save_cache = ltjb.load_cache, ltjb.save_cache
840    local function prepare_extra_data_base(tfmdata)
841       if (not tfmdata) or (not tfmdata.filename) then return end
842       local bname = tfmdata.psname or nameonly(tfmdata.filename)
843       if not font_extra_basename[bname] then
844          -- if the cache is present, read it
845          -- 
846          local newtime = file_attributes(tfmdata.filename,"modification")
847          local v = "extra_" .. string.lower(bname)
848          local dest = load_cache(
849             v,
850             function (t) 
851                 return (t.lotf_version~=luaotfload.version)
852                        or (t.version~=cache_ver) or (t.modtime~=newtime) 
853             end
854          )
855          -- if the cache is not found or outdated, save the cache
856          if dest then
857             font_extra_basename[bname] = dest[1] or {}
858             local vheight, vorigin = dest[1].vheight, dest[1].vorigin
859             local vhd, vod = vheight.default, vorigin.default
860             setmetatable(vheight, {__index = function () return vhd end } )
861             setmetatable(vorigin, {__index = function () return vod end } )
862          else
863             local dest = ltju.get_vmet_table(tfmdata, nil)
864             dest = list_rotate_glyphs(tfmdata, dest)
865             font_extra_basename[bname] = dest or {}
866             save_cache(v,
867                        { modtime = newtime,
868                          version = cache_ver,
869                          lotf_version = luaotfload.version,
870                          dest,
871                        })
872          end
873          return bname
874       end
875    end
876    local dummytable = { } -- dummy
877    local dtvo, dtvh = {}, {}
878    setmetatable(dtvo, {__index = function () return 0.88 end } )
879    setmetatable(dtvh, {__index = function () return 1 end } )
880    ltjr.vert_addfunc = function(id, s)
881        if not dummytable.rotation then
882            dummytable = list_rotate_glyphs(s, dummytable)
883            dummytable.vorigin, dummytable.vheight = dtvo, dtvh
884        end
885    end
886    
887    local function prepare_extra_data_font(id, res)
888       if type(res)=='table' and (res.psname or res.filename) then
889          local bname = res.psname or nameonly(res.filename)
890          local t = font_extra_basename[bname]
891          if not t then bname = prepare_extra_data_base(res) end
892          font_extra_info[id] = bname and (t or font_extra_basename[bname]) or dummytable
893       end
894    end
895     luatexbase.add_to_callback(
896        'luaotfload.patch_font',
897        function (tfmdata)
898           -- these function is executed one time per one fontfile
899           prepare_extra_data_base(tfmdata); return tfmdata
900        end,
901        'ltj.prepare_extra_data', 1)
902    luatexbase.add_to_callback(
903       'luatexja.define_font',
904       function (res, name, size, id)
905          prepare_extra_data_font(id, res)
906       end,
907       'ltj.prepare_extra_data', 1)
908
909    for i=1,font.nextid()-1 do
910       local t = font.getfont(i)
911       if t then
912          prepare_extra_data_base(t)
913          prepare_extra_data_font(i,t)
914       end
915    end
916 end
917
918 ------------------------------------------------------------------------
919 -- make table of vertical glyphs which does not covered by vert feature
920 -- nor UTR#50
921 ------------------------------------------------------------------------
922 do
923 ------------------------------------------------------------------------
924 -- VERT VARIANT TABLE
925 ------------------------------------------------------------------------
926   local provides_feature = luaotfload.aux.provides_feature
927   local vert_form_table = {
928      [0x3001]=0xFE11, [0x3002]=0xFE12, [0x3016]=0xFE17, [0x3017]=0xFE18,
929      [0x2026]=0xFE19,
930      [0x2025]=0xFE30, [0x2014]=0xFE31, [0x2013]=0xFE32, [0xFF3F]=0xFE33,
931      [0xFF08]=0xFE35, [0xFF09]=0xFE36, [0xFF5B]=0xFE37, [0xFF5D]=0xFE38,
932      [0x3014]=0xFE39, [0x3015]=0xFE3A, [0x3010]=0xFE3B, [0x3011]=0xFE3C,
933      [0x300A]=0xFE3D, [0x300B]=0xFE3E, [0x3008]=0xFE3F, [0x3009]=0xFE40,
934      [0x300C]=0xFE41, [0x300D]=0xFE42, [0x300E]=0xFE43, [0x300F]=0xFE44,
935      [0xFF3B]=0xFE47, [0xFF3D]=0xFE48, 
936   }
937   local vert_jpotf_table, vert_feat = {}, {vert=true}
938   local utfbyte, utfsub = utf.byte, utf.sub
939   luatexja.jfont.register_vert_replace = function(t)
940     for i,v in pairs(t) do
941       local ic = (type(i)=='number') and i or 
942         ((type(i)=='string') and utfbyte(utfsub(i,1,1)) or nil)
943       if ic then
944         vert_jpotf_table[ic] = (type(v)=='number') and v or 
945           ((type(v)=='string') and utfbyte(utfsub(v,1,1)) or nil)
946       end
947     end  
948   end
949
950 luatexbase.add_to_callback(
951    "luatexja.define_jfont",
952    function (fmtable, fnum)
953       local vform = {}; fmtable.vform = vform
954       local t = font_getfont(fnum)
955       if not t then return fmtable end
956       for i,v in pairs(vert_form_table) do
957         if t.characters[v] then vform[i] = v end
958       end
959       if ltju.specified_feature(fnum, 'jpotf') then
960         for i,v in pairs(vert_jpotf_table) do
961           if t.characters[v] then vform[i] = vform[v] or v end
962         end
963       end
964       if not ltju.exist_feature(fnum, 'vert') and not ltju.exist_feature(fnum, 'vrt2') then
965         -- 現在の (script, lang) で vert もvrt2 も有効にできない場合,
966         -- 全 (script,lang) の vert を強制的に適用
967         ltju.loop_over_feat(t, vert_feat, function (i,k) vform[i] = vform[i] or k end, true)
968       end
969       -- vform の中身を vert 適用結果に変える
970       ltju.loop_over_feat(t, vert_feat,
971         function (i,k)
972           for j,w in pairs(vform) do
973             if (i==j)and(w==k) then vform[j]=nil elseif w==i then vform[j] = k end
974           end
975         end)
976       return fmtable
977    end, 'ltj.get_vert_form', 1
978 )
979 end
980
981 ------------------------------------------------------------------------
982 -- supply tounicode entries
983 ------------------------------------------------------------------------
984 do
985   local ltjr_prepare_cid_font = ltjr.prepare_cid_font
986   luatexbase.add_to_callback(
987      'luaotfload.patch_font',
988      function (tfmdata)
989         local cidinfo = tfmdata.cidinfo or (tfmdata.resource and tfmdata.resources.cidinfo)
990         if cidinfo and cidinfo.registry and cidinfo.ordering then
991            local rd = ltjr_prepare_cid_font(cidinfo.registry, cidinfo.ordering)
992            if rd then
993               local ru = rd.resources.unicodes -- defined by LuaTeX-ja
994               local rc = rd.characters
995               for i,v in pairs(tfmdata.characters) do
996                  local w = ru[cidinfo.ordering .. "." .. tostring(v.index)]
997                  if w then
998                     v.tounicode = v.tounicode or rc[w]. tounicode
999                  end
1000               end
1001            end
1002         end
1003
1004         return tfmdata
1005      end,
1006      'ltj.supply_tounicode', 1)
1007 end
1008
1009
1010 ------------------------------------------------------------------------
1011 -- MISC
1012 ------------------------------------------------------------------------
1013 do
1014    local getfont = node.direct.getfont
1015    local getchar = node.direct.getchar
1016    local get_dir_count = ltjd.get_dir_count
1017    local is_ucs_in_japanese_char = ltjc.is_ucs_in_japanese_char_direct
1018    local ensure_tex_attr = ltjb.ensure_tex_attr
1019    local node_write = node.direct.write
1020    local font = font
1021    local new_ic_kern = function(g)  return node_new(id_kern,3) end
1022    local dir_tate = luatexja.dir_table.dir_tate
1023    -- EXT: italic correction
1024    function luatexja.jfont.append_italic()
1025       local p = to_direct(tex.nest[tex.nest.ptr].tail)
1026       local TEMP = node_new(id_kern)
1027       if p and getid(p)==id_glyph then
1028          if is_ucs_in_japanese_char(p) then
1029             local j = font_metric_table[
1030                has_attr(p, (get_dir_count()==dir_tate) and attr_curtfnt or attr_curjfnt)
1031                ]
1032             local g = new_ic_kern()
1033             setfield(g, 'kern', j.char_type[find_char_class(getchar(p), j)].italic)
1034             node_write(g); ensure_tex_attr(attr_icflag, 0)
1035          else
1036             local f = getfont(p)
1037             local h = font_getfont(f) or font.fonts[f]
1038             if h then
1039                local g = new_ic_kern()
1040                if h.characters[getchar(p)] and h.characters[getchar(p)].italic then
1041                   setfield(g, 'kern', h.characters[getchar(p)].italic)
1042                   node_write(g); ensure_tex_attr(attr_icflag, 0)
1043                end
1044             end
1045          end
1046       end
1047       node_free(TEMP)
1048    end
1049 end
1050
1051 luatexja.jfont.metrics = metrics
1052 luatexja.jfont.font_metric_table = font_metric_table
1053 luatexja.jfont.find_char_class = find_char_class
1054
1055 luatexja.jfont.update_jfm_cache = update_jfm_cache