dundunnp / auto_xuexiqiangguo

学习强国 每日拿满61分!免root 四人赛双人对战秒答 自动化脚本
https://dundunnp.github.io/auto_xuexiqiangguo/
MIT License
2.6k stars 935 forks source link

在作者v7.1与v14.4的基础上将挑战四人双人答题移植到了Auto.js #249

Closed Nebul91 closed 2 years ago

Nebul91 commented 2 years ago

考虑到作者在答题部分仅提供了四人与双人对战答题,导致部分半手动挡用户面对挑战答题时,有些束手无策,因此将挑战答题引入,并设置了配置选项,供用户自由选择,同时借鉴McMug2020大佬在#144 给的解决方案,特此感谢,移植到了Auto.js上,使用起来更方便。

使用方法

首先下载Auto.js安装包,安装后给予无障碍服务权限

点击Auto.js软件右下角加号-->新建文件-->设置名称-->粘贴代码-->填入百度api所需参数(约17、18行)-->运行即可

代码部分 ```JavaScript auto.waitFor() //震动两秒 device.vibrate(1000); toast('脚本开始运行'); var challenge_battle = 'yes'; // 是否完成挑战答题,请填yes或no var four_player_battle = 'yes'; //是否完成四人赛,请填yes或no var two_player_battle = 'yse'; //是否选择完成双人对战,请填yes或no var count = 2; //完成四人赛几次,请填1或2 var delay_time = 1000; // 调用百度api所需参数 var AK = '你的百度api参数1'; var SK = '你的百度api参数2'; // 本地存储数据 var storage = storages.create('data'); storage.remove('answer_question_map'); //请求横屏截图权限 threads.start(function () { var beginBtn; if (beginBtn = classNameContains("Button").textContains("开始").findOne(delay_time)); else (beginBtn = classNameContains("Button").textContains("允许").findOne(delay_time)); beginBtn.click(); }); requestScreenCapture(false); sleep(delay_time); /** * 定义HashTable类,用于存储本地题库,查找效率更高 * 由于hamibot不支持存储自定义对象和new Map(),因此这里用列表存储自己实现 * 在存储时,不需要存储整个question,可以仅根据选项来对应question,这样可以省去ocr题目的花费 * 但如果遇到选项为vague_words数组中的模糊词,无法对应question,则需要存储整个问题 */ var answer_question_map = []; // 当题目为这些词时,题目较多会造成hash表上的一个index过多,此时存储其选项 var special_problem = '选择正确的读音 选择词语的正确词形 下列词形正确的是 根据《中华人民共和国' /** * hash函数 * 6469通过从3967到5591中的质数,算出的最优值,具体可以看评估代码 */ function hash(string) { var hash = 0; for (var i = 0; i < string.length; i++) { hash += string.charCodeAt(i); } return hash % 6469; } // 存入 function map_set(key, value) { var index = 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]); } }; // 取出 function map_get(key) { var index = 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; }; /** * 通过Http下载题库到本地,并进行处理,如果本地已经存在则无需下载 */ if (!storage.contains('answer_question_map1')) { // 使用牛七云云盘 var answer_question_bank = http.get('http://r90w4pku5.hn-bkt.clouddn.com/%E9%A2%98%E5%BA%93_%E6%8E%92%E5%BA%8F%E7%89%88.json') // 如果资源过期换成别的云盘 if (!(answer_question_bank.statusCode >= 200 && answer_question_bank.statusCode < 300)) { // 使用腾讯云 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') } answer_question_bank = answer_question_bank.body.string(); answer_question_bank = JSON.parse(answer_question_bank); 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, 10); } map_set(question, answer); } storage.put('answer_question_map1', answer_question_map); } var answer_question_map = storage.get('answer_question_map1'); /** * 模拟点击不可以点击元素 * @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); } // 模拟随机时间 function random_time(time) { return time + random(100, 1000); } function entry_model(number) { sleep(random_time(delay_time * 2)); var model = className('android.view.View').depth(22).findOnce(number); while (!model.child(3).click()); } // 模拟点击可点击元素 function my_click_clickable(target) { text(target).waitFor(); // 防止点到页面中其他有包含“我的”的控件,比如搜索栏 if (target == '我的') { id("comm_head_xuexi_mine").findOne().click(); } else { click(target); } } /** * 选出选项 * @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().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, 10); // 如果是特殊问题需要用选项搜索答案,而不是问题 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; // 发送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(/答案:.* 64 && result[0].charCodeAt(3) < 69)) { try { // 此网站只支持六个字符的搜索 var r2 = http.get('https://www.souwen123.com/search/select.php?age=' + encodeURI(question.slice(0, 6))); result = r2.body.string().match(/答案:.* 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已经大于10了也不需要读取了 if (question > 10) 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.slice(question.indexOf('.') + 1); question = question.slice(0, 10); return [question, options_text]; } /** * 从ocr.recognize()中提取出题目和选项文字 * @param {object} object ocr.recongnize()返回的json对象 * @returns {string} question 文字 * @returns {list[string]} options_text 选项文字 * */ function extract_ocr_recognize(object) { var options_text = []; var question = ""; var words_list = object.results; if (words_list) { // question是否读取完成的标志位 var question_flag = false; for (var i in words_list) { if (!question_flag) { // 如果是选项则后面不需要加到question中 if (words_list[i].text[0] == "A") question_flag = true; // 将题目读取到下划线处,如果读到下划线则不需要加到question中 // 利用bounds之差判断是否之中有下划线 /** * bounds: * 识别到的文字块的区域位置信息,列表形式, * bounds.left表示定位位置的长方形左上顶点的水平坐标 */ if (words_list[0].text.indexOf('.') != -1 && i > 0 && Math.abs(words_list[i].bounds.left - words_list[i - 1].bounds.left) > 100) question_flag = true; if (!question_flag) question += words_list[i].text; // 如果question已经大于10了也不需要读取了 if (question > 10) question_flag = true; } // 这里不能用else,会漏读一次 if (question_flag) { // 其他的就是选项了 if (words_list[i].text[1] == '.') options_text.push(words_list[i].text.slice(2)); // else则是选项没有读取完全,这是由于hamibot本地ocr比较鸡肋,无法直接ocr完的缘故 else options_text[options_text.length - 1] = options_text[options_text.length - 1] + words_list[i].text; } } } question = ocr_processing(question, true); return [question, options_text]; } /** * 本地ocr标点错词处理 * @param {string} text 需要处理的文本 * @param {boolean} if_question 是否处理的是问题(四人赛双人对战) */ function ocr_processing(text, if_question) { // 标点修改 text = text.replace(/,/g, ","); text = text.replace(/〈〈/g, "《"); text = text.replace(/〉〉/g, "》"); text = text.replace(/\s*/g, ""); text = text.replace(/_/g, "一"); text = text.replace(/;/g, ";"); text = text.replace(/o/g, ""); text = text.replace(/。/g, ""); text = text.replace(/`/g, "、"); text = text.replace(/\?/g, "?"); text = text.replace(/:/g, ":"); text = text.replace(/!/g, "!"); text = text.replace(/\(/g, "("); text = text.replace(/\)/g, ")"); // 文字修改 text = text.replace(/营理/g, "管理"); text = text.replace(/土也/g, "地"); text = text.replace(/未口/g, "和"); text = text.replace(/晋查/g, "普查"); text = text.replace(/扶悌/g, "扶梯"); if (if_question) { text = text.slice(text.indexOf('.') + 1); text = text.slice(0, 10); } return text; } /* ********************四人赛、双人对战******************** */ function do_contest() { while (!text('开始').exists()); while (!text('继续挑战').exists()) { // 等待下一题题目加载 className("android.view.View").depth(28).waitFor(); var pos = className("android.view.View").depth(28).findOne().bounds(); if (className("android.view.View").text("        ").exists()) pos = className("android.view.View").text("        ").findOne().bounds(); do { var point = findColor(captureScreen(), '#1B1F25', { region: [pos.left, pos.top, pos.width(), pos.height()], threshold: 10, }); } while (!point); // 等待选项加载 className('android.widget.RadioButton').depth(32).clickable(true).waitFor(); var img = images.inRange(captureScreen(), '#000000', '#444444'); img = images.clip(img, pos.left, pos.top, pos.width(), device.height - pos.top); var result = baidu_ocr_api(img); var question = result[0]; var options_text = result[1]; log("题目: " + question); log("选项: " + options_text); if (question) do_contest_answer(32, question, options_text); else { className('android.widget.RadioButton').depth(32).waitFor(); className('android.widget.RadioButton').depth(32).findOne().click(); } // 等待新题目加载 while (!textMatches(/第\d题/).exists() && !text('继续挑战').exists() && !text('开始').exists()); } } if (!className('android.view.View').depth(21).text('学习积分').exists()) { app.launchApp('学习强国'); sleep(random_time(delay_time * 3)); var while_count = 0; while (!id('comm_head_title').exists() && while_count < 5) { while_count++; back(); sleep(random_time(delay_time)); } app.launchApp('学习强国'); sleep(random_time(delay_time)); my_click_clickable('我的'); my_click_clickable('学习积分'); } /* **********挑战答题********* */ if (challenge_battle == 'yes') { sleep(random_time(delay_time)); if (!className('android.view.View').depth(21).text('学习积分').exists()) back_track(); entry_model(10); // 加载页面 className('android.view.View').clickable(true).depth(22).waitFor(); // flag为true时挑战成功拿到6分 var flag = false; while (!flag) { sleep(random_time(delay_time * 3)); var num = 0; while (num < 5) { // 每题的过渡 sleep(random_time(delay_time * 2)); // 如果答错,第一次通过分享复活 if (text('分享就能复活').exists()) { num -= 2; click('分享就能复活'); sleep(random_time(delay_time / 2)); back(); // 等待题目加载 sleep(random_time(delay_time * 3)); } // 第二次重新开局 if (text('再来一局').exists()) { my_click_clickable('再来一局'); break; } // 题目 className('android.view.View').depth(25).waitFor(); var question = className('android.view.View').depth(25).findOne().text(); // 截取到下划线前 question = question.slice(0, question.indexOf(' ')); // 选项文字列表 var options_text = []; // 等待选项加载 className('android.widget.RadioButton').depth(28).clickable(true).waitFor(); // 获取所有选项控件,以RadioButton对象为基准,根据UI控件树相对位置寻找选项文字内容 var options = className('android.widget.RadioButton').depth(28).find(); // 选项文本 options.forEach((element, index) => { //挑战答题中,选项文字位于RadioButton对象的兄弟对象中 options_text[index] = element.parent().child(1).text(); }); do_contest_answer(28, question, options_text); num++; } sleep(random_time(delay_time * 2)); if (num == 5 && !text('再来一局').exists() && !text('结束本局').exists()) flag = true; } // 随意点击直到退出 do { sleep(random_time(delay_time * 2.5)); className('android.widget.RadioButton').depth(28).findOne().click(); sleep(random_time(delay_time * 2.5)); } while (!text('再来一局').exists() && !text('结束本局').exists()); click('结束本局'); sleep(random_time(delay_time)); back(); } /* **********四人赛********* */ if (four_player_battle == 'yes') { sleep(random_time(delay_time)); className('android.view.View').depth(21).text('学习积分').waitFor(); entry_model(11); for (var i = 0; i < count; i++) { sleep(random_time(delay_time)); my_click_clickable('开始比赛'); do_contest(); if (i == 0 && count == 2) { sleep(random_time(delay_time * 2)); while (!click('继续挑战')); sleep(random_time(delay_time)); } } sleep(random_time(delay_time)); back(); sleep(random_time(delay_time)); back(); } /* **********双人对战********* */ if (two_player_battle == 'yes') { sleep(random_time(delay_time)); className('android.view.View').depth(21).text('学习积分').waitFor(); entry_model(12); // 点击随机匹配 text('随机匹配').waitFor(); sleep(random_time(delay_time * 2)); try { className('android.view.View').clickable(true).depth(24).findOnce(1).click(); } catch (error) { className("android.view.View").text("").findOne().click(); } do_contest(); sleep(random_time(delay_time)); back(); sleep(random_time(delay_time)); back(); my_click_clickable('退出'); } //震动两秒 device.vibrate(1000); toast('脚本运行完成'); ```
zhufscug commented 2 years ago

但由于Auto.js使用的是免费版,不支持OCR,Auto.js只能使用百度OCR,因此如果完整运行学习强国.js脚本的话(四人赛双人对战两个平台是一样的)将可能调用百度OCR大约35次,请谨慎使用,超出百度OCR免费次数所产生的费用概不负责