• Autojs 小游戏实践-神农百草园


    概述

    最近一直再写刷视频软件脚本,比如手机视频软件太多,每天都需要手动提现羊毛,太累,使用Autojs来帮助我提现,签到,扯远了,因为做刷视频脚本感觉有点无聊,所以试着做小游戏找图脚本看看。

    实现效果

    在这里插入图片描述

    开发经验分享

    开发小游戏所收获经验

    • 手机游戏大部分是不能用控件操作,只能找图找色。
    • 在开发中几乎不需要到多线程的东西,不要想太多,用子线程找图。
    • 游戏图片怎么截的问题,建议手机截屏相册裁剪就好。

    这些经验我怎么知道的呢?

    • 第一个问题,我就不回答了
    • 第二个问题,因为我开始就是想子线程、定时子线程截图找图,看下图,因为都是子线程调用同一个方法,例如,找红包线程找图线程广告关闭找图线程都运行到截图找图方法,就出现2个问题,(1)、截图要找的目标图地址变量的值变了。(2)、我找红包图片找到了,进行删除了,但是广告关闭图片线程才刚刚比较截图,最后发现图片没了,直接报错.

    在这里插入图片描述

    • 第三个问题,我自己遇到的,因为截图后用QQ或者微信发图片会压缩画质,比较模糊,还有裁剪图后还得发回来,感觉比较麻烦。

    实现代码

    /** 截图申请,需要确认同意 */
    var requestScreenCaptureThread_screenshot = threads.start(function () {
      sleep(2000)
      var beginBtn;
      if (beginBtn = classNameContains("Button").textContains("允许").findOne(2000)) {
        beginBtn.click();
      }
    });
    /* 请求截图结果 */
    if (!requestScreenCapture()) {
      toast("请求截图失败");
      exit();
    }
    var 小兔 = "/sdcard/Pictures/Screenshots/s12.jpg";
    var 打开红包 = "/sdcard/Pictures/Screenshots/s14.jpg";
    var 开心收下 = "/sdcard/Pictures/Screenshots/s15.jpg";
    var 收获 = "/sdcard/Pictures/Screenshots/s16.jpg";
    var 播种 = "/sdcard/Pictures/Screenshots/s17.jpg";
    var 关闭 = "/sdcard/Pictures/Screenshots/s18.jpg";
    var 找多个红包 = "/sdcard/Pictures/Screenshots/s35.jpg";
    var 找多个红包1 = "/sdcard/Pictures/Screenshots/s20.jpg";
    var 除虫 = "/sdcard/Pictures/Screenshots/s21.jpg";
    // var 种植 = "/sdcard/Pictures/Screenshots/s22.jpg";
    // var 炼丹= "/sdcard/Pictures/Screenshots/s24.jpg";
    var 免费制作= "/sdcard/Pictures/Screenshots/s25.jpg";
    var 接单= "/sdcard/Pictures/Screenshots/s27.jpg";
    var 立即接单= "/sdcard/Pictures/Screenshots/s28.jpg";
    var 紫女红包= "/sdcard/Pictures/Screenshots/s29.jpg";
    // var 大号红包= "/sdcard/Pictures/Screenshots/s30.jpg";
    // var 播种 = "/sdcard/Pictures/Screenshots/s31.jpg";
    var 种植 = "/sdcard/Pictures/Screenshots/s34.jpg";
    var 大号红包 = "/sdcard/Pictures/Screenshots/s33.jpg";
    var 炼丹 = "/sdcard/Pictures/Screenshots/s36.jpg";
    /** 主线程 ,因为是自己刚刚写好的,没有完全的封装好代码,希望谅解*/
    while (true) {
      findMaps1(收获)
      sleep(3000,4000)
      findMaps(种植)
      sleep(3000,4000)
      findMap(炼丹)
      sleep(3000,4000)
      findMap(免费制作)
      sleep(3000,4000)
      findMap(除虫)
      sleep(3000,4000)
      findMaps(找多个红包)
      sleep(3000,4000)
      findMap(打开红包)
      sleep(3000,4000)
      findMap(关闭)
      sleep(3000,4000)
      findMap(开心收下)
      sleep(3000,4000)
      findMap(接单)
      sleep(3000,4000)
      findMap(立即接单)
      sleep(3000,4000)
      findMap(大号红包)
      sleep(3000,4000)
      findMap(种植)
      sleep(3000,4000)
      findMap(找多个红包1)
      sleep(3000,4000)
     }
    
    /**
     * 单图点击
     * @param {*} name 
     * @returns 
     */
    function findMap (name) {
      console.log(name);
      let img = captureScreen();
      let temp1 = images.read(name);
      let p = images.findImage(img, temp1);
      if (p) {
        click(p.x, p.y)
        temp1.recycle();
        return true;
      }
      temp1.recycle();
      return false;
    }
    
    /**
       * 多图点击
       * @param {*} name 
       * @returns 
       */
    function findMaps (name) {
      console.log(name);
      let img = captureScreen();
      let temp1 = images.read(name);
      let result = images.matchTemplate(img, temp1, { max: 3 });
      if (result.matches.length > 0) {
        console.log("11:",result.matches.length);
        for (let i = 0; i < result.matches.length; i++) {
          let pp = result.matches[i].point
          let xx = random(pp.x, pp.x + temp1.getWidth())
          let yy = random(pp.y, pp.y + temp1.getWidth())
          click(xx, yy)
          sleep(2000)
          break;
        }
        temp1.recycle();
        return true;
      }
      temp1.recycle();
      return false;
    }
    
    
    function findMaps1 (name) {
      console.log(name);
      let img = captureScreen();
      let temp1 = images.read(name);
      let result = images.matchTemplate(img, temp1, { max: 3 });
      if (result.matches.length > 0) {
        console.log("11:",result.matches.length);
        for (let i = 0; i < result.matches.length; i++) {
          let pp = result.matches[i].point
          let xx = random(pp.x, pp.x + temp1.getWidth())
          let yy = random(pp.y, pp.y + temp1.getWidth())
          click(xx, yy)
          sleep(2000)
        }
        temp1.recycle();
        return true;
      }
      temp1.recycle();
      return false;
    }
    
    • 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

    总结

    可能写得不好,希望大佬谅解,如果写得不好或者需要改进的地方,欢迎大佬们指出,毕竟刚自学不久,谢谢

  • 相关阅读:
    Pdfjs使用
    香港《紫荆》|对话欧科云链:Web3新兴科技的基础建设离不开链上数据的加持
    一文搞懂 SLAM 中的Extension Kalman Filter 算法编程
    虹科分享 | 测试与验证复杂的FPGA设计(2)——如何在IP核中执行面向全局的仿真
    如何在vue中实现图片懒加载
    冥想第四百八十九天
    【计算机网络】HTTP协议
    跨境物流FBM的主要流程是怎样的?
    前端面试问题(3)
    LeetCode:2235. 两整数相加
  • 原文地址:https://blog.csdn.net/qq_44697754/article/details/132755401