OSDN Git Service

Fix a bug: Patch lltjp-unicode-math.sty may not work correctly.
[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" then
50       ltjb.package_error('luatexja-otf',
51                          'Current Japanese font "'..curjfnt.psname..'" is not a CID-Keyed font (Adobe-Japan1)', 
52                          'Select a CID-Keyed font using \jfont.')
53       return
54    end
55    local char = curjfnt.unicodes['Japan1.'..tostring(key)]
56    if not char then
57       ltjb.package_warning('luatexja-otf',
58                          'Current Japanese font "'..curjfnt.psname..'" does not include the specified CID character ('..tostring(key)..')', 
59                          'Use a font including the specified CID character.')
60       return
61    end
62    append_jglyph(char)
63 end
64
65 function extract(head)
66    local p = head, v
67    while p do
68       if p.id==id_whatsit then
69          if p.subtype==sid_user and p.user_id==30113 then
70             local g = node_new(id_glyph)
71             g.subtype = 0; g.char = p.value
72             v = has_attr(p, attr_curjfnt); g.font = v
73             set_attr(g, attr_jchar_class,
74                      ltjf_find_char_class(g.char, ltjf_font_metric_table[v]))
75             set_attr(g, attr_curjfnt, v)
76             v = has_attr(p, attr_yablshift)
77             if v then 
78                set_attr(g, attr_yablshift, v)
79             else
80                unset_attr(g, attr_yablshift)
81             end
82             head = node_insert_after(head, p, g)
83             head = node_remove(head, p)
84             node_free(p); p = g
85          end
86       end
87       p = node_next(p)
88    end
89    return head
90 end
91
92 luatexbase.add_to_callback('hpack_filter', 
93    function (head) return extract(head) end,'ltj.hpack_filter_otf',
94    luatexbase.priority_in_callback('pre_linebreak_filter',
95                                    'ltj.pre_linebreak_filter'))
96 luatexbase.add_to_callback('pre_linebreak_filter', 
97    function (head) return extract(head) end, 'ltj.pre_linebreak_filter_otf',
98    luatexbase.priority_in_callback('pre_linebreak_filter',
99                                    'ltj.pre_linebreak_filter'))
100
101
102 -- additional callbacks
103 -- 以下は,LuaTeX-ja に用意された callback のサンプルになっている.
104 --   JFM の文字クラスの指定の所で,"AJ1-xxx" 形式での指定を可能とした.
105 --   これらの文字指定は,和文フォント定義ごとに,それぞれのフォントの
106 --   CID <-> グリフ 対応状況による変換テーブルが用意される.
107
108 -- フォント読み込み時に,CID
109 local function cid_to_char(fmtable, fn)
110    local fi = fonts.ids[fn]
111    if fi.cidinfo and fi.cidinfo.ordering == "Japan1" then
112       fmtable.cid_char_type = {}
113       for i, v in pairs(ltjf.metrics[fmtable.jfm].chars) do
114          local j = string.match(i, "^AJ1%-([0-9]*)")
115          if j then
116             j = tonumber(fi.unicodes['Japan1.'..tostring(j)])
117             if j then
118                fmtable.cid_char_type[j] = v 
119             end
120          end
121       end
122    end
123    return fmtable
124 end
125 luatexbase.add_to_callback("luatexja.define_jfont", 
126                            cid_to_char, "ltj.otf.define_jfont", 1)
127 --  既に読み込まれているフォントに対しても,同じことをやらないといけない
128 for fn, v in pairs(ltjf_font_metric_table) do
129    ltjf_font_metric_table[fn] = cid_to_char(v, fn)
130 end
131
132
133 local function cid_set_char_class(arg, fmtable, char)
134    if arg~=0 then return arg
135    elseif fmtable.cid_char_type then 
136       return fmtable.cid_char_type[char] or 0
137    else return 0
138    end
139 end
140 luatexbase.add_to_callback("luatexja.find_char_class", 
141                            cid_set_char_class, "ltj.otf.find_char_class", 1)
142
143 -------------------- all done
144 -- EOF