OSDN Git Service

luatexja-adjust: luatexja.adjust.make_priority_table
[luatex-ja/luatexja.git] / src / ltj-adjust.lua
1 --
2 -- ltj-adjust.lua
3 --
4 luatexja.load_module('jfont');     local ltjf = luatexja.jfont
5 luatexja.load_module('jfmglue');   local ltjj = luatexja.jfmglue
6 luatexja.load_module('stack');     local ltjs = luatexja.stack
7 luatexja.load_module('direction'); local ltjd = luatexja.direction
8 luatexja.adjust = luatexja.adjust or {}
9
10 local to_node = node.direct.tonode
11 local to_direct = node.direct.todirect
12
13 local setfield = node.direct.setfield
14 local setglue = luatexja.setglue
15 local getfield = node.direct.getfield
16 local getlist = node.direct.getlist
17 local getid = node.direct.getid
18 local getfont = node.direct.getfont
19 local getsubtype = node.direct.getsubtype
20
21 local node_traverse_id = node.direct.traverse_id
22 local node_new = node.direct.new
23 local node_next = node.direct.getnext
24 local node_free = node.direct.free
25 local node_prev = node.direct.getprev
26 local node_tail = node.direct.tail
27 local has_attr = node.direct.has_attribute
28 local set_attr = node.direct.set_attribute
29 local insert_after = node.direct.insert_after
30
31 local id_glyph = node.id('glyph')
32 local id_kern = node.id('kern')
33 local id_hlist = node.id('hlist')
34 local id_glue  = node.id('glue')
35 local id_whatsit = node.id('whatsit')
36 local id_penalty = node.id('penalty')
37 local attr_icflag = luatexbase.attributes['ltj@icflag']
38 local attr_jchar_class = luatexbase.attributes['ltj@charclass']
39 local lang_ja = luatexja.lang_ja
40
41 local ltjf_font_metric_table = ltjf.font_metric_table
42 local ipairs, pairs = ipairs, pairs
43
44 local PACKED       = luatexja.icflag_table.PACKED
45 local LINEEND      = luatexja.icflag_table.LINEEND
46 local FROM_JFM     = luatexja.icflag_table.FROM_JFM
47 local KANJI_SKIP   = luatexja.icflag_table.KANJI_SKIP
48 local KANJI_SKIP_JFM = luatexja.icflag_table.KANJI_SKIP_JFM
49 local XKANJI_SKIP  = luatexja.icflag_table.XKANJI_SKIP
50 local XKANJI_SKIP_JFM  = luatexja.icflag_table.XKANJI_SKIP_JFM
51
52 local get_attr_icflag
53 do
54    local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
55    get_attr_icflag = function(p)
56       return (has_attr(p, attr_icflag) or 0) % PROCESSED_BEGIN_FLAG
57    end
58 end
59
60 local priority_num = { 0, 0 }
61 local at2pr = { {}, {} }
62 do
63    local tmp = {}
64    local function cmp(a,b) return a[1]>b[1] end -- 大きいほうが先!
65    local function make_priority_table(glue_sign, xsk, ksk, others)
66       for i,_ in pairs(tmp) do tmp[i]=nil end
67       for i=-2,2 do tmp[#tmp+1] = { i, FROM_JFM+i } end
68       tmp[#tmp+1] = { xsk, XKANJI_SKIP }
69       tmp[#tmp+1] = { xsk, XKANJI_SKIP_JFM }
70       tmp[#tmp+1] = { ksk, KANJI_SKIP }
71       tmp[#tmp+1] = { ksk, KANJI_SKIP_JFM }
72       tmp[#tmp+1] = { others, -1 }
73       table.sort(tmp, cmp)
74       local a, m, n = at2pr[glue_sign], 10000000, 0
75       for i=1,#tmp do
76          if tmp[i][1]<m then n,m = n+1,tmp[i][1] end
77          a[tmp[i][2]] = n
78       end
79       priority_num[glue_sign] = n
80       setmetatable(a, {__index = function () return others end })
81    end
82    make_priority_table(1, -3, -4, 5)
83    make_priority_table(2, -3, -4, 5)
84    luatexja.adjust.make_priority_table = make_priority_table
85 end
86
87 -- box 内で伸縮された glue の合計値を計算
88
89 local total_stsh = {{},{}}
90 local at2pr_st, at2pr_sh = at2pr[1], at2pr[2]
91 local total_st, total_sh = total_stsh[1], total_stsh[2]
92 local get_total_stretched
93 do
94 local dimensions = node.direct.dimensions
95 function get_total_stretched(p)
96 -- return value: <補正値(sp)>
97    local ph = getlist(p)
98    if not ph then return 0 end
99    for i,_ in pairs(total_st) do total_st[i]=nil; total_sh[i]=nil end
100    for i=1,priority_num[1] do total_st[i]=0 end
101    for i=1,priority_num[2] do total_sh[i]=0 end
102    for i=0,4 do total_st[i*65536]=0; total_sh[i*65536]=0 end
103    for q in node_traverse_id(id_glue, ph) do
104       local a = getfield(q, 'stretch_order')
105       if a==0 then
106          local b = at2pr_st[get_attr_icflag(q)]; 
107          total_st[b] = total_st[b]+getfield(q, 'stretch')
108       end
109       total_st[a*65536] = total_st[a]+getfield(q, 'stretch')
110       local a = getfield(q, 'shrink_order')
111       if a==0 then
112          local b = at2pr_sh[get_attr_icflag(q)]; 
113          total_sh[b] = total_sh[b]+getfield(q, 'shrink')
114       end
115       total_sh[a*65536] = total_sh[a]+getfield(q, 'shrink')
116    end
117    for i=4,1,-1 do if total_st[i*65536]~=0 then total_st.order=i; break end; end
118    if not total_st.order then
119        total_st.order, total_st[-65536] = -1,0.1 -- dummy
120    end
121    for i=4,1,-1 do if total_sh[i*65536]~=0 then total_sh.order=i; break end; end
122    if not total_sh.order then
123        total_sh.order, total_sh[-65536] = -1,0.1 -- dummy
124    end
125    return getfield(p,'width') - dimensions(ph)
126 end
127 end
128
129 -- step 1: 行末に kern を挿入(句読点,中点用)
130 local abs = math.abs
131 local ltjd_glyph_from_packed = ltjd.glyph_from_packed
132 local function aw_step1(p, total)
133    local head = getlist(p)
134    local x = node_tail(head); if not x then return total, false end
135    -- x: \rightskip
136    x = node_prev(x); if not x then return total, false end
137    local xi, xc = getid(x)
138    -- x may be penalty
139    while xi==id_penalty do
140       x = node_prev(x); if not x then return total, false end
141       xi = getid(x)
142    end
143    if (total>0 and total_st.order>0) or (total<0 and total_sh.order>0) then
144        -- 無限大のグルーで処理が行われているときは処理中止.
145        return total, false
146    end
147    if xi == id_glyph and getfield(x, 'lang')==lang_ja then
148       -- 和文文字
149       xc = x
150    elseif xi == id_hlist and get_attr_icflag(x) == PACKED then
151       -- packed JAchar
152       xc = ltjd_glyph_from_packed(x)
153       while getid(xc) == id_whatsit do xc = node_next(xc) end -- これはなんのために?
154    else
155       return total, false-- それ以外は対象外.
156    end
157    local eadt = ltjf_font_metric_table[getfont(xc)]
158       .char_type[has_attr(xc, attr_jchar_class) or 0].end_adjust
159    if not eadt then 
160       return total, false
161    end
162    local eadt_ratio = {}
163    for i, v in ipairs(eadt) do
164       local t = total - v
165       if t>0 then
166          eadt_ratio[i] = {i, t/total_st[65536*total_st.order], t, v}
167       else
168          eadt_ratio[i] = {i, t/total_sh[65536*total_sh.order], t, v}
169       end
170    end
171    table.sort(eadt_ratio, 
172    function (a,b) 
173        for i=2,4 do
174            local at, bt = abs(a[i]), abs(b[i])
175            if at~=bt then return at<bt end
176        end
177        return a[4]<b[4]
178    end)
179    if eadt[eadt_ratio[1][1]]~=0 then
180       local kn = node_new(id_kern, 1)
181       setfield(kn, 'kern', eadt[eadt_ratio[1][1]]); set_attr(kn, attr_icflag, LINEEND)
182       insert_after(head, x, kn)
183       return eadt_ratio[1][3], true
184    else
185       return total, false
186    end
187 end
188
189 -- step 1 最終行用
190 local min, max = math.min, math.max
191 local function aw_step1_last(p, total)
192    local head = getlist(p)
193    local x = node_tail(head); if not x then return total, false end
194    -- x: \rightskip
195    pf = node_prev(x); if not x then return total, false end
196    if getid(pf) ~= id_glue or getsubtype(pf) ~= 15 then return total, false end
197    x = node_prev(node_prev(pf)); xi = getid(x)
198    local xi, xc = getid(x)
199    if xi == id_glyph and getfield(x, 'lang')==lang_ja then
200       -- 和文文字
201       xc = x
202    elseif xi == id_hlist and get_attr_icflag(x) == PACKED then
203       -- packed JAchar
204       xc = ltjd_glyph_from_packed(x)
205       while getid(xc) == id_whatsit do xc = node_next(xc) end -- これはなんのために?
206    else
207       return total, false-- それ以外は対象外.
208    end
209    -- 続行条件1:無限の伸縮度を持つグルーは \parfillskipのみ
210    if total>0 and total_st.order>0 then
211       if total_st.order ~= getfield(pf, 'stretch_order') then return total, false end
212       if total_st[total_st.order*65536] ~= getfield(pf, 'stretch') then return total, false end
213       for i=total_st.order-1, 1, -1 do
214          if total_st[i*65536] ~= 0 then return total, false end
215       end
216    end
217    if total<0 and total_sh.order>0 then
218       if total_sh.order ~= getfield(pf, 'shrink_order') then return total, false end
219       if total_sh[total_sh.order*65536] ~= getfield(pf, 'shrink') then return total, false end
220       for i=total_sh.order-1, 1, -1 do
221          if total_sh[i*65536] ~= 0 then return total, false end
222       end
223    end
224    local eadt = ltjf_font_metric_table[getfont(xc)]
225       .char_type[has_attr(xc, attr_jchar_class) or 0].end_adjust
226    if not eadt then 
227       return total, false
228    end
229    -- 続行条件2: min(eadt[1], 0)<= \parfillskip <= max(eadt[#eadt], 0)
230    local pfw = getfield(pf, 'width') 
231      + (total>0 and getfield(pf, 'stretch') or -getfield(pf, 'shrink')) *getfield(p, 'glue_set') 
232    if pfw<min(0,eadt[1]) or max(0,eadt[#eadt])<pfw then return total, false end
233    -- \parfillskip を 0 にする
234    total = total + getfield(pf, 'width') 
235    total_st.order, total_sh.order = 0, 0
236    if getfield(pf, 'stretch_order')==0 then 
237       local i = at2pr_st[-1] 
238       total_st[0] = total_st[0] - getfield(pf, 'stretch') 
239       total_st[i] = total_st[i] - getfield(pf, 'stretch') 
240       total_st.order = (total_st[0]==0) and -1 or 0
241    end
242    if getfield(pf, 'shrink_order')==0 then 
243       local i = at2pr_sh[-1] 
244       total_sh[0] = total_sh[0] - getfield(pf, 'shrink') 
245       total_sh[i] = total_sh[i] - getfield(pf, 'shrink') 
246       total_sh.order = (total_sh[0]==0) and -1 or 0
247    end
248    setfield(pf, 'subtype', 1); setglue(pf)
249    local eadt_ratio = {}
250    for i, v in ipairs(eadt) do
251       local t = total - v
252       if t>0 then
253          eadt_ratio[i] = {i, t/total_st[65536*total_st.order], t, v}
254       else
255          eadt_ratio[i] = {i, t/total_sh[65536*total_sh.order], t, v}
256       end
257    end
258    table.sort(eadt_ratio, 
259    function (a,b) 
260        for i=2,4 do
261            local at, bt = abs(a[i]), abs(b[i])
262            if at~=bt then return at<bt end
263        end
264        return a[4]<b[4]
265    end)
266    if eadt[eadt_ratio[1][1]]~=0 then
267       local kn = node_new(id_kern, 1)
268       setfield(kn, 'kern', eadt[eadt_ratio[1][1]]); set_attr(kn, attr_icflag, LINEEND)
269       insert_after(head, x, kn)
270       return eadt_ratio[1][3], true
271    else
272       return total, false
273    end
274 end
275
276
277 -- step 2: 行中の glue を変える
278 local aw_step2, aw_step2_dummy
279 do
280 local node_hpack = node.direct.hpack
281 local function repack(p)
282    local f = node_hpack(getlist(p), getfield(p, 'width'), 'exactly')
283    setfield(f, 'head', nil)
284    setfield(p, 'glue_set', getfield(f, 'glue_set'))
285    setfield(p, 'glue_order', getfield(f, 'glue_order'))
286    setfield(p, 'glue_sign', getfield(f, 'glue_sign'))
287    node_free(f)
288    return
289 end
290 function aw_step2_dummy(p, _, added_flag)
291    if added_flag then return repack(p) end
292 end
293
294 local function clear_stretch(p, ind, ap, name)
295    for q in node_traverse_id(id_glue, getlist(p)) do
296       local f = ap[get_attr_icflag(q)]
297       if f == ind then
298          setfield(q, name..'_order', 0)
299          setfield(q, name, 0)
300       end
301    end
302 end
303
304 local function set_stretch(p, after, before, ind, ap, name)
305    if before > 0 then
306       local ratio = after/before
307       for q in node_traverse_id(id_glue, getlist(p)) do
308          local f = ap[get_attr_icflag(q)]
309          if (f==ind) and getfield(q, name..'_order')==0 then
310             setfield(q, name, getfield(q, name)*ratio)
311          end
312       end
313    end
314 end
315
316 function aw_step2(p, total, added_flag)
317    local name = (total>0) and 'stretch' or 'shrink'
318    local id =  (total>0) and 1 or 2
319    local res = total_stsh[id]
320    local pnum = priority_num[id]
321    if total==0 or res.order > 0 then 
322       -- もともと伸縮の必要なしか,残りの伸縮量は無限大
323       if added_flag then return repack(p) end
324    end
325    total = abs(total)
326    for i = 1, pnum do
327       if total <= res[i] then
328          local a = at2pr[id]  
329          for j = i+1,pnum do
330             clear_stretch(p, j, a, name)
331          end
332          set_stretch(p, total, res[i], i, a, name); break
333       end
334       total = total - res[i]
335    end
336    return repack(p)
337 end
338 end
339
340 -- step 1': lineend=extended の場合(行分割時に考慮))
341 local insert_lineend_kern
342 do
343    local insert_before = node.direct.insert_before
344    local KINSOKU      = luatexja.icflag_table.KINSOKU
345    function insert_lineend_kern(head, nq, np, Bp)
346       if nq.met then 
347          local eadt = nq.met.char_type[nq.class].end_adjust
348          if not eadt then return end
349          if eadt[1]~=0 then
350             local x = node_new(id_kern, 1)
351             setfield(x, 'kern', eadt[1]); set_attr(x, attr_icflag, LINEEND)
352             insert_before(head, np.first, x)
353          end
354          local eadt_num = #eadt
355          for i=2,eadt_num do
356             local x = node_new(id_penalty)
357             setfield(x, 'penalty', 0); set_attr(x, attr_icflag, KINSOKU)
358             insert_before(head, np.first, x); Bp[#Bp+1] = x
359             local x = node_new(id_kern, 1)
360             setfield(x, 'kern', eadt[i]-eadt[i-1]); set_attr(x, attr_icflag, LINEEND)
361             insert_before(head, np.first, x)
362          end
363          if eadt_num>1 or eadt[1]~=0 then
364             local x = node_new(id_penalty)
365             setfield(x, 'penalty', 0); set_attr(x, attr_icflag, KINSOKU)
366             insert_before(head, np.first, x); Bp[#Bp+1] = x
367             local x = node_new(id_kern, 1)
368             setfield(x, 'kern', -eadt[eadt_num]); set_attr(x, attr_icflag, LINEEND)
369             insert_before(head, np.first, x)
370             local x = node_new(id_penalty)
371             setfield(x, 'penalty', 10000); set_attr(x, attr_icflag, KINSOKU)
372             insert_before(head, np.first, x); Bp[#Bp+1] = x
373          end
374       end
375    end
376 end
377
378 local adjust_width
379 do
380    local myaw_atep1, myaw_step2, myaw_step1_last
381    local dummy =  function(p,t,n) return t, false end
382    local ltjs_fast_get_stack_skip = ltjs.fast_get_stack_skip
383    function adjust_width(head)
384       if not head then return head end
385       local last_p
386       for p in node_traverse_id(id_hlist, to_direct(head)) do
387          if last_p then
388             myaw_step2(last_p, myaw_step1(last_p, get_total_stretched(last_p)))
389          end
390          last_p = p
391       end
392       if last_p then
393          myaw_step2(last_p, myaw_step1_last(last_p, get_total_stretched(last_p)))
394       end
395       return to_node(head)
396    end
397    local is_reg = false
398    function enable_cb(status_le, status_pr)
399       if (status_le>0 or status_pr>0) and (not is_reg) then
400          luatexbase.add_to_callback('post_linebreak_filter',
401                                     adjust_width, 'Adjust width', 100)
402          is_reg = true
403       elseif is_reg and (status_le==0 and status_pr==0) then
404          luatexbase.remove_from_callback('post_linebreak_filter', 'Adjust width')
405          is_reg = false
406       end
407       if status_le==2 then
408          if not luatexbase.in_callback('luatexja.adjust_jfmglue', 'luatexja.adjust') then
409             luatexbase.add_to_callback('luatexja.adjust_jfmglue', insert_lineend_kern, 'luatexja.adjust')
410          end
411          myaw_step1, myaw_step1_last = dummy, aw_step1_last
412       else
413          if status_le==0 then
414             myaw_step1, myaw_step1_last = dummy, dummy
415          else
416             myaw_step1, myaw_step1_last = aw_step1, aw_step1_last
417          end
418          if luatexbase.in_callback('luatexja.adjust_jfmglue', 'luatexja.adjust') then
419             luatexbase.remove_from_callback('luatexja.adjust_jfmglue', 'luatexja.adjust')
420          end
421       end
422       myaw_step2 = (status_pr>0) and aw_step2 or aw_step2_dummy
423    end
424    function disable_cb() -- only for compatibility
425        enable_cs(0)
426    end
427    luatexja.adjust.enable_cb=enable_cb
428    luatexja.adjust.disable_cb=disable_cb
429 end
430
431 luatexja.unary_pars.adjust = function(t)
432    return is_reg and 1 or 0
433 end