Using GetAsyncKeyState in Ruby | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 9

Using GetAsyncKeyState in Ruby

How can I use GetAsyncKeyState in Ruby, does anyone know? All I know is you can get it by requiring Win32API but how can I use the GetAsyncKeyState, reply please ASAP EDIT: I tried using Linux to see if this works but it said an error constant dynamic assignment Here's the code I saw online(Modified a bit): require 'Win32API' GetAsyncKeyState = Win32API.new("user32", "GetAsyncKeyState", ['i'], 'i') GetAsyncKeyState.call(0x58) if GetAsyncKeyState.call(0x58) & 0x01 == 1 puts "X pressed!" end puts "Working?"

28th Mar 2017, 7:06 AM
MrCoder
MrCoder - avatar
10 Answers
+ 1
I'm not too sure about Linux. Using a capital as the variable name makes it const. Also you did a call twice. The least significant bit checks if the key was pressed since the last call and then set to 0. So your second call will just read 0 all the time. Even if you did not do 2 calls another process may have called GetAsyncKeyState. The most significant bit is set when the key is held down so you should read that: require 'WIN32API' getAsyncKeyState = Win32API.new("User32", "GetAsyncKeyState", ['i'], 'i') if getAsyncKeyState.call(0x58) & 0x8000 == 32768 puts "X pressed" end
28th Mar 2017, 8:44 AM
Dennis
Dennis - avatar
+ 8
I've finished a small game using Win32 Sync Keys :D thanks man:D
28th Mar 2017, 10:55 AM
MrCoder
MrCoder - avatar
+ 6
How can I know 0x58 is 'x' ? Is it a hexadecimal value? and from that code will it work? In Linux and Windows? What does 32768 and 0x8000 mean?
28th Mar 2017, 9:52 AM
MrCoder
MrCoder - avatar
+ 6
What if I want a specific button to be pressed for example I want the user to enter letter F? Can you give me a little code example?
28th Mar 2017, 10:26 AM
MrCoder
MrCoder - avatar
+ 6
Oh wait nevermind
28th Mar 2017, 10:26 AM
MrCoder
MrCoder - avatar
+ 6
By which my 2 questions is: 1: Do I need WIN32API to be all uppercase or is it optional? 2: Can I use 1 instead of 32768?
28th Mar 2017, 10:28 AM
MrCoder
MrCoder - avatar
+ 6
@Dennis Thanks man, very appreciated! :D Without you I can't translate my CPP game into Ruby :D
28th Mar 2017, 10:39 AM
MrCoder
MrCoder - avatar
+ 6
Hey @Dennis I have a problem with my code: I tried getting holding down a key and it should do something but it didnt I was going to move something if UP button was pressed: if getAsyncKeyState.call(0x26) & 0x8000 == 32768 y2 = (y - 1) cade map[y2][x] when ' ' map[y][x] = ' ' y -= 1 map[y2][x] = '@' end end Is something wrong?
29th Mar 2017, 8:08 AM
MrCoder
MrCoder - avatar
+ 6
I posted mine too, feel free to edit it because it creates an error
29th Mar 2017, 9:53 AM
MrCoder
MrCoder - avatar
+ 1
https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx The code runs on windows at least, I don't use linux so I don't know. 0x8000 is just the way to read the most significant bits and 32768 is the value you end up with if the button is held down.
28th Mar 2017, 10:07 AM
Dennis
Dennis - avatar