OSDN Git Service

ltj[s]classes.dtx: use Kozuka fonts )only for documents), if they exist
[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                   setfont(p, ltjf_replace_altfont(has_attr(p, attr_curjfnt) or getfont(p), pc))
107                   setlang(p, lang_ja)
108                   ltjs_orig_char_table[p] = pc
109                end
110                p = node_next(p); pid = getid(p)
111             end
112             p = (suppress_hyphenate_ja_aux[pid])(p)
113          end
114       end
115       stop_time_measure('ltj_hyphenate'); start_time_measure('tex_hyphenate')
116       lang.hyphenate(h, nil)
117       stop_time_measure('tex_hyphenate')
118       return h
119    end
120
121    ltjb.add_to_callback('hyphenate',
122                               function (head,tail)
123                                  return suppress_hyphenate_ja(head)
124                               end,'ltj.hyphenate')
125 end
126
127 -- mode: true iff this function is called from hpack_filter
128 local ltjs_report_stack_level = ltjs.report_stack_level
129 local ltjf_font_metric_table  = ltjf.font_metric_table
130 local font_getfont = font.getfont
131 local function set_box_stack_level(head, mode)
132    local box_set, cl = 0, tex.currentgrouplevel + 1
133    if mode then
134       for _,p  in pairs(wt) do
135          if getfield(p, 'value')==cl then box_set = 1 end; node_free(p)
136       end
137    else
138       for _,p  in pairs(wt) do node_free(p) end
139    end
140    ltjs_report_stack_level(tex_getcount('ltj@@stack') + box_set)
141    for _,p  in pairs(wtd) do
142       node_free(p)
143    end
144    if ltjs.list_dir == dir_tate then
145       for p in node.direct.traverse_id(id_glyph,to_direct(head)) do
146          if has_attr(p, attr_icflag, 0) and getlang(p)==lang_ja then
147             local nf = ltjf_replace_altfont( has_attr(p, attr_curtfnt) or getfont(p) , ltjs_orig_char_table[p])
148             setfont(p, nf)
149             if ltjf_font_metric_table[nf].vert_activated then
150                local pc = getchar(p)
151                pc = (ltjf_font_extra_info[nf] and ltjf_font_extra_info[nf][pc] and ltjf_font_extra_info[nf][pc].vform)
152                if pc and font_getfont(nf).characters[pc] then setchar(p,  pc) end
153             end
154          end
155       end
156    end
157    return head
158 end
159
160 -- CALLBACKS
161 ltjb.add_to_callback('hpack_filter',
162    function (head)
163      return set_box_stack_level(head, true)
164    end,'ltj.set_stack_level',1)
165 ltjb.add_to_callback('pre_linebreak_filter',
166   function (head)
167      return set_box_stack_level(head, false)
168   end,'ltj.set_stack_level',1)
169
170 luatexja.pretreat = {
171    set_box_stack_level = set_box_stack_level,
172    orig_char_table = orig_char_table,
173 }