vote up 3 vote down star

How can a Win32 application respond to only the first WM_KEYDOWN notification? The MSDN docs claim bit 30 "Specifies the previous key state. The value is 1 if the key is down before the message is sent, or it is zero if the key is up." but bit 30 is always 0 in my WndProc.

case WM_KEYDOWN:
    // ToDo - stop multiple notifications for repeating keys
    printf("WM_KEYDOWN %i %i", wParam, lParam & 30);
	return 0;

Is lParam & 30 the wrong way to ask for this? Am I doing something else wrong?

flag

75% accept rate
How did you end up implementing this? repeatCount=(lParam & 0xffff); if(repeatCount < 1) Action(); Doesn't seem to work for me. Nor does repeatCount < 2. I either get repeating keys or no key press at all. – Sam152 Oct 12 at 4:16
I used: if ((lParam & (1 << 30)) == 0)... although if (lParam & 0x40000000) worked as well if I remember correctly. My choice was based on readability (1 << 30) makes more sense to me than 0x40000000 – Nick Oct 13 at 15:09
Thanks man, I will give it a squeeze. – Sam152 Oct 14 at 14:15

3 Answers

vote up 4 vote down check

To get bit 30, you need this:

(lParam & 0x40000000)

An alternative would be to use bits 0-15 to get the repeat count:

int repeatCount = (lParam & 0xffff)

and only do anything if the repeat count is 0 (or possibly 1; I'm not sure whether the first message gets a repeat count of 0 or 1, and it's not clear from the documentation).

link|flag
This worked - thank you. My bit fiddling-fu is a little shaky. What exactly is 0x40000000? – Nick Sep 1 at 14:36
2  
That's a DWORD representing a bitmask consisting of bit 30 set and all other bits cleared. – sharptooth Sep 1 at 14:37
You might want to read an introduction to hexadecimal, eg. learn-programming.za.net/articles_decbinhexoct.ht… It's not too hard, but not so trivial that I can explain it all here. – RichieHindle Sep 1 at 14:40
vote up 5 vote down

To test bit 30 don't AND with 30, instead AND with 1 << 30.

const bool isBitSet = lParam & (1 << 30);
link|flag
Yep this works too - thanks – Nick Sep 1 at 14:46
I actually think this reads better than the 0x4000000, so +1 – Davy Landman Sep 2 at 18:38
It probably does read better but it has to be computed every time (unless the compiler is optimizing this). 0x4000000 Will be faster. – kjfletch Sep 3 at 13:19
VC++7 is optimizing it to a constant value. – sharptooth Sep 3 at 13:40
@kjfletch those kind of micro optimizations are certainly not needed anymore.. Any simple compiler could optimize that.. – Davy Landman Sep 11 at 11:08
vote up 0 vote down

The problem with doing lParam & 30 is that, '30' over here is considered to be in decimal, which when converted to binary would '11110'. Hence you are not testing bit 30 but just getting the result for lparam & 11110.

Hope this helps in clarifying the problem a bit.

link|flag

Your Answer

Get an OpenID
or

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