.NET开发一个微信跳一跳辅助程序整理
程序员文章站
2022-04-08 10:19:33
源码已经运行环境已经打包下载即可 执行adb命令的函数 ......
源码已经运行环境已经打包下载即可
执行adb命令的函数
/// <summary> /// 执行adb命令 /// </summary> /// <param name="arguments"></param> /// <param name="ischeck"></param> /// <returns></returns> private string cmdAdb(string arguments,bool ischeck=true) { if (ischeck&&!HasAndroid) { return string.Empty; } string ret = string.Empty; using (Process p = new Process()) { p.StartInfo.FileName = Program.AdbPath;// @"C:\Android\sdk\platform-tools\adb.exe"; p.StartInfo.Arguments = arguments; p.StartInfo.UseShellExecute = false; p.StartInfo.RedirectStandardInput = true; //重定向标准输入 p.StartInfo.RedirectStandardOutput = true; //重定向标准输出 p.StartInfo.RedirectStandardError = true; //重定向错误输出 p.StartInfo.CreateNoWindow = true; p.Start(); ret = p.StandardOutput.ReadToEnd(); p.Close(); } return ret; }
图片点击事件
/// <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"))); } }
本文基于 中国.NET研究协会指导
http://www.cnblogs.com/dotnet-org-cn
源码地址
https://files.cnblogs.com/files/yangxu-tech/%E8%B7%B3%E4%B8%80%E8%B7%B3%E8%BE%85%E5%8A%A9%E7%A8%8B%E5%BA%8F.zip
上一篇: C语言入门:选择排序(代码实现,而不是排序方法阐述)
下一篇: 使用js和正则表达式实现表单的验证