Hallo,
ich hab einen keybinder programmiert. er ist noch nicht fertig (net beschriftet, und befehle sollen erstmal net simuliert sondern in msgbox ausgegeben werden). mein code ist folgender:
Alles anzeigen
es kommt ein fehler wenn man auf die editboxen drückt. ich glaub der fehler kommt wenn das for() im case WM_COMMAND fertig ist raus, weil ich an sämtlichen stellen ein beep() eingesetzt habe und alle die vor den nachm for() sind gingen.
MfG met0in
ich hab einen keybinder programmiert. er ist noch nicht fertig (net beschriftet, und befehle sollen erstmal net simuliert sondern in msgbox ausgegeben werden). mein code ist folgender:
C-Quellcode
- #include <windows.h>
- #include <iostream>
- using namespace std;
- /* Declare Windows procedure */
- LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);
- /* Make the class name into a global variable */
- char szClassName[ ] = "Keybinder";
- string num[9]; // die null will ich net benutzen damit es übersichtliger ist
- std::string GetKey(int Key)
- {
- switch(Key){
- case VK_NUMPAD1: return num[1];
- break;
- case VK_NUMPAD2: return num[2];
- break;
- case VK_NUMPAD3: return num[3];
- break;
- case VK_NUMPAD4: return num[4];
- break;
- case VK_NUMPAD5: return num[5];
- break;
- case VK_NUMPAD6: return num[6];
- break;
- case VK_NUMPAD7: return num[7];
- break;
- case VK_NUMPAD8: return num[8];
- break;
- case VK_NUMPAD9: return num[9];
- break;
- }
- }
- DWORD WINAPI keystate(void *param){
- while(true)
- {
- string fenster;
- //Verhindert CPU Auslastung 5ms sleep
- Sleep(5);
- for(int i = 8; i < 191; i++)
- {
- if(GetAsyncKeyState(i)&1 ==1)
- {
- HWND hwnd = GetForegroundWindow(); // aktives Fenster holen
- TCHAR szWindowText[100]; // darin wird der Titel gespeichert
- GetWindowText(hwnd, szWindowText, 100); // Titel mit hwnd holen
- fenster=szWindowText;
- if(fenster=="GTA:SA:MP"){
- MessageBox ( NULL, GetKey(i).c_str(), "INHALT", MB_OK);
- }
- }
- }
- }
- }
- int WINAPI WinMain (HINSTANCE hThisInstance,
- HINSTANCE hPrevInstance,
- LPSTR lpszArgument,
- int nFunsterStil)
- {
- int param = 100;
- HANDLE hThreadHandle = CreateThread( 0,
- 0,
- keystate,
- ¶m,
- 0,
- 0 );
- HWND hwnd; /* This is the handle for our window */
- MSG messages; /* Here messages to the application are saved */
- WNDCLASSEX wincl; /* Data structure for the windowclass */
- /* The Window structure */
- wincl.hInstance = hThisInstance;
- wincl.lpszClassName = szClassName;
- wincl.lpfnWndProc = WindowProcedure; /* This function is called by windows */
- wincl.style = CS_DBLCLKS; /* Catch double-clicks */
- wincl.cbSize = sizeof (WNDCLASSEX);
- /* Use default icon and mouse-pointer */
- wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
- wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
- wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
- wincl.lpszMenuName = NULL; /* No menu */
- wincl.cbClsExtra = 0; /* No extra bytes after the window class */
- wincl.cbWndExtra = 0; /* structure or the window instance */
- /* Use Windows's default color as the background of the window */
- wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;
- /* Register the window class, and if it fails quit the program */
- if (!RegisterClassEx (&wincl))
- return 0;
- /* The class is registered, let's create the program*/
- hwnd = CreateWindowEx (
- 0, /* Extended possibilites for variation */
- szClassName, /* Classname */
- szClassName, /* Title Text */
- WS_OVERLAPPEDWINDOW, /* default window */
- CW_USEDEFAULT, /* Windows decides the position */
- CW_USEDEFAULT, /* where the window ends up on the screen */
- 544, /* The programs width */
- 375, /* and height in pixels */
- HWND_DESKTOP, /* The window is a child-window to desktop */
- NULL, /* No menu */
- hThisInstance, /* Program Instance handler */
- NULL /* No Window Creation data */
- );
- /* Make the window visible on the screen */
- ShowWindow (hwnd, nFunsterStil);
- /* Run the message loop. It will run until GetMessage() returns 0 */
- while (GetMessage (&messages, NULL, 0, 0))
- {
- /* Translate virtual-key messages into character messages */
- TranslateMessage(&messages);
- /* Send message to WindowProcedure */
- DispatchMessage(&messages);
- }
- /* The program return-value is 0 - The value that PostQuitMessage() gave */
- return messages.wParam;
- }
- /* This function is called by the Windows function DispatchMessage() */
- LRESULT CALLBACK WindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
- {
- HWND numedit[9];
- switch (message) /* handle the messages */
- {
- case WM_CREATE :{
- int x;
- for(int i = 1; i < 10; i++){
- x=10+(i*20);
- numedit[i] = CreateWindow("EDIT","", WS_CHILD|WS_VISIBLE|BS_PUSHBUTTON,20,x,200,15,hwnd,0,
- ((LPCREATESTRUCT) lParam)->hInstance, NULL) ;
- }
- }break;
- case WM_DESTROY:
- PostQuitMessage (0); /* send a WM_QUIT to the message queue */
- break;
- case WM_COMMAND: {
- int iLenght;
- char * text;
- for(int i=1;i<10;i++){
- iLenght = GetWindowTextLength(numedit[i])+1;
- text = new char[iLenght+1];
- GetWindowText(numedit[i],text ,iLenght);
- num[i]=text;
- }
- }break;
- default:
- return DefWindowProc (hwnd, message, wParam, lParam);
- }
- return 0;
- }
es kommt ein fehler wenn man auf die editboxen drückt. ich glaub der fehler kommt wenn das for() im case WM_COMMAND fertig ist raus, weil ich an sämtlichen stellen ein beep() eingesetzt habe und alle die vor den nachm for() sind gingen.
MfG met0in