吾爱破解 - LCG - LSG |安卓破解|病毒分析|www.52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 17198|回复: 41
收起左侧

[其他转载] C#外挂QQ游戏大家来找茬辅助源码,早期开发

  [复制链接]
kovin 发表于 2014-1-23 21:21
本帖最后由 kovin 于 2014-1-23 21:23 编辑

自从在本论坛发布了百度贴吧辅助工具(一键签到、设置头像、抢二楼、查找资料、发帖回帖、提取楼层邮箱)之后,我的博客放肆雷特.NET留言,还有QQ消息给我提了比较多中肯的意见,在这里谢谢大家的支持。

今天给大家带来的是一款几年前开发的工具,当年作为一民IT纯屌,为了当年自己心目中的一位女神熬夜开发完成。女神使用后找茬等级瞬间从眼明手快升级为三只眼。。。每次看到这个就会想起那段屌丝与女神的回忆。今天特地把代码更新了一下,支持最新版的《大家来找茬》。下面上运行的截图,源码在本文最后(对不起了,与我对战的那位玩家)
C#外挂QQ找茬辅助源码程序截图.png
C#外挂QQ找茬辅助源码运行截图.png

这个工具的主要运行流程很简单:游戏截图-》比较图片-》标记图片不同点
记得当时处理程序截图和比较图片的时候比较麻烦,下面是截图的处理类ScreenCapture:
[C#] 纯文本查看 复制代码
/// <summary>   
/// 提供全屏和指定窗口的截图 以及保存为文件的类   
/// </summary>   
public class ScreenCapture
{
    /// <summary>   
    /// 全屏截图    
    /// </summary>   
    /// <returns></returns>   
    public Image CaptureScreen()
    {
        return CaptureWindow(User32.GetDesktopWindow());
    }
    /// <summary>   
    /// 指定窗口截图   
    /// </summary>   
    /// <param name="handle">窗口句柄. (在windows应用程序中, 从Handle属性获得)</param>   
    /// <returns></returns>   
    public Image CaptureWindow(IntPtr handle)
    {
        IntPtr hdcSrc = User32.GetWindowDC(handle);
        User32.RECT windowRect = new User32.RECT();
        User32.GetWindowRect(handle, ref windowRect);
        int width = windowRect.right - windowRect.left;
        int height = windowRect.bottom - windowRect.top;
        IntPtr hdcDest = GDI32.CreateCompatibleDC(hdcSrc);
        IntPtr hBitmap = GDI32.CreateCompatibleBitmap(hdcSrc, width, height);
        IntPtr hOld = GDI32.SelectObject(hdcDest, hBitmap);
        GDI32.BitBlt(hdcDest, 0, 0, width, height, hdcSrc, 0, 0, GDI32.SRCCOPY);
        GDI32.SelectObject(hdcDest, hOld);
        GDI32.DeleteDC(hdcDest);
        User32.ReleaseDC(handle, hdcSrc);
        Image img = Image.FromHbitmap(hBitmap);
        GDI32.DeleteObject(hBitmap);
        return img;
    }
    /// <summary>   
    /// 指定窗口截图 保存为图片文件   
    /// </summary>   
    /// <param name="handle"></param>   
    /// <param name="filename"></param>   
    /// <param name="format"></param>   
    public void CaptureWindowToFile(IntPtr handle, string filename, ImageFormat format)
    {
        Image img = CaptureWindow(handle);
        img.Save(filename, format);
    }
    /// <summary>   
    /// 全屏截图 保存为文件   
    /// </summary>   
    /// <param name="filename"></param>   
    /// <param name="format"></param>   
    public void CaptureScreenToFile(string filename, ImageFormat format)
    {
        Image img = CaptureScreen();
        img.Save(filename, format);
    }

    /// <summary>   
    /// 辅助类 定义 Gdi32 API 函数   
    /// </summary>   
    private class GDI32
    {

        public const int SRCCOPY = 0x00CC0020;
        [DllImport("gdi32.dll")]
        public static extern bool BitBlt(IntPtr hObject, int nXDest, int nYDest,
            int nWidth, int nHeight, IntPtr hObjectSource,
            int nXSrc, int nYSrc, int dwRop);
        [DllImport("gdi32.dll")]
        public static extern IntPtr CreateCompatibleBitmap(IntPtr hDC, int nWidth,
            int nHeight);
        [DllImport("gdi32.dll")]
        public static extern IntPtr CreateCompatibleDC(IntPtr hDC);
        [DllImport("gdi32.dll")]
        public static extern bool DeleteDC(IntPtr hDC);
        [DllImport("gdi32.dll")]
        public static extern bool DeleteObject(IntPtr hObject);
        [DllImport("gdi32.dll")]
        public static extern IntPtr SelectObject(IntPtr hDC, IntPtr hObject);
    }

    /// <summary>   
    /// 辅助类 定义User32 API函数   
    /// </summary>   
    private class User32
    {
        [StructLayout(LayoutKind.Sequential)]
        public struct RECT
        {
            public int left;
            public int top;
            public int right;
            public int bottom;
        }
        [DllImport("user32.dll")]
        public static extern IntPtr GetDesktopWindow();
        [DllImport("user32.dll")]
        public static extern IntPtr GetWindowDC(IntPtr hWnd);
        [DllImport("user32.dll")]
        public static extern IntPtr ReleaseDC(IntPtr hWnd, IntPtr hDC);
        [DllImport("user32.dll")]
        public static extern IntPtr GetWindowRect(IntPtr hWnd, ref RECT rect);
    }
}


QQZhaoCha.zip (84.71 KB, 下载次数: 1065)

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

吾爱-路人甲 发表于 2014-1-23 21:25
感谢分享源码啊。我就会易语言啊。c的好难呀
caniy 发表于 2015-1-24 13:28
我会看3D立体图,不需要软件也可以玩这个很厉害.只是,人家蓝钻啥的会怀疑开G,就T你出去,或者没几盘其他人就走了
Victory.ms 发表于 2014-1-23 21:27
a448629708 发表于 2014-1-23 21:28
感谢呵呵  
冒死一搏 发表于 2014-1-23 21:28
我也想学会语言
lanyan123 发表于 2014-1-23 21:29
为了c#也要给你顶一个
1354669803 发表于 2014-1-23 21:29
坐等大神翻译成易语言
ccshrj 发表于 2014-1-23 22:31
多谢楼主分享··
 楼主| kovin 发表于 2014-1-23 22:32
Victory.ms 发表于 2014-1-23 21:27
其实我就是跟你对战的那位玩家

莫非你是个女的。。。
 楼主| kovin 发表于 2014-1-23 22:34
lanyan123 发表于 2014-1-23 21:29
为了c#也要给你顶一个

呵呵C#还是挺好的啊。
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则 警告:本版块禁止灌水或回复与主题无关内容,违者重罚!

快速回复 收藏帖子 返回列表 搜索

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-5-24 06:51

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表