微信跳一跳php代码实现

本文实例为大家分享了php微信跳一跳的具体代码,供大家参考,具体内容如下

<?php 

require 'config.php'; 

function similar($rgb1, $rgb2) {
 $r1 = ($rgb1 >> 16) & 0xFF;
 $g1 = ($rgb1 >> 8) & 0xFF;
 $b1 = $rgb1 & 0xFF;
 $r2 = ($rgb2 >> 16) & 0xFF;
 $g2 = ($rgb2 >> 8) & 0xFF;
 $b2 = $rgb2 & 0xFF;
 return abs($r1 - $r2) < 10 && abs($b1 - $b2) < 10 && abs($g1 - $g2) < 10;
} 

function getStart() {
 global $image;
 $width = imagesx($image);
 $height = imagesy($image);
 for ($i = $height / 3; $i < $height / 3 * 2; $i++) {
  for ($j = 0; $j < $width - 75; $j++) {
   if (checkStart($i, $j)) {
    $x = $i;
    $y = $j + 37;
   }
  }
 }
 return array($x, $y);
} 

function getEnd() {
 global $image;
 global $sx, $sy;
 $l_r = 0;
 $cnt = 0;
 $width = imagesx($image);
 $height = imagesy($image);
 for ($i = $height / 3; $i < $sx; $i++) {
  $demo = imagecolorat($image, 0, $i);
  for ($l = 0; $l < $width; $l++) {
   $c = imagecolorat($image, $l, $i);
   if (!similar($c, $demo)) {
    $r = $l;
    while($r+1 < $width && !similar(imagecolorat($image, $r+1, $i), $demo)){
     $r++;
    }
    if (abs(($l + $r) / 2 - $sy) > 20) {
     if (!isset($mid)) $mid = ($l + $r) / 2;
     if ($r - $l > BODY_WIDTH * 1.1){
      if ($r <= $l_r) {
       $cnt ++;
       if ($cnt == 3) {
        return [$i, round($mid)];
       }
      }
      else {
       $cnt = 0;
      }
      $l_r = $r;
     }
    }
    $l = $r;
   }
  }
 } 

 return [$sx - round(abs($mid-$sy)/sqrt(3)), round($mid)];;
} 

$cheet = [
 2829129, 2829129, 2829129, 2829129, 2829387, 2960716, 2960461,
 2960463, 3026256, 3026256, 3092563, 3092563, 3158614, 3158615,
 3224408, 3290202, 3356252, 3356252, 3356252, 3356767, 3357024,
 3553376, 3618913, 3618913, 3553891, 3684707, 3750243, 3684706,
 3684707, 3684707, 3684707, 3750243, 3618914, 3618913, 3684450,
 3750243, 3750243, 3750243, 3750243, 3750243, 3684706, 3618913,
 3618913, 3618913, 3684450, 3684706, 3684706, 3684450, 3684450,
 3750243, 3750243, 3684450, 3684706, 3750243, 3618913, 3618913,
 3618913, 3684448, 3749727, 3749727, 3749727, 3749727, 3749727,
 3749470, 3749469, 3749469, 3749721, 3749720, 3749720, 3814998,
 3814997, 3880534, 3880533, 3946835, 3881042
]; 

function checkStart($sx, $sy) {
 global $cheet;
 global $image;
 for ($i = 0; $i < 75; $i++) {
  $rgb = imagecolorat($image, $sy + $i, $sx);
  if (!similar($rgb, $cheet[$i])) {
   return false;
  }
 }
 return true;
} 

function screencap() {
 ob_start();
 system('adb shell screencap -p /sdcard/screen.png');
 system('adb pull /sdcard/screen.png .');
 ob_end_clean();
} 

function press($time) {
 system('adb shell input swipe 500 1600 500 1601 ' . $time);
} 

for ($id = 0; ; $id++) {
 echo sprintf("#%05d: ", $id);
 // 截图
 screencap();
 // 获取坐标
 $image = imagecreatefrompng('screen.png');
 list($sx, $sy) = getStart();
 list($tx, $ty) = getEnd();
 if ($sx == 0) break;
 echo sprintf("(%d, %d) -> (%d, %d) ", $sx, $sy, $tx, $ty);
 // 图像描点
 imagefilledellipse($image, $sy, $sx, 10, 10, 0xFF0000);
 imagefilledellipse($image, $ty, $tx, 10, 10, 0xFF0000);
 imagepng($image, sprintf("screen/%05d.png", $id));
 // 计算按压时间
 $time = pow(pow($tx - $sx, 2) + pow($ty - $sy, 2), 0.425) * PRESS_TIME;
 $time = round($time);
 echo sprintf("time: %f\n", $time);
 press($time);
 // 等待下一次截图
 sleep(SLEEP_TIME);
}
<?php
/**
 * 按压力度参数,根据实际表现进行调节
 * 如果跳远了就调低点
 */
//define('PRESS_TIME', 3.752);
define('PRESS_TIME', 3.452);
/**
 * 睡眠时间
 */
define('SLEEP_TIME', 2);
/**
 * 角色宽度,不需要调节
 */
define('BODY_WIDTH', 75);

###################我是分割线######################

另一种方法

function jump() {
sleep(2.5);//延迟 2.5 秒,音乐盒、便利店、井盖等站 2 秒加分
$screenShell = "cd D:\&adb shell /system/bin/screencap -p /sdcard/screenshot.png&adb pull /sdcard/screenshot.png d:jumper/screenshot.png";
exec($screenShell);//截图 

$i=imagecreatefrompng("d:jumper/screenshot.png");//读取图片
$point=array();
for ($y=400;$y<imagesy($i);$y++) {//从第 400 行开始,避开上部内容
for ($x=0;$x<imagesx($i);$x++) {//横向扫描
$rgb = imagecolorat($i,$x,$y);//取得颜色
$point["now"]["r"] = ($rgb>>16) & 0xFF;
$point["now"]["g"] = ($rgb>>8) & 0xFF;
$point["now"]["b"] = $rgb & 0xFF;
if(isset($point["last"]["r"])){
if(!isset($point["x"]["a"])){
if( abs($point["now"]["r"]-$point["last"]["r"])>1
or abs($point["now"]["g"]-$point["last"]["g"])>1
or abs($point["now"]["b"]-$point["last"]["b"])>1
){
$point["x"]["a"]=$x;
if(imagesx($i)/2>$x){
$point["direction"]="left";
}else{
$point["direction"]="right";
}
$point["a"]=$point["last"];
}
}else{
if($point["now"]==$point["a"]){
$point["x"]["b"]=$x-1;
break;
}
}
}
$point["last"]=$point["now"];
}
if(isset($point["x"])){
break;
}
} 

$param["left"] = 3750;
$param["right"] = 3100;
$time = pow((abs(imagesx($i)/2-($point["x"]["a"]+$point["x"]["a"])/2)/imagesx($i)),1)*$param[$point["direction"]]; 

if($time<400){
$time+=($param[$point["direction"]]/300);
}
$time = round($time,0);
echo "direction:".$point["direction"];
echo "\nx.a:".$point["x"]["a"];
echo "\nx.b:".$point["x"]["b"];
echo "\ntime:".$time."\n";
$touchShell = "cd D:\&adb shell input swipe 50 250 250 250 ".$time;
exec($touchShell);
imagedestroy($i);
jump();
} 

jump();

更多内容大家可以参考专题《微信跳一跳》进行学习。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • 微信小程序跳一跳游戏 python脚本跳一跳刷高分技巧

    前言 小程序跳一跳最近很火,之前爆出微信游戏小程序漏洞,网上也不乏大神.这里就用一大神的python脚本来刷下高分. 跳一跳python脚本传送门 配置过程 注: 电脑环境未配置python环境,请自行谷歌或者百度配置,这里不再做叙述. 1. 将上述传送门整个项目拷贝到本地(用git命令,或者直接压缩包下载,这里大家随意).比如我这里下载压缩包,解压我电脑以下的目录. 2. 楼主用的是 ios , 操作起来比较繁琐,也懒得找测试要 Android 测试机,所有就下了模拟器测试,首推雷电模拟器,安

  • 微信跳一跳php代码实现

    本文实例为大家分享了php微信跳一跳的具体代码,供大家参考,具体内容如下 <?php require 'config.php'; function similar($rgb1, $rgb2) { $r1 = ($rgb1 >> 16) & 0xFF; $g1 = ($rgb1 >> 8) & 0xFF; $b1 = $rgb1 & 0xFF; $r2 = ($rgb2 >> 16) & 0xFF; $g2 = ($rgb2 >

  • 微信跳一跳python代码实现

    本文实例为大家分享了python微信跳一跳的具体代码,供大家参考,具体内容如下 部分代码分享: wechat_jump.py from __future__ import print_function import numpy as np import matplotlib.pyplot as plt import matplotlib.animation as animation import math import time import os import cv2 import datet

  • python微信跳一跳游戏辅助代码解析

    这个代码实现的是   手动点击起点 和 终点  ,程序自动判断距离.触屏时间  完成跳跃 原理(摘自项目说明页面): 1. 将手机点击到"跳一跳"小程序界面: 2. 用Adb 工具获取当前手机截图,并用adb将截图pull上来: adb shell screencap -p /sdcard/1.png adb pull /sdcard/1.png . 3. 用matplot显示截图: 4. 用鼠标点击起始点和目标位置,计算像素距离: 5. 根据像素距离,计算按压时间: 6. 用Adb工

  • 微信跳一跳python自动代码解读1.0

    微信跳一跳自动代码,具体内容如下 那个跳一跳python"外挂",有几个python文件,其中有一个是得到截图,然后鼠标在图片上点击两次,python窗口上会打印两次鼠标的位置,并且会跟上一行这两个点之间的距离. 这个功能我先给除去获取截屏,就说怎么在某张图片上算出两次点击的距离. 首先,需要用到图形模块,PIL: from PIL import Image img = Image.open('0.jpg') 然后用图形绘制模块matplotlib来给出一个plot对象: import

  • 微信跳一跳python辅助脚本(总结)

    这段时间微信跳一跳这个游戏非常火爆,但是上分又非常的难,对于程序员来说第一个念头就是通过写一个辅助脚本外挂让上分变的容易,python现在比较火,我们一起来以python语言为基础总结以下各路神仙写的关于跳一跳的辅助脚本,大家在学习的时候主要理解他们的写法思路,对你学习python非常的有帮助. 1.微信跳一跳自动运行python脚本 注解:思路 核心:每次落稳之后截图,根据截图算出棋子的坐标和下一个块顶面的中点坐标, 根据两个点的距离乘以一个时间系数获得长按的时间 识别棋子:靠棋子的颜色来识别

  • python版微信跳一跳游戏辅助

    本文实例为大家分享了微信跳一跳游戏辅助python代码,供大家参考,具体内容如下 import os import PIL import numpy import matplotlib matplotlib.use('TKAgg') import matplotlib.pyplot as plt import time from matplotlib.animation import FuncAnimation # 是否需要进行图片更新 need_update = True def get_sc

  • python微信跳一跳系列之棋子定位像素遍历

    前言 在前几篇博客中,分别就棋子的颜色识别.模板匹配等定位方式进行了介绍和实践,这一篇博客就来验证一下github中最热门的跳一跳外挂中采用的像素遍历的方法. 方法说明 像素遍历的实质依然是颜色识别. 在github中给出的方法中,采用像素遍历的方法是: 从高度的1/3处开始至高度的2/3处进行遍历: 首先间隔50像素进行搜索 当像素的颜色和每一行开始的像素颜色不同时,认为找到了最上面的棋盘位置,则返回上一个间隔处开始遍历(i-50): 对每一行的像素都进行遍历,当满足给定的颜色范围时,记录最下

  • python微信跳一跳系列之自动计算跳一跳距离

    到现在为止,我们通过前面几篇博文的描述和分析,已经可以自动实现棋子.棋盘位置的准确判断,计算一下两个中心点之间的距离,并绘制在图形上,效果如下. 效果 图中的棋子定位采用HSV颜色识别,棋盘定位采用轮廓分割的方法获得,感兴趣的同学可以对其它的定位方法自行验证. 代码 # -*- coding: utf-8 -*- #VS2017+python3.6+opencv3.4 #2018.02.03 #作者:艾克思 import cv2 import numpy as np import math de

  • python微信跳一跳系列之色块轮廓定位棋盘

    在前几篇博文中,我们分别采用颜色识别,模板匹配,像素遍历等方法实现了棋子和棋盘的定位,具体内容可以参见我的前面的文章内容,在这一篇中,我们来探索一种定位棋盘的新方法. 分析 经过观察,我们看到,无论什么情况下,棋盘和背景之间总是存在着非常明显的色彩对比,这当然是必须的,否则玩游戏的人都无法分辨棋子.棋盘.背景,这个游戏就不可能大火.显然,如果我们将每一幅画面进行色块分割,将彩色图转变为黑白二值图,就可以将背景和棋盘隔离出来,然后对黑白图中的白色轮廓进行分析,将其中位置最高(y值最小)的轮廓标记出

  • 微信跳一跳辅助Java代码实现

    微信跳一跳辅助的Java具体实现代码,供大家参考,具体内容如下 1.参考知乎教你用Python来玩微信跳一跳,鉴于本人Python一直都是半吊子水平,之前打算用python刷分,可无奈安装python环境各种模块缺失,报错不停,于是乎,使用Java重新实现了一下. 2.环境配置及相关说明: 1).Windows系统,本人win10 2).AVA环境安装,JDK7以上即可 3).安卓手机一部.数据线一条 4).电脑安装ADB驱动,连接安卓手机,同时打开USB调试模式 5).打开微信小程序的跳一跳游

随机推荐