OSDN Git Service

test: flatten the stack table
[luatex-ja/luatexja.git] / src / ltj-setwidth.lua
1 --
2 -- luatexja/setwidth.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.setwidth',
6   date = '2012/07/19',
7   version = '0.2',
8   description = '',
9 })
10 module('luatexja.setwidth', package.seeall)
11 local err, warn, info, log = luatexbase.errwarinf(_NAME)
12
13 luatexja.load_module('base');      local ltjb = luatexja.base
14 luatexja.load_module('jfont');     local ltjf = luatexja.jfont
15
16 local node_type = node.type
17 local node_new = node.new
18 local node_tail = node.tail
19 local node_next = node.next
20 local has_attr = node.has_attribute
21 local set_attr = node.set_attribute
22 local node_insert_before = node.insert_before
23 local node_insert_after = node.insert_after
24 local round = tex.round
25
26 local id_glyph = node.id('glyph')
27 local id_kern = node.id('kern')
28 local id_hlist = node.id('hlist')
29 local id_vlist = node.id('vlist')
30 local id_rule = node.id('rule')
31 local id_math = node.id('math')
32
33 local attr_jchar_class = luatexbase.attributes['ltj@charclass']
34 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
35 local attr_yablshift = luatexbase.attributes['ltj@yablshift']
36 local attr_ykblshift = luatexbase.attributes['ltj@ykblshift']
37 local attr_icflag = luatexbase.attributes['ltj@icflag']
38
39 local ltjf_font_metric_table = ltjf.font_metric_table
40
41 local PACKED = 2
42 local PROCESSED = 11
43 local IC_PROCESSED = 12
44 local PROCESSED_BEGIN_FLAG = 32
45
46 do
47    local floor = math.floor
48    function get_pr_begin_flag(p)
49       local i = has_attr(p, attr_icflag) or 0
50       return i - i%PROCESSED_BEGIN_FLAG
51    end
52 end
53 local get_pr_begin_flag = get_pr_begin_flag
54
55 head = nil
56
57 luatexbase.create_callback("luatexja.set_width", "data", 
58                            function (fstable, fmtable, jchar_class) 
59                               return fstable 
60                            end)
61
62 local fshift =  { down = 0, left = 0}
63
64 -- mode: true iff p will be always encapsuled by a hbox
65 function capsule_glyph(p, dir, mode, met, class)
66    local char_data = met.char_type[class]
67    if not char_data then return node_next(p) end
68    local fwidth, pwidth = char_data.width, p.width
69    fwidth = (fwidth ~= 'prop') and fwidth or pwidth
70    local fheight, fdepth = char_data.height, char_data.depth
71    fshift.down = char_data.down; fshift.left = char_data.left
72    fshift = luatexbase.call_callback("luatexja.set_width", fshift, met, class)
73    if (mode or pwidth ~= fwidth or p.height ~= fheight or p.depth ~= fdepth) then
74       local y_shift, ca
75          = - p.yoffset + (has_attr(p,attr_ykblshift) or 0), char_data.align
76       local q; head, q = node.remove(head, p)
77       p.yoffset, p.next = -fshift.down, nil
78       if total ~= 0 and ca~='left'  then
79          p.xoffset = p.xoffset - fshift.left
80             + (((ca=='right') and fwidth - pwidth) or round((fwidth - pwidth)*0.5))
81       else
82          p.xoffset = p.xoffset - fshift.left
83       end
84       local box = node_new(id_hlist); 
85       box.width, box.height, box.depth = fwidth, fheight, fdepth
86       box.head, box.shift, box.dir = p, y_shift, (dir or 'TLT')
87       --box.glue_set, box.glue_order = 0, 0 not needed
88       set_attr(box, attr_icflag, PACKED + get_pr_begin_flag(p))
89       head = q and node_insert_before(head, q, box) 
90                or node_insert_after(head, node_tail(head), box)
91       return q
92    else
93       set_attr(p, attr_icflag, PROCESSED + get_pr_begin_flag(p))
94       p.xoffset = p.xoffset - fshift.left
95       p.yoffset = p.yoffset - (has_attr(p, attr_ykblshift) or 0) - fshift.down
96       return node_next(p)
97    end
98 end
99
100 function set_ja_width(ahead, dir)
101    local p = ahead; head  = ahead
102    local m = false -- is in math mode?
103    while p do
104       if (p.id==id_glyph) 
105       and ((has_attr(p, attr_icflag) or 0)%PROCESSED_BEGIN_FLAG)<=0 then
106       local pf = p.font
107          if pf == has_attr(p, attr_curjfnt) then
108             p = capsule_glyph(p, dir, false, ltjf_font_metric_table[pf], 
109                               has_attr(p, attr_jchar_class))
110          else
111             set_attr(p, attr_icflag, PROCESSED + get_pr_begin_flag(p))
112             p.yoffset = p.yoffset - (has_attr(p,attr_yablshift) or 0); p = node_next(p)
113          end
114       elseif p.id==id_math then
115          m = (p.subtype==0); p = node_next(p)
116       else
117          if m then
118             if p.id==id_hlist or p.id==id_vlist then
119                p.shift = p.shift + (has_attr(p,attr_yablshift) or 0)
120             elseif p.id==id_rule then
121                local v = has_attr(p,attr_yablshift) or 0
122                p.height = p.height - v; p.depth = p.depth + v 
123             end
124          end
125          p = node_next(p)
126       end
127    end
128    -- adjust attr_icflag
129    tex.setattribute('global', attr_icflag, 0)
130    return head
131 end