-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathcore.js
84 lines (77 loc) · 2.53 KB
/
core.js
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
/** last changed: 2019.8.23 */
Shuang.core.model = class Model {
constructor(sheng = '', yun = '') {
this.sheng = sheng.toLowerCase()
this.yun = yun.toLowerCase()
this.dict = Shuang.resource.dict[this.sheng][this.yun]
this.scheme = new Set()
this.view = {
sheng: this.sheng.toUpperCase().slice(0, 1) + this.sheng.slice(1),
yun: this.yun
}
}
beforeJudge() {
this.scheme.clear()
const schemeName = Shuang.app.setting.config.scheme
const schemeDetail = Shuang.resource.scheme[schemeName].detail
const pinyin = this.sheng + this.yun
if (schemeDetail.other[pinyin]) {
if (Array.isArray(schemeDetail.other[pinyin])) {
schemeDetail.other[pinyin].forEach(other => this.scheme.add(other))
} else {
this.scheme.add(schemeDetail.other[pinyin])
}
} else {
for (const s of schemeDetail.sheng[this.sheng]) {
for (const y of schemeDetail.yun[this.yun]) {
this.scheme.add(s + y)
}
}
if (this.yun === 'u' && 'jqxy'.includes(this.sheng)) {
for (const s of schemeDetail.sheng[this.sheng]) {
for (const y of schemeDetail.yun.v) {
this.scheme.add(s + y)
}
}
}
}
}
judge(sheng = '', yun = '') {
this.beforeJudge()
return this.scheme.has(sheng.toLowerCase() + yun.toLowerCase())
}
static getRandom() {
const sheng = Shuang.resource.dict.list[Math.floor(Math.random() * Shuang.resource.dict.list.length)]
const yun = Shuang.resource.dict[sheng].list[Math.floor(Math.random() * Shuang.resource.dict[sheng].list.length)]
const instance = new Model(sheng, yun)
return Model.isSame(instance, Shuang.core.current) ? Model.getRandom() : instance
}
static getHardRandom() {
let instance = undefined
do {
instance = Model.getRandom()
} while (instance.sheng === '' || instance.yun.length === 1)
return instance
}
static getByOrder() {
while (true) {
const sheng = Shuang.resource.dict.list[Shuang.core.order.shengIndex]
if (sheng !== undefined) {
const yun = Shuang.resource.dict[sheng].list[Shuang.core.order.yunIndex]
if (yun) {
Shuang.core.order.yunIndex++
return new Model(sheng, yun)
}
}
if (Shuang.core.order.yunIndex === 0) {
Shuang.core.order.shengIndex = 0
} else {
Shuang.core.order.shengIndex++
Shuang.core.order.yunIndex = 0
}
}
}
static isSame(a, b) {
return a.sheng === b.sheng && a.yun === b.yun
}
}