.NET開發一個微信跳一跳輔助程序

昨天微信更新了,出現了一個小遊戲「跳一跳」,玩了一下 趕忙還蠻有意思的 但純粹是拼手感的,玩了很久,終於搞了個135分拿了個第一名,沒想到過一會就被朋友刷下去了,最高的也就200來分把,因而就想着要是開發個輔助就行了,因而簡單想了一下最高遊戲shell

先來講下這個遊戲的界面和規則:微信

先看看界面ide

規則:按住屏幕 按必定時間鬆開就能夠跳躍,跳躍到前方的圖案中得1分,圖按中間得2分(連續多箇中間累加2分,好比第一個2分 第二個4分 第三個6分 最高累計32分) 其它規則不說明了函數

整理了下實現原理,其實挺簡單的:就是計算黑人的底部到圖案中間的距離,而後就調試時間,調好時間後就計算一個像素點的最佳時間X,而後之後每次測試黑人底部到圖案中心的距離*X 就是最佳時間測試

理論知識好了 就來實踐把spa

一、首先要獲取手機屏幕的圖片 並展現在winform程序裏面
二、讓客戶點擊黑人底部和圖案中心點(根據圖片去獲取這兩個點 貌似有點困難 至少我如今的技術困難)3d

三、模擬屏幕按下並按住多長時間調試

獲取屏幕圖片咱們能夠根據安卓的adb.exe來獲取,但我對這個東西不太熟悉,就百度了幾個命令  一、截屏命令 2 傳輸命令 和模擬滑動命令code

adb shell /system/bin/screencap -p /sdcard/screenshot.png(保存到SDCard)
adb pull /sdcard/screenshot.png d:/screenshot.png(保存到電腦)
adb shell input swipe 250 250 300 300 100 滑動 前四個是座標 最後一個是時間

好了實現的方法也找到了 就碼代碼把orm

執行adb命令的函數

 1 /// <summary>
 2         /// 執行adb命令
 3         /// </summary>
 4         /// <param name="arguments"></param>
 5         /// <param name="ischeck"></param>
 6         /// <returns></returns>
 7         private string cmdAdb(string arguments,bool ischeck=true)
 8         {
 9             if (ischeck&&!HasAndroid)
10             {
11                 return string.Empty;
12             }
13             string ret = string.Empty;
14             using (Process p = new Process())
15             {
16                 p.StartInfo.FileName = Program.AdbPath;// @"C:\Android\sdk\platform-tools\adb.exe";
17                 p.StartInfo.Arguments = arguments;
18                 p.StartInfo.UseShellExecute = false;
19                 p.StartInfo.RedirectStandardInput = true;   //重定向標準輸入   
20                 p.StartInfo.RedirectStandardOutput = true;  //重定向標準輸出   
21                 p.StartInfo.RedirectStandardError = true;   //重定向錯誤輸出   
22                 p.StartInfo.CreateNoWindow = true;
23                 p.Start();
24                 ret = p.StandardOutput.ReadToEnd();
25                 p.Close();
26             }
27             return ret;
28         }
View Code

//圖片點擊事件

/// <summary>
        /// 黑人底部位置
        /// </summary>
        Point Start;
        /// <summary>
        /// 圖案中心或者白點位置
        /// </summary>
        Point End;
        private void pictureBox1_Click(object sender, EventArgs e)
        {
            var me = ((System.Windows.Forms.MouseEventArgs)(e));
            if (me.Button==MouseButtons.Left)//按下左鍵是黑人底部的座標
            {
                Start = ((System.Windows.Forms.MouseEventArgs)(e)).Location;
            }
            else if (me.Button == MouseButtons.Right)//按下右鍵鍵是黑人底部的座標
            {
                End = ((System.Windows.Forms.MouseEventArgs)(e)).Location;
                //計算兩點直接的距離
                double value = Math.Sqrt(Math.Abs(Start.X - End.X) * Math.Abs(Start.X - End.X) + Math.Abs(Start.Y - End.Y) * Math.Abs(Start.Y - End.Y));
                Text = string.Format("兩點之間的距離:{0},須要按下時間:{1}", value, (3.999022243950134 * value).ToString("0")); 
                //3.999022243950134  這個是我經過屢次模擬後獲得 我這個分辨率的最佳時間
                cmdAdb(string.Format("shell input swipe 100 100 200 200 {0}", (3.999022243950134 * value).ToString("0")));
            }
        }
View Code

就這樣核心代碼就完成了 是否是趕忙很簡單了。。

 

最後放出效果把 ,(惋惜被我女票手賤就截屏了,截屏的時候手碰了屏幕 致使按下去跳下去了,否則我是要刷到1W分的 哈哈)

 

 我估計這個分數 純手玩 估計比較心碎把 哈哈  朋友圈就霸佔第一名把  哈哈 

 

 最後給源碼把  地址:https://files.cnblogs.com/files/dotnet-org-cn/tiaotitiao.rar

相關文章
相關標籤/搜索