OSDN Git Service

Add 'luatexja.set_width' callback and its example (valign.lua).
[luatex-ja/luatexja.git] / src / luatexja / math.lua
1 --
2 -- luatexja/math.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.math',
6   date = '2011/08/14',
7   version = '0.1',
8   description = 'Handling routines for Japanese characters in math mode',
9 })
10 module('luatexja.math', package.seeall)
11
12 require('luatexja.base');      local ltjb = luatexja.base
13 require('luatexja.charrange'); local ltjc = luatexja.charrange
14 require('luatexja.jfont');     local ltjf = luatexja.jfont
15 require('luatexja.stack');     local ltjs = luatexja.stack
16 require('luatexja.setwidth');  local ltjw = luatexja.setwidth
17
18 local node_new = node.new
19 local node_next = node.next
20 local node_free = node.free
21 local has_attr = node.has_attribute
22 local set_attr = node.set_attribute
23
24 local attr_jchar_class = luatexbase.attributes['ltj@charclass']
25 local attr_icflag = luatexbase.attributes['ltj@icflag']
26 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
27 local attr_jfam = luatexbase.attributes['jfam']
28 local attr_yablshift = luatexbase.attributes['ltj@yablshift']
29
30 local id_glyph = node.id('glyph')
31 local id_hlist = node.id('hlist')
32 local id_vlist = node.id('vlist')
33 local id_mchar = node.id('math_char')
34 local id_sub_box = node.id('sub_box')
35 local id_radical = node.id('radical')
36 local id_choice  = node.id('choice')
37 local id_accent  = node.id('accent')
38 local id_style   = node.id('style')
39 local id_frac    = node.id('fraction')
40 local id_simple  = node.id('noad')
41 local id_sub_mlist = node.id('sub_mlist')
42
43 local PROCESSED = 8
44
45 local ltjf_font_metric_table = ltjf.font_metric_table
46 local ltjf_find_char_class = ltjf.find_char_class
47
48 local conv_jchar_to_hbox_A
49
50 -- sty : 0 (display or text), 1 (script), >=2 (scriptscript)
51 local function conv_jchar_to_hbox(head, sty)
52    local p = head
53    local bhead = head
54    while p do
55       if p.id == id_simple or p.id == id_accent then
56          p.nucleus = conv_jchar_to_hbox_A(p.nucleus, sty)
57          p.sub = conv_jchar_to_hbox_A(p.sub, sty + 1)
58          p.sup = conv_jchar_to_hbox_A(p.sup, sty + 1)
59       elseif p.id == id_choice then
60          p.text = conv_jchar_to_hbox(p.text, 0)
61          p.script = conv_jchar_to_hbox(p.script, 1)
62          p.scriptscript = conv_jchar_to_hbox(p.scriptscript, 2)
63       elseif p.id == id_frac then
64          p.num = conv_jchar_to_hbox_A(p.num, sty + 1)
65          p.denom = conv_jchar_to_hbox_A(p.denom, sty + 1)
66       elseif p.id == id_radical then
67          p.nucleus = conv_jchar_to_hbox_A(p.nucleus, sty)
68          p.sub = conv_jchar_to_hbox_A(p.sub, sty + 1)
69          p.sup = conv_jchar_to_hbox_A(p.sup, sty + 1)
70          if p.degree then
71             p.degree = conv_jchar_to_hbox_A(p.degree, sty + 1)
72          end
73       elseif p.id == id_style then
74          if p.style == "display'" or  p.style == 'display'
75             or  p.style == "text'" or  p.style == 'text' then
76             sty = 0
77          elseif  p.style == "script'" or  p.style == 'script' then
78             sty = 1
79          else sty = 2
80          end
81        end
82        p = node.next(p)
83    end 
84    return head
85 end 
86
87 conv_jchar_to_hbox_A = 
88 function (p, sty)
89    if not p then return nil
90    elseif p.id == id_sub_mlist then
91       if p.head then
92          p.head = conv_jchar_to_hbox(p.head, sty)
93       end
94    elseif p.id == id_mchar then
95       local fam = has_attr(p, attr_jfam) or -1
96       if ltjc.is_ucs_in_japanese_char(p) and fam>=0 then
97          local mode = 'mjss'
98          if sty == 0 then mode = 'mjtext'
99          elseif sty == 1 then mode = 'mjscr'
100          end
101          local f = ltjs.get_penalty_table(mode, fam, -1, tex.getcount('ltj@@stack'))
102          if f ~= -1 then
103             local q = node_new(id_sub_box)
104             local r = node_new(id_glyph); r.next = nil
105             r.char = p.char; r.font = f; r.subtype = 256
106             set_attr(r, attr_icflag, PROCESSED)
107             set_attr(r, attr_yablshift, 0)
108             local met = ltjf_font_metric_table[f]
109             local class = ltjf_find_char_class(p.char, met)
110             set_attr(r, attr_jchar_class, class)
111             ltjw.char_data = ltjf.metrics[met.jfm].size_cache[met.size].char_type[class]
112             ltjw.head = r; ltjw.capsule_glyph(r, tex.mathdir , true, met, class);
113             q.head = ltjw.head; node_free(p); p=q;
114          end
115       end
116    end
117    return p
118 end
119
120 luatexbase.add_to_callback('mlist_to_hlist', 
121    function (n, display_type, penalties)
122       local head = conv_jchar_to_hbox(n, 0);
123       head = node.mlist_to_hlist(head, display_type, penalties)
124       return head
125    end,'ltj.mlist_to_hlist', 1)