This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
437 lines (345 loc) · 12.9 KB
/
Program.cs
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
// See https://aka.ms/new-console-template for more information.
using Ionic.Zip;
using Ionic.Zlib;
using Newtonsoft.Json;
using OpenCCNET;
using System.Reflection;
using System.Text;
#region 變數宣告
// 隔分符號。
char[] separators = ['|'];
// 暫存替換用的字詞的字典。
Dictionary<string, string> DictReplacePhrases = [];
#endregion
// 主要程式區塊。
try
{
Console.Title = $"Warudo 「簡體中文」語系檔案「正體中文」化轉換程式{GetVersion()}";
WriteLog(value: "此主控台應用程式為將 Warudo「簡體中文」語系檔案「正體中文」化的轉換程式。");
WriteLog(value: string.Empty);
WriteLog(value: "※按 Ctrl 鍵 + C 鍵以結束應用程式。");
WriteLog(value: string.Empty);
// 設定 OpenCC 字典的替換字詞。
SetDictionaryReplacePhrases();
// 設定替換用的字詞。
SetReplacePhrases();
GetPath:
WriteLog(value: "請輸入有效的 Warudo 語系檔案的路徑:");
// 取得使用者輸入的路徑。
string? path = Console.ReadLine();
WriteLog(value: string.Empty);
if (string.IsNullOrEmpty(value: path))
{
// 返回 GetPath。
goto GetPath;
}
else
{
// 執行翻譯。
int result = Translate(sourcePath: path, enableDebug: false);
// 判斷執行結果,當值不為 0 則表示有發生錯誤。
if (result == 0)
{
WriteLog(value: string.Empty);
WriteLog(value: "請按任意按鍵以結束應用程式……");
// 取得使用者點擊的按鍵。
Console.ReadKey();
}
else
{
// 返回 GetPath。
goto GetPath;
}
}
}
catch (Exception ex)
{
WriteLog(value: ex.ToString());
}
#region 方法
// 翻譯。
int Translate(string sourcePath, bool enableDebug = false)
{
try
{
if (!Directory.Exists(sourcePath))
{
WriteLog(value: $"發生錯誤,資料夾「{sourcePath}」不存在!");
WriteLog(value: string.Empty);
return -1;
}
// 目標語系字串。
string targetLang = "zh_CN",
targetZipFilePath = @$"C:\Users\{Environment.UserName}\Desktop\Warudo_Lang-zh_CN-Backup_{DateTime.Now:yyyyMMddHHmmss}.zip";
// 篩選出檔案名稱中包含目標語系字串的 JSON 檔案。
string[] files = Directory.GetFiles(sourcePath).Where(n => Path.GetFileName(n).Contains(targetLang) && Path.GetExtension(n) == ".json").ToArray();
#region 先用 ZIP 格式的壓縮檔案備份原始檔案
using ZipFile zipFile = new(targetZipFilePath);
zipFile.AlternateEncoding = Encoding.UTF8;
zipFile.AlternateEncodingUsage = ZipOption.AsNecessary;
zipFile.UseZip64WhenSaving = Zip64Option.AsNecessary;
zipFile.CompressionLevel = CompressionLevel.BestCompression;
zipFile.AddFiles(files, string.Empty);
zipFile.Save();
#endregion
WriteLog(value: $"已建立備份用 ZIP 格式的壓縮檔案,檔案路徑:{targetZipFilePath}");
WriteLog(value: string.Empty);
// 開始依序處理 JSON 檔案。
foreach (string file in files)
{
StringBuilder stringBuilder = new();
using JsonWriter jsonWriter = new JsonTextWriter(new StringWriter(sb: stringBuilder));
// 設定 JSON 內容的格式。
jsonWriter.Formatting = Formatting.Indented;
// 讀取檔案的文字內容。
string textContent = File.ReadAllText(path: file);
// 載入 JSON 的內容。
using JsonTextReader jsonTextReader = new(new StringReader(s: textContent));
#region 開始依序處理 JSON 的內容
while (jsonTextReader.Read())
{
if (enableDebug)
{
if (jsonTextReader.Value == null)
{
WriteLog(value: $"[Debug] 標誌:{jsonTextReader.TokenType}");
WriteLog(value: string.Empty);
}
else
{
WriteLog(value: $"[Debug] 標誌:{jsonTextReader.TokenType},值:{jsonTextReader.Value}");
WriteLog(value: string.Empty);
}
}
// 判斷 jsonTextReader 的 TokenType 並對 jsonWriter 執行相對應的行為。
switch (jsonTextReader.TokenType)
{
case JsonToken.StartObject:
jsonWriter.WriteStartObject();
break;
case JsonToken.EndObject:
jsonWriter.WriteEndObject();
break;
case JsonToken.StartConstructor:
jsonWriter.WriteStartConstructor(name: jsonTextReader.Value?.ToString() ?? string.Empty);
break;
case JsonToken.EndConstructor:
jsonWriter.WriteEndConstructor();
break;
case JsonToken.StartArray:
jsonWriter.WriteStartArray();
break;
case JsonToken.EndArray:
jsonWriter.WriteEndArray();
break;
case JsonToken.Comment:
jsonWriter.WriteComment(GetStringValue(value: jsonTextReader.Value));
break;
case JsonToken.PropertyName:
jsonWriter.WritePropertyName(name: jsonTextReader.Value?.ToString() ?? string.Empty);
break;
case JsonToken.String:
jsonWriter.WriteValue(GetStringValue(value: jsonTextReader.Value));
break;
case JsonToken.Integer:
jsonWriter.WriteValue(Convert.ToInt32(value: jsonTextReader.Value));
break;
case JsonToken.Float:
jsonWriter.WriteValue(Convert.ToSingle(value: jsonTextReader.Value));
break;
case JsonToken.Boolean:
jsonWriter.WriteValue(Convert.ToBoolean(value: jsonTextReader.Value));
break;
case JsonToken.Date:
jsonWriter.WriteValue(Convert.ToDateTime(value: jsonTextReader.Value));
break;
case JsonToken.Bytes:
jsonWriter.WriteValue(Convert.ToByte(value: jsonTextReader.Value));
break;
case JsonToken.Raw:
jsonWriter.WriteRaw(GetStringValue(value: jsonTextReader.Value));
break;
case JsonToken.Null:
jsonWriter.WriteNull();
break;
case JsonToken.Undefined:
jsonWriter.WriteUndefined();
break;
case JsonToken.None:
break;
default:
break;
}
}
#endregion
// 覆寫原本的 JSON 檔案。
using StreamWriter streamWriter = new(path: file, append: false, Encoding.UTF8);
streamWriter.Write(value: stringBuilder.ToString());
string fileName = Path.GetFileName(path: file);
WriteLog(value: $"已將 JSON 檔案「{fileName}」從「簡體中文」轉換成「正體中文」!");
}
return 0;
}
catch (Exception ex)
{
WriteLog(value: $"發生錯誤:{ex}");
return -1;
}
}
// 取得字串值。
string GetStringValue(object? value, bool isIdiomConvert = true)
{
string textValue = Convert.ToString(value) ?? string.Empty;
if (!string.IsNullOrEmpty(textValue))
{
// 從簡體中文轉換成正體中文。
textValue = ZhConverter.HansToTW(text: textValue, isIdiomConvert: isIdiomConvert);
// 後處理替換字詞。
textValue = PostReplacePhrases(value: textValue);
}
return textValue;
}
// 後處理替換字詞。
string PostReplacePhrases(string value)
{
// 當 DictReplacePhrases 有內容時才進行進一步的字詞替換。
if (DictReplacePhrases.Count <= 0)
{
return value;
}
// 批次比對字串跟替換詞。
// ※不是很好的做法,尤其當資料量一大時,可能會有可觀的效能問題。
for (int i = 0; i < DictReplacePhrases.Count; i++)
{
KeyValuePair<string, string> element = DictReplacePhrases.ElementAtOrDefault(i);
if (value.Contains(element.Key))
{
value = value.Replace(element.Key, element.Value);
}
}
return value;
}
// 設定 OpenCC 字典的替換字詞。
void SetDictionaryReplacePhrases()
{
// 查詢 ReplacePhrases.txt。
string? file = Directory.GetFiles(AppContext.BaseDirectory)
.FirstOrDefault(n => Path.GetFileNameWithoutExtension(n) == "ReplaceDictionary" &&
Path.GetExtension(n) == ".txt");
if (string.IsNullOrEmpty(file))
{
return;
}
// 讀取檔案內的每一行。
string[] lines = File.ReadAllLines(path: file);
if (lines.Length <= 0)
{
return;
}
WriteLog(value: "已找到 ReplaceDictionary.txt 檔案,正在設定 OpenCC 字典的替換字詞……");
int okayCount = 0;
foreach (string line in lines)
{
// 判斷是否為空行或是註解行。
if (string.IsNullOrEmpty(line) || line.StartsWith('#'))
{
continue;
}
// 使用分隔分符號拆分每一行的內容。
// 索引值:0 -> 鍵值,1 -> 替換詞。
string[] tempArray = line.Split(separators, StringSplitOptions.RemoveEmptyEntries);
// 判斷 tempArray 的長度是否等於 2。
if (tempArray.Length != 2)
{
continue;
}
else
{
// 先移除,再新增,用以避免鍵值已存在的錯誤。
ZhConverter.ZhDictionary.TWPhrases.Remove(tempArray[0]);
ZhConverter.ZhDictionary.TWPhrases.Add(tempArray[0], tempArray[1]);
// 累計成功次數。
okayCount++;
}
}
if (okayCount > 0)
{
WriteLog(value: $"OpenCC 字典的替換字詞設定完成,共已替換 {okayCount} 個字詞。");
}
else
{
WriteLog(value: "取消設定 OpenCC 字典的替換字詞,因無有效的字詞內容可供替換。");
}
WriteLog(value: string.Empty);
}
// 設定替換用的字詞。
void SetReplacePhrases()
{
// 查詢 ReplacePhrases.txt。
string? file = Directory.GetFiles(AppContext.BaseDirectory)
.FirstOrDefault(n => Path.GetFileNameWithoutExtension(n) == "ReplacePhrases" &&
Path.GetExtension(n) == ".txt");
if (string.IsNullOrEmpty(file))
{
return;
}
// 讀取檔案內的每一行。
string[] lines = File.ReadAllLines(path: file);
if (lines.Length <= 0)
{
return;
}
WriteLog(value: "已找到 ReplacePhrases.txt 檔案,正在設定替換用的字詞……");
int okayCount = 0;
foreach (string line in lines)
{
// 判斷是否為空行或是註解行。
if (string.IsNullOrEmpty(line) || line.StartsWith('#'))
{
continue;
}
// 使用分隔分符號拆分每一行的內容。
// 索引值:0 -> 鍵值,1 -> 替換詞。
string[] tempArray = line.Split(separators, StringSplitOptions.RemoveEmptyEntries);
// 判斷 tempArray 的長度是否等於 2。
if (tempArray.Length != 2)
{
continue;
}
else
{
// 當鍵值不存在於 DictReplacePhrases 時才新增。
if (!DictReplacePhrases.ContainsKey(tempArray[0]))
{
DictReplacePhrases.Add(tempArray[0], tempArray[1]);
}
// 累計成功次數。
okayCount++;
}
}
if (okayCount > 0)
{
WriteLog(value: $"替換用的字詞載入完成,共載入 {okayCount} 個字詞。");
}
else
{
WriteLog(value: "取消設定替換用的字詞,因無有效的字詞內容可供替換。");
}
WriteLog(value: string.Empty);
}
// 寫紀錄。
void WriteLog(string? value, bool withTimestamp = false)
{
Console.WriteLine($"{(withTimestamp ? $"[{DateTime.Now:yyyy/MM/dd HH:mm:ss} ]" : string.Empty)}{value}");
}
// 取得版本號。
string GetVersion()
{
Version? version = Assembly.GetExecutingAssembly().GetName().Version;
if (version != null)
{
return $" v{version}";
}
return string.Empty;
}
#endregion