当前位置:首页 > 综合实例 > 列表

微信跳一跳php代码实现

发布:smiling 来源: PHP粉丝网  添加日期:2021-08-27 10:45:24 浏览: 评论:0 

这篇文章主要为大家详细介绍了微信跳一跳辅助php代码实现,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。

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

  1. <?php  
  2.    
  3. require 'config.php';  
  4.    
  5. function similar($rgb1$rgb2) {  
  6.  $r1 = ($rgb1 >> 16) & 0xFF;  
  7.  $g1 = ($rgb1 >> 8) & 0xFF;  
  8.  $b1 = $rgb1 & 0xFF;  
  9.  $r2 = ($rgb2 >> 16) & 0xFF;  
  10.  $g2 = ($rgb2 >> 8) & 0xFF;  
  11.  $b2 = $rgb2 & 0xFF;  
  12.  return abs($r1 - $r2) < 10 && abs($b1 - $b2) < 10 && abs($g1 - $g2) < 10;  
  13. }  
  14.    
  15. function getStart() {  
  16.  global $image;  
  17.  $width = imagesx($image);  
  18.  $height = imagesy($image);  
  19.  for ($i = $height / 3; $i < $height / 3 * 2; $i++) {  
  20.   for ($j = 0; $j < $width - 75; $j++) {  
  21.    if (checkStart($i$j)) {  
  22.     $x = $i;  
  23.     $y = $j + 37;  
  24.    }  
  25.   }  
  26.  }  
  27.  return array($x$y);  
  28. }  
  29.    
  30. function getEnd() {  
  31.  global $image;  
  32.  global $sx$sy;  
  33.  $l_r = 0;  
  34.  $cnt = 0;  
  35.  $width = imagesx($image);  
  36.  $height = imagesy($image);  
  37.  for ($i = $height / 3; $i < $sx$i++) {  
  38.   $demo = imagecolorat($image, 0, $i);  
  39.   for ($l = 0; $l < $width$l++) {  
  40.    $c = imagecolorat($image$l$i);  
  41.    if (!similar($c$demo)) {  
  42.     $r = $l;  
  43.     while($r+1 < $width && !similar(imagecolorat($image$r+1, $i), $demo)){  
  44.      $r++;  
  45.     }  
  46.     if (abs(($l + $r) / 2 - $sy) > 20) {  
  47.      if (!isset($mid)) $mid = ($l + $r) / 2;  
  48.      if ($r - $l > BODY_WIDTH * 1.1){  
  49.       if ($r <= $l_r) {  
  50.        $cnt ++;  
  51.        if ($cnt == 3) {  
  52.         return [$iround($mid)];  
  53.        }  
  54.       }  
  55.       else {  
  56.        $cnt = 0;  
  57.       }  
  58.       $l_r = $r;  
  59.      }  
  60.     }  
  61.     $l = $r;  
  62.    }  
  63.   }  
  64.  }  
  65.    
  66.  return [$sx - round(abs($mid-$sy)/sqrt(3)), round($mid)];;  
  67. }  
  68.    
  69. $cheet = [  
  70.  2829129, 2829129, 2829129, 2829129, 2829387, 2960716, 2960461,  
  71.  2960463, 3026256, 3026256, 3092563, 3092563, 3158614, 3158615,  
  72.  3224408, 3290202, 3356252, 3356252, 3356252, 3356767, 3357024,  
  73.  3553376, 3618913, 3618913, 3553891, 3684707, 3750243, 3684706,  
  74.  3684707, 3684707, 3684707, 3750243, 3618914, 3618913, 3684450,  
  75.  3750243, 3750243, 3750243, 3750243, 3750243, 3684706, 3618913,  
  76.  3618913, 3618913, 3684450, 3684706, 3684706, 3684450, 3684450,  
  77.  3750243, 3750243, 3684450, 3684706, 3750243, 3618913, 3618913,  
  78.  3618913, 3684448, 3749727, 3749727, 3749727, 3749727, 3749727,  
  79.  3749470, 3749469, 3749469, 3749721, 3749720, 3749720, 3814998,  
  80.  3814997, 3880534, 3880533, 3946835, 3881042  
  81. ];  
  82.    
  83. function checkStart($sx$sy) {  
  84.  global $cheet;  
  85.  global $image;  
  86.  for ($i = 0; $i < 75; $i++) {  
  87.   $rgb = imagecolorat($image$sy + $i$sx);  
  88.   if (!similar($rgb$cheet[$i])) {  
  89.    return false;  
  90.   }  
  91.  }  
  92.  return true;  
  93. }  
  94.    
  95. function screencap() {  
  96.  ob_start();  
  97.  system('adb shell screencap -p /sdcard/screen.png');  
  98.  system('adb pull /sdcard/screen.png .');  
  99.  ob_end_clean();  
  100. }  
  101.    
  102. function press($time) {  
  103.  system('adb shell input swipe 500 1600 500 1601 ' . $time);  
  104. }  
  105.    
  106. for ($id = 0; ; $id++) {  
  107.  echo sprintf("#%05d: "$id);  
  108.  // 截图  
  109.  screencap();  
  110.  // 获取坐标  
  111.  $image = imagecreatefrompng('screen.png');  
  112.  list($sx$sy) = getStart();  
  113.  list($tx$ty) = getEnd();  
  114.  if ($sx == 0) break;  
  115.  echo sprintf("(%d, %d) -> (%d, %d) "$sx$sy$tx$ty);  
  116.  // 图像描点  
  117.  imagefilledellipse($image$sy$sx, 10, 10, 0xFF0000);  
  118.  imagefilledellipse($image$ty$tx, 10, 10, 0xFF0000);  
  119.  imagepng($image, sprintf("screen/%05d.png"$id));  
  120.  // 计算按压时间  
  121.  $time = pow(pow($tx - $sx, 2) + pow($ty - $sy, 2), 0.425) * PRESS_TIME;  
  122.  $time = round($time);  
  123.  echo sprintf("time: %f\n"$time);  
  124.  press($time);  
  125.  // 等待下一次截图  
  126.  sleep(SLEEP_TIME);  
  127. }  
  128.  
  129. <?php  
  130. /**  
  131.  * 按压力度参数,根据实际表现进行调节  
  132.  * 如果跳远了就调低点  
  133.  */ 
  134. //define('PRESS_TIME', 3.752);  
  135. define('PRESS_TIME', 3.452);  
  136. /**  
  137.  * 睡眠时间  
  138.  */ 
  139. define('SLEEP_TIME', 2);  
  140. /**  
  141.  * 角色宽度,不需要调节  
  142.  */ 
  143. define('BODY_WIDTH', 75);  
  144. ###################我是分割线###################### 

另一种方法:

  1. function jump() {  
  2. sleep(2.5);//延迟 2.5 秒,音乐盒、便利店、井盖等站 2 秒加分  
  3. $screenShell = "cd D:\&adb shell /system/bin/screencap -p /sdcard/screenshot.png&adb pull /sdcard/screenshot.png d:jumper/screenshot.png";  
  4. exec($screenShell);//截图  
  5.    
  6. $i=imagecreatefrompng("d:jumper/screenshot.png");//读取图片  
  7. $point=array();  
  8. for ($y=400;$y<imagesy($i);$y++) {//从第 400 行开始,避开上部内容  
  9. for ($x=0;$x<imagesx($i);$x++) {//横向扫描  
  10. $rgb = imagecolorat($i,$x,$y);//取得颜色  
  11. $point["now"]["r"] = ($rgb>>16) & 0xFF;  
  12. $point["now"]["g"] = ($rgb>>8) & 0xFF;  
  13. $point["now"]["b"] = $rgb & 0xFF;  
  14. if(isset($point["last"]["r"])){  
  15. if(!isset($point["x"]["a"])){  
  16. ifabs($point["now"]["r"]-$point["last"]["r"])>1  
  17. or abs($point["now"]["g"]-$point["last"]["g"])>1  
  18. or abs($point["now"]["b"]-$point["last"]["b"])>1  
  19. ){  
  20. $point["x"]["a"]=$x;  
  21. if(imagesx($i)/2>$x){  
  22. $point["direction"]="left";  
  23. }else{  
  24. $point["direction"]="right";  
  25. }  
  26. $point["a"]=$point["last"];  
  27. }  
  28. }else{  
  29. if($point["now"]==$point["a"]){  
  30. $point["x"]["b"]=$x-1;  
  31. break;  
  32. }  
  33. }  
  34. }  
  35. $point["last"]=$point["now"];  
  36. }  
  37. if(isset($point["x"])){  
  38. break;  
  39. }  
  40. }  
  41.    
  42. $param["left"] = 3750;  
  43. $param["right"] = 3100;  
  44. $time = pow((abs(imagesx($i)/2-($point["x"]["a"]+$point["x"]["a"])/2)/imagesx($i)),1)*$param[$point["direction"]];  
  45.    
  46. if($time<400){  
  47. $time+=($param[$point["direction"]]/300);  
  48. }  
  49. $time = round($time,0);  
  50. echo "direction:".$point["direction"];  
  51. echo "\nx.a:".$point["x"]["a"];  
  52. echo "\nx.b:".$point["x"]["b"];  
  53. echo "\ntime:".$time."\n";  
  54. $touchShell = "cd D:\&adb shell input swipe 50 250 250 250 ".$time;  
  55. exec($touchShell);  
  56. imagedestroy($i);  
  57. jump();  
  58. }  
  59.    
  60. jump();

Tags: php微信跳一跳

分享到: