i am trying collision detection without using box2d so i used a inbuilt function CCRectIntersectsRect() using this function when i decrement the count it gets reduced to negative values in a single collision. (when the ball touches hero and when the ball crosses hero.)

all i want is to schedule it in someway so that the count-- gets called once only.

for complete source code how to use box2d for collision detection in cocos2d-x

CCRect bom= ball->boundingBox();
CCRect gon= hero->boundingBox();

if(CCRect::CCRectIntersectsRect(bom,gon))
{
    count--;
}
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Create a persistent bool variable called colliding, and use it like this:

if(CCRect::CCRectIntersectsRect(bom,gon))
{
    if (!colliding)
        count--;
    colliding = true;
}
else
    colliding = false;

Here's the fix for the code you provided in the comments below:

CCRect bom= roll->boundingBox();
CCRect gon= hero->boundingBox();
static bool colliding=false;
if(CCRect::CCRectIntersectsRect(bom,gon))
{
    if (!colliding)
    {
        intersection();
        colliding = true;
    }
}
else
    colliding = false;
link|improve this answer
let me try,i think it wont affect the code. – jeet.mg Jan 30 at 5:44
nope, it didn't worked :( – jeet.mg Jan 30 at 5:47
@jeet.mg: You probably put it in the wrong place. You didn't make it local to the function did you? (that was a rhetorical question, because I'm almost certain that you did) It needs to be in a place where its value will persist between function calls. – Benjamin Lindley Jan 30 at 5:48
i tried to declare it in *.h but, it gave an error of unresolved external. and so i did that intentionally. – jeet.mg Jan 30 at 5:54
1  
@jeet.mg: Yep, it's like I said. The else is in the wrong place. I'll put the fixed version in my answer. – Benjamin Lindley Jan 30 at 6:13
show 3 more comments
feedback

initialize count with 1 if(CCRect::CCRectIntersectsRect(bom,gon) && count > 0) { count--; }

link|improve this answer
count is life of hero (set to 3 initially) and goes on decreasing up to 0 – jeet.mg Jan 30 at 5:41
if count==0 hero is dead – jeet.mg Jan 30 at 5:41
feedback

Your Answer

 
or
required, but never shown

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