OSDN Git Service

small optimize
[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_id = Dnode.traverse_id
20 local node_traverse = Dnode.traverse
21 local node_new = Dnode.new
22 local node_copy = Dnode.copy
23 local node_remove = Dnode.remove
24 local node_tail = Dnode.tail
25 local node_next = (Dnode ~= node) and Dnode.getnext or node.next
26 local has_attr = Dnode.has_attribute
27 local set_attr = Dnode.set_attribute
28 local node_insert_before = Dnode.insert_before
29 local node_insert_after = Dnode.insert_after
30 local round = tex.round
31
32 local id_glyph = node.id('glyph')
33 local id_kern = node.id('kern')
34 local id_hlist = node.id('hlist')
35 local id_vlist = node.id('vlist')
36 local id_rule = node.id('rule')
37 local id_math = node.id('math')
38 local id_whatsit = node.id('whatsit')
39 local sid_save = node.subtype('pdf_save')
40 local sid_restore = node.subtype('pdf_restore')
41 local sid_matrix = node.subtype('pdf_setmatrix')
42 local dir_tate = luatexja.dir_table.dir_tate
43
44 local attr_ykblshift = luatexbase.attributes['ltj@ykblshift']
45 local attr_tkblshift = luatexbase.attributes['ltj@tkblshift']
46 local attr_icflag = luatexbase.attributes['ltj@icflag']
47
48 local ltjf_font_metric_table = ltjf.font_metric_table
49 local ltjf_font_extra_info = ltjf.font_extra_info
50
51 local PACKED       = luatexja.icflag_table.PACKED
52 local PROCESSED    = luatexja.icflag_table.PROCESSED
53
54 local get_pr_begin_flag
55 do
56    local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
57    local floor = math.floor
58    get_pr_begin_flag = function (p)
59       local i = has_attr(p, attr_icflag) or 0
60       return i - i%PROCESSED_BEGIN_FLAG
61    end
62 end
63
64 local ltjw = {} --export
65 luatexja.setwidth = ltjw
66
67 luatexbase.create_callback("luatexja.set_width", "data",
68                            function (fstable, fmtable, char_data)
69                               return fstable
70                            end)
71 local call_callback = luatexbase.call_callback
72
73 local fshift =  { down = 0, left = 0}
74
75 local min, max = math.min, math.max
76
77 -- 和文文字の位置補正(横)
78 local function capsule_glyph_yoko(p, met, char_data, head, dir)
79    if not char_data then return node_next(p), head, p end
80    -- f*: whd specified in JFM
81    local fwidth, pwidth = char_data.width, getfield(p, 'width')
82    fwidth = (fwidth ~= 'prop') and fwidth or pwidth
83    fshift.down = char_data.down; fshift.left = char_data.left
84    fshift = call_callback("luatexja.set_width", fshift, met, char_data)
85    local fheight, fdepth = char_data.height, char_data.depth
86    local kbl = has_attr(p, attr_ykblshift) or 0
87    --
88    if pwidth==fwidth then
89       -- 補正後glyph node は ht: p.height - kbl - down, dp: p.depth + min(0, kbl+down) を持つ
90       -- 設定されるべき寸法: ht: fheight - kbl, dp: fdepth + kbl
91       local ht_diff = fheight + fshift.down - getfield(p, 'height')
92       local dp_diff = fdepth  + kbl - getfield(p, 'depth') - min(kbl + fshift.down, 0)
93       if ht_diff == 0 and dp_diff ==0 then -- offset only
94          set_attr(p, attr_icflag, PROCESSED)
95          setfield(p, 'xoffset', getfield(p, 'xoffset') - fshift.left)
96          setfield(p, 'yoffset', getfield(p, 'yoffset') - kbl - fshift.down)
97          return node_next(p), head, p
98       elseif ht_diff >= 0 and dp_diff >=0 then -- rule
99          local box = node_new(id_rule)
100          setfield(p, 'yoffset', getfield(p, 'yoffset') - kbl - fshift.down)
101          setfield(box, 'width', 0)
102          setfield(box, 'height', fheight - kbl)
103          setfield(box, 'depth', fdepth + kbl)
104          setfield(box, 'dir', dir)
105          set_attr(box, attr_icflag, PACKED)
106          set_attr(p, attr_icflag, PACKED)
107          head = p and node_insert_before(head, p, box)
108             or node_insert_after(head, node_tail(head), box)
109          return node_next(p), head, p, box
110       end
111    end
112
113    local q
114    head, q = node_remove(head, p)
115    setfield(p, 'yoffset', getfield(p, 'yoffset') -fshift.down);
116    setfield(p, 'next', nil)
117    setfield(p, 'xoffset', getfield(p, 'xoffset')
118                + char_data.align*(fwidth-pwidth) - fshift.left)
119    local box = node_new(id_hlist)
120    setfield(box, 'width', fwidth)
121    setfield(box, 'height', fheight)
122    setfield(box, 'depth', fdepth)
123    setfield(box, 'head', p)
124    setfield(box, 'shift', kbl)
125    setfield(box, 'dir', dir)
126    set_attr(box, attr_icflag, PACKED)
127    head = q and node_insert_before(head, q, box)
128       or node_insert_after(head, node_tail(head), box)
129    return q, head, box
130 end
131
132 luatexja.setwidth.capsule_glyph_yoko = capsule_glyph_yoko
133
134 -- 和文文字の位置補正(縦)
135 local function capsule_glyph_tate(p, met, char_data, head, dir)
136    if not char_data then return node_next(p), head end
137    local ascent, descent = met.ascent, met.descent
138    local fwidth, pwidth = char_data.width
139    do
140       local pf = getfont(p)
141       local pc = getchar(p)
142       setfield(p, 'char', pc)
143       pwidth = ltjf_font_extra_info[pf] and  ltjf_font_extra_info[pf][pc]
144          and ltjf_font_extra_info[pf][pc].vwidth
145          and ltjf_font_extra_info[pf][pc].vwidth * met.size or (ascent+descent)
146       pwidth = pwidth + (met.v_advance[pc] or 0)
147       ascent = met.v_origin[pc] and ascent - met.v_origin[pc] or ascent
148    end
149    fwidth = (fwidth ~= 'prop') and fwidth or pwidth
150    fshift.down = char_data.down; fshift.left = char_data.left
151    fshift = call_callback("luatexja.set_width", fshift, met, char_data)
152    local fheight, fdepth = char_data.height, char_data.depth
153
154    local y_shift
155       = getfield(p, 'xoffset') + (has_attr(p,attr_tkblshift) or 0)
156    local q
157    head, q = node_remove(head, p)
158    local box = node_new(id_hlist)
159    setfield(box, 'width', fwidth)
160    setfield(box, 'height', fheight)
161    setfield(box, 'depth', fdepth)
162    setfield(box, 'shift', y_shift)
163    setfield(box, 'dir', dir)
164
165    setfield(p, 'xoffset', - fshift.down)
166    setfield(p, 'yoffset', getfield(p, 'yoffset') -(ascent
167                                 + char_data.align*(fwidth-pwidth) - fshift.left) )
168    local ws = node_new(id_whatsit, sid_save)
169    local wm = node_new(id_whatsit, sid_matrix)
170    setfield(wm, 'data', '0 1 -1 0')
171    local pwnh = -round(0.5*getfield(p, 'width'))
172    local k2 = node_new(id_kern); setfield(k2, 'kern', pwnh)
173    local k3 = node_new(id_kern); setfield(k3, 'kern', -getfield(p, 'width')-pwnh)
174    local wr = node_new(id_whatsit, sid_restore)
175    setfield(box, 'head', ws)
176    setfield(ws, 'next', wm);  setfield(wm, 'next', k2);
177    setfield(k2, 'next', p);   setfield(p, 'next', k3);
178    setfield(k3, 'next', wr);
179
180    set_attr(box, attr_icflag, PACKED)
181    head = q and node_insert_before(head, q, box)
182       or node_insert_after(head, node_tail(head), box)
183    return q, head, box
184 end
185 luatexja.setwidth.capsule_glyph_tate = capsule_glyph_tate
186
187 local function capsule_glyph_math(p, met, char_data)
188    if not char_data then return nil end
189    local fwidth, pwidth = char_data.width, getfield(p, 'width')
190    fwidth = (fwidth ~= 'prop') and fwidth or pwidth
191    fshift.down = char_data.down; fshift.left = char_data.left
192    fshift = call_callback("luatexja.set_width", fshift, met, char_data)
193    local fheight, fdepth = char_data.height, char_data.depth
194    local y_shift
195       = - getfield(p, 'yoffset') + (has_attr(p,attr_ykblshift) or 0)
196    setfield(p, 'yoffset', -fshift.down)
197    setfield(p, 'xoffset', getfield(p, 'xoffset') + char_data.align*(fwidth-pwidth) - fshift.left)
198    local box = node_new(id_hlist);
199    setfield(box, 'width', fwidth)
200    setfield(box, 'height', fheight)
201    setfield(box, 'depth', fdepth)
202    setfield(box, 'head', p)
203    setfield(box, 'shift', y_shift)
204    setfield(box, 'dir', tex.mathdir)
205    set_attr(box, attr_icflag, PACKED)
206    return box
207 end
208 luatexja.setwidth.capsule_glyph_math = capsule_glyph_math
209
210 -- 数式の位置補正
211 function luatexja.setwidth.apply_ashift_math(head, last, attr_ablshift)
212    for p in node_traverse(head) do
213       local pid = getid(p)
214       if p==last then
215          return
216       elseif (has_attr(p, attr_icflag) or 0) ~= PROCESSED then
217          if pid==id_hlist or pid==id_vlist then
218             setfield(p, 'shift', getfield(p, 'shift') +  (has_attr(p,attr_ablshift) or 0))
219          elseif pid==id_rule then
220             local v = has_attr(p,attr_ablshift) or 0
221             setfield(p, 'height', getfield(p, 'height')-v)
222             setfield(p, 'depth', getfield(p, 'depth')+v)
223             set_attr(p, attr_icflag, PROCESSED)
224          elseif pid==id_glyph then
225             -- 欧文文字; 和文文字は pid == id_hlist の場合で処理される
226             -- (see conv_jchar_to_hbox_A in ltj-math.lua)
227             setfield(p, 'yoffset',
228                      getfield(p, 'yoffset') - (has_attr(p,attr_ablshift) or 0))
229          end
230       end
231    end
232 end
233
234 -- discretionary の位置補正
235 do
236    local attr_yablshift = luatexbase.attributes['ltj@yablshift']
237    local attr_tablshift = luatexbase.attributes['ltj@tablshift']
238    local attr_ablshift
239    local disc, tex_dir
240    local function ashift_disc_inner(field)
241       local head = getfield(disc, field)
242       if not head then return end
243       local y_adjust, node_depth, adj_depth = 0, 0, 0
244       for lp in node_traverse_id(id_glyph, head) do
245          y_adjust = has_attr(lp,attr_ablshift) or 0
246          node_depth = max(getfield(lp, 'depth') + min(y_adjust, 0), node_depth)
247          adj_depth = (y_adjust>0) and max(getfield(lp, 'depth') + y_adjust, adj_depth) or adj_depth
248          setfield(lp, 'yoffset', getfield(lp, 'yoffset') - y_adjust)
249       end
250       if adj_depth>node_depth then
251          local r = node_new(id_rule)
252          setfield(r, 'width', 0); setfield(r, 'height', 0)
253          setfield(r, 'depth', adj_depth); setfield(r, 'dir', tex_dir)
254          set_attr(r, attr_icflag, PROCESSED)
255          if field=='post' then
256             node_insert_after(head, head, r)
257          else
258             setfield(disc, field, (node_insert_before(head, head, r)))
259          end
260       end
261    end
262    function luatexja.setwidth.apply_ashift_disc(d, is_dir_tate, dir)
263       attr_ablshift = is_dir_tate and attr_tablshift or attr_yablshift
264       disc, tex_dir = d, dir
265       ashift_disc_inner('pre')
266       ashift_disc_inner('post')
267       ashift_disc_inner('replace')
268    end
269 end