-
Notifications
You must be signed in to change notification settings - Fork 13
/
plugin.dle.js
133 lines (109 loc) · 4.19 KB
/
plugin.dle.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
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
'use strict';
const crypto = require('crypto');
const pinyin = require('pinyin');
const makePinyin = (text) => {
const tokens = pinyin.pinyin(text, {
style: 'TONE2',
segment: '@node-rs/jieba',
});
const result = [];
let j = 0;
for (const i in tokens) {
const match = tokens[i][0].match(/^([bcdfghjklmnpqrstwxyz]|ch|sh|zh|)([aeiouv]+(?:n|ng|)|n|ng|er)(\d?)$/);
if (match) {
if (match[2] === 'n') {
match[2] = 'en';
}
if (match[2] === 'ng') {
match[2] = 'eng';
}
result.push([text[j], match[1], match[2], match[3]]);
j += 1;
} else {
j += tokens[i][0].length;
}
}
return result;
};
module.exports = (bot, event, playerEvent, env) => {
bot.onText(/^\/(\d+)dle(@\w+)? ([\u4e00-\u9fff]+)$/, event((msg, match) => {
msg.chat.mapped = 0;
const length = parseInt(match[1], 10);
const guessPinyin = makePinyin(match[3]);
if (guessPinyin.length === length) {
const fetched = env.command.fetchCommand(msg, match[1]);
let targetHash = '';
let targetPinyin = null;
for (const i in fetched) {
const command = fetched[i];
if (command.text) {
const md5sum = crypto.createHash('md5');
md5sum.update(command.text + msg.from.id + Math.floor(Date.now() / 86400000));
const hash = md5sum.digest('hex');
if (targetHash < hash) {
const currentPinyin = makePinyin(command.text);
if (currentPinyin.length === length) {
targetHash = hash;
targetPinyin = currentPinyin;
}
}
}
}
for (let i = 0; i < 4; i += 1) {
const guessCounts = {};
const targetCounts = {};
const pos = [];
for (let j = 0; j < length; j += 1) {
if (guessPinyin[j][i] === targetPinyin[j][i]) {
pos.push(0);
} else {
guessCounts[guessPinyin[j][i]] = (guessCounts[guessPinyin[j][i]] || 0) + 1;
targetCounts[targetPinyin[j][i]] = (targetCounts[targetPinyin[j][i]] || 0) + 1;
pos.push(guessCounts[guessPinyin[j][i]]);
}
}
for (let j = 0; j < length; j += 1) {
if (guessPinyin[j][i]) {
if (pos[j]) {
if (pos[j] <= (targetCounts[guessPinyin[j][i]] || 0)) {
guessPinyin[j][i] = '<i>' + guessPinyin[j][i] + '</i>';
} else {
guessPinyin[j][i] = '<tg-spoiler>' + guessPinyin[j][i] + '</tg-spoiler>';
}
} else {
guessPinyin[j][i] = '<b>' + guessPinyin[j][i] + '</b>';
}
}
}
}
let text = '猜短语\n'
+ '<b>粗体</b> 表示字或拼音正确\n'
+ '<i>斜体</i> 表示字或拼音存在,但位置错误\n'
+ '每天 UTC 零点更新\n';
for (let i = 0; i < length; i += 1) {
text += '\n' + guessPinyin[i][0] + ' ' + guessPinyin[i][1] + guessPinyin[i][2] + guessPinyin[i][3];
}
bot.sendMessage(
msg.chat.id,
text,
{
parse_mode: 'HTML',
reply_to_message_id: msg.message_id,
}
);
} else {
bot.sendMessage(
msg.chat.id,
'长度不对哟',
{
reply_to_message_id: msg.message_id,
}
);
}
}, 2));
env.info.addPluginHelp(
'dle',
'/4dle <guess> 猜四字短语\n'
+ '/12dle <guess> 猜十二字短语'
);
};