vote up 1 vote down star

I'm building a c++ tetris game (not c++ .Net). I feel my controls are weird. I want to make it so that when user presses one of the arrow keys, about 10ms of holding it down will start the repeat function windows has. It is set to about 500ms by default, and it is too laggy for my game. How can I set the speed at which it changes from the keydown to the repeat keydown? Not how many times / sec it repeats.

Thanks

*what I want to do is change the repeat delay to short

In control panel in keyboard settings there is repeat rate, how do i set this?

flag

47% accept rate
According to gamedev.net/community/forums/…, it states that WM_KEYDOWN doesn't handle repeats but WM_CHAR does. You may already know this, but I thought I'd mention it here as they are sortof discussing this topic. – sheepsimulator Sep 17 at 21:30
This question is very similar to another one you asked: stackoverflow.com/questions/1429472/… – sheepsimulator Sep 17 at 21:32

3 Answers

vote up 4 vote down check

Typically what you would do for this is instead of reacting to the WM_CHAR message that is subject to the normal key repeat settings, you would look for WM_KEYDOWN and WM_KEYUP, and take action based on a timer that you've got running. If you set the timer to fire every 50 ms for example, then you can repeat every 50 ms and still take the first action immediately when you get the WM_KEYDOWN message.

link|flag
There is more than one way to skin a cat. – sheepsimulator Sep 17 at 21:43
That said, this is probably a better practice than changing around system settings programmatically. – sheepsimulator Sep 17 at 21:44
vote up -2 vote down

void Key_Set() { DWORD old = 0;

SystemParametersInfo(SPI_GETKEYBOARDDELAY, 0, &old, 0);


SystemParametersInfo(SPI_SETKEYBOARDDELAY,0, &old, 0);

}

link|flag
Don't do this. Why should your application be so important as to change settings on my computer? Just use the proper message, as Greg has shown. – GMan Sep 17 at 21:46
vote up 0 vote down

According to MSDN, it also looks like you could use the SystemParametersInfo function, and call use SPI_SETKEYBOARDSPEED, SPI_SETKEYBOARDDELAY.

link|flag
2  
While it's possible to change the user's settings in this way, I would find it unacceptable for a single application to modify the way I like my keyboard repeat settings configured. – Greg Hewgill Sep 17 at 21:38
Just insure old settings are reset when appilcation closes – unknown (yahoo) Sep 17 at 21:45
Seriously, don't do this. I would be very angry if any application changed any personal settings I had. – GMan Sep 17 at 21:47
@unknown: And if your application crashes before it gets a chance to do so? If the computer unexpectedly powers off? This is just a poor solution. – GMan Sep 17 at 21:47
Or if I switch to another application while yours is still running? – Greg Hewgill Sep 17 at 22:02
show 1 more comment

Your Answer

Get an OpenID
or

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