OSDN Git Service

target release date: 2021-05-17
[luatex-ja/luatexja.git] / src / ltj-pretreat.lua
1 --
2 -- ltj-pretreat.lua
3 --
4
5 luatexja.load_module 'base';      local ltjb = luatexja.base
6 luatexja.load_module 'charrange'; local ltjc = luatexja.charrange
7 luatexja.load_module 'stack';     local ltjs = luatexja.stack
8 luatexja.load_module 'jfont';     local ltjf = luatexja.jfont
9 luatexja.load_module 'direction'; local ltjd = luatexja.direction
10
11 local to_node =  node.direct.tonode
12 local to_direct =  node.direct.todirect
13
14 local setfield =  node.direct.setfield
15 local getid =  node.direct.getid
16 local getfont =  node.direct.getfont
17 local getchar =  node.direct.getchar
18 local getfield =  node.direct.getfield
19 local getsubtype =  node.direct.getsubtype
20 local getlang = node.direct.getlang or function (n) return getfield(n,'lang') end
21
22 local pairs = pairs
23 local floor = math.floor
24 local has_attr = node.direct.has_attribute
25 local set_attr = node.direct.set_attribute
26 local node_traverse = node.direct.traverse
27 local node_remove = node.direct.remove
28 local node_next =  node.direct.getnext
29 local node_free = node.direct.free
30 local node_end_of_math = node.direct.end_of_math
31 local tex_getcount = tex.getcount
32
33 local id_glyph = node.id('glyph')
34 local id_math = node.id('math')
35 local id_whatsit = node.id('whatsit')
36 local sid_user = node.subtype('user_defined')
37
38 local attr_dir = luatexbase.attributes['ltj@dir']
39 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
40 local attr_curtfnt = luatexbase.attributes['ltj@curtfnt']
41 local attr_icflag = luatexbase.attributes['ltj@icflag']
42
43 local is_ucs_in_japanese_char = ltjc.is_ucs_in_japanese_char_direct
44 local ltjs_orig_char_table = ltjs.orig_char_table
45 local ltjf_replace_altfont = ltjf.replace_altfont
46 local STCK  = luatexja.userid_table.STCK
47 local DIR   = luatexja.userid_table.DIR
48 local JA_AL_BDD = luatexja.userid_table.JA_AL_BDD
49 local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
50
51 local dir_tate = luatexja.dir_table.dir_tate
52 local lang_ja = luatexja.lang_ja
53
54 local setlang = node.direct.setlang or function(n,l) setfield(n,'lang',l) end 
55 local setfont = node.direct.setfont or function(n,l) setfield(n,'font',l) end 
56 local setchar = node.direct.setchar or function(n,l) setfield(n,'char',l) end 
57
58 ------------------------------------------------------------------------
59 -- MAIN PROCESS STEP 1: replace fonts
60 ------------------------------------------------------------------------
61 local wt, wtd = {}, {}
62 do
63    local ltjd_get_dir_count = ltjd.get_dir_count
64    local start_time_measure, stop_time_measure
65       = ltjb.start_time_measure, ltjb.stop_time_measure
66    local head
67    local suppress_hyphenate_ja_aux = {
68       [id_math] = function(p) return node_next(node_end_of_math(node_next(p))) end,
69       [id_whatsit] = function(p)
70          if getsubtype(p)==sid_user then
71             local uid = getfield(p, 'user_id')
72             if uid==STCK then
73                wt[#wt+1] = p; node_remove(head, p)
74             elseif uid==DIR then
75                if has_attr(p, attr_icflag)<PROCESSED_BEGIN_FLAG  then
76                   ltjs.list_dir = has_attr(p, attr_dir)
77                else -- こっちのケースは通常使用では起こらない
78                   wtd[#wtd+1] = p; node_remove(head, p)
79                end
80             end
81          end
82          return node_next(p)
83       end,
84    }
85    setmetatable(suppress_hyphenate_ja_aux, 
86                 { __index = function() return node_next end, })
87    local id_boundary = node.id('boundary')
88    local node_new, insert_before = node.direct.new, node.direct.insert_before
89    local setsubtype = node.direct.setsubtype or function(n,l) setfield(n,'subtype',l) end 
90    local function suppress_hyphenate_ja (h)
91       start_time_measure('ltj_hyphenate')
92       head = to_direct(h)
93       for i = 1,#wt do wt[i]=nil end
94       for i = 1,#wtd do wtd[i]=nil end
95       for i,_ in pairs(ltjs_orig_char_table) do
96          ltjs_orig_char_table[i] = nil
97       end
98       ltjs.list_dir=ltjd_get_dir_count()
99       do
100          local p = head
101          while p do
102             local pid, prev_chartype = getid(p), 0
103             -- prev_chartype: 0: not char 1: ALchar 2: JAchar
104             while pid==id_glyph do
105                local pc = getchar(p)
106                if has_attr(p, attr_icflag, 0) and is_ucs_in_japanese_char(p, pc) then
107                   if prev_chartype==1 then
108                      local b = node_new(id_whatsit,sid_user);
109                      setfield(b, 'type', 100); setfield(b, 'user_id', JA_AL_BDD);
110                      insert_before(head, p, b)
111                   end
112                   local pf = has_attr(p, attr_curjfnt)
113                   pf = (pf and pf>0 and pf) or getfont(p)
114                   setfont(p, ltjf_replace_altfont(pf, pc))
115                   setlang(p, lang_ja)
116                   ltjs_orig_char_table[p], prev_chartype = pc, 2
117                elseif prev_chartype==2 then
118                   local b = node_new(id_whatsit,sid_user);
119                   setfield(b, 'type', 100); setfield(b, 'user_id', JA_AL_BDD);
120                   insert_before(head, p, b); prev_chartype = 1
121                else prev_chartype = 1
122                end
123                p = node_next(p); pid = getid(p)
124             end
125             p = (suppress_hyphenate_ja_aux[pid])(p)
126          end
127       end
128       stop_time_measure('ltj_hyphenate'); start_time_measure('tex_hyphenate')
129       lang.hyphenate(h, nil)
130       stop_time_measure('tex_hyphenate')
131       return h
132    end
133
134    ltjb.add_to_callback('hyphenate', suppress_hyphenate_ja, 'ltj.hyphenate')
135 end
136
137 -- mode: true iff this function is called from hpack_filter
138 local ltjs_report_stack_level = ltjs.report_stack_level
139 local ltjf_font_metric_table  = ltjf.font_metric_table
140 local font_getfont = font.getfont
141 local function set_box_stack_level(head, mode)
142    local box_set, cl = 0, tex.currentgrouplevel + 1
143    if mode then
144       for _,p  in pairs(wt) do
145          if getfield(p, 'value')==cl then box_set = 1 end; node_free(p)
146       end
147    else
148       for _,p  in pairs(wt) do node_free(p) end
149    end
150    ltjs_report_stack_level(tex_getcount('ltj@@stack') + box_set)
151    for _,p  in pairs(wtd) do node_free(p) end
152    if ltjs.list_dir == dir_tate then
153       for p in node.direct.traverse_id(id_glyph,to_direct(head)) do
154          if has_attr(p, attr_icflag, 0) and getlang(p)==lang_ja then
155             local nf = ltjf_replace_altfont( has_attr(p, attr_curtfnt) or getfont(p) , ltjs_orig_char_table[p])
156             setfont(p, nf)
157             if ltjf_font_metric_table[nf].vert_activated then
158                local pc = getchar(p); pc = ltjf_font_metric_table[nf].vform[pc]
159                if pc then setchar(p,  pc) end
160             end
161          end
162       end
163    end
164    return head
165 end
166
167 -- CALLBACKS
168 ltjb.add_to_callback('hpack_filter',
169    function (head)
170      return set_box_stack_level(head, true)
171    end, 'ltj.set_stack_level', 1)
172 ltjb.add_to_callback('pre_linebreak_filter',
173    function (head)
174       return set_box_stack_level(head, false)
175    end, 'ltj.set_stack_level', 1)
176
177 luatexja.pretreat = {
178    set_box_stack_level = set_box_stack_level,
179    orig_char_table = orig_char_table,
180 }