-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_ff_ttx.sh
executable file
·357 lines (328 loc) · 12.7 KB
/
run_ff_ttx.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
#!/bin/bash
set -e
# FontForge and TTX runner
#
# Copyright (c) 2023 omonomo
#
# 一連の操作を自動化するプログラム
# ログをファイル出力させる場合は有効にする (<< "#LOG" をコメントアウトさせる)
<< "#LOG"
LOG_OUT=/tmp/run_ff_ttx.log
LOG_ERR=/tmp/run_ff_ttx_err.log
exec 1> >(tee -a $LOG_OUT)
exec 2> >(tee -a $LOG_ERR)
#LOG
font_familyname="Jeroit"
font_familyname_suffix=""
#font_familyname_suffix_def=(BS SP FX HB DG DS TM TS)
#font_familyname_suffix_def_opt=(ztsp tsp ztcp Zzubtsp ztp tp zp p)
font_familyname_suffix_def=(BS SP FX HB DG) # バージョン違いの名称 (デフォルト設定)
font_familyname_suffix_def_opt=(ztsp tsp ztcp Zzubtsp ztp) # 各バージョンのオプション (デフォルト設定)
build_fonts_dir="build" # 完成品を保管するフォルダ
illegal_opt_fg="hVxfNn" # font_generator に指定できないオプション
opt_fg="" # font_generator のオプション
opt_tm="" # table_modificator のオプション
mode="" # 生成モード
draft_flag="false" # 下書きモード
leaving_tmp_flag="false" # 一時ファイル残す
loose_flag="false" # Loose 版にする
reuse_list_flag="false" # 生成済みのリストを使う
table_modify_flag="true" # フィーチャテーブルを編集する
symbol_only_flag="false" # カーニング設定を記号、桁区切りのみにする
font_version="0.1.0"
option_format_fg() { # font_generator 用のオプションを整形 (戻り値: 整形したオプション)
local opt # 整形前のオプション
local leaving_tmp_flag # 一時作成ファイルを残すか
local loose_flag # Loose 版にするか
local draft_flag= # 下書きモードか
opt="${2}"
leaving_tmp_flag="${3}"
loose_flag="${4}"
draft_flag="${5}"
if [ "${leaving_tmp_flag}" = "true" ]; then # 引数に l はないが、一時作成ファイルを残す場合
opt="${opt}l"
fi
if [ "${loose_flag}" = "true" ]; then # 引数に w はないが、Loose 版にする場合
opt="${opt}w"
fi
if [ "${draft_flag}" = "true" ]; then # 引数に d はないが、下書きモードで処理する場合
opt="${opt}d"
fi
eval "${1}=\${opt}" # 戻り値を入れる変数名を1番目の引数に指定する
}
option_format_tm() { # table_modificator 用のオプションを整形 (戻り値: 整形したオプション)
local opt # 整形前のオプション
local leaving_tmp_flag # 一時作成ファイルを残すか
local loose_flag # Loose 版にするか
local symbol_only_flag # カーニング設定を記号、桁区切りのみにするか
local reuse_list_flag # 作成済みのリストを使用するか
opt="${2}"
leaving_tmp_flag="${3}"
loose_flag="${4}"
symbol_only_flag="${5}"
reuse_list_flag="${6}"
if [ "${leaving_tmp_flag}" != "false" ]; then # -l オプションか 引数に l がある場合
opt="${opt}l"
fi
if [ "${loose_flag}" != "false" ]; then # -w オプションか 引数に w がある場合
opt="${opt}w"
fi
if [ "${symbol_only_flag}" != "false" ]; then # -k オプションがある場合
opt="${opt}k"
fi
if [ "${reuse_list_flag}" != "false" ]; then # -r オプションがある場合
opt="${opt}r"
fi
eval "${1}=\${opt}" # 戻り値を入れる変数名を1番目の引数に指定する
}
option_check() {
if [ -n "${mode}" ]; then # -dCpF のうち2個以上含まれていたら終了
echo "Illegal option"
exit 1
fi
}
remove_temp() {
echo "Remove temporary files"
./font_generator.sh -x
./table_modificator.sh -x -N "${font_familyname}"
rm -f *.nopatch.ttf
}
forge_ttx_help()
{
echo "Usage: run_ff_ttx.sh [options] [argument (options of font_generator)]"
echo ""
echo "Option:"
echo " -h Display this information"
echo " -x Cleaning temporary files" # 一時作成ファイルの消去のみ
echo " -l Leave (do NOT remove) temporary files"
echo " -N string Set fontfamily (\"string\")"
echo " -n string Set fontfamily suffix (\"string\")"
echo " -w Set the ratio of hankaku to zenkaku characters to 9:16"
echo " -k Don't make calt settings for latin characters"
echo " -r Reuse an existing list"
echo " -d Draft mode (skip time-consuming processes)" # グリフ変更の確認用 (最後は通常モードで確認すること)
echo " -C End just before editing calt feature" # caltの編集・確認を繰り返す時用にcalt適用前のフォントを作成する
echo " -p Run calt patch only" # -C の続きを実行
echo " -F Complete Mode (generate finished fonts)" # 完成品作成
}
# 設定読み込み
settings="settings" # 設定ファイル名
settings_txt=$(find . -maxdepth 1 -name "${settings}.txt" | head -n 1)
if [ -n "${settings_txt}" ]; then
S=$(grep -m 1 "^FONT_VERSION=" "${settings_txt}") # フォントバージョン
if [ -n "${S}" ]; then font_version="${S#FONT_VERSION=}"; fi
S=$(grep -m 1 "^FONT_FAMILYNAME=" "${settings_txt}") # フォントファミリー名
if [ -n "${S}" ]; then font_familyname="${S#FONT_FAMILYNAME=}"; fi
S=$(grep -m 1 "^FONT_FAMILYNAME_SUFFIX=" "${settings_txt}") # フォントファミリー名接尾語
if [ -n "${S}" ]; then font_familyname_suffix="${S#FONT_FAMILYNAME_SUFFIX=}"; fi
fi
echo
echo "*** FontForge and TTX runner ***"
echo
# オプションを取得
while getopts hxlN:n:wkrdCpF OPT
do
case "${OPT}" in
"h" )
forge_ttx_help
exit 0
;;
"x" )
echo "Option: Cleaning temporary files"
remove_temp
rm -f *.ttf
exit 0
;;
"l" )
echo "Option: Leave (do NOT remove) temporary files"
leaving_tmp_flag="true"
;;
"N" )
echo "Option: Set fontfamily: ${OPTARG}"
font_familyname=${OPTARG// /}
;;
"n" )
echo "Option: Set fontfamily suffix: ${OPTARG}"
font_familyname_suffix=${OPTARG// /}
;;
"w" )
echo "Option: Set the ratio of hankaku to zenkaku characters to 9:16"
loose_flag="true"
;;
"k" )
echo "Option: Don't make calt settings for latin characters"
symbol_only_flag="true"
;;
"r" )
echo "Option: Reuse an existing list"
reuse_list_flag="true"
;;
"d" )
echo "Option: Draft mode (skip time-consuming processes)"
option_check
mode="-d"
draft_flag="true"
leaving_tmp_flag="true"
table_modify_flag="false"
;;
"C" )
echo "Option: End just before editing calt feature"
option_check
mode="-C"
draft_flag="false"
leaving_tmp_flag="true"
table_modify_flag="true"
;;
"p" )
echo "Option: Run calt patch only"
option_check
mode="-p"
draft_flag="false"
leaving_tmp_flag="true"
table_modify_flag="true"
;;
"F" )
echo "Option: Complete Mode (generate finished fonts)"
option_check
mode="-F"
draft_flag="false"
table_modify_flag="true"
;;
* )
forge_ttx_help
exit 1
;;
esac
done
echo
shift $((OPTIND - 1))
# 引数を取得
if [ "${mode}" != "-p" ]; then # -p オプション以外は引数を取得
if [ $# -eq 1 ]; then
opt_fg=$(echo "$1" | tr -d ' -')
array=($(echo ${opt_fg} | sed 's/./& /g')) # 配列化 (abc → a b c)
for S in ${array[@]}; do
if grep -q "${S}" <<< "${illegal_opt_fg}"; then # 引数に使用できないオプションが含まれていれば終了
echo "Illegal argument"
exit 1
elif [ "${S}" = "l" ]; then # l が含まれていれば一時作成ファイルを残す (-l オプションと区別)
leaving_tmp_flag="true_arg"
elif [ "${S}" = "w" ]; then # w が含まれていれば Loose 版にする (-w オプションと区別)
loose_flag="true_arg"
elif [ "${S}" = "d" ]; then # d が含まれていれば下書きモードで処理 (-d オプションと区別)
draft_flag="true_arg"
elif [ "${S}" = "P" ]; then # P が含まれていればテーブルを編集する前に終了
table_modify_flag="false"
fi
done
elif [ $# -gt 1 ]; then
echo "Illegal argument"
exit 1
fi
fi
# フォント作成
case ${mode} in
"-d" )
if [ $# -eq 0 ]; then
opt_fg="oP" # 引数が無い場合の設定 (パッチ適用前で終了)
fi
;;
"-C" )
if [ $# -eq 0 ]; then
opt_fg="Seo" # 引数が無い場合の設定
fi
;;
"-p" )
;;
"-F" )
if [ $# -eq 0 ]; then
opt_fg="P" # 引数が無い場合の設定 (一旦パッチ適用前で終了し、その後続きを実行)
fi
;;
"" )
if [ $# -eq 0 ]; then
opt_fg="o" # 引数が無い場合の設定
fi
;;
* )
exit 1
;;
esac
if [ "${mode}" != "-p" ]; then # -p オプション以外はフォントを作成
option_format_fg opt_fg "${opt_fg}" "${leaving_tmp_flag}" "${loose_flag}" "${draft_flag}"
if [ -n "${opt_fg}" ]; then
./font_generator.sh -"${opt_fg}" -N "${font_familyname}" -n "${font_familyname_suffix}" auto
else
./font_generator.sh -N "${font_familyname}" -n "${font_familyname_suffix}" auto
fi
fi
if [ "${table_modify_flag}" = "false" ]; then # 下書きモードか、引数に P があった場合テーブルを編集しない
exit 0
fi
# -F オプションの場合、パッチ適用前からの続きを実行
if [ "${mode}" = "-F" ]; then
if [ $# -eq 0 ] && [ -z "${font_familyname_suffix}" ]; then
for i in ${!font_familyname_suffix_def[@]}; do # 引数が無く、suffix も無い場合、デフォルト設定でフォントにパッチを当てる
opt_fg=${font_familyname_suffix_def_opt[${i}]}
option_format_fg opt_fg "${opt_fg}" "${leaving_tmp_flag}" "${loose_flag}" "${draft_flag}"
if [ -n "${opt_fg}" ]; then
./font_generator.sh -"${opt_fg}" -N "${font_familyname}" -n "${font_familyname_suffix_def[${i}]}"
else
./font_generator.sh -N "${font_familyname}" -n "${font_familyname_suffix_def[${i}]}"
fi
done
fi
if [ $# -eq 0 ]; then # 引き数がない場合、通常版を生成
opt_fg="Sp"
option_format_fg opt_fg "${opt_fg}" "${leaving_tmp_flag}" "${loose_flag}" "${draft_flag}"
if [ -n "${opt_fg}" ]; then
./font_generator.sh -"${opt_fg}" -N "${font_familyname}" -n "${font_familyname_suffix}"
else
./font_generator.sh -N "${font_familyname}" -n "${font_familyname_suffix}"
fi
fi
fi
# テーブル加工 (-F オプション以外はカーニング設定を基本ラテン文字に限定、最適化処理をしない)
case ${mode} in
"-C" ) opt_tm="C" ;;
"-p" ) opt_tm="pb" ;;
"-F" ) opt_tm="o" ;;
* ) opt_tm="b" ;;
esac
option_format_tm opt_tm "${opt_tm}" "${leaving_tmp_flag}" "${loose_flag}" "${symbol_only_flag}" "${reuse_list_flag}"
if [ -n "${opt_tm}" ]; then
./table_modificator.sh -"${opt_tm}" -N "${font_familyname}${font_familyname_suffix}"
else
./table_modificator.sh -N "${font_familyname}${font_familyname_suffix}"
fi
# -F が有効で、-l が無効、引数にも l が無い場合、一時ファイルを削除
if [ "${leaving_tmp_flag}" = "false" ]; then
remove_temp
echo
fi
# -F オプションの場合、完成したフォントを移動
if [ "${mode}" = "-F" ]; then
echo "Move finished fonts"
mkdir -p "${build_fonts_dir}/${font_familyname}"
if [ $# -eq 0 ] && [ -z "${font_familyname_suffix}" ]; then # 引数が無く、suffix も無い場合、デフォルト設定で各フォルダにフォントを移動
for S in ${font_familyname_suffix_def[@]}; do
mkdir -p "${build_fonts_dir}/${font_familyname}/${S}"
mv -f ${font_familyname}${S}*.ttf "${build_fonts_dir}/${font_familyname}/${S}/."
done
elif [ -n "${font_familyname_suffix}" ]; then # suffix がある場合、フォルダを作ってフォントを移動
mkdir -p "${build_fonts_dir}/${font_familyname}/${font_familyname_suffix}"
mv -f ${font_familyname}${font_familyname_suffix}*.ttf "${build_fonts_dir}/${font_familyname}/${font_familyname_suffix}/."
fi
# パッチ未適用のフォントを除外して移動
find . -maxdepth 1 -not -name "*.nopatch.ttf" | \
grep -e "${font_familyname}.*\.ttf$" | while read line
do
mv -f "${line}" "${build_fonts_dir}/${font_familyname}/."
done
echo
# Exit
echo "Succeeded in generating custom fonts!"
echo "Font version : ${font_version}"
echo
fi
exit 0