我想向DOSBOX发送一个键盘命令(向下箭头),然后在C#中执行一些处理代码,然后循环。我的目标是自动运行DOS程序。
我在记事本和Windows资源管理器上成功运行的代码不适用于DOSBOX。
这是我的(简化)代码:
[DllImport("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, int wMsg, IntPtr wParam, IntPtr lParam);
static void Main(string[] args)
{
Console.ReadKey();
System.Threading.Thread.Sleep(2000); //to give me time to set focus to the other window
SendMessage(new IntPtr(0x001301CE), 0x0100, new IntPtr(0x28), new IntPtr(0));
}
我使用WinSpy ++获取窗口的句柄,DOSBOX只有一个窗口而没有子窗口,这个过程适用于记事本和资源管理器。我发送给SendMessage方法的其他参数是keyboard notification keydown的代码和down arrow key的代码。
所以我的问题是,如何修改我的代码以将按键发送到DOSBOX,或者我可以通过不同的方式实现此目的?
答案 0 :(得分:3)
所以我设法让它自己工作,这就是我找到的。
DOSBOX是SDL application,因此在OpenGL中运行。将消息发送到OpenGL应用程序已discussed before,并使用SendInput()
method完成。这显然是SendKeys
在引擎盖下的调用,所以我不确定为什么这对我不起作用,但看起来我不是唯一的。
This unmaintained library似乎工作正常,或者可以自定义实施like this。
上面的堆栈溢出链接中讨论的另一个选项是编写C或C ++库并通过C#应用程序调用它。这就是我最终要做的,这是代码。
Down.h
extern "C" __declspec(dllexport) void PressDownKey();
Down.cpp
#include <Windows.h>
#include "Down.h"
extern "C" __declspec(dllexport) void PressDownKey()
{
KEYBDINPUT KeybdInput;
ZeroMemory(&KeybdInput, sizeof(KeybdInput));
KeybdInput.wVk = VK_DOWN;
KeybdInput.dwExtraInfo = GetMessageExtraInfo();
INPUT InputStruct;
ZeroMemory(&InputStruct, sizeof(InputStruct));
InputStruct.ki = KeybdInput;
InputStruct.type = 1;
int A = SendInput(1,&InputStruct,sizeof(INPUT));
Sleep(10);
ZeroMemory(&KeybdInput, sizeof(KeybdInput));
KeybdInput.wVk = VK_DOWN;
KeybdInput.dwFlags = KEYEVENTF_KEYUP;
KeybdInput.dwExtraInfo = GetMessageExtraInfo();
ZeroMemory(&InputStruct, sizeof(InputStruct));
InputStruct.ki = KeybdInput;
InputStruct.type = 1;
A = SendInput(1,&InputStruct,sizeof(INPUT));
}
答案 1 :(得分:2)
微软在此主题上有一个article,以及完整的实现。
编辑:评论中的每个对话 - 这是代码。
控制台应用:
class Program
{
static void Main(string[] args)
{
ConsoleKeyInfo ki = Console.ReadKey();
while (ki.KeyChar != 'Z')
{
Console.WriteLine(ki.KeyChar);
ki = Console.ReadKey();
}
}
}
Winforms App:
SendKeys.SendWait("A");
Thread.Sleep(2000);
SendKeys.SendWait("Z");
您可以在控制台应用程序上看到输出 - 这意味着它正在接收命令。