OSDN Git Service

Merge branch 'kmaeda_tarticle' into kitagawa_tfont
[luatex-ja/luatexja.git] / src / ltj-setwidth.lua
1 --
2 -- src/ltj-setwidth.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('jfont');     local ltjf = luatexja.jfont
8 luatexja.load_module('direction'); local ltjd = luatexja.direction
9
10 local Dnode = node.direct or node
11 local setfield = (Dnode ~= node) and Dnode.setfield or function(n, i, c) n[i] = c end
12 local getfield = (Dnode ~= node) and Dnode.getfield or function(n, i) return n[i] end
13 local getid = (Dnode ~= node) and Dnode.getid or function(n) return n.id end
14 local getfont = (Dnode ~= node) and Dnode.getfont or function(n) return n.font end
15 local getlist = (Dnode ~= node) and Dnode.getlist or function(n) return n.head end
16 local getchar = (Dnode ~= node) and Dnode.getchar or function(n) return n.char end
17 local getsubtype = (Dnode ~= node) and Dnode.getsubtype or function(n) return n.subtype end
18
19 local node_traverse = Dnode.traverse
20 local node_new = Dnode.new
21 local node_remove = luatexja.Dnode_remove -- Dnode.remove
22 local node_tail = Dnode.tail
23 local node_next = (Dnode ~= node) and Dnode.getnext or node.next
24 local has_attr = Dnode.has_attribute
25 local set_attr = Dnode.set_attribute
26 local node_insert_before = Dnode.insert_before
27 local node_insert_after = Dnode.insert_after
28 local round = tex.round
29
30 local id_glyph = node.id('glyph')
31 local id_kern = node.id('kern')
32 local id_hlist = node.id('hlist')
33 local id_vlist = node.id('vlist')
34 local id_rule = node.id('rule')
35 local id_math = node.id('math')
36 local id_whatsit = node.id('whatsit')
37 local sid_save = node.subtype('pdf_save')
38 local sid_restore = node.subtype('pdf_restore')
39 local sid_matrix = node.subtype('pdf_setmatrix')
40 local dir_tate = 3
41 local dir_yoko = 4
42 local DIR = luatexja.stack_table_index.DIR
43
44 local attr_jchar_class = luatexbase.attributes['ltj@charclass']
45 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
46 local attr_yablshift = luatexbase.attributes['ltj@yablshift']
47 local attr_ykblshift = luatexbase.attributes['ltj@ykblshift']
48 local attr_tablshift = luatexbase.attributes['ltj@tablshift']
49 local attr_tkblshift = luatexbase.attributes['ltj@tkblshift']
50 local attr_icflag = luatexbase.attributes['ltj@icflag']
51
52 local ltjf_font_metric_table = ltjf.font_metric_table
53
54 local PACKED       = luatexja.icflag_table.PACKED
55 local PROCESSED    = luatexja.icflag_table.PROCESSED
56 local IC_PROCESSED = luatexja.icflag_table.IC_PROCESSED
57 local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
58
59 local get_pr_begin_flag
60 do
61    local floor = math.floor
62    get_pr_begin_flag = function (p)
63       local i = has_attr(p, attr_icflag) or 0
64       return i - i%PROCESSED_BEGIN_FLAG
65    end
66 end
67
68 local head, dir
69 local ltjw = {} --export
70 luatexja.setwidth = ltjw
71
72 luatexbase.create_callback("luatexja.set_width", "data", 
73                            function (fstable, fmtable, jchar_class) 
74                               return fstable 
75                            end)
76 local call_callback = luatexbase.call_callback
77
78 local fshift =  { down = 0, left = 0}
79
80 local function capsule_glyph_yoko(p, met, class)
81    local char_data = met.char_type[class]
82    if not char_data then return node_next(p) end
83    local fwidth, pwidth = char_data.width, getfield(p, 'width')
84    fwidth = (fwidth ~= 'prop') and fwidth or pwidth
85    fshift.down = char_data.down; fshift.left = char_data.left
86    fshift = call_callback("luatexja.set_width", fshift, met, class)
87    local fheight, fdepth = char_data.height, char_data.depth
88    if (pwidth ~= fwidth or getfield(p, 'height') ~= fheight or getfield(p, 'depth') ~= fdepth) then
89       local y_shift
90          = - getfield(p, 'yoffset') + (has_attr(p,attr_ykblshift) or 0)
91       local q
92       head, q = node_remove(head, p)
93       setfield(p, 'yoffset', -fshift.down); setfield(p, 'next', nil)
94       setfield(p, 'xoffset', getfield(p, 'xoffset') + char_data.align*(fwidth-pwidth) - fshift.left)
95       local box = node_new(id_hlist)
96       setfield(box, 'width', fwidth)
97       setfield(box, 'height', fheight)
98       setfield(box, 'depth', fdepth)
99       setfield(box, 'head', p)
100       setfield(box, 'shift', y_shift)
101       setfield(box, 'dir', dir)
102       set_attr(box, attr_icflag, PACKED + get_pr_begin_flag(p))
103       head = q and node_insert_before(head, q, box) 
104                or node_insert_after(head, node_tail(head), box)
105       return q
106    else
107       set_attr(p, attr_icflag, PROCESSED + get_pr_begin_flag(p))
108       setfield(p, 'xoffset', getfield(p, 'xoffset') - fshift.left)
109       setfield(p, 'yoffset', getfield(p, 'yoffset') 
110                   - (has_attr(p, attr_ykblshift) or 0) - fshift.down)
111       return node_next(p)
112    end
113 end
114 local function capsule_glyph_tate(p, met, class)
115    local char_data = met.char_type[class]
116    if not char_data then return node_next(p) end
117    local ascent, descent = met.ascent, met.descent
118    local fwidth, pwidth = char_data.width, ascent + descent
119    fwidth = (fwidth ~= 'prop') and fwidth or pwidth
120    fshift.down = char_data.down; fshift.left = char_data.left
121    fshift = call_callback("luatexja.set_width", fshift, met, class)
122    local fheight, fdepth = char_data.height, char_data.depth
123    
124    setfield(p, 'char', ltjd.get_vert_glyph(getfont(p), getchar(p)))
125
126       local y_shift
127          = - getfield(p, 'yoffset') + (has_attr(p,attr_tkblshift) or 0)
128       local q
129       head, q = node_remove(head, p)
130       local box = node_new(id_hlist)
131       setfield(box, 'width', fwidth)
132       setfield(box, 'height', fheight)
133       setfield(box, 'depth', fdepth)
134       setfield(box, 'shift', y_shift)
135       setfield(box, 'dir', dir)
136
137       local k1 = node_new(id_kern)
138       setfield(k1, 'kern', 
139                getfield(p, 'xoffset') + ascent
140                   + char_data.align*(fwidth-pwidth) - fshift.left)
141       local ws = node_new(id_whatsit, sid_save)
142       local wm = node_new(id_whatsit, sid_matrix)
143       setfield(wm, 'data', '0 1 -1 0')
144       local k2 = node_new(id_kern)
145       setfield(k2, 'kern', -fshift.down - fdepth)
146       local k3 = node_new(id_kern)
147       setfield(k3, 'kern', - getfield(p, 'width') +fshift.down + fdepth)
148       local wr = node_new(id_whatsit, sid_restore)
149       setfield(box, 'head', k1); setfield(k1, 'next', ws)
150       setfield(ws, 'next', wm);  setfield(wm, 'next', k2); 
151       setfield(k2, 'next', p);   setfield(p, 'next', k3); 
152       setfield(k3, 'next', wr); 
153
154       set_attr(box, attr_icflag, PACKED + get_pr_begin_flag(p))
155       head = q and node_insert_before(head, q, box) 
156                or node_insert_after(head, node_tail(head), box)
157       return q
158 end
159
160 local function capsule_glyph_math(p, met, class)
161    local char_data = met.char_type[class]
162    if not char_data then return nil end
163    local fwidth, pwidth = char_data.width, getfield(p, 'width')
164    fwidth = (fwidth ~= 'prop') and fwidth or pwidth
165    fshift.down = char_data.down; fshift.left = char_data.left
166    fshift = call_callback("luatexja.set_width", fshift, met, class)
167    local fheight, fdepth = char_data.height, char_data.depth
168    local y_shift, ca
169       = - getfield(p, 'yoffset') + (has_attr(p,attr_ykblshift) or 0), char_data.align
170    setfield(p, 'yoffset', -fshift.down)
171    setfield(p, 'xoffset', getfield(p, 'xoffset') + char_data.align*(fwidth-pwidth) - fshift.left)
172    local box = node_new(id_hlist); 
173    setfield(box, 'width', fwidth)
174    setfield(box, 'height', fheight)
175    setfield(box, 'depth', fdepth)
176    setfield(box, 'head', p)
177    setfield(box, 'shift', y_shift)
178    setfield(box, 'dir', tex.mathdir)
179    set_attr(box, attr_icflag, PACKED + get_pr_begin_flag(p))
180    return box
181 end
182 luatexja.setwidth.capsule_glyph_math = capsule_glyph_math
183
184 function luatexja.setwidth.set_ja_width(ahead, adir)
185    local p = ahead; head  = p; dir = adir or 'TLT'
186    local m = false -- is in math mode?
187    local is_dir_tate = ltjs.table_current_stack[DIR]==dir_tate
188    local capsule_glyph = is_dir_tate and capsule_glyph_tate or capsule_glyph_yoko
189    local attr_ablshift = is_dir_tate and attr_tablshift or attr_yablshift
190    while p do
191       local pid = getid(p)
192       if (pid==id_glyph) 
193       and ((has_attr(p, attr_icflag) or 0)%PROCESSED_BEGIN_FLAG)<=0 then
194          local pf = getfont(p)
195          if pf == has_attr(p, attr_curjfnt) then
196             p = capsule_glyph(p, ltjf_font_metric_table[pf], 
197                               has_attr(p, attr_jchar_class))
198          else
199             set_attr(p, attr_icflag, PROCESSED + get_pr_begin_flag(p))
200             setfield(p, 'yoffset',
201                      getfield(p, 'yoffset') - (has_attr(p,attr_ablshift) or 0))
202             p = node_next(p)
203          end
204       elseif pid==id_math then
205          m = (getsubtype(p)==0); p = node_next(p)
206       else
207          if m then
208             -- 数式の位置補正
209             if pid==id_hlist or pid==id_vlist then
210                if (has_attr(p, attr_icflag) or 0) ~= PROCESSED then
211                   setfield(p, 'shift', getfield(p, 'shift') +  (has_attr(p,attr_ablshift) or 0))
212                end
213             elseif pid==id_rule then
214                if (has_attr(p, attr_icflag) or 0) ~= PROCESSED then
215                   local v = has_attr(p,attr_yablshift) or 0
216                   setfield(p, 'height', getfield(p, 'height')-v)
217                   setfield(p, 'depth', getfield(p, 'depth')+v)
218                   set_attr(p, attr_icflag, PROCESSED + get_pr_begin_flag(p))
219                end
220             end
221          end
222          p = node_next(p)
223       end
224    end
225    -- adjust attr_icflag
226    tex.setattribute('global', attr_icflag, 0)
227    return head
228 end
229