Difference between revisions of "Talk:GetControl"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>Scruggs
(Doubtful)
imported>Scruggs
(Actually...)
Line 1: Line 1:
Is there a simple way to convert the values returned by this function to something useable by IsKeyPressed? IsKeyPressed2 is the function that uses DX scancodes, but that doesn't work on disabled keys like IsKeyPressed does, which I need.<br/>
Is there a simple way to convert the values returned by this function to something useable by IsKeyPressed? IsKeyPressed2 is the function that uses DX scancodes, but that doesn't work on disabled keys like IsKeyPressed does, which I need.<br/>
[[User:KCat|KCat]]
[[User:KCat|KCat]]
:Doubtful. The ordering for VK codes and DX codes is too different. For instance, Vk numerals begin with 0 (48) and end with 9 (57), whereas DX begin with 1 (2) and end with 0 (11). The letter keys are organized alphabetically for VK but according to QWERTY for DX. [[User:Scruggs|Scruggs]] 21:32, 19 February 2007 (EST)
:Doubtful. The ordering for VK codes and DX codes is too different. For instance, Vk numerals begin with 0 (48) and end with 9 (57), whereas DX begin with 1 (2) and end with 0 (11). The letter keys are organized alphabetically for VK but according to QWERTY for DX.
:EDIT: Well, I'm in need of a way to convert DX to VK as well, so I'm throwing together an .esm that will do the conversion. I'll post a link when it's finished. [[User:Scruggs|Scruggs]] 21:32, 19 February 2007 (EST)

Revision as of 17:14, 20 February 2007

Is there a simple way to convert the values returned by this function to something useable by IsKeyPressed? IsKeyPressed2 is the function that uses DX scancodes, but that doesn't work on disabled keys like IsKeyPressed does, which I need.
KCat

Doubtful. The ordering for VK codes and DX codes is too different. For instance, Vk numerals begin with 0 (48) and end with 9 (57), whereas DX begin with 1 (2) and end with 0 (11). The letter keys are organized alphabetically for VK but according to QWERTY for DX.
EDIT: Well, I'm in need of a way to convert DX to VK as well, so I'm throwing together an .esm that will do the conversion. I'll post a link when it's finished. Scruggs 21:32, 19 February 2007 (EST)