vote up 5 vote down star
4

I just don't get it. I use cocos2d for development of a small game on the iPhone/Pod. The framework is just great, but I fail at touch detection. I read that you just need to overwrite the proper functions (e.g. "touchesBegan" ) in the implementation of a class wich subclasses CocosNode. But it doesn't work. What could I do wrong?

the function:

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{NSLog(@"tickle, hihi!");}

did I get it totally wrong?

Thank you!

flag

5 Answers

vote up 5 vote down

Layer is the only cocos2d class which gets touches.

The trick is that ALL instances of Layer get passed the touch events, one after the other, so your code has to handle this.

I did it like this:

-(BOOL)ccTouchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [touches anyObject];
CGPoint location = [touch locationInView: [touch view]];
CGPoint cLoc = [[Director sharedDirector] convertCoordinate: location];

float labelX = self.position.x - HALF_WIDTH;
float labelY = self.position.y - HALF_WIDTH;
float labelXWidth = labelX + WIDTH;
float labelYHeight = labelY + WIDTH;

if(	labelX < cLoc.x &&
	labelY < cLoc.y &&
	labelXWidth > cLoc.x &&
	labelYHeight > cLoc.y){
		NSLog(@"WE ARE TOUCHED AND I AM A %@", self.labelString);
		return kEventHandled;
	} else {
		return kEventIgnored;
	}

}

Note that the cocos2d library has a "ccTouchesEnded" implementation, rather than the Apple standard. It allows you to return a BOOL indicating whether or not you handled the event.

Good luck!

link|flag
vote up 1 vote down

In order to detect touches, you need to subclass from UIResponder (which UIView does as well) . I am not familiar with cocos2D, but a quick look at the documentation reveals that CocosNode does not derive from UIResponder.

Upon further investigation, it looks like Cocos folks created a Layer class that derives from CocosNode. And that class implements the touch event handlers. But those are prefixed by cc.

See http://code.google.com/p/cocos2d-iphone/source/browse/trunk/cocos2d/Layer.h

Also see menu.m code and the below blog post article for more info on this:

http://blog.sapusmedia.com/2008/12/cocos2d-propagating-touch-events.html

link|flag
vote up 0 vote down

Thank you both, now I use a Layer-instance and the touches work! But somehow I don't get the current position of the touch, although I did it exactly as in some example.

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

{

UITouch *touch=[touches anyObject];

CGPoint location=[touch locationInView:[touch view]];

NSLog(@"%i",location.x);

NSLog(@"%i",location.y);

}

The logged values are always 0. What am I doing wrong? And btw how do I insert my code here so it looks like in the post above?

Thanks!

link|flag
Try changing your NSLog statement to NSLog(@"%f",location.x); CGPoint is a struct of two floats, not two ints like your NSLog statements above are expecting. – Adam Byram Dec 30 at 23:21
Also, to get the x/y coordinates to be 'relative to your scene' use [[Director sharedDirector] convertCoordinate:location] ... otherwise, you'll get really funky x/y coordinates. – David Higgins Apr 11 at 18:30
vote up 0 vote down

maw, the CGPoint struct members x,y are floats. use @"%f" to format floats for printf/NSLog.

link|flag
vote up 0 vote down

Have you added this to your layers init method?

	// isTouchEnabled is an property of Layer (the super class).
	// When it is YES, then the touches will be enabled
	self.isTouchEnabled = YES;

	// isAccelerometerEnabled is property of Layer (the super class).
	// When it is YES, then the accelerometer will be enabled
	self.isAccelerometerEnabled = YES;
link|flag

Your Answer

Get an OpenID
or

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