OSDN Git Service

Fix #29003, and changed 2nd argument of find_char_class for simplicity.
[luatex-ja/luatexja.git] / src / ltj-setwidth.lua
1 --
2 -- luatexja/setwidth.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.setwidth',
6   date = '2011/06/28',
7   version = '0.1',
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_icflag = luatexbase.attributes['ltj@icflag']
37 local attr_uniqid = luatexbase.attributes['ltj@uniqid']
38
39 local ltjf_font_metric_table = ltjf.font_metric_table
40
41 local PACKED = 2
42 local PROCESSED = 8
43 local IC_PROCESSED = 9
44
45 char_data = {}
46 head = nil
47
48 -- return true if and only if p is a Japanese character node
49 local function is_japanese_glyph_node(p)
50    return p.font==has_attr(p, attr_curjfnt)
51 end
52
53 luatexbase.create_callback("luatexja.set_width", "data", 
54                            function (fstable, fmtable, jchar_class) 
55                               return fstable 
56                            end)
57
58 local fshift =  { down = 0, left = 0}
59 -- mode: true iff p will be always encapsuled by a hbox
60 function capsule_glyph(p, dir, mode, met, class)
61    local h, box, q, fwidth
62    if char_data.width ~= 'prop' then
63       fwidth = char_data.width
64    else fwidth = p.width end
65    local fheight = char_data.height
66    local fdepth = char_data.depth
67    fshift.down = char_data.down; fshift.left = char_data.left
68    fshift = luatexbase.call_callback("luatexja.set_width", fshift, met, class)
69    p.xoffset = p.xoffset - fshift.left
70    if (mode or p.width ~= fwidth or p.height ~= fheight or p.depth ~= fdepth) then
71       local y_shift = - p.yoffset + (has_attr(p,attr_yablshift) or 0)
72       p.yoffset = -fshift.down
73       head, q = node.remove(head, p)
74       local total = fwidth - p.width
75       if total == 0 then
76          h = p; p.next = nil
77       else
78          h = node_new(id_kern); h.subtype = 0
79          if char_data.align=='right' then
80             h.kern = total; p.next = nil; h.next = p
81          elseif char_data.align=='middle' then
82             h.kern = round(total*0.5); p.next = h
83             h = node_new(id_kern); h.subtype = 0
84             h.kern = total - round(total*0.5); h.next = p
85          else -- left
86             h.kern = total; p.next = h; h = p
87          end
88       end
89       box = node_new(id_hlist); 
90       box.width = fwidth; box.height = fheight; box.depth = fdepth
91       box.glue_set = 0; box.glue_order = 0; box.head = h
92       box.shift = y_shift; box.dir = dir or 'TLT'
93       set_attr(box, attr_icflag, PACKED)
94       set_attr(box, attr_uniqid, has_attr(p, attr_uniqid) or 0)
95       if q then
96          head = node_insert_before(head, q, box)
97       else
98          head = node_insert_after(head, node_tail(head), box)
99       end
100       return q
101    else
102       p.yoffset = p.yoffset - (has_attr(p, attr_yablshift) or 0) - fshift.down
103       return node_next(p)
104    end
105 end
106
107 function set_ja_width(ahead, dir)
108    local p = ahead; head  = ahead
109    local m = false -- is in math mode?
110    while p do
111       if (p.id==id_glyph) and (has_attr(p, attr_icflag, PROCESSED) or 0)<=0  then
112          if is_japanese_glyph_node(p) then
113             local met = ltjf_font_metric_table[p.font]
114             local class = has_attr(p, attr_jchar_class)
115             char_data = met.size_cache.char_type[class]
116             set_attr(p, attr_icflag, PROCESSED)
117             if char_data then
118                p = capsule_glyph(p, dir, false, met, class)
119             else
120                p = node_next(p)
121             end
122                
123          else
124             set_attr(p, attr_icflag, PROCESSED) 
125             p.yoffset = p.yoffset - (has_attr(p,attr_yablshift) or 0); p = node_next(p)
126          end
127       elseif p.id==id_math then
128          m = (p.subtype==0); p = node_next(p)
129       else
130          if m then
131             if p.id==id_hlist or p.id==id_vlist then
132                p.shift = p.shift + (has_attr(p,attr_yablshift) or 0)
133             elseif p.id==id_rule then
134                local v = has_attr(p,attr_yablshift) or 0
135                p.height = p.height - v; p.depth = p.depth + v 
136             end
137          end
138          p = node_next(p)
139       end
140    end
141    -- adjust attr_icflag
142    tex.setattribute('global', attr_icflag, 0)
143    return head
144 end