OSDN Git Service

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