summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/ptex-fontmaps/tools/mkmap-ko.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/ptex-fontmaps/tools/mkmap-ko.lua')
-rwxr-xr-xMaster/texmf-dist/source/ptex-fontmaps/tools/mkmap-ko.lua147
1 files changed, 0 insertions, 147 deletions
diff --git a/Master/texmf-dist/source/ptex-fontmaps/tools/mkmap-ko.lua b/Master/texmf-dist/source/ptex-fontmaps/tools/mkmap-ko.lua
deleted file mode 100755
index 8017d7bcf03..00000000000
--- a/Master/texmf-dist/source/ptex-fontmaps/tools/mkmap-ko.lua
+++ /dev/null
@@ -1,147 +0,0 @@
-#! /usr/bin/env texlua
-
--- '?' は 'Pro' 等に置換される(今のところ ko では不使用)
-local foundry = {
- ['noEmbed'] = {
- mr='!HYSMyeongJo-Medium',
- gr='!HYGoThic-Medium',
- mgr='!HYRGoThic-Medium',
- {'n'},
- },
- ['adobe'] = {
- noncid = false,
- mr='AdobeMyungjoStd-Medium.otf',
- gr='AdobeGothicStd-Bold.otf',
- mgr='AdobeGothicStd-Bold.otf',
- {''},
- },
- ['baekmuk'] = {
- noncid = true,
- mr='batang.ttf %!PS Baekmuk-Batang',
- gr='dotum.ttf %!PS Baekmuk-Dotum',
- mgr='gulim.ttf %!PS Baekmuk-Gulim',
- {''},
- },
- ['unfonts'] = {
- noncid = true,
- mr='UnBatang.ttf',
- gr='UnDotum.ttf',
- mgr='UnDinaru.ttf',
- {''},
- },
- ['ms'] = {
- noncid = true,
- mr=':1:batang.ttc %!PS BatangChe',
- gr=':3:gulim.ttc %!PS DotumChe',
- mgr=':1:gulim.ttc %!PS GulimChe',
- {''},
- },
- ['apple'] = {
- noncid = true,
- mr='AppleMyungjo.ttf',
- gr='AppleGothic.ttf',
- mgr='AppleGothic.ttf',
- {''},
- },
- ['solaris'] = {
- noncid = true,
- mr='h2mjsm.ttf %!PS Myeongjo',
- gr='h2gtrm.ttf %!PS Gothic',
- mgr='h2drrm.ttf %!PS RoundedGothic',
- {''},
- },
-}
-
-local suffix = {
- -- { '?' 置換, koEmbed 接尾辞, (ttc index mov)}
- [''] = {'', ''}, -- 非 CID フォント用ダミー
- ['n'] = {'!', ''}, -- 非埋め込みに使用
- ['4'] = {'Pro', ''},
- ['6'] = {'Pr6', '-pr6'},
-}
-
--- '#' は 'h', 'v' に置換される
--- '@' は koEmbed の値に置換される
-local maps = {
- ['uptex-ko-@'] = {
- {'uphysmjm-#', 'UniKS-UTF16-#', 'mr'},
- {'uphygt-#', 'UniKS-UTF16-#', 'gr'},
- },
- ['otf-ko-@'] = {
- '% CID',
- {'otf-ckmr-#', 'Identity-#', 'mr'},
- {'otf-ckgr-#', 'Identity-#', 'gr'},
- -- {'otf-ckmgr-#','Identity-#', 'mgr'},
- '% Unicode',
- {'otf-ukmr-#', 'UniKS-UCS2-#', 'mr'},
- {'otf-ukgr-#', 'UniKS-UCS2-#', 'gr'},
- -- {'otf-ukmgr-#','UniKS-UCS2-#', 'mgr'},
- },
-}
-
-local jis2004_flag = 'n'
-local gsub = string.gsub
-
-function string.explode(s, sep)
- local t = {}
- sep = sep or '\n'
- string.gsub(s, "([^"..sep.."]*)"..sep, function(c) t[#t+1]=c end)
- return t
-end
-
-local function ret_suffix(fd, s, fa)
- return suffix[s][1]
-end
-
-local function replace_index(line, s)
- local ttc_mov = suffix[s][3]
- if ttc_mov then
- local ttc_index, ttc_dir = line:match('#(%d)(.)')
- if tonumber(ttc_index) then
- return line:gsub('#..', ':' .. tostring(tonumber(ttc_index)+tonumber(ttc_dir .. ttc_mov)) .. ':')
- end
- end
- return line
-end
-
-local function make_one_line(o, fd, s)
- if type(o) == 'string' then
- return '\n' .. o .. '\n'
- else
- local fx = foundry[fd]
- local fn = replace_index(gsub(fx[o[3]], '?', ret_suffix(fd,s,o[3])), s)
- if fx.noncid and string.match(o[2],'Identity') then
- if string.match(fn, '%!PS') then
- fn = gsub(fn, ' %%!PS', '/AK12 %%!PS')
- else
- fn = fn .. '/AK12'
- end
- end
- if string.match(o[1], '#') then -- 'H', 'V' 一括出力
- return gsub(o[1], '#', 'h') .. '\t' .. gsub(o[2], '#', 'H') .. '\t' .. fn .. '\n'
- .. gsub(o[1], '#', 'v') .. '\t' .. gsub(o[2], '#', 'V') .. '\t' .. fn .. '\n'
- else
- return o[1] .. '\t' .. o[2] .. '\t' .. fn .. '\n'
- end
- end
-end
-
-for fd, v1 in pairs(foundry) do
- for _,s in pairs(v1[1]) do
- local dirname = fd .. suffix[s][2]
- print('koEmbed: ' .. dirname)
- -- Linux しか想定していない
- os.execute('mkdir ' .. dirname .. ' &>/dev/null')
- for mnx, mcont in pairs(maps) do
- --if not string.match(mnx, '-04') or string.match(s, jis2004_flag) then
- if not string.match(mnx, '-04') or not foundry[fd].noncid then
- local mapbase = gsub(mnx, '@', dirname)
- local f = io.open(dirname .. '/' .. mapbase .. '.map', 'w+')
- for _,x in ipairs(mcont) do
- f:write(make_one_line(x, fd, s))
- end
- f:close()
- end
- end
- end
-end