mouse_event 函数将光标发送到稍微错误的坐标(1-20 像素外)。它“关闭”的程度基于我无法弄清楚的模式。
这是我的代码
int x, y;
int repeats = 1000;
int start = 0;
POINT pt;
for(int i=0; i<repeats; i+=10) //first loop, down right
{
x = (65536 / 1920) * i - 1; //convert to absolute coordinates
y = (65536 / 1080) * i - 1;
mouse_event(MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE, x, y, 0, 0); //move
GetCursorPos(&pt); //get cursor position
if(pt.x != i){mouse_event(MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE, x, y, 0, 0);} //check if the position is wrong, and if so fix it.
if(pt.y != i){mouse_event(MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE, x, y, 0, 0);}
cout << "Try: " << i << ", " << i << "\tReal: " << pt.x << ", " << pt.y << "\tDiff: " << pt.x - i << ", " << pt.y - i << '\n';
}
for(int i=repeats; i>0; i-=10) //second loop, up left
{
x = (65536 / 1920) * i - 1;
y = (65536 / 1080) * i - 1;
mouse_event(MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE, x, y, 0, 0);
GetCursorPos(&pt);
if(pt.x != i){mouse_event(MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE, x, y, 0, 0);}
if(pt.y != i){mouse_event(MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE, x, y, 0, 0);}
cout << "Try: " << i << ", " << i << "\tReal: " << pt.x << ", " << pt.y << "\tDiff: " << pt.x - i << ", " << pt.y - i << '\n';
}
如果运行它,它会导致鼠标从屏幕左上角向下和向右移动,然后再次返回。但是越往下走,“mouse_event”创建的鼠标移动就越不正确。
我移动它,然后记录当前坐标,然后计算差异。我走的屏幕越往下,差异(运动误差)就越大。我什至尝试添加一个额外的检查来测试坐标是否关闭,然后尝试再次将鼠标移动到正确的位置,但它不起作用
知道为什么会这样吗?
为方便起见,这是该程序的输出日志。
它清楚地表明,在第一个循环(向下和向右移动鼠标)中,错误增加,然后在第二个循环(再次向上和向左移动),错误以相同的方式减少。
知道为什么会发生这种情况吗?它也以我无法量化的方式发生在更复杂的实现中,并且与这个不同,所以我认为它必须在 mouse_event 函数本身或我不理解的某些功能中
提前感谢您的帮助