This is to implement a keyboard based game controller. Left/Right arrows makes the character walk. shift+left/right makes the character run.

Here's the code I'm using so far:

- (void)keyDown:(NSEvent *)event{

    if ([event modifierFlags] & NSShiftKeyMask) {
        NSLog(@"Shift key pressed");
    }
    // logic follows
}

This works fine if shift is pressed before pressing an arrow key. But if an arrow key is pressed and you need to accelerate, pressing shift won't cause anything to happen...

So, I see this kind of answer: http://stackoverflow.com/a/420691/987818

But I don't understand where this NSResponder is being used. For info, I use Cocos2D (objc game engine).

thanks for any leads :-) J.

link|improve this question

1  
For an example of implementing flagsChanged check out the KKInput implementation of Kobold2D: github.com/kobold2d/Kobold2D/blob/master/Kobold2D/__Kobold2D__/… – LearnCocos2D Jan 30 at 22:30
@LearnCocos2D Hey thanks Steffen. That KK file just solved all it all! Great stuff, now my CCLayer implementation properly handles the shift key using the built-in -(BOOL)ccFlagsChanged:(NSEvent*)event; Nice! Have a great day. – Jem Jan 31 at 8:43
feedback

1 Answer

up vote 3 down vote accepted

You need to implement flagsChanged: in the same class where you implement this -keyDown: method, or just any NSResponder subclass that may be able to catch this event (e.g. the NSApplication).

link|improve this answer
Hey thanks. Indeed, it works now! – Jem Jan 31 at 8:44
feedback

Your Answer

 
or
required, but never shown

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