OSDN Git Service

Fixed \un{h,v}box; also updated manuals.
[luatex-ja/luatexja.git] / src / ltj-direction.lua
1 --
2 -- src/ltj-direction.lua
3 --
4
5 luatexja.load_module('base');      local ltjb = luatexja.base
6 luatexja.load_module('stack');     local ltjs = luatexja.stack
7 luatexja.load_module('rmlgbm');    local ltjr = luatexja.rmlgbm
8 luatexja.direction = {}
9
10 local attr_dir = luatexbase.attributes['ltj@dir']
11 local attr_icflag = luatexbase.attributes['ltj@icflag']
12
13 local cat_lp = luatexbase.catcodetables['latex-package']
14 local Dnode = node.direct or node
15 local nullfunc = function (n) return n end
16 local to_node = (Dnode ~= node) and Dnode.tonode or nullfunc
17 local to_direct = (Dnode ~= node) and Dnode.todirect or nullfunc
18 local has_attr = Dnode.has_attribute
19 local set_attr = Dnode.set_attribute
20 local insert_before = Dnode.insert_before
21 local insert_after = Dnode.insert_after
22 local getid = (Dnode ~= node) and Dnode.getid or function(n) return n.id end
23 local getsubtype = (Dnode ~= node) and Dnode.getsubtype or function(n) return n.subtype end
24 local getlist = (Dnode ~= node) and Dnode.getlist or function(n) return n.head end
25 local setfield = (Dnode ~= node) and Dnode.setfield or function(n, i, c) n[i] = c end
26 local getfield = (Dnode ~= node) and Dnode.getfield or function(n, i) return n[i] end
27 local node_new = Dnode.new
28 local node_tail = Dnode.tail
29 local node_free = Dnode.free
30 local node_remove = Dnode.remove
31 local node_next = (Dnode ~= node) and Dnode.getnext or node.next
32 local traverse = Dnode.traverse
33 local traverse_id = Dnode.traverse_id
34 local start_time_measure, stop_time_measure 
35    = ltjb.start_time_measure, ltjb.stop_time_measure
36 local abs = math.abs
37
38 local id_kern = node.id('kern')
39 local id_hlist = node.id('hlist')
40 local id_vlist = node.id('vlist')
41 local id_whatsit = node.id('whatsit')
42 local sid_save = node.subtype('pdf_save')
43 local sid_restore = node.subtype('pdf_restore')
44 local sid_matrix = node.subtype('pdf_setmatrix')
45 local sid_user = node.subtype('user_defined')
46
47 local tex_nest = tex.nest
48 local tex_getcount = tex.getcount
49 local tex_set_attr = tex.setattribute
50 local PROCESSED    = luatexja.icflag_table.PROCESSED
51 local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
52 local PACKED       = luatexja.icflag_table.PACKED
53 local STCK = luatexja.userid_table.STCK
54 local DIR  = luatexja.userid_table.DIR
55 local dir_tate = luatexja.dir_table.dir_tate
56 local dir_yoko = luatexja.dir_table.dir_yoko
57 local dir_dtou = luatexja.dir_table.dir_dtou
58 local dir_utod = luatexja.dir_table.dir_utod
59 local dir_math_mod    = luatexja.dir_table.dir_math_mod
60 local dir_node_auto   = luatexja.dir_table.dir_node_auto
61 local dir_node_manual = luatexja.dir_table.dir_node_manual
62
63 local page_direction
64 --
65 local function adjust_badness(hd)
66    if not node_next(hd) and getid(hd)==id_whatsit and getsubtype(hd)==sid_user
67    and getfield(hd, 'user_id')==DIR then
68       -- avoid double whatsit
69       luatexja.global_temp=tex.globaldefs; tex.globaldefs=0
70       luatexja.hbadness_temp=tex.hbadness; tex.hbadness=10000
71       luatexja.vbadness_temp=tex.vbadness; tex.vbadness=10000
72    else
73       luatexja.global_temp = nil
74       luatexja.hbadness_temp=nil
75       luatexja.vbadness_temp=nil
76    end
77 end
78
79 local get_dir_count, get_adjust_dir_count
80 do
81    local function get_dir_count_inner(h)
82       if h then
83          if h.id==id_whatsit and h.subtype==sid_user and h.user_id==DIR then
84                local ic = node.has_attribute(h, attr_icflag)
85                return (ic<PROCESSED_BEGIN_FLAG) 
86                   and (node.has_attribute(h,attr_dir)%dir_node_auto) or 0
87          else
88             return 0
89          end
90       else
91          return 0
92       end
93    end
94    function get_dir_count()
95       for i=tex_nest.ptr, 1, -1 do
96          local h = tex_nest[i].head.next
97          if h then
98             local t = get_dir_count_inner(h)
99             if t~=0 then return t end
100          end
101       end
102       return page_direction
103    end
104    function get_adjust_dir_count()
105       for i=tex_nest.ptr, 1, -1 do
106          local v = tex_nest[i]
107          local h, m = v.head.next, v.mode
108          if abs(m)== ltjs.vmode and h then
109             local t = get_dir_count_inner(h)
110             if t~=0 then return t end
111          end
112       end
113       return page_direction
114    end
115    luatexja.direction.get_dir_count = get_dir_count
116    luatexja.direction.get_adjust_dir_count = get_adjust_dir_count
117 end
118
119
120 -- \tate, \yoko,\dtou, \utod
121 do
122    local node_next = node.next
123    local node_set_attr = node.set_attribute
124    local function set_list_direction(v, name)
125       local lv, w = tex_nest.ptr, tex.lists.page_head
126       if not v then 
127          v,name  = get_dir_count(), nil
128          if lv>=1 and abs(tex_nest[lv-1].mode) == ltjs.mmode and v == dir_tate then
129             v = dir_utod
130          end
131       elseif v=='adj' then
132          v,name = get_adjust_dir_count(), nil
133       end
134       if tex.currentgrouptype==6 then
135          ltjb.package_error(
136                  'luatexja',
137                  "You can't use `\\" .. name .. "' in an align",
138                  "To change direction in an align, \n"
139                     .. "you shold use \\hbox or \\vbox.")
140       else
141          local w = (lv==0) and tex.lists.page_head or tex_nest[lv].head.next
142          if w then
143             if (not w.next) and 
144                w.id==id_whatsit and w.subtype==sid_user and w.user_id==DIR then
145                node_set_attr(w, attr_dir, v)
146                if lv==0 then page_direction = v end
147             elseif lv==0 and not page_direction then
148                page_direction = v -- for first call of \yoko (in luatexja-core.sty)
149             else
150               ltjb.package_error(
151                  'luatexja',
152                  "Use `\\" .. tostring(name) .. "' at top of list",
153                  'Direction change command by LuaTeX-ja is available\n'
154                     .. 'only when the current list is null.')
155             end
156          else
157             local w = node_new(id_whatsit, sid_user)
158             setfield(w, 'next', nil)
159             setfield(w, 'user_id', DIR)
160             setfield(w, 'type', 110)
161             set_attr(w, attr_dir, v)
162             Dnode.write(w)
163             if lv==0 then page_direction = v end
164          end
165          tex_set_attr('global', attr_icflag, 0)
166       end
167       tex_set_attr('global', attr_dir, 0)
168    end
169    luatexja.direction.set_list_direction = set_list_direction
170 end
171
172 -- ボックスに dir whatsit を追加
173 local function create_dir_whatsit(hd, gc, new_dir)
174    if getid(hd)==id_whatsit and 
175             getsubtype(hd)==sid_user and getfield(hd, 'user_id')==DIR then
176       set_attr(hd, attr_icflag, 
177                (has_attr(hd, attr_icflag) or 0)%PROCESSED_BEGIN_FLAG 
178                   + PROCESSED_BEGIN_FLAG)
179       tex_set_attr('global', attr_icflag, 0)
180       return hd
181    else
182       local w = node_new(id_whatsit, sid_user)
183       setfield(w, 'next', hd)
184       setfield(w, 'user_id', DIR)
185       setfield(w, 'type', 110)
186       set_attr(w, attr_dir, new_dir)
187       set_attr(w, attr_icflag, PROCESSED_BEGIN_FLAG)
188       set_attr(hd, attr_icflag, 
189                (has_attr(hd, attr_icflag) or 0)%PROCESSED_BEGIN_FLAG 
190                   + PROCESSED_BEGIN_FLAG)
191       tex_set_attr('global', attr_dir, 0)
192       tex_set_attr('global', attr_icflag, 0)
193       return w
194    end
195 end
196
197 -- hpack_filter, vpack_filter, post_line_break_filter
198 -- の結果を組方向を明示するため,先頭に dir_node を設置
199 do
200    local function create_dir_whatsit_hpack(h, gc)
201       local hd = to_direct(h)
202       if gc=='fin_row' or gc == 'preamble'  then
203          if hd  then
204             set_attr(hd, attr_icflag, PROCESSED_BEGIN_FLAG)
205             tex_set_attr('global', attr_icflag, 0)
206          end
207          return h
208       else
209          adjust_badness(hd)
210          return to_node(create_dir_whatsit(hd, gc, ltjs.list_dir))
211       end
212    end
213
214    luatexbase.add_to_callback('hpack_filter', 
215                               create_dir_whatsit_hpack, 'ltj.create_dir_whatsit', 10000)
216 end
217
218 do
219    local function create_dir_whatsit_parbox(h, gc)
220       stop_time_measure('tex_linebreak')
221       -- start 側は ltj-debug.lua に
222       local new_dir, hd = ltjs.list_dir, to_direct(h)
223       for line in traverse_id(id_hlist, hd) do
224          local nh = getlist(line)
225          setfield(line, 'head', create_dir_whatsit(nh, gc, new_dir) )
226          set_attr(line, attr_dir, new_dir)
227       end
228       tex_set_attr('global', attr_dir, 0)
229       return h 
230    end
231    luatexbase.add_to_callback('post_linebreak_filter', 
232                               create_dir_whatsit_parbox, 'ltj.create_dir_whatsit', 10000)
233 end
234
235 local create_dir_whatsit_vbox
236 do
237    local wh = {}
238    local id_glue, sid_parskip = node.id('glue'), 3
239    create_dir_whatsit_vbox = function (hd, gc)
240       ltjs.list_dir = get_dir_count()
241       -- remove dir whatsit
242       for x in traverse_id(id_whatsit, hd) do
243          if getsubtype(x)==sid_user and getfield(x, 'user_id')==DIR then
244             wh[#wh+1]=x
245          end
246       end
247       if hd==wh[1] then
248          ltjs.list_dir =has_attr(hd,attr_dir)
249          local x = node_next(hd)
250          if getid(x)==id_glue and getsubtype(x)==sid_parskip then
251             node_remove(hd,x); node_free(x)
252          end
253       end
254       for i=1,#wh do  
255          hd = node_remove(hd, wh[i]); node_free(wh[i]); wh[i] = nil 
256       end
257       if gc=='fin_row' or gc == 'preamble'  then
258          if hd  then
259             set_attr(hd, attr_icflag, PROCESSED_BEGIN_FLAG)
260             tex_set_attr('global', attr_icflag, 0)
261          end
262          return hd
263       else
264          local n =node_next(hd)
265          if gc=='vtop' then
266             local w = create_dir_whatsit(hd, gc, ltjs.list_dir)
267             -- move  dir whatsit after hd
268             setfield(hd, 'next', w); setfield(w, 'next', n)
269             return hd
270          else
271             hd = create_dir_whatsit(hd, gc, ltjs.list_dir)
272             return hd
273          end
274       end
275    end
276 end
277
278 -- dir_node に包む方法を書いたテーブル
279 local dir_node_aux
280 do
281    local get_h =function (w,h,d) return h end
282    local get_d =function (w,h,d) return d end
283    local get_h_d =function (w,h,d) return h+d end
284    local get_h_d_neg =function (w,h,d) return -h-d end
285    local get_h_neg =function (w,h,d) return -h end
286    local get_d_neg =function (w,h,d) return -d end
287    local get_w_half =function (w,h,d) return 0.5*w end
288    local get_w_neg_half =function (w,h,d) return -0.5*w end
289    local get_w_neg =function (w,h,d) return -w end
290    local get_w =function (w,h,d) return w end
291    local zero = function() return 0 end
292    dir_node_aux = {
293       [dir_yoko] = { -- yoko を 
294          [dir_tate] = { -- tate 中で組む
295             width  = get_h_d,
296             height = get_w_half,
297             depth  = get_w_half,
298             [id_hlist] = {
299                { 'whatsit', sid_save },
300                { 'rotate', '0 1 -1 0' },
301                { 'kern', get_w_neg_half },
302                { 'box' , get_h },
303                { 'kern', get_w_neg_half },
304                { 'whatsit', sid_restore },
305             },
306             [id_vlist] = {
307                { 'whatsit', sid_save },
308                { 'rotate', '0 1 -1 0' },
309                { 'kern' , zero },
310                { 'box' , get_w_neg },
311                { 'kern', get_h_d_neg},
312                { 'whatsit', sid_restore },
313             },
314          },
315          [dir_dtou] = { -- dtou 中で組む
316             width  = get_h_d,
317             height = get_w,
318             depth  = zero,
319             [id_hlist] = {
320                { 'whatsit', sid_save },
321                { 'rotate', '0 -1 1 0' },
322                { 'kern', get_w_neg },
323                { 'box', get_d_neg },
324                { 'whatsit', sid_restore },
325             },
326             [id_vlist] = {
327                { 'whatsit', sid_save },
328                { 'rotate', '0 -1 1 0' },
329                { 'kern', get_h_d_neg },
330                { 'box', zero },
331                { 'whatsit', sid_restore },
332             },
333          },
334       },
335       [dir_tate] = { -- tate を
336          [dir_yoko] = { -- yoko 中で組む
337             width  = get_h_d,
338             height = get_w,
339             depth  = zero,
340             [id_hlist] = {
341                { 'whatsit', sid_save },
342                { 'rotate', '0 -1 1 0' },
343                { 'kern', get_w_neg },
344                { 'box' , get_d_neg },
345                { 'whatsit', sid_restore },
346             },
347             [id_vlist] = {
348                { 'whatsit', sid_save },
349                { 'rotate', '0 -1 1 0' },
350                { 'kern', get_h_d_neg },
351                { 'box', zero },
352                { 'whatsit', sid_restore },
353             },
354          },
355          [dir_dtou] = { -- dtou 中で組む
356             width  = get_w,
357             height = get_d,
358             depth  = get_h,
359             [id_hlist] = {
360                { 'whatsit', sid_save },
361                { 'rotate', '-1 0 0 -1' },
362                { 'kern', get_w_neg },
363                { 'box', zero },
364                { 'whatsit', sid_restore },
365             },
366             [id_vlist] = {
367                { 'whatsit', sid_save },
368                { 'rotate', '-1 0 0 -1' },
369                { 'kern', get_h_d_neg },
370                { 'box', get_w_neg },
371                { 'whatsit', sid_restore },
372             },
373          },
374       },
375       [dir_dtou] = { -- dtou を
376          [dir_yoko] = { -- yoko 中で組む
377             width  = get_h_d,
378             height = get_w, 
379             depth  = zero,
380             [id_hlist] = {
381                { 'whatsit', sid_save },
382                { 'rotate', '0 1 -1 0' },
383                { 'kern', zero },
384                { 'box', get_h },
385                { 'kern', get_w_neg },
386                { 'whatsit', sid_restore },
387             },
388             [id_vlist] = {
389                { 'kern', zero },
390                { 'whatsit', sid_save },
391                { 'rotate', '0 1 -1 0' },
392                { 'box', get_w_neg },
393                { 'kern', get_h_d_neg },
394                { 'whatsit', sid_restore },
395             },
396          },
397          [dir_tate] = { -- tate 中で組む
398             width  = get_w,
399             height = get_d,
400             depth  = get_h,
401             [id_hlist] = {
402                { 'whatsit', sid_save },
403                { 'rotate', '-1 0 0 -1' },
404                { 'kern', get_w_neg },
405                { 'box', zero },
406                { 'whatsit', sid_restore },
407             },
408             [id_vlist] = {
409                { 'whatsit', sid_save },
410                { 'rotate', ' -1 0 0 -1' },
411                { 'kern', get_h_d_neg }, 
412                { 'box', get_w_neg },
413                { 'whatsit', sid_restore },
414             },
415          },
416       },
417    }
418 end
419
420 -- 1st ret val: b の組方向
421 -- 2nd ret val はその DIR whatsit
422 local function get_box_dir(b, default)
423    start_time_measure('get_box_dir')
424    local dir = has_attr(b, attr_dir) or 0
425    local bh = getfield(b,'head') 
426    -- b は insert node となりうるので getlist() は使えない
427    local c
428    for i=1,2 do
429       if bh and getid(bh)==id_whatsit
430       and getsubtype(bh)==sid_user and getfield(bh, 'user_id')==DIR then
431          c = bh
432          dir = (dir==0) and has_attr(bh, attr_dir) or dir
433       end
434       bh = node_next(bh)
435    end
436    stop_time_measure('get_box_dir')
437    return (dir==0 and default or dir), c
438 end
439
440 do
441    local getbox = tex.getbox
442    local function check_dir(reg_num)
443       start_time_measure('box_primitive_hook')
444       local list_dir = get_dir_count()%dir_math_mod
445       local b = getbox(tex_getcount('ltj@tempcnta'))
446       if b then
447          local box_dir = get_box_dir(to_direct(b), dir_yoko)
448          if box_dir%dir_math_mod ~= list_dir then
449             print('NEST', tex_nest.ptr, tex_getcount('ltj@tempcnta'))
450             luatexja.ext_show_node_list(
451                (tex_nest.ptr==0) and tex.lists.page_head or tex_nest[tex_nest.ptr].head,
452                'LIST' .. tostring(list_dir) .. '> ', print)
453            luatexja.ext_show_node_list(b, 'BOX' .. tostring(box_dir) .. '> ', print)
454             ltjb.package_error(
455                'luatexja',
456                "Incompatible direction list can't be unboxed",
457                'I refuse to unbox a box in differrent direction.')
458          end
459       end
460       if luatexja.global_temp and tex.globaldefs~=luatexja.global_temp then 
461          tex.globaldefs = luatexja.global_temp
462       end
463       stop_time_measure('box_primitive_hook')
464    end
465    luatexja.direction.check_dir = check_dir
466 end
467
468 -- dir_node に包まれている「本来の中身」を取り出し,
469 -- dir_node を全部消去
470 local function unwrap_dir_node(b, head, box_dir)
471    -- b: dir_node, head: the head of list, box_dir: 
472    -- return values are (new head), (next of b), (contents), (dir of contents)
473    local bh = getlist(b)
474    local bc = node_next(node_next(node_next(bh)))
475    local nh, nb
476    node_remove(bh, bc); 
477    Dnode.flush_list(bh)
478    if head then
479       nh = insert_before(head, b, bc)
480       nh, nb = node_remove(nh, b)
481       setfield(b, 'next', nil)
482       setfield(b, 'head', nil)
483       node_free(b)
484    end
485    local shift_old, b_dir, wh = nil, get_box_dir(bc, 0)
486    if wh then
487       Dnode.flush_list(getfield(wh, 'value'))
488       setfield(wh, 'value', nil)
489    end
490    -- recalc. info
491    local info = dir_node_aux[b_dir%dir_math_mod][box_dir%dir_math_mod][getid(bc)]
492    for _,v in ipairs(info) do 
493       if v[1]=='box' then
494          shift_old = v[2](
495             getfield(bc,'width'), getfield(bc, 'height'), getfield(bc, 'depth'))
496          break
497       end
498    end
499    setfield(bc, 'shift', getfield(bc, 'shift') - shift_old)
500    return nh, nb, bc, b_dir
501 end
502
503 -- is_manual: 寸法変更に伴うものか?
504 local function create_dir_node(b, b_dir, new_dir, is_manual)
505    local info = dir_node_aux[b_dir%dir_math_mod][new_dir%dir_math_mod]
506    local w = getfield(b, 'width')
507    local h = getfield(b, 'height')
508    local d = getfield(b, 'depth')
509    local db = node_new(getid(b)) -- dir_node
510    set_attr(db, attr_dir, 
511             new_dir + (is_manual and dir_node_manual or dir_node_auto))
512    set_attr(db, attr_icflag, PROCESSED)
513    set_attr(b, attr_icflag, PROCESSED)
514    tex_set_attr('global', attr_dir, 0)
515    tex_set_attr('global', attr_icflag, 0)
516    setfield(db, 'dir', getfield(b, 'dir'))
517    setfield(db, 'shift', 0)
518    setfield(db, 'width',  info.width(w,h,d))
519    setfield(db, 'height', info.height(w,h,d))
520    setfield(db, 'depth',  info.depth(w,h,d))
521    return db
522 end
523
524 -- 異方向のボックスの処理
525 local make_dir_whatsit, process_dir_node
526 do
527    make_dir_whatsit = function (head, b, new_dir, origin)
528       new_dir = new_dir%dir_math_mod
529       -- head: list head, b: box
530       -- origin: コール元 (for debug)
531       -- return value: (new head), (next of b), (new b), (is_b_dir_node)
532       -- (new b): b か dir_node に被せられた b
533       local bh = getlist(b)
534       local box_dir, dn =  get_box_dir(b, ltjs.list_dir)
535       -- 既に b の中身にあるwhatsit
536
537       if box_dir%dir_math_mod==new_dir then
538          if box_dir>=dir_node_auto then
539             -- dir_node としてカプセル化されている
540             local bc = node_next(node_next(node_next(bh)))
541             local _, dnc = get_box_dir(b, 0)
542             if dnc then -- free all other dir_node
543                Dnode.flush_list(getfield(dnc, 'value'))
544                setfield(dnc, 'value', nil)
545             end
546             set_attr(b, attr_dir, box_dir%dir_math_mod + dir_node_auto)
547             return head, node_next(b), b, true
548          else
549             -- 組方向が一緒 (up to math dir) のボックスなので,何もしなくて良い
550             return head, node_next(b), b, false
551          end
552       else
553          -- 組方向を合わせる必要あり
554          local nh, nb, ret, flag
555          if box_dir>= dir_node_auto then -- unwrap
556             local b_dir
557             head, nb, b, b_dir = unwrap_dir_node(b, head, box_dir)
558             bh = getlist(b)
559             if b_dir%dir_math_mod==new_dir then
560                -- dir_node の中身が周囲の組方向とあっている
561                return head, nb, b, false 
562             else box_dir = b_dir end
563          end
564          box_dir = box_dir%dir_math_mod
565          local db
566          local dnh = getfield(dn, 'value')
567          for x in traverse(dnh) do
568             if has_attr(x, attr_dir) == new_dir then
569                setfield(dn, 'value', to_node(node_remove(dnh, x)))
570                db=x; break
571             end
572          end
573          Dnode.flush_list(dnh)
574          db = db or create_dir_node(b, box_dir, new_dir, false)
575          local w = getfield(b, 'width')
576          local h = getfield(b, 'height')
577          local d = getfield(b, 'depth')
578          nh, nb =  insert_before(head, b, db), nil
579          nh, nb = node_remove(nh, b)
580          local db_head, db_tail  = nil
581          for _,v in ipairs(dir_node_aux[box_dir][new_dir][getid(b)]) do
582             local cmd, arg, nn = v[1], v[2]
583             if cmd=='kern' then
584                nn = node_new(id_kern)
585                setfield(nn, 'kern', arg(w, h, d))
586             elseif cmd=='whatsit' then
587                nn = node_new(id_whatsit, arg)
588             elseif cmd=='rotate' then
589                nn = node_new(id_whatsit, sid_matrix)
590                setfield(nn, 'data', arg)
591             elseif cmd=='box' then
592                nn = b; setfield(b, 'next', nil)
593                setfield(nn, 'shift', getfield(nn, 'shift') + arg(w,h,d))
594             end
595             if db_head then
596                insert_after(db_head, db_tail, nn)
597                db_tail = nn
598             else
599                db_head, db_tail = nn, nn
600             end
601             setfield(db, 'head', db_head)
602             ret, flag = db, true
603          end
604          return nh, nb, ret, flag
605       end
606    end
607    process_dir_node = function (hd, gc)
608       local x, new_dir = hd, ltjs.list_dir or dir_yoko
609       while x do
610          local xid = getid(x)
611          if (xid==id_hlist and has_attr(x, attr_icflag)%PROCESSED_BEGIN_FLAG~=PACKED) 
612          or xid==id_vlist then
613             hd, x = make_dir_whatsit(hd, x, new_dir, 'process_dir_node:' .. gc)
614          else
615             x = node_next(x)
616          end
617       end
618       return hd
619    end
620
621    -- lastbox
622    local node_prev = (Dnode~=node) and Dnode.getprev or node.prev
623    local function lastbox_hook()
624       start_time_measure('box_primitive_hook')
625       local bn = tex_nest[tex_nest.ptr].tail
626       if bn then
627          local b, head = to_direct(bn), to_direct(tex_nest[tex_nest.ptr].head)
628          local bid = getid(b)
629          if bid==id_hlist or bid==id_vlist then
630             local box_dir =  get_box_dir(b, 0)
631             if box_dir>= dir_node_auto then -- unwrap dir_node
632                local p = node_prev(b)
633                local dummy1, dummy2, nb = unwrap_dir_node(b, nil, box_dir)
634                setfield(p, 'next', nb);  tex_nest[tex_nest.ptr].tail = to_node(nb)
635                setfield(b, 'next', nil); setfield(b, 'head', nil)
636                node_free(b); b = nb
637             end
638             local _, wh =  get_box_dir(b, 0) -- clean dir_node attached to the box
639             if wh then
640                Dnode.flush_list(getfield('value', wh))
641                setfield(wh, 'value', nil)
642             end
643          end
644       end
645       stop_time_measure('box_primitive_hook')
646    end
647
648    luatexja.direction.make_dir_whatsit = make_dir_whatsit
649    luatexja.direction.lastbox_hook = lastbox_hook
650 end
651
652 -- \wd, \ht, \dp の代わり
653 do
654    local getbox, setdimen = tex.getbox, tex.setdimen
655    local function get_box_dim_common(key, s, l_dir)
656       -- s: not dir_node.
657       local s_dir, wh = get_box_dir(s, dir_yoko)
658       s_dir = s_dir%dir_math_mod
659       if s_dir ~= l_dir then
660          local not_found = true
661          for x in traverse(getfield(wh, 'value')) do
662             if l_dir == has_attr(x, attr_dir)%dir_node_auto then
663                setdimen('ltj@tempdima', getfield(x, key))
664                not_found = false; break
665             end
666          end
667          if not_found then
668             local w = getfield(s, 'width')
669             local h = getfield(s, 'height')
670             local d = getfield(s, 'depth')
671             setdimen('ltj@tempdima', 
672                          dir_node_aux[s_dir][l_dir][key](w,h,d))
673          end
674       else
675          setdimen('ltj@tempdima', getfield(s, key))
676       end
677    end
678    local function get_box_dim(key, n)
679       local gt = tex.globaldefs; tex.globaldefs = 0
680       local s = getbox(n)
681       if s then
682          local l_dir = (get_dir_count())%dir_math_mod
683          s = to_direct(s)
684          local b_dir = get_box_dir(s,dir_yoko)
685          if b_dir<dir_node_auto then
686             get_box_dim_common(key, s, l_dir)
687          elseif b_dir%dir_math_mod==l_dir then
688             setdimen('ltj@tempdima', getfield(s, key))
689          else
690             get_box_dim_common(key, 
691                                node_next(node_next(node_next(getlist(s)))), l_dir)
692          end
693       else
694          setdimen('ltj@tempdima', 0)
695       end
696       tex.globaldefs = gt
697    end
698    luatexja.direction.get_box_dim = get_box_dim
699
700    -- return value: (changed dimen of box itself?)
701    local function set_box_dim_common(key, s, l_dir)
702       local s_dir, wh = get_box_dir(s, dir_yoko)
703       s_dir = s_dir%dir_math_mod
704       if s_dir ~= l_dir then
705          if not wh then
706             wh = create_dir_whatsit(getlist(s), 'set_box_dim', s_dir)
707             setfield(s, 'head', wh)
708          end
709          local db
710          local dnh = getfield(wh, 'value')
711          for x in traverse(dnh) do
712             if has_attr(x, attr_dir)%dir_node_auto==l_dir then
713                db = x; break
714             end
715          end
716          if not db then
717             db = create_dir_node(s, s_dir, l_dir, true)
718             setfield(db, 'next', dnh)
719             setfield(wh, 'value',to_node(db))
720          end
721          setfield(db, key, tex.getdimen('ltj@tempdima'))
722          return false
723       else
724          setfield(s, key, tex.getdimen('ltj@tempdima'))
725          if wh then
726             -- change dimension of dir_nodes which are created "automatically"
727                local bw, bh, bd 
728                   = getfield(s,'width'), getfield(s, 'height'), getfield(s, 'depth')
729             for x in traverse(getfield(wh, 'value')) do
730                local x_dir = has_attr(x, attr_dir)
731                if x_dir<dir_node_manual then
732                   local info = dir_node_aux[s_dir][x_dir%dir_node_auto]
733                   setfield(x, 'width',  info.width(bw,bh,bd))
734                   setfield(x, 'height', info.height(bw,bh,bd))
735                   setfield(x, 'depth',  info.depth(bw,bh,bd))
736                end
737             end
738          end
739          return true
740       end
741    end
742    local function set_box_dim(key)
743       local n = tex_getcount('ltj@tempcnta')
744       local s = getbox(n)
745       if s then
746          local l_dir = (get_dir_count())%dir_math_mod
747          s = to_direct(s)
748          local b_dir = get_box_dir(s,dir_yoko)
749          if b_dir<dir_node_auto then
750             set_box_dim_common(key, s, l_dir)
751          elseif b_dir%dir_math_mod == l_dir then
752             -- s is dir_node
753             setfield(s, key, tex.getdimen('ltj@tempdima'))
754             if b_dir<dir_node_manual then
755                set_attr(s, attr_dir, b_dir%dir_node_auto + dir_node_manual)
756             end
757          else
758             local sid, sl = getid(s), getlist(s)
759             local b = node_next(node_next(node_next(sl))) -- 本来の box
760             local info = dir_node_aux[get_box_dir(b,dir_yoko)%dir_math_mod][b_dir%dir_node_auto]
761             local shift_old
762             for _,v in ipairs(info[sid]) do 
763                if v[1]=='box' then
764                   shift_old = v[2](
765                      getfield(b,'width'), getfield(b, 'height'), getfield(b, 'depth'))
766                   break
767                end
768             end
769            if set_box_dim_common(key, b, l_dir) then
770                local bw, bh, bd 
771                   = getfield(b,'width'), getfield(b, 'height'), getfield(b, 'depth')
772                -- re-calculate shift
773                for i,v in ipairs(info[sid]) do 
774                   if getid(sl)==id_kern then
775                      setfield(sl, 'kern', v[2](bw,bh,bd) )
776                   elseif getid(sl)==sid then
777                      local d = getfield(sl, 'shift')
778                      setfield(sl, 'shift', 
779                               getfield(sl, 'shift') - shift_old + v[2](bw,bh,bd) )
780                   end
781                   sl = node_next(sl)
782                end
783                -- re-calculate dimension of s, if s is created "automatically"
784                if b_dir<dir_node_manual then
785                   setfield(s, 'width',  info.width(bw,bh,bd))
786                   setfield(s, 'height', info.height(bw,bh,bd))
787                   setfield(s, 'depth',  info.depth(bw,bh,bd))
788                end
789             end
790          end
791       end
792    end
793    luatexja.direction.set_box_dim = set_box_dim
794 end
795
796 do
797    local getbox = tex.getbox
798    local function get_register_dir(n)
799       local s = getbox(n)
800       if s then
801          s = to_direct(s)
802          local b_dir = get_box_dir(s, dir_yoko)
803          if b_dir<dir_node_auto then
804             return b_dir
805          else
806             local b_dir = get_box_dir(
807                node_next(node_next(node_next(getlist(s)))), dir_yoko)
808             return b_dir
809          end
810       else
811          return 0
812       end
813    end
814    luatexja.direction.get_register_dir = get_register_dir
815 end
816
817 -- raise, lower
818 do
819    local getbox, setbox, copy_list = tex.getbox, tex.setbox, Dnode.copy_list
820    function luatexja.direction.raise_box()
821       start_time_measure('box_primitive_hook')
822       local list_dir = get_dir_count()
823       local s = getbox('ltj@afbox')
824       if s then
825          local sd = to_direct(s)
826          local box_dir = get_box_dir(sd, dir_yoko)
827          if box_dir%dir_math_mod ~= list_dir then
828             setbox(
829                'ltj@afbox', 
830                to_node(
831                   copy_list(make_dir_whatsit(sd, sd, list_dir, 'box_move'))
832                   -- without copy_list, we get a segfault
833                )
834             )
835          end
836       end
837       stop_time_measure('box_primitive_hook')
838    end
839 end
840
841 -- 縦書き用字形への変換テーブル
842 local font_vert_table = {} -- key: fontnumber
843 do
844    local font_vert_basename = {} -- key: basename
845    local function add_feature_table(tname, src, dest)
846       for i,v in pairs(src) do
847          if type(v.slookups)=='table' then
848             local s = v.slookups[tname]
849             if s and not dest[i] then
850                dest[i] = s
851             end
852          end
853       end
854    end
855
856    local function prepare_vert_data(n, id)
857       -- test if already loaded
858       if type(id)=='number' then -- sometimes id is an integer
859          font_vert_table[n] = font_vert_table[id]; return
860       elseif (not id) or font_vert_table[n]  then return
861       end
862       local fname = id.filename
863       local bname = file.basename(fname)
864       if not fname then
865          font_vert_table[n] = {}; return
866       elseif font_vert_basename[bname] then
867          font_vert_table[n] = font_vert_basename[bname]; return
868       end
869       local vtable = {}
870       local a = id.resources.sequences
871       if a then
872          local s = id.shared.rawdata.descriptions
873          for i,v in pairs(a) do
874             if v.features.vert or v.features.vrt2 then
875                add_feature_table(v.subtables[1], s, vtable)
876             end
877          end
878       end
879       font_vert_basename[bname] = vtable
880       font_vert_table[n] = vtable
881    end
882    -- 縦書き用字形への変換
883    function luatexja.direction.get_vert_glyph(n, chr)
884       local fn = font_vert_table[n]
885       return fn and fn[chr] or chr
886    end
887    luatexbase.add_to_callback('luatexja.define_font',
888                               function (res, name, size, id)
889                                  prepare_vert_data(id, res)
890                               end,
891                               'prepare_vert_data', 1)
892
893    local function a (n, dat) font_vert_table[n] = dat end
894    luatexja.rmlgbm.vert_addfunc = a
895
896 end
897
898 -- PACKED の hbox から文字を取り出す
899 -- luatexja.jfmglue.check_box などで使用
900 do
901    local function glyph_from_packed(h)
902       local b = getlist(h)
903       return (getid(b)==id_kern) 
904          and node_next(node_next(node_next(node_next(b)))) or b
905    end
906    luatexja.direction.glyph_from_packed = glyph_from_packed
907 end
908
909 -- adjust and insertion
910 local id_adjust = node.id('adjust')
911 function luatexja.direction.check_adjust_direction()
912    start_time_measure('box_primitive_hook')
913    local list_dir = get_adjust_dir_count()
914    local a = tex_nest[tex_nest.ptr].tail
915    local ad = to_direct(a)
916    if a and getid(ad)==id_adjust then
917       local adj_dir = get_box_dir(ad)
918       if list_dir~=adj_dir then
919          ltjb.package_error(
920                  'luatexja',
921                  'Direction Incompatible',
922                  "\\vadjust's argument and outer vlist must have same direction.")
923          Dnode.last_node()
924       end
925    end
926    stop_time_measure('box_primitive_hook')
927 end
928
929 -- vsplit
930 do
931    local split_dir_whatsit
932    local function dir_adjust_vpack(h, gc)
933       start_time_measure('direction_vpack')
934       local hd = to_direct(h)
935       if gc=='split_keep' then
936          -- supply dir_whatsit
937          hd = create_dir_whatsit_vbox(hd, gc)
938          split_dir_whatsit = hd
939       elseif gc=='split_off'  then
940          local bh=hd
941          for i=1,2 do
942             if bh and getid(bh)==id_whatsit
943             and getsubtype(bh)==sid_user and getfield(bh, 'user_id')==DIR then
944                ltjs.list_dir  = has_attr(bh, attr_dir); break
945             end
946             bh = node_next(bh)
947          end
948          if split_dir_whatsit then
949             -- adjust direction of 'split_keep'
950             set_attr(split_dir_whatsit, attr_dir, ltjs.list_dir)
951          end
952          split_dir_whatsit=nil
953       elseif gc=='preamble' then
954          split_dir_whatsit=nil
955       else
956          adjust_badness(hd)
957          hd = process_dir_node(create_dir_whatsit_vbox(hd, gc), gc)
958          split_dir_whatsit=nil
959       end
960       stop_time_measure('direction_vpack')
961       return to_node(hd)
962    end
963    luatexbase.add_to_callback('vpack_filter',
964                               dir_adjust_vpack,
965                               'ltj.direction', 10000)
966 end
967
968 do
969    -- supply direction whatsit to the main vertical list "of the next page"
970    local function dir_adjust_pre_output(h, gc)
971       return to_node(create_dir_whatsit_vbox(to_direct(h), gc))
972    end
973    luatexbase.add_to_callback('pre_output_filter',
974                               dir_adjust_pre_output,
975                               'ltj.direction', 10000)
976
977    function luatexja.direction.remove_end_whatsit()
978       local h=tex.lists.page_head
979       if (not h.next) and
980          h.id==id_whatsit and h.subtype==sid_user and
981          h.user_id == DIR then
982             tex.lists.page_head = nil
983             node.free(h)
984       end
985    end
986 end
987
988 -- 
989 do
990    local function dir_adjust_buildpage(info)
991       if info=='box' then
992          local head = to_direct(tex.lists.contrib_head)
993          local nb
994          if head then
995             head, _, nb
996                = make_dir_whatsit(head, 
997                                   node_tail(head),
998                                   get_dir_count(), 
999                                   'buildpage')
1000             tex.lists.contrib_head = to_node(head)
1001          end
1002       end
1003    end
1004    luatexbase.add_to_callback('buildpage_filter',
1005                               dir_adjust_buildpage,
1006                               'ltj.direction', 10000)
1007 end