Is it possible to prevent my CCSprite from going off-screen? I already allow it to go offscreen on the left and right so that is fine but I just want to stop it from going off screen on the top and bottom.

So far what I have done is just cause the sprite to just get stuck on either the top or bottom. I don't want this to affect the movement of the sprite, all I want to happen is the CCSprite will just stop when it hits the top or bottom.

Can anyone show me how to do this?

Thanks!

Edit:

CGSize size = [[CCDirector sharedDirector] winSize];

if ((sprite.y <= size.height) && (sprite.y >= 0) ) {
    // Set new position

} else {
   // sprite is colliding with top/bottom limits, do whatever you like, for example change direction

}
link|improve this question

CCSprite won't move unless you set its new position or you use CCMoveTo/By .. in both cases you have the control over where the sprite moves to so just put the logic restricting the y-coordinate there .. – Lukman Jan 3 at 14:13
Take a look at my edit, I got that code but I am just not sure what to do in the if statements! – iBrad Apps Jan 3 at 23:04
feedback

1 Answer

up vote 1 down vote accepted

To limit the sprite within a boundary, don't check the current position but check the new position instead. But, rather than using (possibly multiple) if conditions, you can use clamping method:

Technique 1 - using MIN and MAX combo:

CGPoint newPosition = ... (assign new position here using touch location or something)
sprite.position = ccp(newPosition.x, MAX(0, MIN(size.height, newPosition.y)));

Technique 2 - using clampf:

CGPoint newPosition = ... (assign new position here using touch location or something)
sprite.position = ccp(newPosition.x, clampf(newPosition.y, 0, size.height));
link|improve this answer
What new position do you mean? And I do not understand how I could do this without if statements – iBrad Apps Jan 4 at 21:14
@iBradApps well, the new position that you meant in your code: // Set new position .. d'uh! – Lukman Jan 6 at 0:26
That was the original issue :P What should that new position be in order for it to act like screen boundaries? – iBrad Apps Jan 6 at 2:16
@iBradApps the touch location or the thing that determines where the sprite will move to. The logic that I give in my answer adjust the new position so that it will not go outside the boundary. – Lukman Jan 6 at 11:27
My sprite is controlled by the UIAccelerometer. So lets say this, if the sprite x is less than or equal to 0 it will be touching the top boundary. Does that mean I should set the x to 1 to act like a boundary? – iBrad Apps Jan 6 at 12:44
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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