-
Notifications
You must be signed in to change notification settings - Fork 112
/
WechatJumpingAI.js
221 lines (192 loc) · 7.34 KB
/
WechatJumpingAI.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
// 根据wangshub的Python代码修改而来(原项目地址https://github.com/wangshub/wechat_jump_game)
// 运行环境:安卓软件Auto.js(https://github.com/hyb1996/Auto.js), 下载地址: https://github.com/hyb1996/Auto.js/releases
// 需求root权限或者安卓7.0以上才能运行本脚本
// 在原算法基础上优化了找出棋子的算法(直接使用Auto.js内置使用opencv实现的找色函数, 比原算法快很多),但是在手机设备上找出跳跃位置的算法的效率还是不够理想
var press_coefficient = device.height == 1920 ? 1.392 : 2.099; // 长按的时间系数,请自己根据实际情况调节
const under_game_score_y = 300 // 截图中刚好低于分数显示区域的 Y 坐标,300 是 1920x1080 的值,2K 屏、全面屏请根据实际情况修改
//按压位置为再来一局的位置
const press_x = device.width / 2;
const press_y = 1584 * (device.height / 1920.0);
const piece_body_width = 80 // 棋子的宽度,比截图中量到的稍微大一点比较安全,可能要调节
const piece_dist_from_top_to_base = 188; //棋子最顶部到棋子底部中点的距离
// 下面的 (353, 859) 和 (772, 1100) 是游戏截图里的两个台子的中点坐标,主要用来算角度,可能要调节
const sample_board_x1 = 353;
const sample_board_y1 = 859;
const sample_board_x2 = 772;
const sample_board_y2 = 1100;
const piece_color = "#3d3752"; //棋子大致颜色
var w = device.width;
var h = device.height;
//使这些函数调用更方便
const red = colors.red;
const green = colors.green;
const blue = colors.blue;
const max = Math.max;
const abs = Math.abs;
//如果debug为true则开启调试,将会把每次计算的棋子位置和目标位置标记在截图中并保存在一下目录
const debug = false;
const debug_images_dir = "/sdcard/debug/";
prepare();
main();
function press_compat(x, y, duration){
if(device.sdkInt >= 24){
press(x, y, duration);
}else{
root_automator.press(x, y, duration);
}
}
function jump(distance){
var press_time = distance * press_coefficient;
press_time = max(200, press_time);
press_compat(press_x, press_y, parseInt(press_time));
}
function find_piece_and_board(im){
var piece = find_piece(im);
var board = find_board(im, piece);
return {
piece: piece,
board: board
};
}
function find_board(im, piece){
var board_x = 0;
var board_y = 0;
var scan_start_y = get_scan_start_y(im);
for(var i = parseInt(h / 3); i < parseInt(h * 2 / 3); i++){
last_pixel = im.pixel(0, i);
if(board_x || board_y){
break;
}
var board_x_sum = 0
var board_x_c = 0
for(var j = 0; j < w; j++){
var pixel = im.pixel(j, i);
// 修掉脑袋比下一个小格子还高的情况的 bug
if(abs(j - piece.x) < piece_body_width){
continue;
}
// 修掉圆顶的时候一条线导致的小 bug,这个颜色判断应该 OK,暂时不提出来
if(abs(red(pixel) - red(last_pixel)) + abs(blue(pixel) - blue(last_pixel)) + abs(green(pixel) - green(last_pixel)) > 10){
board_x_sum += j;
board_x_c += 1;
}
}
if(board_x_sum){
board_x = board_x_sum / board_x_c
}
}
// 按实际的角度来算,找到接近下一个 board 中心的坐标
var board_y = piece.y - abs(board_x - piece.x) * Math.sqrt(3) / 3;
if(!(board_x && board_y)){
return null;
}
return {
x: board_x, y: board_y
}
}
function get_scan_start_y(im){
var scan_x_border = parseInt(w / 8) // 扫描棋子时的左右边界
var scan_start_y = 0 // 扫描的起始y坐标
// 以50px步长,尝试探测scan_start_y
for(var i = under_game_score_y; i < h; i += 50){
var last_pixel = im.pixel(0, i);
for(var j = 1; j < w; j++){
var pixel = im.pixel(j,i);
// 不是纯色的线,则记录scan_start_y的值,准备跳出循环
if(red(pixel) != red(last_pixel) || green(pixel) != green(last_pixel) || blue(pixel) != blue(last_pixel)){
scan_start_y = i - 50
break;
}
}
if(scan_start_y){
break;
}
}
return scan_start_y;
}
function find_piece(im){
//使用内置找色函数找出棋子最顶部的位置
var piece_top = findColor(im, piece_color, {
threshold: 4
});
var piece_start_x = -1;
var piece_end_x = -1;
//遍历该行找出棋子顶部中点位置
for(var x = 0; x < w; x++){
var is_piece = images.detectsColor(im, piece_color, x, piece_top.y);
if(is_piece && piece_start_x < 0){
piece_start_x = x;
}
if(!is_piece && piece_start_x >= 0){
piece_end_x = x;
break;
}
}
//棋子顶部中点位置
var piece_top_center_x = (piece_start_x + piece_end_x) / 2;
var piece_x = piece_top_center_x;
var piece_y = piece_top.y + piece_dist_from_top_to_base;
return {
x: piece_x, y: piece_y
}
}
function main(){
toast("请在5秒内打开游戏,并点击开始按钮");
waitForPackage("com.tencent.mm");
sleep(5000);
while(currentPackage() == "com.tencent.mm"){
var im = captureScreen();
// 获取棋子和 board 的位置
var result = find_piece_and_board(im);
var board = result.board;
var piece = result.piece;
log("find result: ", result);
if(debug && result){
save_result(im, result);
}
jump(Math.sqrt(Math.pow(board.x - piece.x, 2) + Math.pow(board.y - piece.y, 2)));
sleep(1000);
}
}
var root_automator = null;
function prepare(){
//确保无障碍服务开启
auto();
//请求截图权限
requestScreenCapture();
device.keepScreenOn(1000 * 3600);
if(device.sdkInt < 24){
root_automator = new RootAutomator();
}
events.on("exit", function(){
device.cancelKeepingAwake();
if(root_automator){
root_automator.exit();
}
});
if(debug){
files.ensureDir(debug_images_dir);
}
//从存储中读取系数
var storage = storages.create("org.autojs.wxjumping");
press_coefficient = storage.get("press_coefficient", press_coefficient);
//让用户输入系数
press_coefficient = dialogs.input("调整跳跃系数(可选)", press_coefficient);
storage.put("press_coefficient", press_coefficient);
}
function save_result(im, result){
importPackage(android.graphics);
var bmp = im.getBitmap();
var canvas = new Canvas(bmp);
var paint = new Paint();
paint.setStyle(Paint.Style.FILL);
paint.setColor(colors.rgb(255, 0, 0));
drawCircle(canvas, result.piece, paint);
paint.setColor(colors.rgb(0, 255, 0));
drawCircle(canvas, result.board, paint);
var out = new java.io.FileOutputStream(files.join(debug_images_dir, new Date().getTime() + ".png"));
bmp.compress(Bitmap.CompressFormat.PNG, 100, out);
}
function drawCircle(canvas, point, paint){
canvas.drawCircle(point.x, point.y, 8, paint);
}