I'm working on a game (Cocos2d + Obj-C) where I need to check if two colliding sprites has the same color or not. I've tried the following already:

        if (ship.imageSprite.color == base.imageSprite.color)
        {
            {
                NSLog(@"matching colors");
            }
        }

But I get compile time error: "invalid operands to binary expresson ('ccColor3B'(aka 'struct _ccColor3B') and 'ccColor3B')." What is the way to test two colors? Thanks.

link|improve this question
feedback

2 Answers

You'll have to test the ccColor3B components individually:

ccColor3B col1 = ship.imageSprite.color;
ccColor3B col2 = base.imageSprite.color;
if (col1.r == col2.r && col1.g == col2.g && col1.b == col2.b)
{
    NSLog(@"matching colors");
}
link|improve this answer
Would memcmp work? memcmp(col1, col2, sizeof(ccColor3B)); – Jer In Chicago Feb 22 at 22:48
1  
Correction... memcmp(&col1, &col2, sizeof(ccColor3B)); // Just throwing it out there. Can't test myself at the moment. – Jer In Chicago Feb 22 at 23:00
Ok - Did some testing and memcmp won't work like I thought it would when comparing a struct containing float (or GLFloat). Not an option it seems. – Jer In Chicago Feb 23 at 1:19
+1 for the truth from the cocos2d pro. – robo Mar 2 at 12:33
feedback
-(BOOL)isccColor3B:(ccColor3B)color1 theSame:(ccColor3B)color2{
    if ((color1.r == color2.r) && (color1.g == color2.g) && (color1.b == color2.b){
        return TRUE;
    } else {
        return FALSE;
    }
}
link|improve this answer
That's exactly what I need! Thank you – Gormoruk Feb 23 at 5:56
feedback

Your Answer

 
or
required, but never shown

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