OSDN Git Service

More LaTeX codes for vertical writing
[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_copy = Dnode.copy
22 local node_remove = Dnode.remove
23 local node_tail = Dnode.tail
24 local node_next = (Dnode ~= node) and Dnode.getnext or node.next
25 local has_attr = Dnode.has_attribute
26 local set_attr = Dnode.set_attribute
27 local node_insert_before = Dnode.insert_before
28 local node_insert_after = Dnode.insert_after
29 local round = tex.round
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_vlist = node.id('vlist')
35 local id_rule = node.id('rule')
36 local id_math = node.id('math')
37 local id_whatsit = node.id('whatsit')
38 local sid_save = node.subtype('pdf_save')
39 local sid_restore = node.subtype('pdf_restore')
40 local sid_matrix = node.subtype('pdf_setmatrix')
41 local dir_tate = luatexja.dir_table.dir_tate
42
43 local attr_jchar_class = luatexbase.attributes['ltj@charclass']
44 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
45 local attr_yablshift = luatexbase.attributes['ltj@yablshift']
46 local attr_ykblshift = luatexbase.attributes['ltj@ykblshift']
47 local attr_tablshift = luatexbase.attributes['ltj@tablshift']
48 local attr_tkblshift = luatexbase.attributes['ltj@tkblshift']
49 local attr_icflag = luatexbase.attributes['ltj@icflag']
50
51 local ltjf_font_metric_table = ltjf.font_metric_table
52 local ltjf_get_vert_glyph = ltjf.get_vert_glyph
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)
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)
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', ltjf_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    setfield(p, 'xoffset', -fshift.down)
142    setfield(p, 'yoffset', 0)
143    local ws = node_new(id_whatsit, sid_save)
144    local wm = node_new(id_whatsit, sid_matrix)
145    setfield(wm, 'data', '0 1 -1 0')
146    local pwnh = - 0.5*getfield(p, 'width')
147    local k2 = node_new(id_kern); setfield(k2, 'kern', - 0.5*getfield(p, 'width'))
148    local k3 = node_copy(k2)
149    local wr = node_new(id_whatsit, sid_restore)
150    setfield(box, 'head', k1); setfield(k1, 'next', ws)
151    setfield(ws, 'next', wm);  setfield(wm, 'next', k2);
152    setfield(k2, 'next', p);   setfield(p, 'next', k3);
153    setfield(k3, 'next', wr);
154
155    set_attr(box, attr_icflag, PACKED)
156    head = q and node_insert_before(head, q, box)
157       or node_insert_after(head, node_tail(head), box)
158    return q
159 end
160
161 local function capsule_glyph_math(p, met, class)
162    local char_data = met.char_type[class]
163    if not char_data then return nil end
164    local fwidth, pwidth = char_data.width, getfield(p, 'width')
165    fwidth = (fwidth ~= 'prop') and fwidth or pwidth
166    fshift.down = char_data.down; fshift.left = char_data.left
167    fshift = call_callback("luatexja.set_width", fshift, met, class)
168    local fheight, fdepth = char_data.height, char_data.depth
169    local y_shift, ca
170       = - getfield(p, 'yoffset') + (has_attr(p,attr_ykblshift) or 0), char_data.align
171    setfield(p, 'yoffset', -fshift.down)
172    setfield(p, 'xoffset', getfield(p, 'xoffset') + char_data.align*(fwidth-pwidth) - fshift.left)
173    local box = node_new(id_hlist);
174    setfield(box, 'width', fwidth)
175    setfield(box, 'height', fheight)
176    setfield(box, 'depth', fdepth)
177    setfield(box, 'head', p)
178    setfield(box, 'shift', y_shift)
179    setfield(box, 'dir', tex.mathdir)
180    set_attr(box, attr_icflag, PACKED)
181    return box
182 end
183 luatexja.setwidth.capsule_glyph_math = capsule_glyph_math
184
185 local tex_set_attr = tex.setattribute
186 function luatexja.setwidth.set_ja_width(ahead, adir)
187    local p = ahead; head  = p; dir = adir or 'TLT'
188    local m = false -- is in math mode?
189    local is_dir_tate = ltjs.list_dir==dir_tate
190    local capsule_glyph = is_dir_tate and capsule_glyph_tate or capsule_glyph_yoko
191    local attr_ablshift = is_dir_tate and attr_tablshift or attr_yablshift
192    while p do
193       local pid = getid(p)
194       if (pid==id_glyph)
195       and ((has_attr(p, attr_icflag) or 0)%PROCESSED_BEGIN_FLAG)<=0 then
196          local pf = getfont(p)
197          if pf == has_attr(p, attr_curjfnt) then
198             p = capsule_glyph(p, ltjf_font_metric_table[pf],
199                               has_attr(p, attr_jchar_class))
200          else
201             -- TODO: neg. offset does not increase depth
202             --local d = getfield(p, 'yoffset') - (has_attr(p,attr_ablshift) or 0)
203             set_attr(p, attr_icflag, PROCESSED)
204             setfield(p, 'yoffset',
205                      getfield(p, 'yoffset') - (has_attr(p,attr_ablshift) or 0))
206             p = node_next(p)
207          end
208       elseif pid==id_math then
209          m = (getsubtype(p)==0); p = node_next(p)
210       else
211          if m then
212             -- 数式の位置補正
213             if pid==id_hlist or pid==id_vlist then
214                if (has_attr(p, attr_icflag) or 0) ~= PROCESSED then
215                   setfield(p, 'shift', getfield(p, 'shift') +  (has_attr(p,attr_ablshift) or 0))
216                end
217             elseif pid==id_rule then
218                if (has_attr(p, attr_icflag) or 0) ~= PROCESSED then
219                   local v = has_attr(p,attr_yablshift) or 0
220                   setfield(p, 'height', getfield(p, 'height')-v)
221                   setfield(p, 'depth', getfield(p, 'depth')+v)
222                   set_attr(p, attr_icflag, PROCESSED)
223                end
224             end
225          end
226          p = node_next(p)
227       end
228    end
229    -- adjust attr_icflag
230    tex_set_attr('global', attr_icflag, 0)
231    return head
232 end
233