-
Notifications
You must be signed in to change notification settings - Fork 516
/
start.js
471 lines (430 loc) · 17.2 KB
/
start.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
const VERSION = '20231111-AD'
if (!auto.service) {
toast('无障碍服务未启动!退出!')
exit()
}
let showVersion = function () {
console.log('当前版本:' + VERSION)
console.log('https://github.com/monsternone/tmall-miao')
toast('当前版本:' + VERSION)
}
// alert('请把手机放稳,不要摇晃!', '不然有时候会跳出合伙赢喵币,导致任务阻塞')
console.show()
showVersion()
function getSetting() {
let indices = []
autoOpen && indices.push(0)
autoMute && indices.push(1)
indices.push(2)
let settings = dialogs.multiChoice('任务设置', ['自动打开淘宝进入活动。多开或任务列表无法自动打开时取消勾选(注意,分身运行淘宝大概率导致任务收益变为100)', '自动调整媒体音量为0。以免直播任务发出声音,首次选择需要修改系统设置权限', '此选项用于保证选择的处理,勿动!'], indices)
if (settings.length == 0) {
toast('取消选择,任务停止')
exit()
}
if (settings.indexOf(0) != -1) {
storage.put('autoOpen', true)
autoOpen = true
} else {
storage.put('autoOpen', false)
autoOpen = false
}
if (settings.indexOf(1) != -1) {
storage.put('autoMute', true)
autoMute = true
} else {
storage.put('autoMute', false)
autoMute = false
}
}
let storage = storages.create("tb_task");
let autoOpen = storage.get('autoOpen', true)
let autoMute = storage.get('autoMute', true)
getSetting()
if (autoMute) {
try {
device.setMusicVolume(0)
toast('成功设置媒体音量为0')
} catch (err) {
alert('首先需要开启权限,请开启后再次运行脚本')
exit()
}
}
console.log('开始完成喵币任务...')
console.log('按音量下键停止')
device.keepScreenDim(60 * 60 * 1000)
let startCoin;
function registerKey() {
try {
events.observeKey()
} catch (err) {
console.log('监听音量键停止失败,应该是无障碍权限出错,请关闭软件后台任务重新运行。')
console.log('如果还是不行可以重启手机尝试。')
quit()
}
events.onKeyDown('volume_down', function (event) {
console.log('喵币任务脚本停止了')
console.log('请手动切换回主页面')
if (startCoin) {
console.log('本次任务开始时有', startCoin, '万喵币')
}
device.cancelKeepingAwake()
exit()
})
}
threads.start(registerKey)
// 全局try catch,应对无法显示报错
try {
// 自定义去取消亮屏的退出方法
function quit() {
device.cancelKeepingAwake()
exit()
}
// 自定义一个findTimeout,find_f是原本的查询器 text('sss').find()
function findTimeout(findF, timeout) {
let c = 0
while (c < timeout / 500) {
let result = findF.find()
if (result.nonEmpty()) return result
sleep(500)
c++
}
return null
}
// 自定义一个findTextDescMatchesTimeout
function findTextDescMatchesTimeout(reg, timeout) {
let c = 0
while (c < timeout / 50) {
let result = textMatches(reg).findOnce() || descMatches(reg).findOnce()
if (result) return result
sleep(50)
c++
}
return null
}
// 查找任务按钮
function findTask() {
var jumpButtonFind = textMatches(/.*(去浏览|去搜索|去完成|立即签到|去逛逛|去观看|去参赛).*/) // 找进入任务的按钮,10秒
var jumpButtons = findTimeout(jumpButtonFind, 10000)
if (!jumpButtons) {
return null
}
for (var i = 0; i < jumpButtons.length; i++) {
var taskName, content
try {
taskName = jumpButtons[i].parent().child(0).child(0).text()
content = jumpButtons[i].parent().child(0).child(1).text()
} catch (err) {
console.log(err)
console.log('使用第二种方法尝试')
try {
content = jumpButtons[i].parent().child(0).child(1).child(0).text()
console.log('成功,继续任务')
}
catch (err) {
continue
}
}
if (taskName) {
if (taskName.match(/签到/)) {
console.log('进行签到任务')
sleep(1000)
jumpButtons[i].click()
sleep(8000)
return findTask()
}
console.log(taskName, '"' + content + '"')
if (!(taskName.match(/首页|提醒|开通|捕鱼|续费|乐园|斗地主|消消|流浪猫|开88|扔喵币|占领|邀请|登录|组队|参与|施肥|浇水|特价版|小鸡|消除|穿搭|森林|点淘|人生|我的淘宝|庄园|支付宝|点击人物|省钱卡|年卡|积分|答题|分享|订阅|连连消|月月有余|守护|大作战/))) {
// 应对content为空的情况
if (content) {
if (content.match(/浏览|点击|小游戏/)) {
return [taskName, jumpButtons[i], content]
}
} else {
return [taskName, jumpButtons[i], content]
}
}
}
}
return null
}
function backToList() {
console.log('返回')
if (textContains('当前已有金币').exists()) {
console.log('已在任务列表')
return
}
back()
sleep(1000)
let flag = 0
for (let i = 0; i < 3; i++) {
if (!textContains('当前已有金币').findOne(5000)) {
if (currentActivity() == 'com.taobao.tao.TBMainActivity') {
console.log('返回到了主页,请重新运行任务!')
quit()
} else {
console.log('似乎没有返回,二次尝试')
back()
}
} else {
flag = 1
break
}
}
if (flag != 1) {
console.log('返回任务界面失败!退出运行,请重试!')
quit()
}
}
function liulan() {
// if (textMatches(/.*浏览.*/).findOne(10000)) { // 等待浏览出现
// let v = className('android.support.v7.widget.RecyclerView').findOnce() // 滑动
// if (v) {
// sleep(1000)
// v.scrollForward()
// }
// }
// textMatches(/.*浏览得奖励.*/).findOne(15000) // 等待开始
let finish_c = 0
let countdown = 0
console.log('开始检测任务完成,部分控件无法检测,会在30秒后自动返回,请耐心等待。')
while (finish_c < 60) { // 0.5 * 60 = 30 秒,防止死循环
if (finish_c > 2 && textMatches(/.*下拉浏览.*|.*浏览最高得.*|.*浏览得奖励.*/).exists()) {
console.log('进行模拟滑动')
swipe(device.width / 2, device.height - 300, device.width / 2 + 20, device.height - 500, 1000)
finish_c = finish_c + 2
continue
}
let finish_reg = /.*任务.*?完成[\s\S]*?|.*失败.*|.*上限.*|.*开小差.*|.*喵币已发放[\s\S]*|.*下单可获得[\s\S]*|任务已经/
if (textMatches(finish_reg).exists() || descMatches(finish_reg).exists()) { // 等待已完成出现,有可能失败
break
}
if (countdown == 0 && idContains('countdown').exists()) {
countdown = 1
break
}
if (textMatches(/.*休息会呗.*|.*下方滑块.*/).exists()) {
alert('触发淘宝验证', '请手动验证后返回淘宝首页,重新执行任务')
console.log('异常退出。')
quit()
}
if (textMatches(/.*版本.*低.*/).exists()) {
alert('触发淘宝版本问题', '避免死循环,退出')
console.log('异常退出。')
quit()
}
if (textContains('互动奖励').exists() ||
descContains('互动奖励').exists()) {
console.log('跳过互动任务')
break
}
if (text('手机淘宝触屏版').exists()) {
console.log('页面未加载,返回')
break
}
if (text('宝贝口袋').exists()) {
let cart = text('购物车').findOnce()
let x = cart.bounds().right
let y = cart.bounds().top
console.log('关闭直播购物车')
click(x, y - 100)
}
if (text('立即关注得喵币').exists()) {
console.log('关注直播间任务,点击关注按钮')
text('立即关注得喵币').click()
sleep(1000)
break
}
if (finish_c > 4 && finish_c % 5 == 0 && !text('更多直播').exists() && !text('视频').exists()) {
console.log('滑动防止页面卡顿')
swipe(device.width / 2, device.height - 300, device.width / 2 + 20, device.height - 500, 1000)
finish_c = finish_c + 2
}
sleep(500)
finish_c++
}
if (countdown) {
console.log('出现图片类型标识,使用新方法完成,18秒后视为任务完成,自动返回')
sleep(18000)
}
if (finish_c > 59) {
console.log('未检测到任务完成标识。返回。')
// console.log('如果你认为这是一个bug请截图反馈。')
// console.log('一般情况下,二次运行脚本即可。')
// console.log('请手动切换回主页面')
// device.cancelKeepingAwake()
// quit()
if (textContains('当前已有金币').exists()) {
console.log('店铺已主动返回,继续任务')
return
}
backToList()
return
}
console.log('任务结束,返回')
backToList()
return
}
// 喵币数量
function getCoin() {
console.log('获取喵币数量')
try {
let e = textContains('当前已有金币').findOnce()
let num = e.parent().child(2).child(1).text().match(/([\d\.]*)万\//)[1]
console.log('当前共有', num, '喵币')
return num
} catch (err) {
console.log(err)
console.log('获取喵币数量错误,不影响脚本运行')
return null
}
}
try {
if (autoOpen) {
// 打开淘宝活动页面
console.log('正在打开淘宝...')
var url = 'pages.tmall.com/wow/z/hdwk/d11fy24/singleplayer?disableNav=YES&qd_from=tbsyicon'
app.startActivity({
action: "VIEW",
data: "taobao://" + url
})
sleep(2000)
console.log('等待页面加载...')
textContains('戳我赚金币').findOne(20000)
console.log('准备打开任务列表')
// sleep(10000)
let c = textContains('戳我赚金币').findOne(20000)
if (c) {
console.log('使用默认方法尝试打开任务列表')
sleep(1000)
c.parent().parent().child(c.parent().parent().childCount()-2).click()
sleep(1000)
c.click()
console.log('已点击,未能打开建议手动点击一下任务列表。此问题并非bug,和网络以及设备性能有关。')
console.log('检测任务列表,准备进行二次尝试')
} else {
throw '无法找到任务列表入口'
}
if (!textContains('当前已有金币').findOne(8000)) {
console.log('默认方式打开失败,二次尝试')
console.log('首先检测弹窗')
for (let i = 0; i < 2 && text('关闭').findOne(2000); i++) { // 关闭弹窗
console.log('检测到弹窗,关闭')
click('关闭')
sleep(2000)
}
console.log('已试图自动关闭弹窗。有未能自动关闭的弹窗请手动关闭')
sleep(5000)
c = c.parent().parent().child(c.parent().parent().childCount()-2)
click(c.bounds().centerX(), c.bounds().centerY())
console.log('已点击,等待任务列表出现')
if (!textContains('当前已有金币').findOne(8000)) {
throw '无法打开任务列表'
}
}
} else {
console.log('请在30秒内打开淘宝活动页,并打开任务列表')
if (textContains('当前已有金币').findOne(30000)) {
console.log('已打开,继续任务')
} else {
console.log('未能检测到任务列表,退出')
quit()
}
}
console.log('准备搜索任务')
sleep(2000)
} catch (err) {
console.log(err)
console.log('无法进入任务列表,如果你认为这是bug,请截图反馈。注意!1级没法做任务,请先升到2级!')
quit()
}
startCoin = getCoin()
while (true) {
console.log('寻找任务入口...')
var jumpButton = findTask()
if (jumpButton == null) {
// 没有任务之后领取奖励
var awardButtonFind = textMatches(/立即领取|领取奖励/)
var awardButtons = findTimeout(awardButtonFind, 10000)
if (awardButtons) {
for (var i = 0; i < awardButtons.length; i++) {
console.log('领取当前已有金币')
awardButtons[i].click()
console.log('等待5秒再次领取...')
sleep(5000)
}
}
const endCoin = getCoin()
console.log('没找到合适的任务。也许任务已经全部做完了。退出。互动任务不会自动完成。')
console.log('请手动切换回主页面')
if (startCoin && endCoin) {
console.log('本次任务共获得', (endCoin - startCoin), '万喵币')
}
alert('任务已完成', '别忘了在脚本主页领取双十一红包!互动任务需要手动完成。')
quit()
}
if (jumpButton[0].match('去浏览店铺领能量')) {
console.log('进行浏览店铺任务')
jumpButton[1].click()
while (!textContains('任务完成').exists()) {
console.log('进入店铺浏览')
text('逛店最多').findOne(15000).parent().click()
liulan()
sleep(2000)
}
backToList()
} else if (jumpButton[0].match(/养猪|台球/)) {
console.log('进行' + jumpButton[0] + '任务,20秒后返回')
jumpButton[1].click()
sleep(20000)
backToList()
} else if (jumpButton[0].match(/领现金/)) {
console.log('进行' + jumpButton[0] + '任务')
jumpButton[1].click()
let into = text('打开链接').findOne(10000)
if (!into) {
console.log('无法找到进入领现金的按钮!')
quit()
}
into.click()
liulan()
} else if (jumpButton[0].match(/搜一搜[^#]/)) {
console.log('进行' + jumpButton[0] + '任务')
jumpButton[1].click()
console.log('等待搜索')
sleep(2000)
let anchor = className("Button").text('搜索').findOne(8000)
try {
let listView = className('android.widget.ListView').findOne(2000).child(0)
if (listView.childCount() == 1) {
listView.child(0).click()
} else {
listView.child(1).click()
}
} catch (e) {
console.log('无法获取推荐搜索列表,使用自定义搜索')
anchor.parent().child(1).setText('iphone')
anchor.click()
}
liulan()
sleep(1000)
backToList()
} else if (jumpButton[2].match(/小游戏/)) {
console.log('出现互动任务,尝试刷新')
jumpButton[1].click()
sleep(3000)
backToList()
} else {
console.log('进行' + jumpButton[0] + '任务')
jumpButton[1].click()
liulan()
}
console.log('等待页面刷新...')
sleep(2000)
}
} catch (err) {
device.cancelKeepingAwake()
if (err.toString() != 'JavaException: com.stardust.autojs.runtime.exception.ScriptInterruptedException: null') {
console.error(err)
}
showVersion()
}