1. 程式人生 > 程式設計 >使用AutoJs實現微信搶紅包的程式碼

使用AutoJs實現微信搶紅包的程式碼

需要準備的工具有:AutoJs,VSCode,一部手機

1. 首先使用AutoJs的佈局設定查詢紅包的Id

使用AutoJs實現微信搶紅包的程式碼

使用AutoJs實現微信搶紅包的程式碼

可以看出來紅包的id為“aag

關於這個紅包的id請以自己看到的為準

因為我在上午寫的時候這裡的id還是“an3”,到下午的時候就變成“aag”了

然後在VSCode裡編寫程式碼

var redEnvelopes = id("aag").find();

返回一個id為aag的redEnvelopes集合

此處注意find和findOne的區別 find:返回所有id為aag的集合

findOne:返回一個id為aag的物件

既然他是一個集合,現在只需要找到最新的那個紅包然後點選就可以了

var redEnvelopes_x = redEnvelopes[redEnvelopes.length - 1].bounds().centerX();
var redEnvelopes_y = redEnvelopes[redEnvelopes.length - 1].bounds().centerY();

此處的程式碼是獲取最新的紅包在螢幕上的(X,Y)的座標

不直接使用click是因為我太菜了

找不到id().findOne().click();又或者id().findOne().children().click();等等這種·····

這樣標準的句子點選,原因就是這麼簡單

有了紅包的座標後就可以直接使用

click(redEnvelopes_x,redEnvelopes_y);

直接點選座標來開啟紅包

2. 接著繼續佈局分析

使用AutoJs實現微信搶紅包的程式碼

紅包“開”的id為“den”,以此類推開啟紅包後返回聊天介面的id為dm

var open = id("den");
if(open.exists()){
  open.findOne().click();
  sleep(2000);
  toast("返回");
  id("dm").findOne().click();
}else{
  toast("紅包已領取或過期")
  sleep(1000)
  id("dm").findOne().click();
}

此時已經可以實現自動領取最新紅包的動作。

但是

問題也就顯現出來了,你會發現他會一直點最新的那一個紅包,不管他在螢幕的什麼地方,就算已經領取完了他也會一直點,沒完沒了。

解決思路:

使用一個開啟紅包和未開啟紅包的不同來辨別紅包是否需要開啟。

使用AutoJs實現微信搶紅包的程式碼使用AutoJs實現微信搶紅包的程式碼

.非常輕鬆的發現可以通過背景顏色來分辨

requestScreenCapture(false);
var img = captureScreen();
var color = images.pixel(img,X,Y);
var point = findColor(img,"#000000",{
  region: [X,Y,50,50],threshold: 4
});

通過閱讀官方文件可以發現有一個專門來辨別顏色的方法

現在只需要知道未領取紅包的顏色就可以了。

使用企鵝的截圖很方便可以獲取滑鼠當前的顏色

未領取紅包的顏色是(249,165,71) 隨便找一個網站把這個RGB值轉換成16進位制可以得到#F9A547

此時程式碼為

requestScreenCapture(false);
var img = captureScreen();
var color = images.pixel(img,redEnvelopes_x,redEnvelopes_y );
var point = findColor(img,"#F9A547",{
  region: [redEnvelopes_x,redEnvelopes_y,threshold: 4
});

已經可以實現只點擊未領取紅包,還有一個問題

那就是當前頁面沒有紅包的話紅包集合的長度為0,不做處理的話肯定會出問題。

所以要在每次獲取集合做後判斷一下就可以解決了。

完整程式碼分享

requestScreenCapture(false);
var redEnvelopes = id("aag");
var redEnvelopes_x = 0;
var redEnvelopes_y = 0;
 
while(true){
  if(redEnvelopes.exists()){
    redEnvelopes_point = id("aag").find();
    if(rb_point.length > 0){
      redEnvelopes_x = rb_point[redEnvelopes_point.length - 1].bounds().centerX();
      redEnvelopes_y = rb_point[redEnvelopes_point.length - 1].bounds().centerY();
      var img = captureScreen();
      var color = images.pixel(img,redEnvelopes_y);
      var point = findColor(img,"#FA9D3B",{
        region: [redEnvelopes_x,threshold: 4
      });
      if(point){
        toast("發現新紅包!");
        click(redEnvelopes_x,redEnvelopes_y);
        sleep(1000);
        openBox();
        sleep(1000);
      }
    }else{
      //當前介面沒有紅包 不作任何處理
    }
  }
}
 
function openBox(){
  var open = id("den");
  if(open.exists()){ 
    open.findOne().click();
    sleep(2000);
    toast("返回");
    id("dm").findOne().click();
  }else{
    toast("紅包已領取或過期")
    sleep(1000)
    id("dm").findOne().click();
  }
}

到此這篇關於使用AutoJs實現微信搶紅包的程式碼的文章就介紹到這了,更多相關AutoJs實現微信搶紅包內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!