IcemacIOP Posted August 13, 2013 Share Posted August 13, 2013 Hi there, Last few days I've been working on a mouse to Joystick emulator, and had partial success with it. The virtual Joystick works almost flawlessly, and it took a lot of fine tuning and improvisation to make it work that way. The emulator uses Mouse DirectInput to calculate the Joystick movement. However some applications (most) receive Mouse DirectInput as well, thus creating conflicts. (for example lets say the application is a game, the virtual Joystick sends the command to "turn left" while the real mouse tells it to "turn right"). Now to the question: is there any way to make the mouse behave like it is only a Joystick? Blocking the connection between the app and the mouse DirectInput, and make the app only able to receive the Joystick input? Or disabling mouse DirectInput globaly trough a hotkey, while Autoit still being able to calculate with those values. So what I tried was: Making the Mouse constantly stay at the (0,0) coordinates, but the emulated Joystick doesn't receive any movement either. I've tried to compensate the mouse movement with the exact oposite values, but they are mostly nonlinear accelerated and thus unpredictable. If anyone has an idea how to make this work, I would love to know. Any and all help appreciated P.S I hope a virtual Joystick doesn't break any forum rules ^^ Link to comment Share on other sites More sharing options...
Bert Posted August 13, 2013 Share Posted August 13, 2013 IMHO -This is really discussing game automation. It isn't naming a game specifically but none the less the purpose is to work with a game. This is only my humble opinion and it is really up to the moderator to decide. JLogan3o13 1 The Vollatran project My blog: http://www.vollysinterestingshit.com/ Link to comment Share on other sites More sharing options...
JohnOne Posted August 13, 2013 Share Posted August 13, 2013 P.S I hope a virtual Joystick doesn't break any forum rules ^^ I don't believe it does. Best to post your code though for better help. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted August 13, 2013 Moderators Share Posted August 13, 2013 IcemacIOP,A real borderline case this. As long as you keep the discussion on how to emulate a joystick in general terms I am content for the thread to remain open. But please do not enter into discussion of how to get the resultant code to interact specifically with games. Tread carefully. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
IcemacIOP Posted August 13, 2013 Author Share Posted August 13, 2013 Thanks Melba Since I'm not very familiar with Autoit I made the emulator in GlovePIE. But I'll give my best and translate it to autoit as soon as i get an idea of how to do it. Will take some research though ^^ Here is the script anyway, and its very easy to understand http://pastebin.com/qnSNuwf7 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now