OSDN Git Service

Fix ticket 29311.
[luatex-ja/luatexja.git] / src / ltj-otf.lua
1 --
2 -- luatexja/otf.lua
3 --
4 luatexbase.provides_module({
5   name = 'luatexja.otf',
6   date = '2011/09/09',
7   version = '0.1',
8   description = 'The OTF Lua module for LuaTeX-ja',
9 })
10 module('luatexja.otf', package.seeall)
11
12 luatexja.load_module('base');      local ltjb = luatexja.base
13 luatexja.load_module('jfont');     local ltjf = luatexja.jfont
14
15 local id_glyph = node.id('glyph')
16 local id_whatsit = node.id('whatsit')
17 local sid_user = node.subtype('user_defined')
18
19 local node_new = node.new
20 local node_remove = node.remove
21 local node_next = node.next
22 local node_free = node.free
23 local has_attr = node.has_attribute
24 local set_attr = node.set_attribute
25 local unset_attr = node.unset_attribute
26 local node_insert_after = node.insert_after
27
28 local attr_curjfnt = luatexbase.attributes['ltj@curjfnt']
29 local attr_jchar_class = luatexbase.attributes['ltj@charclass']
30 local attr_yablshift = luatexbase.attributes['ltj@yablshift']
31 local attr_ykblshift = luatexbase.attributes['ltj@ykblshift']
32
33 local ltjf_font_metric_table = ltjf.font_metric_table
34 local ltjf_find_char_class = ltjf.find_char_class
35
36
37 -- Append a whatsit node to the list.
38 -- This whatsit node will be extracted to a glyph_node
39 function append_jglyph(char)
40    local p = node_new(id_whatsit,sid_user)
41    local v = tex.attribute[attr_curjfnt]
42    p.user_id=30113; p.type=100; p.value=char
43    set_attr(p, attr_yablshift, tex.attribute[attr_ykblshift])
44    node.write(p)
45 end
46
47 function cid(key)
48    local curjfnt = fonts.ids[tex.attribute[attr_curjfnt]]
49    if curjfnt.cidinfo.ordering ~= "Japan1" and
50            curjfnt.cidinfo.ordering ~= "GB1" and
51            curjfnt.cidinfo.ordering ~= "CNS1" and
52            curjfnt.cidinfo.ordering ~= "Korea1" then
53       ltjb.package_error('luatexja-otf',
54                          'Current Japanese font (or other CJK font) "'..curjfnt.psname..'" is not a CID-Keyed font (Adobe-Japan1 etc.)', 
55                          'Select a CID-Keyed font using \jfont.')
56       return
57    end
58    local char = curjfnt.unicodes[curjfnt.cidinfo.ordering..'.'..tostring(key)]
59    if not char then
60       ltjb.package_warning('luatexja-otf',
61                          'Current Japanese font (or other CJK font) "'..curjfnt.psname..'" does not include the specified CID character ('..tostring(key)..')', 
62                          'Use a font including the specified CID character.')
63       return
64    end
65    append_jglyph(char)
66 end
67
68 function extract(head)
69    local p = head
70    local v
71    while p do
72       if p.id==id_whatsit then
73          if p.subtype==sid_user and p.user_id==30113 then
74             local g = node_new(id_glyph)
75             g.subtype = 0; g.char = p.value
76             v = has_attr(p, attr_curjfnt); g.font = v
77             set_attr(g, attr_curjfnt, v)
78             v = has_attr(p, attr_yablshift)
79             if v then 
80                set_attr(g, attr_yablshift, v)
81             else
82                unset_attr(g, attr_yablshift)
83             end
84             head = node_insert_after(head, p, g)
85             head = node_remove(head, p)
86             node_free(p); p = g
87          end
88       end
89       p = node_next(p)
90    end
91    return head
92 end
93
94 luatexbase.add_to_callback('hpack_filter', 
95    function (head) return extract(head) end,'ltj.hpack_filter_otf',
96    luatexbase.priority_in_callback('pre_linebreak_filter',
97                                    'ltj.pre_linebreak_filter'))
98 luatexbase.add_to_callback('pre_linebreak_filter', 
99    function (head) return extract(head) end, 'ltj.pre_linebreak_filter_otf',
100    luatexbase.priority_in_callback('pre_linebreak_filter',
101                                    'ltj.pre_linebreak_filter'))
102
103
104 -- additional callbacks
105 -- 以下は,LuaTeX-ja に用意された callback のサンプルになっている.
106 --   JFM の文字クラスの指定の所で,"AJ1-xxx" 形式での指定を可能とした.
107 --   これらの文字指定は,和文フォント定義ごとに,それぞれのフォントの
108 --   CID <-> グリフ 対応状況による変換テーブルが用意される.
109
110 -- フォント読み込み時に,CID
111 local function cid_to_char(fmtable, fn)
112    local fi = fonts.ids[fn]
113    if fi.cidinfo and fi.cidinfo.ordering == "Japan1" then
114       fmtable.cid_char_type = {}
115       for i, v in pairs(fmtable.size_cache.chars) do
116          local j = string.match(i, "^AJ1%-([0-9]*)")
117          if j then
118             j = tonumber(fi.unicodes['Japan1.'..tostring(j)])
119             if j then
120                fmtable.cid_char_type[j] = v 
121             end
122          end
123       end
124    end
125    return fmtable
126 end
127 luatexbase.add_to_callback("luatexja.define_jfont", 
128                            cid_to_char, "ltj.otf.define_jfont", 1)
129 --  既に読み込まれているフォントに対しても,同じことをやらないといけない
130 for fn, v in pairs(ltjf_font_metric_table) do
131    ltjf_font_metric_table[fn] = cid_to_char(v, fn)
132 end
133
134
135 local function cid_set_char_class(arg, fmtable, char)
136    if arg~=0 then return arg
137    elseif fmtable.cid_char_type then
138       return fmtable.cid_char_type[char] or 0
139    else return 0
140    end
141 end
142 luatexbase.add_to_callback("luatexja.find_char_class", 
143                            cid_set_char_class, "ltj.otf.find_char_class", 1)
144
145 -------------------- all done
146 -- EOF