I have somewhere in my code a loop function that call PeekMessage in order to retrieve events.
Currently it looks like this:
while (PeekMessage(&Message, NULL, 0, 0, PM_REMOVE))
{
// Process events
}
Now I would like to manage input in a different location, meaning I'd like to retrieve messages such as WM_KEYDOWN, WM_MOUSEMOVE (mouse and keyboard events) in a different place, at a different time of my main loop.
PeekMessage's third and fourth arguments allow to define a range of message to return, so I could use this, using provided macros WM_KEYFIRST, WM_KEYLAST, WM_MOUSEFIRST and WM_MOUSELAST. But it's unconvenient because I have two ranges to check for input, and therefore three ranges for everything remaining.
The last parameter is a flag and I could pass PM_REMOVE | PM_QS_INPUT for input. But then, what should I pass in the other loop, where I want to get every other messages? There is no PM_QS_EVERYTHING_EXCEPT_INPUT macro...
What would be the most elegant way to do this?
~PM_QS_INPUT, which could be combined withPM_REMOVEvia bitwise OR. – chris May 13 '12 at 2:05~PM_QS_INPUT, but only masking the range of bits that applies to flags of that type. Had a brain fail there. So if the last half are for that, the first half would be 0, and all butPM_QS_INPUTin the last half would be 1. – chris May 13 '12 at 2:19while(PeekMessage(...WM_KEYFIRST...) || PeekMessage(...WM_MOUSEFIRST...))is the same an enhanced, multi-range PeekMessage would do. – ixe013 May 14 '12 at 1:34