Any ideas how to handle tap duration in cocos2d?

I need to do something after the user holds his or her finger on a certain sprite for about 1-2 secs.

Thanks.

link|improve this question
feedback

3 Answers

Save yourself a lot of manual work and use the UIGestureRecognizers for things like these. In this particular case you will want to use the UILongPressGestureRecognizer.

Btw, gesture recognizers are built-in, ready to use if you use Kobold2D.

link|improve this answer
Any tutorials how to use UIGestureRecognizers in cocos2d? – Here Before Dec 5 '11 at 7:03
Any tutorial about UIGestureRecognizers is fine, for example the official docs: developer.apple.com/library/ios/#documentation/EventHandling/…. You don't need one that's specific to Cocos2D. – LearnCocos2D Dec 6 '11 at 21:24
feedback

To use a UILongPressGestureRecognizer, you can do something like this:

UILongPressGestureRecognizer* recognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPressFrom:)];
recognizer.minimumPressDuration = 2.0; // seconds
AppDelegate* appDelegate = [[UIApplication sharedApplication] delegate];
[appDelegate.viewController.view addGestureRecognizer:recognizer];

Your long press handler could look like this:

-(void)handleLongPressFrom:(UILongPressGestureRecognizer*)recognizer
{
    if(recognizer.state == UIGestureRecognizerStateEnded)
    {
        CCLOG(@"Long press gesture recognized.");

        // Get the location of the touch in Cocos coordinates.
        CGPoint touchLocation = [recognizer locationInView:recognizer.view];
        CCDirector* director = [CCDirector sharedDirector];
        touchLocation = [director convertToGL:touchLocation];
        touchLocation = [[director runningScene] convertToNodeSpace:touchLocation];

        // Your stuff.
    }
}

When you're finished, don't forget to remove it.

AppDelegate* appDelegate = [[UIApplication sharedApplication] delegate];
[appDelegate.viewController.view removeGestureRecognizer:recognizer];
link|improve this answer
feedback

You need to do it the manual way:

  1. Add a BOOL flag ivar and a float ivar in your CCLayer subclass.
  2. On touch began, set the flag to TRUE and reset the float ivar to 0.0
  3. On touch moved, ended or cancelled, set the flag to FALSE.
  4. In the update or tick, increase the float ivar value by the dt amount. Check if that float ivar value to perform your logic if it is larger than your threshold value (1.0 or 2.0 seconds).

If you want to handle multiple touches, you might need a way to attach and differentiate the BOOL flag and float ivar combination to each touch.

I'd suggest creating an intermediate subclass between CCLayer and your implementation subclass so that you can hide the mechanism from the implementation subclass and also to allow easy reuse.

link|improve this answer
I'll try this. Thanks a lot! – Here Before Dec 2 '11 at 14:56
1  
Why not use UILongPressGestureRecognizer? – Danyal Aytekin Dec 4 '11 at 11:16
@DanyalAytekin How does it work in Cocos2d? Pls share by posting as an answer .. – Lukman Dec 4 '11 at 11:50
Okey dokey will do one... – Danyal Aytekin Dec 5 '11 at 10:37
feedback

Your Answer

 
or
required, but never shown

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