我一直在尝试制作一个简单的python脚本,可以将击键发送到《帝国3》的游戏时代我已经尝试了pyautogui以及使用ScanCodes来做DirectInput,但似乎什么都没用,我只是不明白游戏需要什么样的输入,或者它如何避免从我的代码中获得任何输入我的代码有点混乱,从我测试几种不同的方法,但这里是如果有人想看到它。

import pyautogui
import pyperclip
import random
import keyboard
import time
from directkeys import PressKey, W, A, S, D


def spawn_hotdog():
    command = "mustard relish and burning oil"
    pyperclip.copy(command)
    pyautogui.click(500, 500)
    pyautogui.keyDown('enter')
    pyautogui.hotkey("ctrlleft", "v")
    pyautogui.keyDown('enter')


loop = False

while True:
    try:
        if keyboard.is_pressed('h'):
            loop = True
        elif keyboard.is_pressed('p'):
            loop = False
        elif keyboard.is_pressed('esc'):
            break
    except:
        pass
    if loop:
        time.sleep(1)
        PressKey(W)
        PressKey(0x1C)

这里是directkeys.py文件,我从https://pythonprogramming.net/direct-input-game-python-plays-gta-v/
# direct inputs
# source to this solution and code:
# http://stackoverflow.com/questions/14489013/simulate-python-keypresses-for-controlling-a-game
# http://www.gamespp.com/directx/directInputKeyboardScanCodes.html

import ctypes
import time

SendInput = ctypes.windll.user32.SendInput


W = 0x11
A = 0x1E
S = 0x1F
D = 0x20

# C struct redefinitions
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)]

# Actuals Functions

def PressKey(hexKeyCode):
    extra = ctypes.c_ulong(0)
    ii_ = Input_I()
    ii_.ki = KeyBdInput( 0, hexKeyCode, 0x0008, 0, ctypes.pointer(extra) )
    x = Input( ctypes.c_ulong(1), ii_ )
    ctypes.windll.user32.SendInput(1, ctypes.pointer(x), ctypes.sizeof(x))

def ReleaseKey(hexKeyCode):
    extra = ctypes.c_ulong(0)
    ii_ = Input_I()
    ii_.ki = KeyBdInput( 0, hexKeyCode, 0x0008 | 0x0002, 0,
ctypes.pointer(extra) )
    x = Input( ctypes.c_ulong(1), ii_ )
    ctypes.windll.user32.SendInput(1, ctypes.pointer(x), ctypes.sizeof(x))

if __name__ == '__main__':
    PressKey(0x11)
    time.sleep(1)
    ReleaseKey(0x11)
    time.sleep(1)`enter code here`

最佳答案

问题是你的代码真的很糟糕,这就是为什么它不能工作。我修正了一些错误,它起作用了尝试添加一些启用代码的击键。

import pyautogui
import random
import keyboard
import time

def spawn_hotdog():
    time.sleep(5)
    command = "mustard relish and burning oil"#command to type
    pyperclip.copy(command)
    pyautogui.click(500, 500)
    pyautogui.keyDown('enter')
    pyautogui.typewrite(command,interval = 0.10)
    pyautogui.keyUp('enter')#your code was buggy here
#types command in five seconds
spawn_hotdog()

#types command every five seconds
while True:
    spawn_hotdog()
    #add condition to break here!

#the rest of your code doesnt make sense

08-20 01:13