-1

我以前做过这个,但是使用这个特定的按钮,它不起作用!

如果我手动单击按钮,它会创建一个新窗口(小地图): 图像

/////// 但是以编程方式,我可以看到按钮上的动画,就好像它被点击了gif一样,

但是窗口(小地图)没有出现

            int x = 9, y = 8;
            IntPtr lParam = (IntPtr)((y << 16) | x);
            WinAPIs.PostMessage(button, WinAPIs.WM_LBUTTONDOWN, (IntPtr)0x01, lParam);
            WinAPIs.PostMessage(button, WinAPIs.WM_LBUTTONUP, IntPtr.Zero, lParam);

只有当我的代码发送消息时鼠标悬停在按钮上时,才会创建小地图。

这是 YouTube 上的 10 秒视频:视频

注意:在视频中,我没有用鼠标点击按钮, 我只是悬停它。

UPDATE1: Spy++ 消息图像

UPDATE2:游戏使用 GetCursorPos 和 WindowFromPoint 获取光标下窗口的句柄并将其与按钮的句柄进行比较,即使游戏在后台,我也需要弄清楚如何挂钩 WindowFromPoint 以发送按钮的句柄。

4

1 回答 1

0

我找到了答案,

首先,我必须对游戏进行逆向工程,

而且我发现它使用WindowFromPoint来获取当前光标位置下的窗口句柄,并将其与按钮的句柄进行比较。

这意味着当游戏在后台运行时,机器人将无法工作。

所以我必须弄清楚如何挂钩 WindowFromPoint 调用并更改返回值,这样即使游戏在后台,我也可以发送按钮的句柄。

我使用这个库来这样做:Deviare

这是如何使用它的快速入门。

这是我的代码:

using System;
using System.Windows.Forms;
using Nektra.Deviare2;

public partial class Form1 : Form
{
    private NktSpyMgr _spyMgr;
    public Form1()
    {
        InitializeComponent();

        _spyMgr = new NktSpyMgr();
        _spyMgr.Initialize();
        _spyMgr.OnFunctionCalled += new DNktSpyMgrEvents_OnFunctionCalledEventHandler(OnFunctionCalled);
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        //Search for the game process
        var processes = System.Diagnostics.Process.GetProcessesByName("Conquer");
        int processID = 0;
        if (processes.Length < 1)
        {
            MessageBox.Show("Couldn't find Conquer", "Error");
            Environment.Exit(0);
        }
        else
        {
            //Found the game
            processID = processes[0].Id;
        }

        //Hook WindowFromPoint with 'flgOnlyPostCall' meaning OnFunctionCalled will be triggered after the api call and before the value returns to the game
        NktHook hook = _spyMgr.CreateHook("user32.dll!WindowFromPoint", (int)(eNktHookFlags.flgRestrictAutoHookToSameExecutable | eNktHookFlags.flgOnlyPostCall));
        hook.Hook(true);
        hook.Attach(processID, true);
        
        //Now send the button click and It works.
        int x = 9, y = 8;
        IntPtr lParam = (IntPtr)((y << 16) | x);
        WinAPIs.PostMessage((IntPtr)0x1D02D0, WinAPIs.WM_LBUTTONDOWN, (IntPtr)0x01, lParam);
        WinAPIs.PostMessage((IntPtr)0x1D02D0, WinAPIs.WM_LBUTTONUP, IntPtr.Zero, lParam);
    }

    private static void OnFunctionCalled(NktHook hook, NktProcess process, NktHookCallInfo hookCallInfo)
    {
        INktParam pRes = hookCallInfo.Result();

        //change the return value to whatever you want.. 0x1D02D0 here for example
        pRes.Value = new IntPtr(0x1D02D0);
    }
}
于 2020-07-30T07:14:09.430 回答