File size: 4,234 Bytes
6b4490e |
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 |
def get_all_files_in_directory(directory, ext=''):
import os
import re
custom_sort_key_re = re.compile('([0-9]+)')
def custom_sort_key(s):
# 将字符串中的数字部分转换为整数,然后进行排序
return [int(x) if x.isdigit() else x for x in custom_sort_key_re.split(s)]
all_files = []
for root, dirs, files in os.walk(directory):
for file in files:
if file.endswith(ext):
file_path = os.path.join(root, file)
all_files.append(file_path)
return sorted(all_files, key=custom_sort_key)
def clearT():
import unicodedata
from opencc import OpenCC
def full2half(input_str):
return ''.join([unicodedata.normalize('NFKC', char) for char in input_str])
cc = OpenCC('t2s') # 't2s'表示繁体转简体
def _clearT(s):
s = cc.convert(full2half(s))
return s.lstrip('n').strip().strip(r'\n').replace('\n', '\\n')
return _clearT
clearT = clearT()
# =================
a = get_all_files_in_directory(r'E:\tmp\ISLAND\cst', ext='.cstl')
b = r'D:\datasets\tmp'
# =================
sc = {}
_n = {
"旁白": "旁白",
"镇长": "镇长",
"声音": "声音",
"?": "?",
"少女": "少女",
"琳": "琳",
"女子": "女子",
"切那": "切那",
"玖音": "玖音",
"女孩": "女孩",
"纱罗": "纱罗",
"夏莲": "夏莲",
"巡警": "巡警",
"看守": "看守",
"桃香": "桃香",
"凛音": "凛音",
"守春": "守春",
"女性": "女性",
"切那&夏莲": "切那&夏莲",
"Setsuna": "Setsuna",
"Linne": "Linne",
"Karen": "Karen",
"Sarah": "Sarah",
"熊孩子A": "熊孩子A",
"熊孩子B": "熊孩子B",
"熊孩子C": "熊孩子C",
"熊孩子们": "熊孩子们",
"男性": "男性",
"女学生": "女学生",
"老奶奶": "老奶奶",
"夏莲・纱罗": "夏莲&纱罗",
"切那&凛音": "切那&凛音",
"船长": "船长",
" ": "――",
"雨兰": "雨兰",
"凛音&切那": "凛音&切那",
"老人": "老人",
"森须": "森须",
"切那・纱罗": "切那&纱罗",
"鱼店老板": "鱼店老板",
"切那&纱罗": "切那&纱罗",
"??": "?",
"???": "?",
"万??": "万??",
"万里?": "万里?",
"万里爱": "万里爱",
"Nehan": "Nehan",
"凛音・纱罗": "凛音&纱罗",
"玖音?": "玖音?",
"雨兰?": "雨兰?",
"玖音&雨兰": "玖音&雨兰",
"夏莲&纱罗": "夏莲&纱罗",
"――": "――", # 三千界切那 但是此时还不记得自己的名字
"孩童": "孩童",
"头盖骨?": "头盖骨?",
"男孩": "男孩",
"Peach": "Peach",
"二人": "二人",
"男性1": "男性1",
"男性2": "男性2",
"男性3": "男性3",
"老人1": "老人1",
"老人2": "老人2",
"老人3": "老人3",
"卫兵": "卫兵"
}
# =================
def spStrip(s :str):
retn = ''
_i = -1
while _i < len(s) - 1:
_i += 1
char = s[_i]
if char == '\\':
_i += 2
elif char == '[':
_d = True
while _i < len(s) - 1:
_i += 1
char = s[_i]
if char == ']':
break
if char == '/':
_d = False
if _d:
retn += char
else:
retn += char
return retn
# =================
from cstl2txt import getTxt
for path in a:
name = path[path.rindex('\\'):]
name = name[:4]
if name not in sc:
sc[name] = []
print(name)
# =================
data = getTxt(path)
w_i = -1
while w_i < len(data) - 1:
w_i += 1
n = data[w_i]
if not n:
n = '旁白'
w_i += 1
d = spStrip(data[w_i])
w_i += 2 # skip jp
# print(n, d)
if n in _n:
n = _n[n]
else:
_n[n] = clearT(n)
if d:
sc[name].append(n + ':' + d)
# =================
for k, v in sc.items():
with open(b + f'\\{k}.txt', 'w', encoding='utf-8') as f:
f.write('\n'.join(v))
# =================
import json
tmp = json.dumps(_n, ensure_ascii=False, indent=2) |