Python鼠标点击游戏(直接输入)

我搜索了很多模拟鼠标点击和 Directx 游戏的移动。我找到了一个关于按键的好资料,但没有找到关于鼠标的资料。实际上,关于直接输入的按键(模拟 Python 按键控制游戏)有很好的 stackoverflow 主题。但是我没有足够的经验来使其适用于特定位置的鼠标点击。


我尝试了很多 python 模块,如 pyautogui、win32 等,但它们都不起作用。甚至我尝试通过自动热键单击它并将参数发送到“.ahk”文件,但它不稳定,也不是一个好方法。我将不胜感激每条评论。我只在这个点击上工作了 2 天,我完全迷失了。谢谢!


我从 reddit 找到了这段代码,用于在游戏中点击,但它也不起作用。


import ctypes


PUL = ctypes.POINTER(ctypes.c_ulong)


class KeyBdInput(ctypes.Structure):

    _fields_ = [("wVk", ctypes.c_ushort),

                ("wScan", ctypes.c_ushort),

                ("dwFlags", ctypes.c_ulong),

                ("time", ctypes.c_ulong),

                ("dwExtraInfo", PUL)]



class HardwareInput(ctypes.Structure):

    _fields_ = [("uMsg", ctypes.c_ulong),

                ("wParamL", ctypes.c_short),

                ("wParamH", ctypes.c_ushort)]



class MouseInput(ctypes.Structure):

    _fields_ = [("dx", ctypes.c_long),

                ("dy", ctypes.c_long),

                ("mouseData", ctypes.c_ulong),

                ("dwFlags", ctypes.c_ulong),

                ("time", ctypes.c_ulong),

                ("dwExtraInfo", PUL)]



class Input_I(ctypes.Union):

    _fields_ = [("ki", KeyBdInput),

                ("mi", MouseInput),

                ("hi", HardwareInput)]


class Input(ctypes.Structure):

    _fields_ = [("type", ctypes.c_ulong),

                ("ii", Input_I)]


def set_pos(x, y):

    x = 1 + int(x * 65536./1920.)

    y = 1 + int(y * 65536./1080.)

    extra = ctypes.c_ulong(0)

    ii_ = Input_I()

    ii_.mi = MouseInput(x, y, 0, (0x0001 | 0x8000), 0, ctypes.pointer(extra))

    command = Input(ctypes.c_ulong(0), ii_)

    ctypes.windll.user32.SendInput(1, ctypes.pointer(command), ctypes.sizeof(command))


def left_click():

    extra = ctypes.c_ulong(0)

    ii_ = Input_I()

    ii_.mi = MouseInput(0, 0, 0, 0x0002, 0, ctypes.pointer(extra))

    x = Input(ctypes.c_ulong(0), ii_)

    ctypes.windll.user32.SendInput(1, ctypes.pointer(x), ctypes.sizeof(x))


left_click() 函数正在工作,但 click 可以与所有模块一起使用,我需要 set_pos() 才能工作,但不幸的是它不是。


守着一只汪
浏览 593回答 3
3回答

九州编程

我做了很多研究,发现了 pyautoit 模块。它真的很棒而且易于使用。我认为它只适用于 32 位 python 我无法将它安装到 64 位版本。您也应该安装 autoitx3,但我不确定它是否只能与一个 dll 一起使用。安装 autoitx3 和 pyautoit 模块后,您可以使用以下示例代码:import autoitimport timetime.sleep(2)#"left" stand for left click, 1243 and 1035 is x and y coordinates and 1 is number of clicks.autoit.mouse_click("left", 1243, 1035, 1)

浮云间

def move(x=None, y=None, duration=0.25, absolute=True, interpolate=False, **kwargs):    if (interpolate):        print("mouse move {}".format(interpolate))        current_pixel_coordinates = win32api.GetCursorPos()        if interpolate:            current_pixel_coordinates = win32api.GetCursorPos()            start_coordinates = _to_windows_coordinates(*current_pixel_coordinates)            end_coordinates = _to_windows_coordinates(x, y)            print("In interpolate")            coordinates = _interpolate_mouse_movement(                start_windows_coordinates=start_coordinates,                end_windows_coordinates=end_coordinates            )            print(coordinates)        else:            coordinates = [end_coordinates]        for x, y in coordinates:            extra = ctypes.c_ulong(0)            ii_ = Input_I()            ii_.mi = MouseInput(x, y, 0, (0x0001 | 0x8000), 0, ctypes.pointer(extra))            x = Input(ctypes.c_ulong(0), ii_)            ctypes.windll.user32.SendInput(1, ctypes.pointer(x), ctypes.sizeof(x))            time.sleep(duration / len(coordinates))    else:        x = int(x)        y = int(y)        coordinates = _interpolate_mouse_movement(            start_windows_coordinates=(0, 0),            end_windows_coordinates=(x, y)        )        for x, y in coordinates:            extra = ctypes.c_ulong(0)            ii_ = Input_I()            ii_.mi = MouseInput(x, y, 0, 0x0001, 0, ctypes.pointer(extra))            x = Input(ctypes.c_ulong(0), ii_)            ctypes.windll.user32.SendInput(1, ctypes.pointer(x), ctypes.sizeof(x))            time.sleep(duration / len(coordinates))def _to_windows_coordinates(x=0, y=0):    display_width = win32api.GetSystemMetrics(0)    display_height = win32api.GetSystemMetrics(1)    windows_x = (x * 65535) // display_width    windows_y = (y * 65535) // display_height    return windows_x, windows_ydef _interpolate_mouse_movement(start_windows_coordinates, end_windows_coordinates, steps=20):    x_coordinates = [start_windows_coordinates[0], end_windows_coordinates[0]]    y_coordinates = [start_windows_coordinates[1], end_windows_coordinates[1]]    if x_coordinates[0] == x_coordinates[1]:        x_coordinates[1] += 1    if y_coordinates[0] == y_coordinates[1]:        y_coordinates[1] += 1    interpolation_func = scipy.interpolate.interp1d(x_coordinates, y_coordinates)    intermediate_x_coordinates = np.linspace(start_windows_coordinates[0], end_windows_coordinates[0], steps + 1)[1:]    coordinates = list(map(lambda x: (int(round(x)), int(interpolation_func(x))), intermediate_x_coordinates))将此代码附加到您的代码并使用move(x,y)调用它。这是完整代码的链接https://github.com/SerpentAI/SerpentAI/blob/dev/serpent/input_controllers/native_win32_input_controller.py 也可能有助于以管理权限运行 python

慕容3067478

对于 Directx 游戏,如果 Direct Input 有效,您必须对其进行自我测试。但是使用 pywinauto Package 您可以模拟鼠标点击和鼠标移动。看看pywinauto.mouse要为 python 27 安装 pywinauto 包,您可以使用此 bat 文件。安装-Pywinauto.batC:\Python27\scripts\pip.exe install pywinautopause现在你准备好了。Left-mouse-click.pyimport pywinautopywinauto.mouse.click(button='left', coords=(0, 0)) Double-Left-Mouse-Click.pyimport pywinautopywinauto.mouse.double_click(button='left', coords=(0, 0))如果您将它与AutoPytonLauncher一起使用你可以点击桌面上的一个3D按钮图像发送任何快捷键的宏的或者鼠标点击或MouseMovements到Windows应用程序或游戏。(不会失去对活动窗口的关注。)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python