This repository has been archived by the owner on Feb 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 230
/
zsyAnswer.js
356 lines (346 loc) · 13.8 KB
/
zsyAnswer.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
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
importClass(android.database.sqlite.SQLiteDatabase);
var lCount = 1;//挑战答题轮数
var qCount = 10;//挑战答题每轮答题数
var zCount = 2;//争上游答题轮数
/**
* @description: 延时函数
* @param: seconds-延迟秒数
* @return: null
*/
function delay(seconds) {
sleep(1000 * seconds);//sleep函数参数单位为毫秒所以乘1000
}
/**
* @description: 生成从minNum到maxNum的随机数
* @param: minNum-较小的数
* @param: maxNum-较大的数
* @return: null
*/
function randomNum(minNum, maxNum) {
switch (arguments.length) {
case 1:
return parseInt(Math.random() * minNum + 1, 10);
case 2:
return parseInt(Math.random() * (maxNum - minNum + 1) + minNum, 10);
default:
return 0;
}
}
/**
* @description: 从数据库中搜索答案
* @param: question 问题
* @return: answer 答案
*/
function getAnswer(question, table_name) {
var dbName = "tiku.db";//题库文件名
var path = files.path(dbName);
var db = SQLiteDatabase.openOrCreateDatabase(path, null);
sql = "SELECT answer FROM " + table_name + " WHERE question LIKE '%" + question + "%'"// 关键词前后都加%,增加搜索准确率
//log(sql)
var cursor = db.rawQuery(sql, null);
if (cursor.moveToFirst()) {
var answer = cursor.getString(0);
cursor.close();
return answer;
}
else {
console.log("题库中未找到答案");
cursor.close();
return '';
}
}
function indexFromChar(str) {
return str.charCodeAt(0) - "A".charCodeAt(0);
}
/**
* @description: 争上游答题 20200928增加
* @param: null
* @return: null
*/
function zsyQuestion() {
/*
text("我的").click();
if (!textContains("我要答题").exists()) {
delay(1);
click("我要答题");
}else {
(!text("我要答题").exists());
delay(1);
text("我要答题").click();
}
while (!text("答题练习").exists());//可用词:排行榜 答题竞赛
delay(1);
className("android.view.View").text("答题练习").findOne().parent().child(8).click();
console.log("开始争上游答题")
delay(2);
*/
if (className("android.view.View").text("开始比赛").exists()) {
className("android.view.View").text("开始比赛").findOne().click();
}
delay(10);
let zNum = 0;//轮数
while (true) {
if (className("RadioButton").exists()) {
zsyQuestionLoop();
}
if (className("android.view.View").text("继续挑战").exists() || textContains("继续挑战").exists())//遇到继续挑战,则本局结束
{
console.info("争上游答题本局结束!");
zNum++;
//当天上限两次
if (className("android.view.View").text("非积分奖励局").exists()) {
console.info("今天已完成争上游答题!");
zNum++;
}//
if (zNum >= zCount) {
console.log("争上游答题结束");
//回退4次返回主页
delay(1);
back();
break;
} else {
console.log("即将开始下一轮...")
delay(2);//等待2秒开始下一轮
back();
delay(1);
back();
while (!text("答题练习").exists());//排行榜 答题竞赛
delay(1);
className("android.view.View").text("答题练习").findOne().parent().child(8).click();
console.log("开始争上游答题")
delay(2);
if (className("android.view.View").text("开始比赛").exists()) {
className("android.view.View").text("开始比赛").findOne().click();
}
delay(10);
}
console.warn("第" + zNum.toString() + "轮开始...")
}
}
}
/**
* @description: 双人对战答题 20200928增加
* @param: null
* @return: null
*/
function SRQuestion() {
/*
text("我的").click();
if (!textContains("我要答题").exists()) {
delay(1);
click("我要答题");
} else {
(!text("我要答题").exists());
delay(1);
text("我要答题").click();
}
while (!text("答题练习").exists());//可用词:排行榜 答题竞赛
delay(1);
className("android.view.View").text("答题练习").findOne().parent().child(9).click();
console.log("开始双人对战")
delay(2);
if(className("android.view.View").text("邀请对手").exists()){
className("android.view.View").text("邀请对手").findOne().parent().child(0).click();
}
delay(1);
*/
if (className("android.view.View").text("邀请对手").exists()) {
className("android.view.View").text("邀请对手").findOne().parent().child(0).click();
}
delay(2)
if (className("android.view.View").text("开始对战").exists()) {
className("android.view.View").text("开始对战").findOne().click();
}
delay(10);
let zNum = 1;//轮数
while (true) {
zsyQuestionLoop();
if (className("android.view.View").text("继续挑战").exists() || textContains("继续挑战").exists())//遇到继续挑战,则本局结束
{
console.info("双人对战本局结束!");
zNum++;
if (zNum >= zCount) {
console.log("双人对战结束!返回主页!");
//回退4次返回主页
back(); delay(1);
back(); delay(1);
if (text("退出").exists()) {
className("android.widget.Button").text("退出").findOne().click();
delay(1);
}
break;
} else {
console.log("即将开始下一轮...")
back();
delay(1);
back();
delay(1);
if (textContains("退出").exists()) {
className("android.widget.Button").text("退出").findOne().click();
delay(1);
}
while (!text("答题练习").exists());//排行榜 答题竞赛
delay(1);
console.log("开始双人对战")
delay(2);
if (className("android.view.View").text("邀请对手").exists()) {
className("android.view.View").text("邀请对手").findOne().parent().child(0).click();
}
delay(1);
if (className("android.view.View").text("开始对战").exists()) {
className("android.view.View").text("开始对战").findOne().click();
}
delay(10);
}
console.warn("第" + zNum.toString() + "轮开始...")
}
}
}
/**
* @description: 争上游答题 双人对战答题循环
* @param: null
* @return: null
*/
var oldaquestion;//全局变量,定义旧题目,对比新题目用
function zsyQuestionLoop() {
//delay(1);
if (className("android.view.View").text("继续挑战").exists() || textContains("继续挑战").exists() || !className("RadioButton").exists()) {//不存在本局结束标志 继续挑战,则执行
console.info("答题结束!");
return;
} else {
while (!className("RadioButton").exists());//@KB64ba建议使用while判断
if (className("RadioButton").exists() || aquestion.length == 0) {
var aquestion = className("ListView").findOnce().parent().child(0).text();
var question = aquestion.substring(4); //争上游和对战题目前带1.2.3.需去除
//找题目,防出错
while (aquestion == oldaquestion || question == "") {
delay(0.8);
if (className("android.view.View").text("继续挑战").exists() || textContains("继续挑战").exists() || !className("RadioButton").exists()) {
console.info("答题结束!");
return;
}
//找题目
aquestion = className("ListView").findOnce().parent().child(0).text();
question = aquestion.substring(3);
}
//
} else {
console.error("提取题目失败!");
let listArray = className("ListView").findOnce().children();//题目选项列表
let i = random(0, listArray.length - 1);
console.log("随机点击");
listArray[i].child(0).click();//随意点击一个答案
return;
}
var chutiIndex = question.lastIndexOf("出题单位");//@chongyadong添加
if (chutiIndex != -1) {
question = question.substring(0, chutiIndex - 2);
}
question = question.replace(/\s/g, "");
var options = [];//选项列表
if (className("RadioButton").exists()) {
className("ListView").findOne().children().forEach(child => {
var answer_q = child.child(0).child(1).text();
options.push(answer_q);
});
} else {
console.error("答案获取失败!");
return;
}
//
if (aquestion != oldaquestion) {
console.log(aquestion.substring(0, 2) + "题目:" + question);
reg = /.*择词语的正确.*/g // 正则判断是否为字形
if (reg.test(question)) {
//log(options)
var optionStr = options;
for (i in optionStr) {//替换搜索用的数组
optionStr[i] = options[i].substring(3);
}
var optionStr = options.join("");
question = question + optionStr;
question = question.substr(1);//开头删除一个字
question = question.substr(0, question.length - 1);//结尾删除一个字,增加搜索的准确率
} else {
question = question.substr(1);//开头删除一个字
question = question.substr(0, question.length - 1);//结尾删除一个字,增加搜索的准确率
}
var answer = getAnswer(question, 'tiku');
if (answer.length == 0) {//tiku表中没有则到tikuNet表中搜索答案
answer = getAnswer(question, 'tikuNet');
}
console.info("答案:" + answer);
if (/^[a-zA-Z]{1}$/.test(answer)) {//如果为ABCD形式
var indexAnsTiku = indexFromChar(answer.toUpperCase());
answer = options[indexAnsTiku];
toastLog("answer from char=" + answer);
}
let hasClicked = false;
let listArray = className("ListView").findOnce().children();//题目选项列表
/* if (answer == "")*/ //如果没找到答案
if (answer.length == 0) {
let i = random(0, listArray.length - 1);
console.error("没有找到答案,随机点击");
listArray[i].child(0).click();//随意点击一个答案
hasClicked = true;
console.log("---------------------------");
}
else//如果找到了答案
{ //该部分问题: 选项带A.B.C.D.,题库返回答案不带,char返回答案带
var answer_a = answer.substring(0, 2);//定义answer_a,获取答案前两个字符对比A.B.C.D.应该不会出现E选项
if (answer_a == "A." || answer_a == "B." || answer_a == "C." || answer_a == "D.") {
listArray.forEach(item => {
var listDescStrb = item.child(0).child(1).text();
if (listDescStrb == answer) {
item.child(0).click();//点击答案
hasClicked = true;
console.log("---------------------------");
}
});
} else {
listArray.forEach(item => {
var listDescStra = item.child(0).child(1).text();
var listDescStrb = listDescStra.substring(3);//选项去除A.B.C.D.再与answer对比
if (listDescStrb == answer) {
item.child(0).click();//点击答案
hasClicked = true;
console.log("---------------------------");
}
});
}
}
if (!hasClicked)//如果没有点击成功
{
console.error("未能成功点击,随机点击");
let i = random(0, listArray.length - 1);
listArray[i].child(0).click();//随意点击一个答案
console.log("---------------------------");
}
}
//旧题目
oldaquestion = aquestion;
delay(1);
}
}
//争上游部分
function main() {
console.setPosition(0, device.height / 2);
console.show();
delay(1);
if (className("android.view.View").text("开始比赛").exists()) {//争上游答题开始页
console.log("开始争上游答题");
zsyQuestion();
} else {
if (className("android.view.View").text("开始对战").exists()) {//双人对战开始页
console.log("开始双人对战答题");
SRQuestion();
} else {
// toastLog("没有找到 “争上游答题”或“双人对战” 的开始页!请检查是否进入相关界面!");
console.error("没有找到 “争上游答题”或“双人对战” 开始页!请检查是否进入相关界面!");
console.log("停止");
console.hide();
}
}
}
//main()
module.exports = main;