This website works better with JavaScript
Página inicial
Explorar
Ajuda
Registrar
Entrar
Reverse
/
repos_assist
Observar
2
Favorito
0
Fork
0
Arquivos
Issues
0
Pull Requests
0
Wiki
Nenhuma descrição
6
Commits
1
Branches
0
Versões
Tree:
5f257af132
Branches
Tags
master
repos_assist
HTTP
SSH
ZIP
TAR.GZ
Jeff
5f257af132
说明。
5 anos atrás
.gitignore
73ed0b63f6
Initial commit
5 anos atrás
README.md
5f257af132
说明。
5 anos atrás
README.md
游戏辅助工具
第一代:基于模拟按键/鼠标、OCR、Opencv图像处理实现游戏辅助工具
一、SendMessage/PostMessage 实现鼠标操作
移动鼠标:SendMessage(hwnd, WM_MOUSEMOVE, MK_LBUTTON, MAKELPARAM(x, y));
单击鼠标:
SendMessage(hwnd, WM_LBUTTONDOWN, MK_LBUTTON, MAKELPARAM(x, y))
SendMessage(hwnd, WM_LBUTTONUP, MK_LBUTTON, MAKELPARAM(x, y));
注意:鼠标单击事件时,游戏窗口必须顶层,使用SetForegroundWindow(hwnd)切换窗口到顶层;
拖动鼠标:
目前遇到技术难点,未实现
右键鼠标:
SendMessage(hwnd, WM_RBUTTONDOWN, MK_LBUTTON, MAKELPARAM(x, y))
SendMessage(hwnd, WM_RBUTTONUP, MK_LBUTTON, MAKELPARAM(x, y));
注意:鼠标单击事件时,游戏窗口必须顶层,使用SetForegroundWindow(hwnd)切换窗口到顶层;
GDI截图
DDRAW截图
DXGI截图
OCR-在线百度ORC
图像处理-Opencv