OSDN Git Service

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