OSDN Git Service

Merge branch 'kitagawa_test' into master
[luatex-ja/luatexja.git] / src / luatexja / stack.lua
1 --
2 -- luatexja/stack.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.stack',
6   date = '2011/04/01',
7   version = '0.1',
8   description = 'LuaTeX-ja stack system',
9 })
10 module('luatexja.stack', package.seeall)
11 local err, warn, info, log = luatexbase.errwarinf(_NAME)
12
13 require('luatexja.base');      local ltjb = luatexja.base
14
15 local node_new = node.new
16 local id_whatsit = node.id('whatsit')
17 local sid_user = node.subtype('user_defined')
18
19 local charprop_stack_table={}; charprop_stack_table[0]={}
20
21 function get_stack_level()
22    local i = tex.getcount('ltj@@stack')
23    local j = tex.currentgrouplevel
24    if j > tex.getcount('ltj@@group@level') then
25       i = i+1 -- new stack level
26       tex.setcount('ltj@@group@level', j)
27       for k,v in pairs(charprop_stack_table) do -- clear the stack above i
28          if k>=i then charprop_stack_table[k]=nil end
29       end
30       charprop_stack_table[i] = table.fastcopy(charprop_stack_table[i-1])
31       tex.setcount('ltj@@stack', i)
32       local g = node_new(id_whatsit, sid_user)
33       g.user_id=30112; g.type=100; g.value=j; node.write(g)
34    end
35    return i
36 end
37
38 -- EXT
39 function set_stack_table(g,m,c,p,lb,ub)
40    local i = get_stack_level()
41    if p<lb or p>ub then 
42       ltjb.package_error('luatexja',
43                          "invalid code (".. p .. ")",
44                          {"The code should in the range "..tostring(lb) ..'..'.. tostring(ub) .. ".",
45                           "I'm going to use 0 instead of that illegal code value."})
46       p=0
47    elseif c<-1 or c>0x10ffff then 
48       ltjb.package_error('luatexja',
49                          'bad character code (' .. c .. ')',
50                          {'A character number must be between -1 and 0x10ffff.',
51                           "(-1 is used for denoting `math boundary')",
52                           'So I changed this one to zero.'})
53       c=0
54    elseif not charprop_stack_table[i][c] then 
55       charprop_stack_table[i][c] = {} 
56    end
57    charprop_stack_table[i][c][m] = p
58   if g=='global' then
59      for j,v in pairs(charprop_stack_table) do 
60         if not charprop_stack_table[j][c] then charprop_stack_table[j][c] = {} end
61         charprop_stack_table[j][c][m] = p
62      end
63   end
64 end
65
66 -- EXT: store \ltj@tempskipa
67 function set_stack_skip(g,c,sp)
68   local i = get_stack_level()
69   if not sp then return end
70   if not charprop_stack_table[i][c] then 
71      charprop_stack_table[i][c] = {} 
72   end
73   charprop_stack_table[i][c].width   = sp.width
74   charprop_stack_table[i][c].stretch = sp.stretch
75   charprop_stack_table[i][c].shrink  = sp.shrink
76   charprop_stack_table[i][c].stretch_order = sp.stretch_order
77   charprop_stack_table[i][c].shrink_order  = sp.shrink_order
78   if g=='global' then
79      for j,v in pairs(charprop_stack_table) do 
80         if not charprop_stack_table[j][c] then charprop_stack_table[j][c] = {} end
81         charprop_stack_table[j][c].width   = sp.width
82         charprop_stack_table[j][c].stretch = sp.stretch
83         charprop_stack_table[j][c].shrink  = sp.shrink
84         charprop_stack_table[j][c].stretch_order = sp.stretch_order
85         charprop_stack_table[j][c].shrink_order  = sp.shrink_order
86      end
87   end
88 end
89
90 -- mode: nil iff it is called in callbacks
91 function get_skip_table(m, idx)
92    local i = charprop_stack_table[idx][m]
93    return i or { width = 0, stretch = 0, shrink = 0,
94                  stretch_order = 0, shrink_order = 0 }
95 end
96
97 function get_penalty_table(m,c,d, idx)
98    local i = charprop_stack_table[idx][c]
99    if i then i=i[m] end
100    return i or d
101 end
102
103 -- EOF