-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautojs
68 lines (62 loc) · 1.53 KB
/
autojs
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
function getLength()
{
requestScreebCapture();
var img = captureSscreen();
var i = 2339;
var flag = 0;
while(i>0){
var color = images.pixel(img,i,1226);
switch(flag){
case 0:
console.log("获取end_R坐标点")
if (colors.toString(color) == "#ffb1a374")
{
var end_R= i;
flag = flag + 1;
}
break;
case 1:
console.log("获取end_L坐标点")
if (colors.toString(color) == "#ffffffff")
{
var end_L= i;
flag = flag + 1;
}
break;
case 2:
console.log("获取start_R坐标点")
if (colors.toString(color) == "#ffb1a374")
{
var start_R= i;
flag = flag + 1;
var result= end_L - start_R;
}
break;
}
i = i - 1;
}
return result;
}
var res = getLength();
console.log(res);
function touchPhone(res){
var x = Math.round(device.width / 2);
var y = Math.round(device.height / 2);
var touch_time = Math.round(res * 1.62);
//console.log("x:", x);
//console.log("y:", y);
console.log("touch_time:", touch_time);
press(x, y, touch_time);
}
function main(){
slee(5000);
requestScreebCapture();
// numbs:循环模拟的次数
var numbs = 1;
for (var i = 0;i<numbs;i++){
console.log("*开始获取坐标距离");
res = getLength();
console.log("*开始模拟长按");
touchPhone(res);
}
}