OSDN Git Service

Updated manuals, and removed unnecessary print() which is used for debug.
[luatex-ja/luatexja.git] / src / ltj-pretreat.lua
1 --
2 -- luatexja/ltj-pretreat.lua
3 --
4
5 luatexja.load_module('charrange'); local ltjc = luatexja.charrange
6 luatexja.load_module('stack');     local ltjs = luatexja.stack
7 luatexja.load_module('jfont');     local ltjf = luatexja.jfont
8
9 local floor = math.floor
10 local has_attr = node.has_attribute
11 local set_attr = node.set_attribute
12 local node_traverse = node.traverse
13 local node_type = node.type
14 local node_remove = node.remove
15 local node_next = node.next
16 local node_free = node.free
17 local tex_getcount = tex.getcount
18
19 local id_glyph = node.id('glyph')
20 local id_math = node.id('math')
21 local id_whatsit = node.id('whatsit')
22 local sid_user = node.subtype('user_defined')
23
24 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
25 local attr_icflag = luatexbase.attributes['ltj@icflag']
26
27 local ltjc_is_ucs_in_japanese_char = ltjc.is_ucs_in_japanese_char
28 local ltjf_replace_altfont = ltjf.replace_altfont
29 local attr_orig_char = luatexbase.attributes['ltj@origchar']
30 local STCK = luatexja.userid_table.STCK
31
32 ------------------------------------------------------------------------
33 -- MAIN PROCESS STEP 1: replace fonts
34 ------------------------------------------------------------------------
35 local wt
36
37 local function suppress_hyphenate_ja(head)
38    local non_math, p = true, head
39    wt = {}
40    while p do
41       local pid = p.id
42       if pid == id_glyph then
43          if (has_attr(p, attr_icflag) or 0)<=0 and ltjc_is_ucs_in_japanese_char(p) then
44             local pc = p.char
45             local pf = ltjf_replace_altfont(has_attr(p, attr_curjfnt) or p.font, pc)
46             p.font = pf;  set_attr(p, attr_curjfnt, pf)
47             p.subtype = floor(p.subtype*0.5)*2
48             set_attr(p, attr_orig_char, pc)
49          end
50       elseif pid == id_math then 
51          p = node_next(p) -- skip math on
52          while p and p.id~=id_math do p = node_next(p) end
53       elseif pid == id_whatsit and p.subtype==sid_user and p.user_id==STCK then
54          wt[#wt+1] = p; head = node_remove(head, p)
55       end
56       p = node_next(p)
57    end
58    lang.hyphenate(head)
59    return head
60 end
61
62 -- mode: true iff this function is called from hpack_filter
63 local function set_box_stack_level(head, mode)
64    local box_set, cl = 0, tex.currentgrouplevel + 1
65    for _,p  in pairs(wt) do
66       if mode and p.value==cl then box_set = 1 end; node_free(p)
67    end
68    ltjs.report_stack_level(tex_getcount('ltj@@stack') + box_set)
69    return head
70 end
71
72 -- CALLBACKS
73 luatexbase.add_to_callback('hpack_filter', 
74    function (head)
75      return set_box_stack_level(head, true)
76    end,'ltj.hpack_filter_pre',1)
77 luatexbase.add_to_callback('pre_linebreak_filter', 
78   function (head)
79      return set_box_stack_level(head, false)
80   end,'ltj.pre_linebreak_filter_pre',1)
81 luatexbase.add_to_callback('hyphenate', 
82  function (head,tail)
83     return suppress_hyphenate_ja(head)
84  end,'ltj.hyphenate')
85
86 luatexja.pretreat = {
87    set_box_stack_level = set_box_stack_level,
88 }