forked from dundunnp/auto_xuexiqiangguo
-
Notifications
You must be signed in to change notification settings - Fork 14
/
学习强国.js
1677 lines (1556 loc) · 62.7 KB
/
学习强国.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
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* 检查和设置运行环境
* @param whether_improve_accuracy {String} 是否提高ocr精度 "yes":开启; "no"(默认):不开启
* @param AK {String} 百度API KEY
* @param SK {String} 百度Secret KEY
* @return {int} 静音前的音量
*/
function check_set_env(whether_improve_accuracy, AK, SK) {
// 检查无障碍服务是否已经启用
auto.waitFor();
// 检查在选择提高精确度的情况下,AK和SK是否填写
if (whether_improve_accuracy == "yes" && (!AK || !SK)) {
toastLog("如果你选择了增强版,请配置信息,具体看脚本说明");
exit();
}
// 检查Hamibot版本是否支持ocr
if (app.versionName < "1.3.1") {
toastLog("请将Hamibot更新至v1.3.1版本或更高版本");
exit();
}
// 保持屏幕唤醒状态30分钟
device.keepScreenDim(30 * 60 * 1000);
//请求横屏截图权限
threads.start(function () {
try {
var beginBtn;
if (beginBtn = classNameContains("Button").textContains("开始").findOne(delay_time));
else if (beginBtn = classNameContains("Button").textContains("允许").findOne(delay_time));
else if (beginBtn = classNameContains("Button").textContains("ALLOW").findOne(delay_time));
else (beginBtn = classNameContains("Button").textContains("Start").findOne(delay_time));
beginBtn.click();
} catch (error) {
}
});
requestScreenCapture(false);
// 获得原来的媒体音量并静音,后面调回去
var vol = device.getMusicVolume();
device.setMusicVolume(0);
return vol;
}
/**
* 获取配置参数及本地存储数据
*/
// 基础数据
var { new_hami } = hamibot.env;
var { delay_time } = hamibot.env;
var { whether_improve_accuracy } = hamibot.env;
var { whether_complete_subscription } = hamibot.env;
var { whether_complete_speech } = hamibot.env;
var { pushplus_token } = hamibot.env;
var { all_completed_Vibrate } = hamibot.env;
delay_time = Number(delay_time) * 1000;
// 调用百度api所需参数
var { AK, SK } = hamibot.env;
// 本地存储数据
var storage = storages.create("data");
// 更新题库为answer_question_map
storage.remove("answer_question_map1");
var vol = check_set_env(whether_improve_accuracy, AK, SK);
/**
* 定义HashTable类(貌似hamibot有问题,无法定义class, 因此写为函数),用于存储本地题库,查找效率更高
* 由于hamibot不支持存储自定义对象和new Map(),因此这里用列表存储自己实现
* 在存储时,不需要存储整个question,可以仅根据选项来对应question,这样可以省去ocr题目的花费
* 但如果遇到选项为special_problem数组中的模糊词,无法对应question,则需要存储整个问题
*/
var answer_question_map = [];
// 当题目为这些词时,题目较多会造成hash表上的一个index过多,此时存储其选项
var special_problem = "选择正确的读音 选择词语的正确词形 下列词形正确的是 选择正确的字形 下列词语字形正确的是";
// 当题目为这些词时,在线搜索书名号和逗号后的内容
var special_problem2 = "根据《中国共 根据《中华人 《中华人民共 根据《化妆品";
var special_problem3 = "下列选项中,";
/**
* hash函数,7853质数,重新算出的最优值,具体可以看评估代码
* @param string {String} 需要计算hash值的String
* @return {int} string的hash值
*/
function get_hash(string) {
var hash = 0;
for (var i = 0; i < string.length; i++) {
hash += string.charCodeAt(i);
}
return hash % 7853;
}
/**
* 将题目和答案存入answer_question_map
* @param key {String} 键:表示题目的问题
* @param value {String} 值:表示题目的答案
* @return void
*/
function map_set(key, value) {
var index = get_hash(key);
if (answer_question_map[index] === undefined) {
answer_question_map[index] = [
[key, value]
];
} else {
// 去重
for (var i = 0; i < answer_question_map[index].length; i++) {
if (answer_question_map[index][i][0] == key) {
return null;
}
}
answer_question_map[index].push([key, value]);
}
};
/**
* 根据题目在answer_question_map中搜索答案
* @param key {String} 键:表示题目的问题
* @return {String} 题目的答案,如果没有搜索到则返回null
*/
function map_get(key) {
var index = get_hash(key);
if (answer_question_map[index] != undefined) {
for (var i = 0; i < answer_question_map[index].length; i++) {
if (answer_question_map[index][i][0] == key) {
return answer_question_map[index][i][1];
}
}
}
return null;
};
//pushplus推送校验
if (pushplus_token) {
if (!storage.contains("token_check_storage")) {
storage.put("token_check_storage", "0");
}
if (!storage.contains("account_check_storage")) {
storage.put("account_check_storage", "学习强国");
}
if (!storage.contains("day_check_storage")) {
storage.put("day_check_storage", 32);
}
if (!storage.contains("score_check_storage")) {
storage.put("score_check_storage", 99);
}
var token_check0 = storage.get("token_check_storage");
var account_check0 = storage.get("account_check_storage");
var day_check0 = storage.get("day_check_storage");
var score_check0 = storage.get("score_check_storage");
/**
* 低电量提醒微信推送
//多账号可指定推送第一个的token
*/
if (!device.isCharging() && Number(device.getBattery()) < 20) {
let style_str = '<style>.item{height:1.5em;line-height:1.5em;}.item span{display:inline-block;padding-left:0.4em;}\
.item .bar{width:100px;height:10px;background-color:#ddd;border-radius:5px;display:inline-block;}\
.item .bar div{height:10px;background-color:#ed4e45;border-radius:5px;}</style>';
var PP4 = device.getBattery() + '%';
var message_str = '<h6>关联设备的电量为:' + PP4 + '</h6><div>';
message_str += '<div class="item"><div class="bar"><div style="width: ' + PP4 + ';"></div></div></div></div>' + style_str;
// 推送消息
http.postJson(
"http://www.pushplus.plus/send",
{
token: pushplus_token,
title: "电量较低,请及时给设备充电",
content: message_str,
template: "markdown",
}
);
toastLog("电量低消息已推送到微信");
}
}
/**
* 开始运行学习脚本
*/
sleep(random_time(delay_time));
if (new_hami) launch('com.dingdin.dingdio');
else launch('com.hamibot.hamibot');
textMatches(/Hamibot|蜜瓜软件|日志/).waitFor();
toastLog("主脚本(旧)正在运行");
sleep(random_time(delay_time));
/**
* 定时更新题库,通过在线访问辅助文件判断题库是否有更新
*/
if (!storage.contains("answer_question_bank_update_storage")) {
storage.put("answer_question_bank_update_storage", 0);
storage.remove("answer_question_map");
}
var date = new Date();
// 每周六定时检测更新题库,周日为0
if (date.getDay() == 6) {
var answer_question_bank_update = storage.get("answer_question_bank_update_storage");
if (answer_question_bank_update) {
var answer_question_bank_checked = http.get("https://ghproxy.com/https://raw.githubusercontent.com/McMug2020/XXQG_TiKu/main/0.json");
if ((answer_question_bank_checked.statusCode >= 200 && answer_question_bank_checked.statusCode < 300)) storage.remove("answer_question_map");
} else {
var answer_question_bank_checked = http.get("https://ghproxy.com/https://raw.githubusercontent.com/McMug2020/XXQG_TiKu/main/1.json");
if ((answer_question_bank_checked.statusCode >= 200 && answer_question_bank_checked.statusCode < 300)) storage.remove("answer_question_map");
}
}
// 或设定每月某日定时检测更新
//if (date.getDate() == 28){
//}
/**
* 通过Http更新\下载题库到本地,并进行处理,如果本地已经存在则无需下载
* @return {List} 题库
*/
function map_update() {
toastLog("正在下载题库");
// 使用 GitHub 上存放的题库
var answer_question_bank = http.get("https://ghproxy.com/https://raw.githubusercontent.com/McMug2020/XXQG_TiKu/main/%E9%A2%98%E5%BA%93_McMug2020.json");
sleep(2500);
// 如果资源过期或无法访问则换成别的地址
if (!(answer_question_bank.statusCode >= 200 && answer_question_bank.statusCode < 300)) {
// 使用XXQG_TiKu挑战答题腾讯云题库地址
var answer_question_bank = http.get("https://xxqg-tiku-1305531293.cos.ap-nanjing.myqcloud.com/%E9%A2%98%E5%BA%93_%E6%8E%92%E5%BA%8F%E7%89%88.json");
toastLog("下载XXQG_TiKu题库");
sleep(2500);
}
answer_question_bank = answer_question_bank.body.string();
answer_question_bank = JSON.parse(answer_question_bank);
toastLog("格式化题库");
for (var question in answer_question_bank) {
var answer = answer_question_bank[question];
if (special_problem.indexOf(question.slice(0, 7)) != -1) question = question.slice(question.indexOf("|") + 1);
else {
question = question.slice(0, question.indexOf("|"));
question = question.slice(0, question.indexOf(" "));
question = question.slice(0, 25);
}
map_set(question, answer);
}
sleep(1500);
// 将题库存储到本地
storage.put("answer_question_map", answer_question_map);
// 通过异或运算切换更新题库的开关,并记录
var k = storage.get("answer_question_bank_update_storage") ^ 1;
storage.put("answer_question_bank_update_storage", k);
}
if (!storage.contains("answer_question_map")) {
map_update();
} else {
answer_question_map = storage.get("answer_question_map");
}
/**
* 模拟点击不可以点击元素
* @param {UiObject / string} target 控件或者是控件文本
*/
function my_click_non_clickable(target) {
if (typeof (target) == "string") {
text(target).waitFor();
var tmp = text(target).findOne().bounds();
} else {
var tmp = target.bounds();
}
var randomX = random(tmp.left, tmp.right);
var randomY = random(tmp.top, tmp.bottom);
click(randomX, randomY);
}
/**
* 模拟点击可点击元素
* @param {string} target 控件文本
*/
function my_click_clickable(target) {
text(target).waitFor();
// 防止点到页面中其他有包含“我的”的控件,比如搜索栏
if (target == "我的") {
id("comm_head_xuexi_mine").findOne().click();
} else {
click(target);
}
}
/**
* 模拟随机时间
* @param {int} time 时间
* @return {int} 随机后的时间值
*/
function random_time(time) {
return time + random(100, 1000);
}
/**
* 刷新页面
* @param {boolean} orientation 方向标识 true表示从下至上 false表示从上至下
*/
function refresh(orientation) {
if (orientation)
swipe(device.width / 2, (device.height * 13) / 15,
device.width / 2, (device.height * 2) / 15,
random_time(delay_time / 2));
else
swipe(device.width / 2, (device.height * 6) / 15,
device.width / 2, (device.height * 12) / 15,
random_time(delay_time / 2));
sleep(random_time(delay_time));
}
/**
* 去省份模块
*/
function go_province() {
sleep(random_time(delay_time));
className("android.view.ViewGroup").depth(15).waitFor();
sleep(random_time(delay_time));
// 判断省份模块位置
province_list = ["河北", "山西", "黑龙江", "吉林", "辽宁", "江苏", "浙江", "安徽", "福建", "江西", "山东", "河南", "湖北", "湖南", "广东", "海南", "四川", "贵州", "云南", "陕西", "甘肃", "青海", "台湾", "内蒙古", "广西", "西藏", "宁夏", "新疆", "北京", "天津", "上海", "重庆", "香港", "澳门"];
index_province = -1;
var list = className("android.view.ViewGroup").depth(15).findOnce(2);
for (var i = 0; i < list.childCount(); i++) {
if (province_list.indexOf(list.child(i).child(0).text().trim()) != -1) {
index_province = i;
break;
}
}
if (index_province == -1) {
toastLog('没找到你的省份模块,请在github上提出issue');
exit();
}
className("android.view.ViewGroup").depth(15).findOnce(2).child(index_province).click();
}
/**
* pushplus推送通知到微信
*/
function push_weixin_message(account) {
http.postJson(
"http://www.pushplus.plus/send",
{
token: pushplus_token,
title: account,
content: content_str,
template: "markdown",
}
);
toastLog("积分已推送到微信");
}
function send_pushplus() {
var zongfen = text("成长总积分").findOne().parent().child(1).text();
var model_list = className('ListView').depth(23).findOne();
var list_count = model_list.childCount();
var jifen_list = className("android.widget.ListView").rowCount(list_count).findOne();
var jinri = jifen_list.parent().child(1).text().match(/\d+/g)[0];
let style_str = '<style>.item{height:1.5em;line-height:1.5em;}.item span{display:inline-block;padding-left:0.4em;}\
.item .bar{width:100px;height:10px;background-color:#ddd;border-radius:5px;display:inline-block;}\
.item .bar div{height:10px;background-color:#ed4e45;border-radius:5px;}</style>';
let content_str = '<h6>今日已累积:' + jinri + '积分' + '\xa0\xa0\xa0\xa0' + '成长总积分:' + zongfen + '\xa0\xa0\xa0\xa0' + '</h6><div>';
for (let option of jifen_list.children()) {
var title = option.child(0).text();
var score = option.child(3).child(0).text();
var total = option.child(3).child(2).text().match(/\d+/g)[0];
let percent = (Number(score) / Number(total) * 100).toFixed() + '%';
let detail = title + ": " + score + "/" + total;
content_str += '<div class="item"><div class="bar"><div style="width: ' + percent + ';"></div></div><span>' + detail + '</span></div>';
}
content_str += '</div>' + style_str;
return [jinri, content_str];
}
/**
* 如果因为某种不知道的bug退出了界面,则使其回到正轨
* 全局变量back_track_flag说明:
* back_track_flag = 0时,表示阅读部分
* back_track_flag = 1时,表示视听部分
* back_track_flag = 2时,表示竞赛、答题部分和准备部分
*/
function back_track() {
do {
app.launchApp("学习强国");
sleep(random_time(delay_time * back_track_wait_time));
if (text("立即升级").exists()) {
text("取消").findOne().click();
}
var while_count = 0;
while (!id("comm_head_title").exists() && while_count < 5) {
while_count++;
back();
sleep(random_time(delay_time));
if (textContains("确定要退出").exists()) {
my_click_clickable("退出");
sleep(random_time(delay_time * 2));
}
}
switch (back_track_flag) {
case 0:
// 去中心模块
id("home_bottom_tab_icon_large").waitFor();
sleep(random_time(delay_time));
var home_bottom = id("home_bottom_tab_icon_large").findOne().bounds();
click(home_bottom.centerX(), home_bottom.centerY());
// 去省份模块
go_province();
break;
case 1:
break;
case 2:
// 当网络不稳定时容易碰见积分规则更新中的情况
while (true) {
my_click_clickable("我的");
sleep(random_time(delay_time));
my_click_clickable("学习积分");
sleep(random_time(delay_time));
text("积分规则").waitFor();
sleep(random_time(delay_time));
if (text("登录").exists()) break;
back();
sleep(random_time(delay_time));
back();
}
}
// 当由于未知原因退出学习强国,则重新执行
} while (!className("FrameLayout").packageName("cn.xuexi.android").exists());
}
// 关闭音乐播放浮窗控件
function close_music_widget() {
let imv = className("android.widget.ImageView").find();
let swtch = imv[imv.length - 1];
swtch.click();
sleep(random(1000, 1200));
swtch.click();
return true;
}
/**
* 获取各模块完成情况的字典,其中字典的key为模块的名字,value为[模块是否已完成,模块已得分,模块满分]
*/
function get_finish_dict() {
// 定义一个字典
var finish_dict = new Array();
// 模块列表
var model_list = className('ListView').depth(23).findOne();
for (var i = 0; i < model_list.childCount(); i++) {
var model = model_list.child(i);
// 获取模块名
var model_name = model.child(0).text().trim();
try {
// 获取模块已得分
var model_score = parseInt(model.child(3).child(0).text());
// 获取模块满分分数
var model_full_score_str = model.child(3).child(2).text();
var model_full_score = parseInt(model_full_score_str.slice(1, model_full_score_str.length));
} catch (error) {
// Android 12 虚拟机 特殊判断
var model_score_str = model.child(3).text();
// 获取模块已得分
var model_score = parseInt(model_score_str.slice(0, model_score_str.indexOf('分')));
// 获取模块满分分数
var model_full_score = parseInt(model_score_str.slice(model_score_str.indexOf('/') + 1, model_score_str.length));
}
// 存储至字典中,当出现model_full_score未获取到时,比如专题模块,则特殊判断
if (isNaN(model_full_score)) finish_dict[model_name] = [model_score > 0, model_score, model_full_score];
else finish_dict[model_name] = [model_score == model_full_score, model_score, model_full_score];
}
return finish_dict;
}
/*
*********************准备部分********************
*/
var back_track_flag = 2;
// 首次运行可能弹升级,等久一点
var back_track_wait_time = 5;
back_track();
// 等待时间可以少一点了
back_track_wait_time = 3;
var finish_dict = get_finish_dict();
// 获取Android系统版本号
var version_number = Number(device.release);
// 返回首页
// Android 13控件位置不同
var depth_num = version_number == 13 ? 23 : 22;
className("android.view.View").clickable(true).depth(depth_num).findOne().click();
id("my_back").waitFor();
sleep(random_time(delay_time / 2));
id("my_back").findOne().click();
sleep(random_time(delay_time));
if (!finish_dict['本地频道'][0] || !finish_dict['我要选读文章'][0]) {
// 去省份模块
go_province();
}
/*
**********本地频道*********
*/
if (!finish_dict['本地频道'][0]) {
// 去本地频道
className("android.widget.LinearLayout").clickable(true).depth(26).waitFor();
sleep(random_time(delay_time));
className("android.widget.LinearLayout").clickable(true).depth(26).drawingOrder(1).findOne().click();
sleep(random_time(delay_time));
back();
}
/*
*********************阅读部分********************
*/
var back_track_flag = 0;
/*
**********我要选读文章与分享与广播学习*********
*/
// 打开电台广播
if (!finish_dict['我要视听学习'][0] && !finish_dict['我要选读文章'][0]) {
sleep(random_time(delay_time));
my_click_clickable("电台");
sleep(random_time(delay_time));
my_click_clickable("听广播");
sleep(random_time(delay_time));
id("lay_state_icon").waitFor();
var lay_state_icon_pos = id("lay_state_icon").findOne().bounds();
click(lay_state_icon_pos.centerX(), lay_state_icon_pos.centerY());
sleep(random_time(delay_time));
var home_bottom = id("home_bottom_tab_icon_large").findOne().bounds();
click(home_bottom.centerX(), home_bottom.centerY());
}
// 阅读文章次数
var count = 0;
while (count < 6 - finish_dict['我要选读文章'][1] / 2) {
if (!id("comm_head_title").exists() || !className("android.widget.TextView").depth(27).text("切换地区").exists()) back_track();
sleep(random_time(delay_time));
refresh(false);
var article = id("general_card_image_id").find();
if (article.length == 0) {
refresh(false);
continue;
}
for (var i = 0; i < article.length; i++) {
sleep(random_time(500));
try {
click(article[i].bounds().centerX(),
article[i].bounds().centerY());
} catch (error) {
continue;
}
sleep(random_time(delay_time));
// 跳过专栏与音乐
if (className("ImageView").depth(10).clickable(true).findOnce(1) == null ||
textContains("专题").findOne(1000) != null) {
back();
continue;
}
// 观看时长
sleep(random_time(65000));
back();
count++;
}
sleep(random_time(500));
}
/*
*********************视听部分********************
*/
back_track_flag = 1;
// 关闭电台广播
if (!finish_dict['我要视听学习'][0] && !finish_dict['我要选读文章'][0]) {
if (!id("comm_head_title").exists()) back_track();
sleep(random_time(delay_time));
my_click_clickable("电台");
sleep(random_time(delay_time));
my_click_clickable("听广播");
sleep(random_time(delay_time));
if (!textStartsWith("最近收听").exists() && !textStartsWith("推荐收听").exists()) {
// 不应该直接通过id寻找控件,因为此页面过多控件,寻找耗时太大
// 换成通过text寻找控件
textStartsWith("正在收听").waitFor();
textStartsWith("正在收听").findOne().parent().child(1).child(0).click();
}
sleep(random_time(delay_time));
close_music_widget();
sleep(random_time(delay_time));
}
// 重新获取视听学习剩下的分数
var back_track_flag = 2;
back_track();
var finish_dict = get_finish_dict();
back_track_flag = 1;
sleep(random_time(delay_time));
/*
**********我要视听学习*********
*/
if (!finish_dict['我要视听学习'][0]) {
if (!id("comm_head_title").exists()) back_track();
my_click_clickable("百灵");
sleep(random_time(delay_time / 2));
my_click_clickable("竖");
// 刷新视频列表
sleep(random_time(delay_time / 2));
my_click_clickable("竖")
// 等待视频加载
sleep(random_time(delay_time * 3));
// 点击第一个视频
className("android.widget.FrameLayout").clickable(true).depth(24).findOne().click();
// 为了兼容强国版本为v2.33.0(改版本号)
sleep(random_time(delay_time));
if (!id("iv_back").exists()) {
className("android.widget.FrameLayout").clickable(true).depth(24).findOnce(7).click();
}
sleep(random_time(delay_time));
if (text("继续播放").exists()) click("继续播放");
if (text("刷新重试").exists()) click("刷新重试");
var completed_watch_count = finish_dict['我要视听学习'][1];
while (completed_watch_count < 12) {
sleep(random_time(delay_time / 2));
className("android.widget.LinearLayout").clickable(true).depth(16).waitFor();
// 当前视频的时间长度
try {
var current_video_time = className("android.widget.TextView").clickable(false).depth(16).findOne().text().match(/\/.*/).toString().slice(1);
// 如果视频超过一分钟就跳过
if (Number(current_video_time.slice(0, 3)) >= 1) {
refresh(true);
sleep(random_time(delay_time));
continue;
}
sleep(Number(current_video_time.slice(4)) * 1000 + 500);
} catch (error) {
// 如果被"即将播放"将读取不到视频的时间长度,此时就sleep 3秒
sleep(3000);
}
completed_watch_count++;
}
back();
}
/*
*********************竞赛部分********************
*/
var back_track_flag = 2;
/**
* 选出选项
* @param {answer} answer 答案
* @param {int} depth_click_option 点击选项控件的深度,用于点击选项
* @param {list[string]} options_text 每个选项文本
*/
function select_option(answer, depth_click_option, options_text) {
// 注意这里一定要用original_options_text
var option_i = options_text.indexOf(answer);
// 如果找到答案对应的选项
if (option_i != -1) {
try {
className("android.widget.RadioButton").depth(depth_click_option).clickable(true).findOnce(option_i).click();
return;
} catch (error) {
}
}
// 如果运行到这,说明很有可能是选项ocr错误,导致答案无法匹配,因此用最大相似度匹配
if (answer != null) {
var max_similarity = 0;
var max_similarity_index = 0;
for (var i = 0; i < options_text.length; ++i) {
if (options_text[i]) {
var similarity = getSimilarity(options_text[i], answer);
if (similarity > max_similarity) {
max_similarity = similarity;
max_similarity_index = i;
}
}
}
try {
className("android.widget.RadioButton").depth(depth_click_option).clickable(true).findOnce(max_similarity_index).click();
return;
} catch (error) {
}
} else {
try {
// 没找到答案,点击第一个
className("android.widget.RadioButton").depth(depth_click_option).clickable(true).findOne(delay_time * 3).click();
} catch (error) {
}
}
}
/**
* 答题(挑战答题、四人赛与双人对战)
* @param {int} depth_click_option 点击选项控件的深度,用于点击选项
* @param {string} question 问题
* @param {list[string]} options_text 每个选项文本
*/
function do_contest_answer(depth_click_option, question, options_text) {
question = question.slice(0, 25);
// 如果是特殊问题需要用选项搜索答案,而不是问题
if (special_problem.indexOf(question.slice(0, 7)) != -1) {
var original_options_text = options_text.concat();
var sorted_options_text = original_options_text.sort();
question = sorted_options_text.join("|");
}
// 从哈希表中取出答案
var answer = map_get(question);
// 如果本地题库没搜到,则搜网络题库
if (answer == null) {
var result;
if (special_problem2.indexOf(question.slice(0, 6)) != -1 && question.slice(18, 25) != -1) question = question.slice(18, 25);
if (special_problem3.indexOf(question.slice(0, 6)) != -1 && question.slice(6, 12) != -1) question = question.slice(6, 12);
// 发送http请求获取答案 网站搜题速度 r1 > r2
try {
// 此网站只支持十个字符的搜索
var r1 = http.get("http://www.syiban.com/search/index/init.html?modelid=1&q=" + encodeURI(question.slice(0, 10)));
result = r1.body.string().match(/答案:.*</);
} catch (error) {
}
// 如果第一个网站没获取到正确答案,则利用第二个网站
if (!(result && result[0].charCodeAt(3) > 64 && result[0].charCodeAt(3) < 69)) {
try {
// 此网站只支持六个字符的搜索
var r2 = http.get("http://www.syiban.com/search/index/init.html?modelid=1&q=" + encodeURI(question.slice(3, 9)));
result = r2.body.string().match(/答案:.*</);
} catch (error) {
}
}
if (result) {
// 答案文本
var result = result[0].slice(5, result[0].indexOf("<"));
log("答案: " + result);
select_option(result, depth_click_option, options_text);
} else {
// 没找到答案,点击第一个
try {
className("android.widget.RadioButton").depth(depth_click_option).clickable(true).findOne(delay_time * 3).click();
} catch (error) {
}
}
} else {
log("答案: " + answer);
select_option(answer, depth_click_option, options_text);
}
}
/*
********************答题部分********************
*/
back_track_flag = 2;
// 填空题
function fill_in_blank(answer) {
// 获取每个空
var blanks = className("android.view.View").depth(25).find();
for (var i = 0; i < blanks.length; i++) {
// 需要点击一下空才能paste
blanks[i].click();
setClip(answer[i]);
blanks[i].paste();
// 需要缓冲
sleep(500);
}
}
/**
* 视频题
* @param {string} video_question 视频题问题
* @returns {string} video_answer 答案
*/
function video_answer_question(video_question) {
// 找到中文标点符号
var punctuation_index = video_question.search(/[\u3002|\uff1f|\uff01|\uff0c|\u3001|\uff1b|\uff1a|\u201c|\u201d|\u2018|\u2019|\uff08|\uff09|\u300a|\u300b|\u3008|\u3009|\u3010|\u3011|\u300e|\u300f|\u300c|\u300d|\ufe43|\ufe44|\u3014|\u3015|\u2026|\u2014|\uff5e|\ufe4f|\uffe5]/);
video_question = video_question.slice(0, Math.max(5, punctuation_index));
try {
var video_result = http.get("https://www.365shenghuo.com/?s=" + encodeURI(video_question));
} catch (error) {
}
var video_answer = video_result.body.string().match(/答案:.+</);
if (video_answer) video_answer = video_answer[0].slice(3, video_answer[0].indexOf("<"));
return video_answer;
}
/**
* 用于下面选择题
* 获取2个字符串的相似度
* @param {string} str1 字符串1
* @param {string} str2 字符串2
* @returns {number} 相似度
*/
function getSimilarity(str1, str2) {
var sameNum = 0;
//寻找相同字符
for (var i = 0; i < str1.length; i++) {
for (var j = 0; j < str2.length; j++) {
if (str1[i] === str2[j]) {
sameNum++;
break;
}
}
}
return sameNum / str2.length;
}
// 选择题
function multiple_choice(answer) {
var whether_selected = false;
// options数组:下标为i基数时对应着ABCD,下标为偶数时对应着选项i-1(ABCD)的数值
var options = className("android.view.View").depth(26).find();
for (var i = 1; i < options.length; i += 2) {
if (answer.indexOf(options[i].text()) != -1) {
// 答案正确
my_click_non_clickable(options[i].text());
// 设置标志位
whether_selected = true;
}
}
// 如果这里因为ocr错误没选到一个选项,那么则选择相似度最大的
if (!whether_selected) {
var max_similarity = 0;
var max_similarity_index = 1;
for (var i = 1; i < options.length; i += 2) {
var similarity = getSimilarity(options[i].text(), answer);
if (similarity > max_similarity) {
max_similarity = similarity;
max_similarity_index = i;
}
}
my_click_non_clickable(options[max_similarity_index].text());
}
}
// 多选题是否全选
function is_select_all_choice() {
// options数组:下标为i基数时对应着ABCD,下标为偶数时对应着选项i-1(ABCD)的数值
var options = className("android.view.View").depth(26).find();
// question是题目(专项答题是第4个,其他是第2个)
var question = className("android.view.View").depth(23).findOnce(1).text().length > 2 ? className("android.view.View").depth(23).findOnce(1).text() : className("android.view.View").depth(23).findOnce(3).text();
return options.length / 2 <= (question.match(/\s+/g) || []).length;
}
/**
* 点击对应的模块的 去答题或去看看
* @param {string} name 模块的名字
*/
function entry_model(name) {
// 模块列表
var model_list = className('ListView').depth(23).findOne();
for (var i = 0; i < model_list.childCount(); i++) {
var model = model_list.child(i);
// 获取模块名
var model_name = model.child(0).text().trim();
if (name == model_name) break;
}
while (!model.child(4).click());
}
/**
* 如果错误则重新答题
* 全局变量restart_flag说明:
* restart_flag = 0时,表示每日答题
* restart_flag = 1时,表示每周答题
*/
function restart() {
// 点击退出
sleep(random_time(delay_time));
back();
my_click_clickable("退出");
switch (restart_flag) {
case 0:
text("登录").waitFor();
sleep(random_time(delay_time / 2));
entry_model('每日答题');
break;
case 1:
// 设置标志位
if_restart_flag = true;
// 等待列表加载
text("本月").waitFor();
// 打开第一个出现未作答的题目
while (!text("未作答").exists()) {
refresh(true);
}
text("未作答").findOne().parent().click();
break;
}
}
/*
********************调用百度API实现ocr********************
*/
/**
* 获取用户token
*/
function get_baidu_token() {
var res = http.post(
"https://aip.baidubce.com/oauth/2.0/token",
{
grant_type: "client_credentials",
client_id: AK,
client_secret: SK,
}
);
return res.body.json()["access_token"];
}
if (whether_improve_accuracy == "yes") var token = get_baidu_token();
/**
* 百度ocr接口,传入图片返回文字和选项文字
* @param {image} img 传入图片
* @returns {string} question 文字
* @returns {list[string]} options_text 选项文字
*/
function baidu_ocr_api(img) {
var options_text = [];
var question = "";
var res = http.post(
"https://aip.baidubce.com/rest/2.0/ocr/v1/general",
{
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
access_token: token,
image: images.toBase64(img),
}
);
var res = res.body.json();
try {
var words_list = res.words_result;
} catch (error) {
}
if (words_list) {
// question是否读取完成的标志位
var question_flag = false;
for (var i in words_list) {
if (!question_flag) {
// 如果是选项则后面不需要加到question中
if (words_list[i].words[0] == "A") question_flag = true;
// 将题目读取到下划线处,如果读到下划线则不需要加到question中
// 利用location之差判断是否之中有下划线
/**
* location:
* 识别到的文字块的区域位置信息,列表形式,
* location["left"]表示定位位置的长方形左上顶点的水平坐标
* location["top"]表示定位位置的长方形左上顶点的垂直坐标
*/
if (words_list[0].words.indexOf(".") != -1 && i > 0 && Math.abs(words_list[i].location["left"] - words_list[i - 1].location["left"]) > 100) question_flag = true;
if (!question_flag) question += words_list[i].words;
// 如果question已经大于25了也不需要读取了
if (question > 25) question_flag = true;
}
// 这里不能用else,会漏读一次
if (question_flag) {
// 其他的就是选项了
if (words_list[i].words[1] == ".") options_text.push(words_list[i].words.slice(2));
}
}
}
// 处理question
question = question.replace(/\s*/g, "");
question = question.replace(/,/g, ",");
question = question.replace(/\-/g, "-");
question = question.replace(/\(/g, "(");
question = question.replace(/\)/g, ")");
question = question.slice(question.indexOf(".") + 1);
question = question.slice(0, 25);
return [question, options_text];
}
/**