OSDN Git Service

More LaTeX codes for vertical writing
[luatex-ja/luatexja.git] / src / ltj-direction.lua
index e0d16cd..4057de5 100644 (file)
@@ -4,7 +4,6 @@
 
 luatexja.load_module('base');      local ltjb = luatexja.base
 luatexja.load_module('stack');     local ltjs = luatexja.stack
-luatexja.load_module('rmlgbm');    local ltjr = luatexja.rmlgbm
 luatexja.direction = {}
 
 local attr_dir = luatexbase.attributes['ltj@dir']
@@ -33,6 +32,7 @@ local traverse = Dnode.traverse
 local traverse_id = Dnode.traverse_id
 local start_time_measure, stop_time_measure 
    = ltjb.start_time_measure, ltjb.stop_time_measure
+local abs = math.abs
 
 local id_kern = node.id('kern')
 local id_hlist = node.id('hlist')
@@ -49,13 +49,17 @@ local tex_set_attr = tex.setattribute
 local PROCESSED    = luatexja.icflag_table.PROCESSED
 local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
 local PACKED       = luatexja.icflag_table.PACKED
-local STCK = luatexja.userid_table.STCK
 local DIR  = luatexja.userid_table.DIR
 local dir_tate = luatexja.dir_table.dir_tate
 local dir_yoko = luatexja.dir_table.dir_yoko
 local dir_dtou = luatexja.dir_table.dir_dtou
+local dir_utod = luatexja.dir_table.dir_utod
+local dir_math_mod    = luatexja.dir_table.dir_math_mod
 local dir_node_auto   = luatexja.dir_table.dir_node_auto
 local dir_node_manual = luatexja.dir_table.dir_node_manual
+local function get_attr_icflag(p)
+   return (has_attr(p, attr_icflag) or 0) % PROCESSED_BEGIN_FLAG
+end
 
 local page_direction
 --
@@ -73,12 +77,12 @@ local function adjust_badness(hd)
    end
 end
 
-local get_dir_count
+local get_dir_count, get_adjust_dir_count
 do
    local function get_dir_count_inner(h)
       if h then
         if h.id==id_whatsit and h.subtype==sid_user and h.user_id==DIR then
-              local ic = node.has_attribute(h, attr_icflag)
+              local ic = node.has_attribute(h, attr_icflag) or 0
               return (ic<PROCESSED_BEGIN_FLAG) 
                  and (node.has_attribute(h,attr_dir)%dir_node_auto) or 0
         else
@@ -91,7 +95,6 @@ do
    function get_dir_count()
       for i=tex_nest.ptr, 1, -1 do
         local h = tex_nest[i].head.next
-        --luatexja.ext_show_node_list(h, 'GDR'..  i .. '> ', print)
         if h then
            local t = get_dir_count_inner(h)
            if t~=0 then return t end
@@ -99,56 +102,91 @@ do
       end
       return page_direction
    end
+   function get_adjust_dir_count()
+      for i=tex_nest.ptr, 1, -1 do
+         local v = tex_nest[i]
+        local h, m = v.head.next, v.mode
+        if abs(m)== ltjs.vmode and h then
+           local t = get_dir_count_inner(h)
+           if t~=0 then return t end
+        end
+      end
+      return page_direction
+   end
    luatexja.direction.get_dir_count = get_dir_count
+   luatexja.direction.get_adjust_dir_count = get_adjust_dir_count
 end
 
--- \ifydir etc.
-do
-   local cs_true, cs_false = '\\iftrue', '\\iffalse'
-   luatexja.direction.dir_conditional = function(v)
-      local d = get_dir_count()
-      print(d,v)
-      tex.sprint(cat_lp, (d==v) and cs_true or cs_false )
-   end
-end
 
--- \tate, \yoko
+-- \tate, \yoko,\dtou, \utod
 do
    local node_next = node.next
    local node_set_attr = node.set_attribute
+   local node_traverse = node.traverse
+   local STCK = luatexja.userid_table.STCK
+   local IHB = luatexja.userid_table.IHB
+
+   local function test_list(h, lv)
+      if not h then 
+        return 2 -- need to create dir_whatsit
+      else
+        local flag = 2 -- need to create dir_whatsit
+        local w
+        for p in node_traverse(h) do
+           if p.id==id_whatsit then
+              if p.subtype==sid_user then
+                 local uid= p.user_id
+                 if uid==DIR then
+                    flag = 1; w = w or p -- found
+                 elseif not(uid==IHB or uid==STCK) then
+                    flag = 0; break -- error
+                 end
+              else
+                 flag = 0; break
+              end
+           else
+              flag = 0; break
+           end
+        end
+        if flag==1 then -- move dir_whatsit w
+           return 1,w -- TODO
+        else 
+           return flag
+        end
+      end
+   end
    local function set_list_direction(v, name)
-      local lv, w = tex_nest.ptr, tex.lists.page_head
-      if lv==0 and w then
-        if (not w.next) and 
-           w.id==id_whatsit and w.subtype==sid_user and w.user_id==DIR then
-           node_set_attr(w, attr_dir, v); page_direction = v
-        else
-              ltjb.package_error(
-                 'luatexja',
-                 "Use `\\" .. name .. "' at top of list",
-                 'Direction change command by LuaTeX-ja is available\n'
-                   .. 'only when the current list is null.')
+      local lv = tex_nest.ptr
+      if not v then 
+         v,name  = get_dir_count(), nil
+        if lv>=1 and abs(tex_nest[lv-1].mode) == ltjs.mmode and v == dir_tate then
+           v = dir_utod
         end
-      elseif tex.currentgrouptype==6 then
+      elseif v=='adj' then
+         v,name = get_adjust_dir_count(), nil
+      end
+      if tex.currentgrouptype==6 then
         ltjb.package_error(
                  'luatexja',
                  "You can't use `\\" .. name .. "' in an align",
                 "To change direction in an align, \n"
                    .. "you shold use \\hbox or \\vbox.")
       else
-        print(v, name, tex_nest[lv].head.next)
-        local w = tex_nest[lv].head.next
-        if w then
-           if (not w.next) and 
-              w.id==id_whatsit and w.subtype==sid_user and w.user_id==DIR then
-              node_set_attr(w, attr_dir, v)
+        local h = (lv==0) and tex.lists.page_head or tex_nest[lv].head.next
+        local flag,w = test_list(h,lv)
+        if flag==0 then
+           if lv==0 and not page_direction then
+              page_direction = v -- for first call of \yoko (in luatexja-core.sty)
            else
               ltjb.package_error(
                  'luatexja',
-                 "Use `\\" .. name .. "' at top of list",
+                 "Use `\\" .. tostring(name) .. "' at top of list",
                  'Direction change command by LuaTeX-ja is available\n'
                    .. 'only when the current list is null.')
            end
+        elseif flag==1 then 
+           node_set_attr(w, attr_dir, v)
+           if lv==0 then page_direction = v end
         else
            local w = node_new(id_whatsit, sid_user)
            setfield(w, 'next', nil)
@@ -156,8 +194,9 @@ do
            setfield(w, 'type', 110)
            set_attr(w, attr_dir, v)
            Dnode.write(w)
+           if lv==0 then page_direction = v end
         end
-        tex_set_attr('global', attr_icflag, 0)
+         tex_set_attr('global', attr_icflag, 0)
       end
       tex_set_attr('global', attr_dir, 0)
    end
@@ -169,8 +208,7 @@ local function create_dir_whatsit(hd, gc, new_dir)
    if getid(hd)==id_whatsit and 
            getsubtype(hd)==sid_user and getfield(hd, 'user_id')==DIR then
       set_attr(hd, attr_icflag, 
-              (has_attr(hd, attr_icflag) or 0)%PROCESSED_BEGIN_FLAG 
-                 + PROCESSED_BEGIN_FLAG)
+              get_attr_icflag(hd) + PROCESSED_BEGIN_FLAG)
       tex_set_attr('global', attr_icflag, 0)
       return hd
    else
@@ -249,7 +287,7 @@ do
       for i=1,#wh do  
         hd = node_remove(hd, wh[i]); node_free(wh[i]); wh[i] = nil 
       end
-      if gc=='fin_row' or gc == 'preamble'  then
+      if gc=='fin_row' then -- gc == 'preamble' case is treated in dir_adjust_vpack
         if hd  then
            set_attr(hd, attr_icflag, PROCESSED_BEGIN_FLAG)
            tex_set_attr('global', attr_icflag, 0)
@@ -273,14 +311,14 @@ end
 -- dir_node に包む方法を書いたテーブル
 local dir_node_aux
 do
+   local floor = math.floor
    local get_h =function (w,h,d) return h end
    local get_d =function (w,h,d) return d end
    local get_h_d =function (w,h,d) return h+d end
    local get_h_d_neg =function (w,h,d) return -h-d end
-   local get_h_neg =function (w,h,d) return -h end
    local get_d_neg =function (w,h,d) return -d end
-   local get_w_half =function (w,h,d) return 0.5*w end
-   local get_w_neg_half =function (w,h,d) return -0.5*w end
+   local get_w_half =function (w,h,d) return floor(0.5*w) end
+   local get_w_half_rem =function (w,h,d) return w-floor(0.5*w) end
    local get_w_neg =function (w,h,d) return -w end
    local get_w =function (w,h,d) return w end
    local zero = function() return 0 end
@@ -289,20 +327,20 @@ do
         [dir_tate] = { -- tate 中で組む
            width  = get_h_d,
            height = get_w_half,
-           depth  = get_w_half,
+           depth  = get_w_half_rem,
            [id_hlist] = {
               { 'whatsit', sid_save },
               { 'rotate', '0 1 -1 0' },
-              { 'kern', get_w_neg_half },
-              { 'box' , get_h },
-              { 'kern', get_w_neg_half },
+              { 'kern', function(w,h,d,nw,nh,nd) return -nd end },
+              { 'box' , get_h},
+              { 'kern', function(w,h,d,nw,nh,nd) return nd-w end },
               { 'whatsit', sid_restore },
            },
            [id_vlist] = {
               { 'whatsit', sid_save },
               { 'rotate', '0 1 -1 0' },
               { 'kern' , zero },
-              { 'box' , get_w_neg },
+              { 'box' , function(w,h,d,nw,nh,nd) return -nh-nd end },
               { 'kern', get_h_d_neg},
               { 'whatsit', sid_restore },
            },
@@ -314,8 +352,9 @@ do
            [id_hlist] = {
               { 'whatsit', sid_save },
               { 'rotate', '0 -1 1 0' },
-              { 'kern', get_w_neg },
+              { 'kern', function(w,h,d,nw,nh,nd) return -nh end },
               { 'box', get_d_neg },
+              { 'kern', function(w,h,d,nw,nh,nd) return nh-w end },
               { 'whatsit', sid_restore },
            },
            [id_vlist] = {
@@ -335,8 +374,9 @@ do
            [id_hlist] = {
               { 'whatsit', sid_save },
               { 'rotate', '0 -1 1 0' },
-              { 'kern', get_w_neg },
+              { 'kern', function (w,h,d,nw,nh,nd) return -nh end },
               { 'box' , get_d_neg },
+              { 'kern', function (w,h,d,nw,nh,nd) return nh-w end },
               { 'whatsit', sid_restore },
            },
            [id_vlist] = {
@@ -355,7 +395,7 @@ do
               { 'whatsit', sid_save },
               { 'rotate', '-1 0 0 -1' },
               { 'kern', get_w_neg },
-              { 'box', zero },
+              { 'box',  function (w,h,d,nw,nh,nd) return h-nd end },
               { 'whatsit', sid_restore },
            },
            [id_vlist] = {
@@ -375,16 +415,16 @@ do
            [id_hlist] = {
               { 'whatsit', sid_save },
               { 'rotate', '0 1 -1 0' },
-              { 'kern', zero },
+              { 'kern', function (w,h,d,nw,nh,nd) return -nd end },
               { 'box', get_h },
-              { 'kern', get_w_neg },
+              { 'kern', function (w,h,d,nw,nh,nd) return nd-w end },
               { 'whatsit', sid_restore },
            },
            [id_vlist] = {
                { 'kern', zero },
               { 'whatsit', sid_save },
               { 'rotate', '0 1 -1 0' },
-              { 'box', get_w_neg },
+              { 'box', function (w,h,d,nw,nh,nd) return -nd-nh end },
               { 'kern', get_h_d_neg },
               { 'whatsit', sid_restore },
            },
@@ -397,14 +437,15 @@ do
               { 'whatsit', sid_save },
               { 'rotate', '-1 0 0 -1' },
               { 'kern', get_w_neg },
-              { 'box', zero },
+              { 'box', function (w,h,d,nw,nh,nd) return h-nd end },
               { 'whatsit', sid_restore },
            },
            [id_vlist] = {
               { 'whatsit', sid_save },
               { 'rotate', ' -1 0 0 -1' },
-              { 'kern', get_h_d_neg }, 
+              { 'kern', function (w,h,d,nw,nh,nd) return -nh-nd end }, 
               { 'box', get_w_neg },
+              { 'kern', function (w,h,d,nw,nh,nd) return nh+nd-h-d end }, 
               { 'whatsit', sid_restore },
            },
         },
@@ -436,19 +477,25 @@ do
    local getbox = tex.getbox
    local function check_dir(reg_num)
       start_time_measure('box_primitive_hook')
-      local list_dir = get_dir_count()
-      local b = tex.getbox(tex_getcount('ltj@tempcnta'))
+      local list_dir = get_dir_count()%dir_math_mod
+      local b = getbox(tex_getcount('ltj@tempcnta'))
       if b then
         local box_dir = get_box_dir(to_direct(b), dir_yoko)
-        if box_dir%dir_node_auto ~= list_dir%dir_node_auto then
-           luatexja.ext_show_node_list(tex.nest[tex.nest.ptr].head, 'LIST> ', print)
-           luatexja.ext_show_node_list(b, 'BOX> ', print)
+        if box_dir%dir_math_mod ~= list_dir then
+          --  print('NEST', tex_nest.ptr, tex_getcount('ltj@tempcnta'))
+          --  luatexja.ext_show_node_list(
+           --     (tex_nest.ptr==0) and tex.lists.page_head or tex_nest[tex_nest.ptr].head,
+           --     'LIST' .. tostring(list_dir) .. '> ', print)
+          -- luatexja.ext_show_node_list(b, 'BOX' .. tostring(box_dir) .. '> ', print)
            ltjb.package_error(
               'luatexja',
               "Incompatible direction list can't be unboxed",
               'I refuse to unbox a box in differrent direction.')
         end
       end
+      if luatexja.global_temp and tex.globaldefs~=luatexja.global_temp then 
+        tex.globaldefs = luatexja.global_temp
+      end
       stop_time_measure('box_primitive_hook')
    end
    luatexja.direction.check_dir = check_dir
@@ -476,23 +523,13 @@ local function unwrap_dir_node(b, head, box_dir)
       Dnode.flush_list(getfield(wh, 'value'))
       setfield(wh, 'value', nil)
    end
-   -- recalc. info
-   local info = dir_node_aux[b_dir][box_dir%dir_node_auto][getid(bc)]
-   for _,v in ipairs(info) do 
-      if v[1]=='box' then
-        shift_old = v[2](
-           getfield(bc,'width'), getfield(bc, 'height'), getfield(bc, 'depth'))
-        break
-      end
-   end
-   setfield(bc, 'shift', getfield(bc, 'shift') - shift_old)
+   setfield(bc, 'shift', 0)
    return nh, nb, bc, b_dir
 end
 
 -- is_manual: 寸法変更に伴うものか?
 local function create_dir_node(b, b_dir, new_dir, is_manual)
-   --print('create new node', b_dir, new_dir)
-   local info = dir_node_aux[b_dir][new_dir]
+   local info = dir_node_aux[b_dir%dir_math_mod][new_dir%dir_math_mod]
    local w = getfield(b, 'width')
    local h = getfield(b, 'height')
    local d = getfield(b, 'depth')
@@ -515,6 +552,7 @@ end
 local make_dir_whatsit, process_dir_node
 do
    make_dir_whatsit = function (head, b, new_dir, origin)
+      new_dir = new_dir%dir_math_mod
       -- head: list head, b: box
       -- origin: コール元 (for debug)
       -- return value: (new head), (next of b), (new b), (is_b_dir_node)
@@ -523,70 +561,75 @@ do
       local box_dir, dn =  get_box_dir(b, ltjs.list_dir)
       -- 既に b の中身にあるwhatsit
 
-      if box_dir==new_dir then
-        -- 組方向が一緒のボックスなので,何もしなくて良い
-        return head, node_next(b), b, false
-      elseif  box_dir%dir_node_auto == new_dir  then
-        -- dir_node としてカプセル化されている
-        local bc = node_next(node_next(node_next(bh)))
-        local _, dnc = get_box_dir(b, 0)
-        if dnc then -- free all other dir_node
-           Dnode.flush_list(getfield(dnc, 'value'))
-           setfield(dnc, 'value', nil)
+      if box_dir%dir_math_mod==new_dir then
+        if box_dir>=dir_node_auto then
+           -- dir_node としてカプセル化されている
+           local bc = node_next(node_next(node_next(bh)))
+           local _, dnc = get_box_dir(b, 0)
+           if dnc then -- free all other dir_node
+              Dnode.flush_list(getfield(dnc, 'value'))
+              setfield(dnc, 'value', nil)
+           end
+           set_attr(b, attr_dir, box_dir%dir_math_mod + dir_node_auto)
+           return head, node_next(b), b, true
+        else
+           -- 組方向が一緒 (up to math dir) のボックスなので,何もしなくて良い
+           return head, node_next(b), b, false
         end
-        set_attr(b, attr_dir, box_dir%dir_node_auto + dir_node_auto)
-        return head, node_next(b), b, true
       else
-        --luatexja.ext_show_node_list(to_node(b), 'mkd> ', print)
         -- 組方向を合わせる必要あり
          local nh, nb, ret, flag
         if box_dir>= dir_node_auto then -- unwrap
            local b_dir
             head, nb, b, b_dir = unwrap_dir_node(b, head, box_dir)
            bh = getlist(b)
-           if b_dir==new_dir then
+           if b_dir%dir_math_mod==new_dir then
               -- dir_node の中身が周囲の組方向とあっている
               return head, nb, b, false 
            else box_dir = b_dir end
         end
-            local db
-            local dnh = getfield(dn, 'value')
-            for x in traverse(dnh) do
-               if has_attr(x, attr_dir)%dir_node_auto == new_dir then
-                  setfield(dn, 'value', to_node(node_remove(dnh, x)))
-                  db=x; break
-               end
-            end
-           Dnode.flush_list(dnh)
-            db = db or create_dir_node(b, box_dir, new_dir, false)
-            local w = getfield(b, 'width')
-            local h = getfield(b, 'height')
-            local d = getfield(b, 'depth')
-            nh, nb =  insert_before(head, b, db), nil
-            nh, nb = node_remove(nh, b)
-            local db_head, db_tail  = nil
-            for _,v in ipairs(dir_node_aux[box_dir][new_dir][getid(b)]) do
-               local cmd, arg, nn = v[1], v[2]
-               if cmd=='kern' then
-                  nn = node_new(id_kern)
-                  setfield(nn, 'kern', arg(w, h, d))
-               elseif cmd=='whatsit' then
-                  nn = node_new(id_whatsit, arg)
-               elseif cmd=='rotate' then
-                  nn = node_new(id_whatsit, sid_matrix)
-                  setfield(nn, 'data', arg)
-               elseif cmd=='box' then
-                  nn = b; setfield(b, 'next', nil)
-                 setfield(nn, 'shift', getfield(nn, 'shift') + arg(w,h,d))
-               end
-               if db_head then
-                  insert_after(db_head, db_tail, nn)
-                  db_tail = nn
-              else
-                 db_head, db_tail = nn, nn
-              end
-              setfield(db, 'head', db_head)
-              ret, flag = db, true
+        box_dir = box_dir%dir_math_mod
+        local db
+        local dnh = getfield(dn, 'value')
+        for x in traverse(dnh) do
+           if has_attr(x, attr_dir)%dir_math_mod == new_dir then
+              setfield(dn, 'value', to_node(node_remove(dnh, x)))
+              db=x; break
+           end
+        end
+        Dnode.flush_list(getfield(dn, 'value'))
+        db = db or create_dir_node(b, box_dir, new_dir, false)
+        local w = getfield(b, 'width')
+        local h = getfield(b, 'height')
+        local d = getfield(b, 'depth')
+        local dn_w = getfield(db, 'width')
+        local dn_h = getfield(db, 'height')
+        local dn_d = getfield(db, 'depth')
+        nh, nb =  insert_before(head, b, db), nil
+        nh, nb = node_remove(nh, b)
+        local db_head, db_tail  = nil
+        for _,v in ipairs(dir_node_aux[box_dir][new_dir][getid(b)]) do
+           local cmd, arg, nn = v[1], v[2]
+           if cmd=='kern' then
+              nn = node_new(id_kern)
+              setfield(nn, 'kern', arg(w, h, d, dn_w, dn_h, dn_d))
+           elseif cmd=='whatsit' then
+              nn = node_new(id_whatsit, arg)
+           elseif cmd=='rotate' then
+              nn = node_new(id_whatsit, sid_matrix)
+              setfield(nn, 'data', arg)
+           elseif cmd=='box' then
+              nn = b; setfield(b, 'next', nil)
+              setfield(nn, 'shift', arg(w, h, d, dn_w, dn_h, dn_d))
+           end
+           if db_head then
+              insert_after(db_head, db_tail, nn)
+              db_tail = nn
+           else
+              db_head, db_tail = nn, nn
+           end
+           setfield(db, 'head', db_head)
+           ret, flag = db, true
         end
         return nh, nb, ret, flag
       end
@@ -595,7 +638,7 @@ do
       local x, new_dir = hd, ltjs.list_dir or dir_yoko
       while x do
         local xid = getid(x)
-        if (xid==id_hlist and has_attr(x, attr_icflag)%PROCESSED_BEGIN_FLAG~=PACKED) 
+        if (xid==id_hlist and get_attr_icflag(x)~=PACKED)
         or xid==id_vlist then
            hd, x = make_dir_whatsit(hd, x, new_dir, 'process_dir_node:' .. gc)
         else
@@ -640,7 +683,9 @@ end
 do
    local getbox, setdimen = tex.getbox, tex.setdimen
    local function get_box_dim_common(key, s, l_dir)
+      -- s: not dir_node.
       local s_dir, wh = get_box_dir(s, dir_yoko)
+      s_dir = s_dir%dir_math_mod
       if s_dir ~= l_dir then
          local not_found = true
          for x in traverse(getfield(wh, 'value')) do
@@ -664,12 +709,12 @@ do
       local gt = tex.globaldefs; tex.globaldefs = 0
       local s = getbox(n)
       if s then
-         local l_dir = get_dir_count()
+         local l_dir = (get_dir_count())%dir_math_mod
          s = to_direct(s)
          local b_dir = get_box_dir(s,dir_yoko)
          if b_dir<dir_node_auto then
             get_box_dim_common(key, s, l_dir)
-         elseif b_dir%dir_node_auto==l_dir then
+         elseif b_dir%dir_math_mod==l_dir then
             setdimen('ltj@tempdima', getfield(s, key))
          else
             get_box_dim_common(key, 
@@ -685,6 +730,7 @@ do
    -- return value: (changed dimen of box itself?)
    local function set_box_dim_common(key, s, l_dir)
       local s_dir, wh = get_box_dir(s, dir_yoko)
+      s_dir = s_dir%dir_math_mod
       if s_dir ~= l_dir then
          if not wh then
             wh = create_dir_whatsit(getlist(s), 'set_box_dim', s_dir)
@@ -727,40 +773,49 @@ do
       local n = tex_getcount('ltj@tempcnta')
       local s = getbox(n)
       if s then
-        local l_dir = get_dir_count()
+        local l_dir = (get_dir_count())%dir_math_mod
         s = to_direct(s)
          local b_dir = get_box_dir(s,dir_yoko)
          if b_dir<dir_node_auto then
             set_box_dim_common(key, s, l_dir)
-        elseif b_dir%dir_node_auto == l_dir then
+        elseif b_dir%dir_math_mod == l_dir then
            -- s is dir_node
            setfield(s, key, tex.getdimen('ltj@tempdima'))
            if b_dir<dir_node_manual then
               set_attr(s, attr_dir, b_dir%dir_node_auto + dir_node_manual)
            end
-         else
+           -- re-calculate shift and kern (TODO)
            local sid, sl = getid(s), getlist(s)
-           local b = node_next(node_next(node_next(sl)))
-           local info = dir_node_aux[get_box_dir(b,dir_yoko)][b_dir%dir_node_auto]
-           local shift_old
-           for _,v in ipairs(info[sid]) do 
-              if v[1]=='box' then
-                 shift_old = v[2](
-                    getfield(b,'width'), getfield(b, 'height'), getfield(b, 'depth'))
-                 break
+           local b = node_next(node_next(node_next(sl))) -- 本来の box
+           local info = dir_node_aux[get_box_dir(b,dir_yoko)%dir_math_mod][b_dir%dir_node_auto]
+           local bw, bh, bd 
+              = getfield(b,'width'), getfield(b, 'height'), getfield(b, 'depth')
+           local sw, sh, sd 
+              = getfield(s,'width'), getfield(s, 'height'), getfield(s, 'depth')
+           -- re-calculate shift and kern
+           for i,v in ipairs(info[sid]) do 
+              if getid(sl)==id_kern then
+                 setfield(sl, 'kern', v[2](bw,bh,bd,sw,sh,sd) )
+              elseif getid(sl)==sid then
+                 setfield(sl, 'shift', v[2](bw,bh,bd,sw,sh,sd) )
               end
+              sl = node_next(sl)
            end
-           if set_box_dim_common(key, b, l_dir) then
-              local bw, bh, bd 
-                 = getfield(b,'width'), getfield(b, 'height'), getfield(b, 'depth')
-              -- re-calculate shift
+         else
+           local sid, sl = getid(s), getlist(s)
+           local b = node_next(node_next(node_next(sl))) -- 本来の box
+           local info = dir_node_aux[get_box_dir(b,dir_yoko)%dir_math_mod][b_dir%dir_node_auto]
+           local bw, bh, bd 
+              = getfield(b,'width'), getfield(b, 'height'), getfield(b, 'depth')
+           local sw, sh, sd 
+              = getfield(s,'width'), getfield(s, 'height'), getfield(s, 'depth')
+           if set_box_dim_common(key, b, l_dir) then
+              -- re-calculate shift and kern
               for i,v in ipairs(info[sid]) do 
                  if getid(sl)==id_kern then
-                    setfield(sl, 'kern', v[2](bw,bh,bd) )
+                    setfield(sl, 'kern', v[2](bw,bh,bd,sw,sh,sd) )
                  elseif getid(sl)==sid then
-                    local d = getfield(sl, 'shift')
-                    setfield(sl, 'shift', 
-                             getfield(sl, 'shift') - shift_old + v[2](bw,bh,bd) )
+                    setfield(sl, 'shift', v[2](bw,bh,bd,sw,sh,sd) )
                  end
                  sl = node_next(sl)
               end
@@ -777,83 +832,49 @@ do
    luatexja.direction.set_box_dim = set_box_dim
 end
 
--- \ifydir, \iftdir, \ifddir
 do
    local getbox = tex.getbox
-   local function box_dir_conditional(n, mode)
+   local function get_register_dir(n)
       local s = getbox(n)
-      local res = false
       if s then
          s = to_direct(s)
          local b_dir = get_box_dir(s, dir_yoko)
          if b_dir<dir_node_auto then
-           res = (b_dir==mode)
+           return b_dir
          else
            local b_dir = get_box_dir(
               node_next(node_next(node_next(getlist(s)))), dir_yoko)
-           res = (b_dir==mode)
+           return b_dir
          end
+      else
+         return 0
       end
-      tex.sprint(cat_lp, '\\if' .. tostring(res))
    end
-   luatexja.direction.box_dir_conditional = box_dir_conditional
+   luatexja.direction.get_register_dir = get_register_dir
 end
 
--- 縦書き用字形への変換テーブル
-local font_vert_table = {} -- key: fontnumber
 do
-   local font_vert_basename = {} -- key: basename
-   local function add_feature_table(tname, src, dest)
-      for i,v in pairs(src) do
-        if type(v.slookups)=='table' then
-           local s = v.slookups[tname]
-           if s and not dest[i] then
-              dest[i] = s
-           end
-        end
-      end
-   end
-
-   local function prepare_vert_data(n, id)
-      -- test if already loaded
-      if type(id)=='number' then -- sometimes id is an integer
-         font_vert_table[n] = font_vert_table[id]; return
-      elseif (not id) or font_vert_table[n]  then return
-      end
-      local fname = id.filename
-      local bname = file.basename(fname)
-      if not fname then
-         font_vert_table[n] = {}; return
-      elseif font_vert_basename[bname] then
-         font_vert_table[n] = font_vert_basename[bname]; return
-      end
-      local vtable = {}
-      local a = id.resources.sequences
-      if a then
-        local s = id.shared.rawdata.descriptions
-        for i,v in pairs(a) do
-           if v.features.vert or v.features.vrt2 then
-              add_feature_table(v.subtables[1], s, vtable)
-           end
+   local getbox, setbox, copy_list = tex.getbox, tex.setbox, Dnode.copy_list
+   -- raise, lower
+   function luatexja.direction.raise_box()
+      start_time_measure('box_primitive_hook')
+      local list_dir = get_dir_count()
+      local s = getbox('ltj@afbox')
+      if s then
+        local sd = to_direct(s)
+        local box_dir = get_box_dir(sd, dir_yoko)
+        if box_dir%dir_math_mod ~= list_dir then
+           setbox(
+              'ltj@afbox', 
+              to_node(
+                 copy_list(make_dir_whatsit(sd, sd, list_dir, 'box_move'))
+                 -- without copy_list, we get a segfault
+              )
+           )
         end
       end
-      font_vert_basename[bname] = vtable
-      font_vert_table[n] = vtable
-   end
-   -- 縦書き用字形への変換
-   function luatexja.direction.get_vert_glyph(n, chr)
-      local fn = font_vert_table[n]
-      return fn and fn[chr] or chr
+      stop_time_measure('box_primitive_hook')
    end
-   luatexbase.add_to_callback('luatexja.define_font',
-                             function (res, name, size, id)
-                                prepare_vert_data(id, res)
-                             end,
-                             'prepare_vert_data', 1)
-
-   local function a (n, dat) font_vert_table[n] = dat end
-   luatexja.rmlgbm.vert_addfunc = a
-
 end
 
 -- PACKED の hbox から文字を取り出す
@@ -871,7 +892,7 @@ end
 local id_adjust = node.id('adjust')
 function luatexja.direction.check_adjust_direction()
    start_time_measure('box_primitive_hook')
-   local list_dir = tex_getcount('ltj@adjdir@count')
+   local list_dir = get_adjust_dir_count()
    local a = tex_nest[tex_nest.ptr].tail
    local ad = to_direct(a)
    if a and getid(ad)==id_adjust then
@@ -937,7 +958,7 @@ do
 
    function luatexja.direction.remove_end_whatsit()
       local h=tex.lists.page_head
-      if (not h.next) and
+      if h and (not h.next) and
         h.id==id_whatsit and h.subtype==sid_user and
          h.user_id == DIR then
            tex.lists.page_head = nil