X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;ds=sidebyside;f=src%2Fltj-jfmglue.lua;h=3ceec931cc8e413a32ffab086ce8dc9794ef368c;hb=658da80b1c2604867c026642868e4b6d6d223694;hp=75765ad02ea12a73b6fb1aadbad0808ef1f29fcb;hpb=98cb5558cfdfb5ed76fb3f14f7832c0e36f90b86;p=luatex-ja%2Fluatexja.git diff --git a/src/ltj-jfmglue.lua b/src/ltj-jfmglue.lua index 75765ad..3ceec93 100644 --- a/src/ltj-jfmglue.lua +++ b/src/ltj-jfmglue.lua @@ -316,6 +316,7 @@ local function calc_np_pbox(lp, last) end local ltjw_apply_ashift_math = ltjw.apply_ashift_math +local ltjw_apply_ashift_disc = ltjw.apply_ashift_disc local min, max = math.min, math.max local function calc_np_aux_glyph_common(lp) Np.nuc = lp @@ -339,62 +340,70 @@ local function calc_np_aux_glyph_common(lp) local adj_depth = (y_adjust>0) and (getfield(lp, 'depth') + y_adjust) or 0 setfield(lp, 'yoffset', getfield(lp, 'yoffset') - y_adjust) lp = node_next(lp) - for lp in traverse(lp) do - if lp==last or get_attr_icflag(lp)>=PACKED then - break + for lx in traverse(lp) do + local lai = get_attr_icflag(lx) + if lx==last or lai>=PACKED then + lp=lx; break else - local lid = getid(lp) - if lid==id_glyph and not (getfont(lp) == (has_attr(lp, attr_curjfnt) or -1)) then + local lid = getid(lx) + if lid==id_glyph and not(getfont(lx) == (has_attr(lx, attr_curjfnt) or -1)) then -- 欧文文字 - last_glyph = lp; set_attr(lp, attr_icflag, PROCESSED); Np.last = lp - y_adjust = has_attr(lp,attr_ablshift) or 0 - node_depth = max(getfield(lp, 'depth') + min(y_adjust, 0), node_depth) - adj_depth = (y_adjust>0) and adj_depth or max(getfield(lp, 'depth') + y_adjust, adj_depth) - setfield(lp, 'yoffset', getfield(lp, 'yoffset') - y_adjust) - elseif lid==id_kern and getsubtype(lp)==2 then -- アクセント用の kern - set_attr(lp, attr_icflag, PROCESSED) - lp = node_next(lp) -- lp: アクセント本体 - setfield(lp, 'yoffset', getfield(lp, 'yoffset') - (has_attr(lp,attr_ablshift) or 0)) - lp = node_next(node_next(lp)) + last_glyph = lx; set_attr(lx, attr_icflag, PROCESSED); Np.last = lx + y_adjust = has_attr(lx,attr_ablshift) or 0 + node_depth = max(getfield(lx, 'depth') + min(y_adjust, 0), node_depth) + adj_depth = (y_adjust>0) and max(getfield(lp, 'depth') + y_adjust, adj_depth) or adj_depth + setfield(lx, 'yoffset', getfield(lx, 'yoffset') - y_adjust) + elseif lid==id_kern then + local ls = getsubtype(lx) + if ls==2 then -- アクセント用の kern + set_attr(lx, attr_icflag, PROCESSED) + lx = node_next(lx) -- lp: アクセント本体 + setfield(lx, 'yoffset', getfield(lp, 'yoffset') - (has_attr(lx,attr_ablshift) or 0)) + lx = node_next(node_next(lx)) + elseif ls==0 then + Np.last = lx + elseif (ls==1 and lai==ITALIC) then + Np.last = lx; set_attr(lx, attr_icflag, IC_PROCESSED) + else + lp=lx; break + end else - break + lp=lx; break end end - -- イタリック補正はあんまり使わない,と考えてループ継続条件に入れない. end - if last_glyph then - Np.last_char = last_glyph - if adj_depth>node_depth then - local r = node_new(id_rule) + local r + if adj_depth>node_depth then + r = node_new(id_rule) setfield(r, 'width', 0); setfield(r, 'height', 0) setfield(r, 'depth',adj_depth); setfield(r, 'dir', tex_dir) set_attr(r, attr_icflag, PROCESSED) - insert_after(head, first_glyph, r) - end + end + if last_glyph then + Np.last_char = last_glyph + if r then insert_after(head, first_glyph, r) end else local npn = Np.nuc Np.last_char = npn - if adj_depth>node_depth then + if r then local nf, nc = getfont(npn), getchar(npn) - local left_protru = (font.getfont(nf) or font.fonts[nf] ).characters[nc].left_protruding or 0 - -- lpcode が 0 なら,直前に補正用 rule を挿入する. - -- なお,rpcode 判定ではうまくいかない(LuaTeX のバグ?) - if left_protru ==0 then - local r = node_new(id_rule) - setfield(r, 'width', 0); setfield(r, 'height', 0) - setfield(r, 'depth',adj_depth); setfield(r, 'dir', tex_dir) - set_attr(r, attr_icflag, PROCESSED) - head = insert_before(head, first_glyph, r) + local ct = (font.getfont(nf) or font.fonts[nf] ).characters[nc] + if (ct.left_protruding or 0) == 0 then + head = insert_before(head, npn, r) Np.first = (Np.first==npn) and r or npn + elseif (ct.right_protruding or 0) == 0 then + insert_after(head, npn, r); Np.last, lp = r, r else ltjb.package_warning_no_line( 'luatexja', - 'Check depth of ' .. tostring(npn) .. '(font=' .. nf - .. ', char=' .. nc .. '), because its \\lpcode is ' .. tostring(left_protru)) + 'Check depth of glyph node ' .. tostring(npn) .. '(font=' .. nf + .. ', char=' .. nc .. '), because its \\lpcode is ' .. tostring(ct.left_protruding) + .. ' and its \\rpcode is ' .. tostring(ct.right_protruding) + ); node_free(r) end end end - return true, check_next_ickern(lp) + return true, lp end end local calc_np_auxtable = { @@ -470,9 +479,15 @@ local calc_np_auxtable = { Np.last, Np.id = end_math, id_math; return true, node_next(end_math); end, - discglue = function(lp) + [id_glue] = function(lp) + Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp; + Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED) + return true, node_next(lp) + end, + [id_disc] = function(lp) Np.first, Np.nuc, Np.last = (Np.first or lp), lp, lp; Np.id = getid(lp); set_attr(lp, attr_icflag, PROCESSED) + ltjw_apply_ashift_disc(lp, (list_dir==dir_tate), tex_dir) return true, node_next(lp) end, [id_kern] = function(lp) @@ -498,8 +513,6 @@ calc_np_auxtable[13] = calc_np_auxtable.box_like calc_np_auxtable[id_ins] = calc_np_auxtable.skip calc_np_auxtable[id_mark] = calc_np_auxtable.skip calc_np_auxtable[id_adjust] = calc_np_auxtable.skip -calc_np_auxtable[id_disc] = calc_np_auxtable.discglue -calc_np_auxtable[id_glue] = calc_np_auxtable.discglue function calc_np(lp, last) local k