forked from ljt0515/618
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tb_hc.js
379 lines (346 loc) · 12.8 KB
/
tb_hc.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
if (!auto.service) {
toast('无障碍服务未启动!退出!')
exit()
}
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.show()
console.log('开始完成能量任务...')
console.log('按音量下键停止')
device.keepScreenDim(60 * 60 * 1000)
function registerKey() {
try {
events.observeKey()
} catch (err) {
console.log('监听音量键停止失败,应该是无障碍权限出错,请关闭软件后台任务重新运行。')
console.log('如果还是不行可以重启手机尝试。')
quit()
}
events.onKeyDown('volume_down', function (event) {
console.log('喵币任务脚本停止了')
console.log('请手动切换回主页面')
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 / 50) {
let result = findF.find()
if (result.nonEmpty()) return result
sleep(50)
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 openTaskList() {
let c = idContains('node_2_icon').findOne(5000)
if (c) {
console.log('使用默认方法尝试打开任务列表')
c.click()
} else {
throw '无法找到任务列表入口'
}
if (!textContains('task_detail').findOne(8000)) {
console.log('默认方式打开失败,二次尝试')
console.log('首先检测弹窗')
try {
idContains('J_wfdlgwrap_6').findOnce().child(0).click()
sleep(1000)
} catch (err) {
console.log(err)
console.log('领红包弹窗关闭失败。此问题不影响运行')
}
try {
idContains('CLOSE').findOnce().click()
sleep(1000)
} catch (err) {
console.log(err)
console.log('其他弹窗关闭失败。此问题不影响运行')
}
console.log('出现未能自动关闭的弹窗请手动关闭')
sleep(2000)
// let right = c.bounds().right
// let left = c.bounds().left
// let top = c.bounds().top
// let bottom = c.bounds().bottom
// click(random(right,left), random(top, bottom))
click(c.bounds().centerX(), c.bounds().centerY())
console.log('已点击,等待任务列表出现')
if (!idContains('node_2_icon').findOne(8000)) {
throw '无法打开任务列表'
}
}
}
// 查找任务按钮
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(1).text()
content = jumpButtons[i].parent().child(2).child(0).text()
} catch (err) {
console.log(err)
continue
}
if (taskName) {
// if (taskName.match(/签到领/)) {
// console.log('进行签到任务')
// sleep(1000)
// jumpButtons[i].click()
// sleep(8000)
// return findTask()
// }
// if (!(taskName.match(/淘金币|提醒|话费|斗地主|消消乐|流浪猫|开88|扔喵糖|占领|邀请|登录|组队|参与|施肥|浇水|特价版|小鸡|消除|穿搭|森林|点淘|人生|我的淘宝|庄园/) || content.match(/小互动/))) {
// return [taskName, jumpButtons[i]]
// }
return [taskName, jumpButtons[i]]
}
}
return null
}
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
while (finish_c < 50) { // 0.5 * 50 = 25 秒,防止死循环
if (textMatches(/.*下拉浏览.*/).exists() || textContains('下滑').exists()) {
console.log('进行模拟滑动')
swipe(device.width / 2, device.height - 200, device.width / 2 + 20, device.height - 500, 2000)
}
let finish_reg = /.*任务已完成[\s\S]*|.*失败.*|.*上限.*|.*开小差.*/
if (textMatches(finish_reg).exists() || descMatches(finish_reg).exists()) { // 等待已完成出现,有可能失败
break
}
if (textMatches(/.*休息会呗.*/).exists()) {
alert('触发淘宝验证', '请手动验证后返回淘宝首页,重新执行任务')
console.log('异常退出。')
quit()
}
if (textContains('互动奖励').exists() ||
descContains('互动奖励').exists()) {
console.log('跳过互动任务')
break
}
sleep(500)
finish_c++
}
if (finish_c > 49) {
console.log('未检测到任务完成标识。返回。')
return false
}
console.log('任务完成')
return true
}
function backToList() {
console.log('返回上级')
back()
sleep(1000)
if (!idContains('node_2_icon').findOne(5000)) {
console.log('似乎没有返回,二次尝试')
back()
}
sleep(1000)
}
if (autoOpen) {
// 打开淘宝活动页面
console.log('正在打开淘宝...')
var url = 'm.tb.cn/h.UeObEJG'
app.startActivity({
action: "VIEW",
data: "taobao://" + url
})
sleep(2000)
console.log('等待页面加载...')
} else {
console.log('请在30秒内打开淘宝做任务赢红包活动页 09¥ CZ3457 QYo1daQ7MR1¥ https://m.tb.cn/h.UeObEJG')
}
if (!idContains('node_2_icon').findOne(30000)) {
console.log('未能检测到任务页,退出')
quit()
}
console.log('已打开活动,准备搜索任务')
sleep(2000)
console.log('首先关闭弹窗')
try {
idContains('J_wfdlgwrap_6').findOnce().child(0).click()
sleep(5000)
console.log('领红包弹窗已关闭')
} catch (err) {
console.log(err)
console.log('领红包弹窗关闭失败。此问题不影响运行')
}
try {
idContains('CLOSE').findOnce().click()
sleep(2000)
console.log('其他弹窗已关闭')
} catch (err) {
console.log(err)
console.log('其他弹窗关闭失败。此问题不影响运行')
}
console.log('检测任务列表是否打开')
if (textContains('task_detail').findOne(5000)) {
console.log('先关闭列表')
idContains('close_btn').findOnce().click()
sleep(2000)
}
while (true) {
console.log('准备打开任务列表')
sleep(2000)
openTaskList()
console.log('寻找任务入口...')
var jumpButton = findTask()
if (jumpButton == null) {
console.log('没找到合适的任务。也许任务已经全部做完了。退出。互动任务不会自动完成。')
console.log('请手动切换回主页面')
alert('任务已完成', '别忘了在脚本主页领取双11红包!互动任务需要手动完成。')
quit()
}
console.log('进行' + jumpButton[0] + '任务')
sleep(2000)
if (jumpButton[0].match(/商品/)) {
jumpButton[1].click()
sleep(2000)
let count = jumpButton[0].match(/浏览(\d*)个/)[1]
console.log('等待页面')
if (!text('双11超红精选热卖').findOne(8000)) {
throw '商品页面未加载'
}
console.log('点击', count, '个商品')
let buttons = textContains('item_pic').find()
if (!buttons) {
throw '无法找到马上抢按钮,任务失败'
}
for (let i = 0; i < 10 && count > buttons.length; i++) {
console.log('商品数量不足,向下翻页', buttons.length)
scrollDown()
sleep(2000)
scrollDown()
sleep(2000)
buttons = textContains('item_pic').find()
console.log(buttons.length)
}
if (count > buttons.length) {
console.log('商品数量不足,分次完成')
count = buttons.length
}
for (let i = 0; i < count; i++) {
console.log('点击第', i + 1, '个')
sleep(2000)
buttons[i].click()
console.log('等待加载')
if (findTextDescMatchesTimeout(/加入购物车|粉丝福利购/,10000) || currentActivity() == 'com.taobao.android.detail.wrapper.activity.DetailActivity') {
console.log('商品打开成功,返回')
back()
if (!text('双11超红精选热卖').findOne(10000)) {
console.log('似乎没有返回,二次尝试')
back()
}
} else {
if (!text('双11超红精选热卖').findOne(10000)) {
console.log('似乎加载成功,返回')
back()
}
}
}
// sleep(1000)
backToList()
} else if (jumpButton[0].match(/搜索/)) {
jumpButton[1].click()
let listView = className('android.widget.ListView').findOne(8000).child(0)
if (listView.childCount() == 1) {
listView.child(0).click()
} else {
listView.child(1).click()
}
liulan()
sleep(1000)
back()
backToList()
} else if (jumpButton[0].match(/为你推荐|主会场/)) {
jumpButton[1].click()
liulan()
} else {
jumpButton[1].click()
liulan()
// sleep(1000)
// back()
backToList()
}
console.log('等待页面刷新...')
sleep(2000)
}
} catch (err) {
device.cancelKeepingAwake()
if (err.toString() != 'JavaException: com.stardust.autojs.runtime.exception.ScriptInterruptedException: null') {
console.error(err)
}
}