OSDN Git Service

luatexja-fontspec-*.sty: forgot to update \setmonojfont
[luatex-ja/luatexja.git] / src / ltj-pretreat.lua
1 --
2 -- luatexja/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 ltjf_font_extra_info = ltjf.font_extra_info
47 local attr_orig_char = luatexbase.attributes['ltj@origchar']
48 local STCK  = luatexja.userid_table.STCK
49 local DIR   = luatexja.userid_table.DIR
50 local PROCESSED_BEGIN_FLAG = luatexja.icflag_table.PROCESSED_BEGIN_FLAG
51
52 local dir_tate = luatexja.dir_table.dir_tate
53 local lang_ja = luatexja.lang_ja
54
55 local setlang = node.direct.setlang or function(n,l) setfield(n,'lang',l) end 
56 local setfont = node.direct.setfont or function(n,l) setfield(n,'font',l) end 
57 local setchar = node.direct.setchar or function(n,l) setfield(n,'char',l) end 
58
59 ------------------------------------------------------------------------
60 -- MAIN PROCESS STEP 1: replace fonts
61 ------------------------------------------------------------------------
62 local wt, wtd = {}, {}
63 do
64    local ltjd_get_dir_count = ltjd.get_dir_count
65    local start_time_measure, stop_time_measure
66       = ltjb.start_time_measure, ltjb.stop_time_measure
67    local head
68    local suppress_hyphenate_ja_aux = {
69       [id_math] = function(p) return node_next(node_end_of_math(node_next(p))) end,
70       [id_whatsit] = function(p)
71          if getsubtype(p)==sid_user then
72             local uid = getfield(p, 'user_id')
73             if uid==STCK then
74                wt[#wt+1] = p; node_remove(head, p)
75             elseif uid==DIR then
76                if has_attr(p, attr_icflag)<PROCESSED_BEGIN_FLAG  then
77                   ltjs.list_dir = has_attr(p, attr_dir)
78                else -- こっちのケースは通常使用では起こらない
79                   wtd[#wtd+1] = p; node_remove(head, p)
80                end
81             end
82          end
83          return node_next(p)
84       end,
85    }
86    setmetatable(suppress_hyphenate_ja_aux, 
87                 {
88                    __index = function() return node_next end,
89                 })
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 = getid(p)
103             while pid==id_glyph do
104                local pc = getchar(p)
105                if has_attr(p, attr_icflag, 0) and is_ucs_in_japanese_char(p, pc) then
106                   local pf = has_attr(p, attr_curjfnt)
107                   pf = (pf and pf>0 and pf) or getfont(p)
108                   setfont(p, ltjf_replace_altfont(pf, pc))
109                   setlang(p, lang_ja)
110                   ltjs_orig_char_table[p] = pc
111                end
112                p = node_next(p); pid = getid(p)
113             end
114             p = (suppress_hyphenate_ja_aux[pid])(p)
115          end
116       end
117       stop_time_measure('ltj_hyphenate'); start_time_measure('tex_hyphenate')
118       lang.hyphenate(h, nil)
119       stop_time_measure('tex_hyphenate')
120       return h
121    end
122
123    ltjb.add_to_callback('hyphenate',
124                               function (head,tail)
125                                  return suppress_hyphenate_ja(head)
126                               end,'ltj.hyphenate')
127 end
128
129 -- mode: true iff this function is called from hpack_filter
130 local ltjs_report_stack_level = ltjs.report_stack_level
131 local ltjf_font_metric_table  = ltjf.font_metric_table
132 local font_getfont = font.getfont
133 local function set_box_stack_level(head, mode)
134    local box_set, cl = 0, tex.currentgrouplevel + 1
135    if mode then
136       for _,p  in pairs(wt) do
137          if getfield(p, 'value')==cl then box_set = 1 end; node_free(p)
138       end
139    else
140       for _,p  in pairs(wt) do node_free(p) end
141    end
142    ltjs_report_stack_level(tex_getcount('ltj@@stack') + box_set)
143    for _,p  in pairs(wtd) do
144       node_free(p)
145    end
146    if ltjs.list_dir == dir_tate then
147       for p in node.direct.traverse_id(id_glyph,to_direct(head)) do
148          if has_attr(p, attr_icflag, 0) and getlang(p)==lang_ja then
149             local nf = ltjf_replace_altfont( has_attr(p, attr_curtfnt) or getfont(p) , ltjs_orig_char_table[p])
150             setfont(p, nf)
151             if ltjf_font_metric_table[nf].vert_activated then
152                local pc = getchar(p)
153                pc = ltjf_font_metric_table[nf].vform[pc]
154                if pc then setchar(p,  pc) end
155             end
156          end
157       end
158    end
159    return head
160 end
161
162 -- CALLBACKS
163 ltjb.add_to_callback('hpack_filter',
164    function (head)
165      return set_box_stack_level(head, true)
166    end,'ltj.set_stack_level',1)
167 ltjb.add_to_callback('pre_linebreak_filter',
168   function (head)
169      return set_box_stack_level(head, false)
170   end,'ltj.set_stack_level',1)
171
172 luatexja.pretreat = {
173    set_box_stack_level = set_box_stack_level,
174    orig_char_table = orig_char_table,
175 }