I need to send global keystrokes and mouse events to another application, which is coincidentally using using DirectX. (No controls/handles other than the window itself)
For example, I need to hold key X for 2 seconds and then release it...
I need to push Right Click down on coordinates x:600 and y:350, move the mouse 100 pixels down and then release the Right Click.
I also need to push 2 or more keys at once, like X and Y, and stop X after 2 seconds and Y after 2 more seconds.
So basically I would need full control of the input system...
It would also be ideal if I could control the application while maximized or in background. (optionally)

For the skeptics... The teacher made a DirectX application for drawing for our school. I am asked to make an application that draws samples on it, like a train or flower or something... I will be reading images and use the input to set the color and click on the canvas...

link|improve this question

1  
Sounds like game bot programming ;-) – DanielB May 11 '11 at 14:18
1  
Drawing application for kids. School project! – Vercas May 11 '11 at 14:20
To be honest, your post diverges from the original question and becomes rather broad. – Mr. Disappointment May 11 '11 at 14:20
Then a big sorry ;-) – DanielB May 11 '11 at 14:21
@DanielB It's okay. It indeed sounds like bot programming. @Mr. Disappointment What do you mean? – Vercas May 11 '11 at 14:23
feedback

1 Answer

up vote 1 down vote accepted

There are some possibilities. You may have a look at System.Windows.Forms.SendKeys and you can pInvoke some Win32 functions like SetForegroundWindow(), LockSetForegroundWindow() from gdi32.dll or from user32.dll SetCursorPos() and mouse_event to perform clicks:

Here a snippet for the Mouse events I used a while ago.

    /**
     * Mouse functions
     */
    [DllImport("user32.dll", ExactSpelling=true)]
    public static extern long mouse_event(Int32 dwFlags, Int32 dx, Int32 dy, Int32 cButtons, Int32 dwExtraInfo);

    [DllImport("user32.dll", ExactSpelling=true)]
    public static extern void SetCursorPos(Int32 x, Int32 y); 

    public const Int32 MOUSEEVENTF_ABSOLUTE = 0x8000;
    public const Int32 MOUSEEVENTF_LEFTDOWN = 0x0002;
    public const Int32 MOUSEEVENTF_LEFTUP = 0x0004;
    public const Int32 MOUSEEVENTF_MIDDLEDOWN = 0x0020;
    public const Int32 MOUSEEVENTF_MIDDLEUP = 0x0040;
    public const Int32 MOUSEEVENTF_MOVE = 0x0001;
    public const Int32 MOUSEEVENTF_RIGHTDOWN = 0x0008;
    public const Int32 MOUSEEVENTF_RIGHTUP = 0x0010;

    public static void PerformLeftKlick(Int32 x, Int32 y)
    {
        SetCursorPos(x, y);
        mouse_event(MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
        mouse_event(MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
    }

Hope that pushes you in the right direction. A good resource is http://pinvoke.net/

link|improve this answer
I am testing with DirectX... Edit: It works! Thank you! – Vercas May 11 '11 at 14:45
@DanielB But how do I send key X pressed and key X released after a while? – Vercas May 11 '11 at 14:51
Thats a question I have no answer for. Maybe by pinvoking also. – DanielB May 11 '11 at 14:52
Have a look at pinvoke.net/default.aspx/user32.keybd_event – DanielB May 11 '11 at 14:54
Thanks! Testing! – Vercas May 11 '11 at 14:59
show 10 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.