I am developing a 2d game for iPhone by using cocos2d.
I use many small sprite (image) in my game. I want to touch two similar types of sprite(image) and then both sprite(image) will be hidden.
How can I detect touch in a specific sprite(image) ?
|
I am developing a 2d game for iPhone by using cocos2d. I use many small sprite (image) in my game. I want to touch two similar types of sprite(image) and then both sprite(image) will be hidden. How can I detect touch in a specific sprite(image) ? |
||||
|
|
|
In your layer that contains your sprite, you need to say:
then you can use the same events that you would use in a UIView, but they're named a little differently:
|
|||
|
A better way to do this is to actually use the bounding box on the sprite itself (which is a CGRect). In this sample code, I put all my sprites in a NSMutableArray and I simple check if the sprite touch is in the bounding box. Make sure you turn on touch detection in the init. If you notice I also accept/reject touches on the layer by returning YES(if I use the touch) or NO(if I don't)
|
|||||||
|
|
Following Jonas's instructions, and adding onto it a bit more ...
You may need to adjust the x/y a little to account for the 'centered positioning' in Cocos |
|||||||||||||||||
|
|
@david, your code has some typos for cocos 0.7.3 and 2.2.1, specifically CGRectMake instead of CGMakeRect and [touch location] is now [touch locationInView:touch.view]. here's what I did:
|
|||
|
|
|
@Genericrich: CGRectContainsPoint works in CocosLand because of the call 2 lines above:
The Cocos2D objects will be using the OpenGL coordinate system, where 0,0 is the lower left, and UIKit coordinates (like where the touch happened) have 0,0 is upper left. convertCoordinate: is making the flip from UIKit to OpenGL for you. |
|||||
|
|
I have been trying to figure out how to get hold of touches of a given sprite and found this thread. Is this the correct way to detect which sprite was touched? This seems a rather odd way to do it compared to the usual sub-class way in obj-c? So all the touch detection code is in the layer class? Thanks for pointers |
|||
|
|
|
Here's how it worked for me... Where spriteSize is obviously the sprite's size... :P
|
||||
|
|
|
this is a good tutorial explaining the basic touch system http://ganbarugames.com/2010/12/detecting-touch-events-in-cocos2d-iphone/ first, write
then, you need to implement the functions ccTouchesEnded, ccTouchesBegan, etc from what I understood, you want to be able to 'match' two sprites that can be on different coordinates on the screen. a method for doing this.. : (im sure theres many other methods) consider having 2 global variables. so everytime a touch touches a sprite, you use the CGRectContainsPoint function that is mentioned several times to find which sprite has been touched. then, you can save the 'tag' of that sprite in one of the global variables. You do the same for the second touch, and then you compare the 2 global variables. you should be able to figure out the rest but comment if you have problems. |
|||
|
|