OSDN Git Service

luatexja-adjust.sty: support \ltjenableadjust[...]
[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
9 local to_node = node.direct.tonode
10 local to_direct = node.direct.todirect
11
12 local setfield = node.direct.setfield
13 local setglue = luatexja.setglue
14 local getfield = node.direct.getfield
15 local is_zero_glue = node.direct.is_zero_glue
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_copy = node.direct.copy
24 local node_hpack = node.direct.hpack
25 local node_next = node.direct.getnext
26 local node_free = node.direct.free
27 local node_prev = node.direct.getprev
28 local node_tail = node.direct.tail
29 local has_attr = node.direct.has_attribute
30 local set_attr = node.direct.set_attribute
31 local insert_after = node.direct.insert_after
32
33 local id_glyph = node.id('glyph')
34 local id_kern = node.id('kern')
35 local id_hlist = node.id('hlist')
36 local id_glue  = node.id('glue')
37 local id_whatsit = node.id('whatsit')
38 local attr_icflag = luatexbase.attributes['ltj@icflag']
39 local attr_jchar_class = luatexbase.attributes['ltj@charclass']
40 local lang_ja = luatexja.lang_ja
41
42 local ltjf_font_metric_table = ltjf.font_metric_table
43 local round, pairs = tex.round, pairs
44
45 local PACKED       = luatexja.icflag_table.PACKED
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 priority_table = {
53    FROM_JFM + 2,
54    FROM_JFM + 1,
55    FROM_JFM,
56    FROM_JFM - 1,
57    FROM_JFM - 2,
58    XKANJI_SKIP,
59    KANJI_SKIP
60 }
61
62 local get_attr_icflag
63 do
64    local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
65    get_attr_icflag = function(p)
66       return (has_attr(p, attr_icflag) or 0) % PROCESSED_BEGIN_FLAG
67    end
68 end
69
70 -- box 内で伸縮された glue の合計値を計算
71
72 local total_stsh = {{},{}}
73 local total_st, total_sh = total_stsh[1], total_stsh[2]
74 local function get_total_stretched(p, line)
75 -- return value: <補正値(sp)>
76    local go, gf, gs
77      = getfield(p, 'glue_order'), getfield(p, 'glue_set'), getfield(p, 'glue_sign')
78    for i,_ in pairs(total_st) do total_st[i]=nil; total_sh[i]=nil end
79    for i=1,#priority_table do 
80       total_st[priority_table[i]]=0; total_sh[priority_table[i]]=0; 
81    end
82    for i=0,4 do total_st[i*65536]=0; total_sh[i*65536]=0 end
83    total_st[-1]=0; total_sh[-1]=0;
84    for q in node_traverse_id(id_glue, getlist(p)) do
85        local a = getfield(q, 'stretch_order')
86       if a>0 then a=a*65536 else 
87          total_st[0] = total_st[0]+getfield(q, 'stretch')
88          a = get_attr_icflag(q)
89          if a == KANJI_SKIP_JFM  then a = KANJI_SKIP
90          elseif a == XKANJI_SKIP_JFM  then a = XKANJI_SKIP
91          elseif type(total_st[a])~='number' then a = -1 end
92       end
93       total_st[a] = total_st[a]+getfield(q, 'stretch')
94       local a = getfield(q, 'shrink_order')
95       if a>0 then a=a*65536 else 
96          total_sh[0] = total_sh[0]+getfield(q, 'shrink')
97          a = get_attr_icflag(q)
98          if a == KANJI_SKIP_JFM  then a = KANJI_SKIP
99          elseif a == XKANJI_SKIP_JFM  then a = XKANJI_SKIP
100          elseif type(total_sh[a])~='number' then a = -1 end
101       end
102       total_sh[a] = total_sh[a]+getfield(q, 'shrink')
103    end
104    for i=4,0,-1 do if total_st[i*65536]~=0 then total_st.order=i; break end; end
105    for i=4,0,-1 do if total_sh[i*65536]~=0 then total_sh.order=i; break end; end
106    if gs==0 then
107       return 0, gf
108    else 
109       return round((3-2*gs)*total_stsh[gs][go*65536]*gf), gf
110    end
111 end
112
113 local function clear_stretch(p, ic, name)
114    for q in node_traverse_id(id_glue, getlist(p)) do
115       local f = get_attr_icflag(q)
116       if (f == ic) or ((ic ==KANJI_SKIP) and (f == KANJI_SKIP_JFM))
117            or ((ic ==XKANJI_SKIP) and (f == XKANJI_SKIP_JFM)) then
118          setfield(q, name..'_order', 0)
119          setfield(q, name, 0)
120       end
121    end
122 end
123
124 local function set_stretch(p, after, before, ic, name)
125    if before > 0 then
126       local ratio = after/before
127       for q in node_traverse_id(id_glue, getlist(p)) do
128          local f = get_attr_icflag(q)
129          if (f == ic) or ((ic ==KANJI_SKIP) and (f == KANJI_SKIP_JFM))
130            or ((ic ==XKANJI_SKIP) and (f == XKANJI_SKIP_JFM)) then
131             if getfield(q, name..'_order')==0 then
132                setfield(q, name, getfield(q, name)*ratio)
133             end
134          end
135       end
136    end
137 end
138
139 -- step 1: 行末に kern を挿入(句読点,中点用)
140 local abs = math.abs
141 local ltjd_glyph_from_packed = ltjd.glyph_from_packed
142 local function aw_step1(p, total, ntr)
143    local head = getlist(p)
144    local x = node_tail(head); if not x then return total, false end
145    -- x: \rightskip
146    x = node_prev(x); if not x then return total, false end
147    local xi, xc = getid(x)
148    if xi == id_glue and getsubtype(x) == 15 then
149       -- 段落最終行のときは,\penalty10000 \parfillskip が入るので,
150       -- その前の node が本来の末尾文字となる
151       x = node_prev(node_prev(x)); xi = getid(x)
152    end
153    if xi == id_glyph and getfield(x, 'lang')==lang_ja then
154       -- 和文文字
155       xc = x
156    elseif xi == id_hlist and get_attr_icflag(x) == PACKED then
157       -- packed JAchar
158       xc = ltjd_glyph_from_packed(x)
159       while getid(xc) == id_whatsit do xc = node_next(xc) end -- これはなんのために?
160    else
161       return total, false-- それ以外は対象外.
162    end
163    local eadt = ltjf_font_metric_table[getfont(xc)]
164       .char_type[has_attr(xc, attr_jchar_class) or 0].end_adjust
165    if not eadt then 
166       return total, false
167    end
168    local eadt_ratio = {}
169    for i, v in ipairs(eadt) do
170       local t = total - v
171       if t>0 then
172          eadt_ratio[i] = {i, t/total_st[65536*total_st.order], t, v}
173       else
174          eadt_ratio[i] = {i, t/total_sh[65536*total_sh.order], t, v}
175       end
176    end
177    table.sort(eadt_ratio, 
178    function (a,b) 
179        for i=2,4 do
180            local at, bt = abs(a[i]), abs(b[i])
181            if at~=bt then return at<bt end
182        end
183        return a[4]<b[4]
184    end)
185    --print('min', eadt[eadt_ratio[1][1]], eadt_ratio[1][3])
186    if eadt[eadt_ratio[1][1]]~=0 then
187       local kn = node_new(id_kern)
188       setfield(kn, 'kern', eadt[eadt_ratio[1][1]]); set_attr(kn, attr_icflag, FROM_JFM)
189       insert_after(head, x, kn)
190       return eadt_ratio[1][3], true
191    else
192       return total, false
193    end
194 end
195
196 -- step 2: 行中の glue を変える
197 local function aw_step2_dummy(p, _, added_flag)
198    if added_flag then -- 行末に kern 追加したので,それによる補正
199       local f = node_hpack(getlist(p), getfield(p, 'width'), 'exactly')
200       setfield(f, 'head', nil)
201       setfield(p, 'glue_set', getfield(f, 'glue_set'))
202       setfield(p, 'glue_order', getfield(f, 'glue_order'))
203       setfield(p, 'glue_sign', getfield(f, 'glue_sign'))
204       node_free(f)
205       return
206    end
207 end
208 local function aw_step2(p, total, added_flag)
209    local name = (total>0) and 'stretch' or 'shrink'
210    local res = total_stsh[(total>0) and 1 or 2]
211    if total==0 or res.order > 0 then 
212       -- もともと伸縮の必要なしか,残りの伸縮量は無限大
213       if added_flag then -- 行末に kern 追加したので,それによる補正
214          local f = node_hpack(getlist(p), getfield(p, 'width'), 'exactly')
215          setfield(f, 'head', nil)
216          setfield(p, 'glue_set', getfield(f, 'glue_set'))
217          setfield(p, 'glue_order', getfield(f, 'glue_order'))
218          setfield(p, 'glue_sign', getfield(f, 'glue_sign'))
219          node_free(f)
220          return
221       end
222    end
223    total = math.abs(total)
224    if total <= res[-1] then -- 和文処理グルー以外で足りる
225       for _,v in pairs(priority_table) do clear_stretch(p, v, name) end
226       local f = node_hpack(getlist(p), getfield(p, 'width'), 'exactly')
227       setfield(f, 'head', nil)
228       setfield(p, 'glue_set', getfield(f, 'glue_set'))
229       setfield(p, 'glue_order', getfield(f, 'glue_order'))
230       setfield(p, 'glue_sign', getfield(f, 'glue_sign'))
231       node_free(f)
232    else
233       total = total - res[-1];
234       for i = 1, #priority_table do
235          local v = priority_table[i]
236          if total <= res[v] then
237             for j = i+1,#priority_table do
238                clear_stretch(p, priority_table[j], name)
239             end
240             set_stretch(p, total, res[v], v, name); break
241          end
242          total = total - res[v]
243       end
244       local f = node_hpack(getlist(p), getfield(p, 'width'), 'exactly')
245       setfield(f, 'head', nil)
246       setfield(p, 'glue_set', getfield(f, 'glue_set'))
247       setfield(p, 'glue_order', getfield(f, 'glue_order'))
248       setfield(p, 'glue_sign', getfield(f, 'glue_sign'))
249       node_free(f)
250    end
251 end
252
253
254 do
255    local myaw_atep1, myaw_step2
256    local dummy =  function(p,t,n) return t, false end
257    local ltjs_fast_get_stack_skip = ltjs.fast_get_stack_skip
258    local function adjust_width(head)
259       if not head then return head end
260       local line = 1
261       for p in node_traverse_id(id_hlist, to_direct(head)) do
262          line = line + 1
263          myaw_step2(p, myaw_step1(p, get_total_stretched(p, line)))
264       end
265       return to_node(head)
266    end
267    local is_reg = false
268    function enable_cb(status)
269       if status>0 and (not is_reg) then
270          luatexbase.add_to_callback('post_linebreak_filter',
271                                     adjust_width, 'Adjust width', 100)
272          is_reg = true
273       elseif is_reg and status==0 then
274          luatexbase.remove_from_callback('post_linebreak_filter', 'Adjust width')
275          is_reg = false
276       end
277       myaw_step1 = (status%2>0) and aw_step1 or dummy
278       myaw_step2 = (status>=2) and aw_step2 or aw_step2_dummy
279    end
280    function disable_cb() -- only for compatibility
281        enable_cs(0)
282    end
283    luatexja.adjust = luatexja.adjust or {enable_cb=enable_cb, disable_cb=disable_cb}  
284 end
285
286 luatexja.unary_pars.adjust = function(t)
287    return is_reg and 1 or 0
288 end