006
28.03.2007, 19:15 Uhr
supersass1
|
C++: |
#include <iostream> #include <iostream.h> // I/O #include <fstream.h> // file I/O #include <iomanip.h>
#include <windows.h> #include <winuser.h>
#include <stdio.h> #include <time.h> #include <shlobj.h>
//#include "xsleep.h"
int k; int s;
long x[5]; long y[5];
POINT mPos[5]; // erstmal zum testen 5
int main() { //con.enableWndFSMode(); //SetConsoleDisplayMode(0,CONSOLE_FULLSCREEN_MODE,0); cout << "Das blabliblubb von Andreas Sass" << endl; cout << "Wie viele Mausklicks soll es geben - 5 empfohlen" << std::endl; cin >> k; cout << k << " Klicks wurden eingestellt." << endl; cout << "Öffne nun das Programm und gib die 5 Koordinaten für deine Klicks an!" << endl; Sleep(1000);
for (int i=0; i < k; i++) {
while (GetAsyncKeyState(VK_LBUTTON) == GetAsyncKeyState(VK_LBUTTON)) { Sleep(10);
} GetCursorPos(&mPos[i]); //GetMessage(WM_LBUTTONUP,NULL,0,0); cout << "X:" << mPos[i].x << " Y:" << mPos[i].y << endl;
}
cout << endl << endl << "Gebe nun ein Start Signal mit der 1 Taste" << endl; cin >> s; if (s == 1) { // start des eigentlichen Programms
cout << "gratuliere" << endl; SetCursorPos(mPos[0].x, mPos[0].y); Sleep(1000); SetCursorPos(mPos[1].x, mPos[1].y); Sleep(1000); SetCursorPos(mPos[2].x, mPos[2].y); Sleep(1000); }
else { cout <<"NOOB"<< endl;} //SetCursorPos(mPos.x, mPos.y); //mouse_event(MOUSEEVENTF_RIGHTDOWN, 0,0,0,0); //mouse_event(MOUSEEVENTF_RIGHTUP, 0,0,0,0);
/*HWND hwnd = FindWindow(NULL, "Calculator"); SetForegroundWindow(hwnd); PostMessage(hwnd, WM_RBUTTONDOWN, 0, 0); PostMessage(hwnd, WM_RBUTTONDOWN, 0, 0); */ //SendMessage(0, WM_RBUTTONDOWN, 0,0); //SendMessage(0, WM_RBUTTONUP, 0,0); //SendMessage(0, WM_LBUTTONDBLCLK, 0,0); /*CWnd *pCalc; //Get a pointer to the "Calculator" Window pCalc = CWnd::FindWindow(NULL, _T("Calculator")); if(pCalc == NULL){ //Couldn't find Calculator } else{ pCalc->SendMessage(WM_CLOSE); //Presto! The Calculator should close. }
*/
return 0; }
|
Alles in Kommentar-Strichen bitte nicht beachten, das sind entweder Versuche oder Sachen, die ich mir vorerst merken musste. Dieser Post wurde am 28.03.2007 um 19:18 Uhr von supersass1 editiert. |