fe4af3a86e
commit da4acc764651ee2b5bb83ae9c4afb0e910f49ce9 Author: Dvel <git@dvel.me> Date: Fri Feb 24 02:00:30 2023 +0800 萌萌哒 commit 0fb437d852e19b11a89cd2778e41f0252d216f2f Author: Dvel <git@dvel.me> Date: Fri Feb 24 01:40:00 2023 +0800 搞定了啦 commit 52d2fecc25424cd82eca876fb21276725c3891da Author: Dvel <git@dvel.me> Date: Fri Feb 24 01:16:02 2023 +0800 fix commit 656162e42c879f914ca31a4cf049141efc7628de Author: Dvel <git@dvel.me> Date: Fri Feb 24 00:59:29 2023 +0800 基本逻辑完成 commit 8594874035a84016496b15357ebbd6ac54b52725 Author: Dvel <git@dvel.me> Date: Thu Feb 23 23:56:44 2023 +0800 引入萌娘词库
64 lines
1.8 KiB
Go
64 lines
1.8 KiB
Go
package main
|
||
|
||
import (
|
||
"fmt"
|
||
"log"
|
||
"os"
|
||
"script/rime"
|
||
"strings"
|
||
)
|
||
|
||
func main() {
|
||
log.SetFlags(log.LstdFlags | log.Lshortfile)
|
||
|
||
// 临时用的
|
||
// rime.Temp()
|
||
// return
|
||
|
||
// Emoji 检查和更新
|
||
rime.CheckEmoji()
|
||
rime.UpdateEmojiTXT()
|
||
fmt.Println("--------------------------------------------------")
|
||
|
||
// 更新搜狗流行词
|
||
rime.UpdateSogou()
|
||
fmt.Println("--------------------------------------------------")
|
||
|
||
// 为 sogou、ext、tencent 没权重的词条加上权重,有权重的改为下面设置的权重
|
||
rime.AddWeight(rime.SogouPath, rime.DefaultWeight)
|
||
rime.AddWeight(rime.MoegirlPath, rime.DefaultWeight)
|
||
rime.AddWeight(rime.ExtPath, rime.DefaultWeight)
|
||
rime.AddWeight(rime.TencentPath, rime.DefaultWeight)
|
||
fmt.Println("--------------------------------------------------")
|
||
|
||
// 通用检查
|
||
// flag: 1 只有汉字,2 汉字+注音,3 汉字+注音+权重,4 汉字+权重。
|
||
go rime.Check(rime.HanziPath, 3)
|
||
go rime.Check(rime.BasePath, 3)
|
||
go rime.Check(rime.SogouPath, 3)
|
||
go rime.Check(rime.MoegirlPath, 3)
|
||
go rime.Check(rime.ExtPath, 4)
|
||
go rime.Check(rime.TencentPath, 4)
|
||
|
||
wait()
|
||
|
||
// 排序
|
||
rime.Sort(rime.HanziPath, 3)
|
||
rime.Sort(rime.BasePath, 3)
|
||
rime.Sort(rime.SogouPath, 3) // 对 base 中已经有的,去重
|
||
rime.Sort(rime.MoegirlPath, 3) // 对 base、sogou 中已经有的,去重
|
||
rime.Sort(rime.ExtPath, 4) // 对 base、sogou、moegirl 中已经有的,去重
|
||
rime.Sort(rime.TencentPath, 4) // 对 base、sogou、moegirl、ext 中已经有的,去重
|
||
// rime.SortEnDict(rime.EnPath)
|
||
}
|
||
|
||
func wait() {
|
||
fmt.Println("检查完成后输入 OK 以继续。。。")
|
||
var isOK string
|
||
_, _ = fmt.Scanf("%s", &isOK)
|
||
if strings.ToLower(isOK) != "ok" {
|
||
os.Exit(123)
|
||
}
|
||
fmt.Println("--------------------------------------------------")
|
||
}
|