OSDN Git Service

Merge branch 'master' into kitagawa_test
[luatex-ja/luatexja.git] / src / ltj-compat.lua
1 --
2 -- luatexja/ltj-compat.lua
3 --
4
5 luatexja.load_module('base');   local ltjb = luatexja.base
6 luatexja.load_module('stack');  local ltjs = luatexja.stack
7 local stack_table_index = luatexja.stack_table_index
8
9 -- load jisx0208 table
10 local cache_ver = 2
11
12 local cache_outdate_fn = function (t) return t.version~=cache_ver end
13 local jisx0208 = ltjb.load_cache('ltj-jisx0208',cache_outdate_fn)
14 if not jisx0208 then -- make cache
15    jisx0208 = require('ltj-jisx0208.lua')
16    ltjb.save_cache_luc('ltj-jisx0208', jisx0208)
17 end
18
19
20 -- \kuten, \jis, \euc, \sjis, \ucs, \kansuji
21 local utfchar=utf.char
22 local function to_kansuji(num)
23    if not num then num=0; return
24    elseif num<0 then
25       num = -num; tex.write('-')
26    end
27    local s = ""
28    while num~=0 do
29       s = utfchar(
30          ltjs.get_stack_table(luatexja.stack_table_index.KSJ + num%10,
31                                 '', tex.getcount('ltj@@stack'))) .. s
32       num=math.floor(num/10)
33    end
34    tex.write(s)
35 end
36
37 -- \ucs: 単なる identity
38 local function from_ucs(i)
39    if type(i)~='number' then
40       ltjb.package_error('luatexja',
41                          "invalid character code (".. tostring(i) .. ")",
42                          "I'm going to use 0 instead of that illegal character code.")
43       i=0
44    end
45    tex.write(i)
46 end
47
48 -- \kuten: 面区点 (それぞれで16進2桁を使用)=> Unicode 符号位置
49 local function from_kuten(i)
50    if type(i)~='number' then
51       ltjb.package_error('luatexja',
52                          "invalid character code (".. tostring(i) .. ")",
53                          "I'm going to use 0 instead of that illegal character code.")
54       i=0
55    end
56    tex.write(tostring(jisx0208.table_jisx0208_uptex[i] or 0))
57 end
58
59 -- \euc: EUC-JP による符号位置 => Unicode 符号位置
60 local function from_euc(i)
61    if type(i)~='number' then
62       ltjb.package_error('luatexja',
63                          "invalid character code (".. tostring(i) .. ")",
64                          "I'm going to use 0 instead of that illegal character code.")
65       i=0
66    elseif i>=0x10000 or i<0xa0a0 then
67       i=0
68    end
69    from_kuten(i-0xa0a0)
70 end
71
72 -- \jis: ISO-2022-JP による符号位置 => Unicode 符号位置
73 local function from_jis(i)
74    if (type(i)~='number') or i>=0x10000 or i<0 then
75       ltjb.package_error('luatexja',
76                          "invalid character code (".. tostring(i) .. ")",
77                          "I'm going to use 0 instead of that illegal character code.")
78       i=0
79    end
80    from_kuten(i-0x2020)
81 end
82
83 -- \sjis: Shift_JIS による符号位置 => Unicode 符号位置
84 local function from_sjis(i)
85    if (type(i)~='number') or i>=0x10000 or i<0 then
86       ltjb.package_error('luatexja',
87                          "invalid character code (".. tostring(i) .. ")",
88                          "I'm going to use 0 instead of that illegal character code.")
89       tex.write('0'); return
90    end
91    local c2 = math.floor(i/256)
92    local c1 = i%256
93    local shift_jisx0213_s1a3_table = {
94       { [false]= 1, [true]= 8},
95       { [false]= 3, [true]= 4},
96       { [false]= 5, [true]=12},
97       { [false]=13, [true]=14},
98       { [false]=15 } }
99    if c2 >= 0x81 then
100       if c2 >= 0xF0 then -- this if block won't be true
101          if (c2 <= 0xF3 or (c2 == 0xF4 and c1 < 0x9F)) then
102             c2 = 0x100 + shift_jisx0213_s1a3_table[c2 - 0xF0 + 1][(0x9E < c1)];
103          else -- 78<=k<=94
104             c2 = c2 * 2 - 413 + 0x100; if 0x9E < c1 then c2=c2+1 end
105          end
106      else
107         if c2<=0x9f then i=0x101 else i=0x181 end
108         c2 = c2 + c2 - i; if 0x9E < c1 then c2=c2+1 end
109      end
110      if c1 < 0x9F then
111         if c1>0x7f then i=0x40 else i=0x3f end
112         c1 = c1 - i
113      else
114         c1 = c1 - 0x9e
115      end
116      from_kuten(c2*256+c1)
117   end
118 end
119
120 luatexja.binary_pars.kansujichar = function(c, t)
121    if type(c)~='number' or c<0 or c>9 then
122       ltjb.package_error('luatexja',
123                          'Invalid KANSUJI number (' .. tostring(c) .. ')',
124                          'A KANSUJI number should be in the range 0..9.\n'..
125                             'So I changed this one to zero.')
126       c=0
127    end
128    return ltjs.get_stack_table(stack_table_index.KSJ + c, 0, t)
129 end
130
131
132 local t = {
133    from_euc   = from_euc,
134    from_kuten = from_kuten,
135    from_jis   = from_jis,
136    from_sjis  = from_sjis,
137    from_ucs   = from_ucs,
138    to_kansuji = to_kansuji,
139 }
140 luatexja.compat = t