vote up 1 vote down star
1

After I finished coding the difficult parts of my game, I found some memory management bugs.

objects is a NSMutableArray holding a custom class.

- (void) spawnObjects
{   
    for (int index = 0; index < INITIAL_OBJECTS; index++)
    {
    	[objects addObject:[[[MatchObject alloc] initWithImageNameID:(index % 3)] autorelease]];
    	[[objects objectAtIndex:index] setPosition:[GameLayer randomPoint]];
    }

    ...
}

I later use this function.

- (void) checkAllSprites
{

    NSMutableArray *spritesToDelete = [NSMutableArray array];
    for (int index = 0; index < [points count] - 1; index ++)
    {
    	for (MatchObject *planetLike in objects)
    	{
    		CGPoint point1 = [[points objectAtIndex:index] CGPointValue];
    		CGPoint point2 = [[points objectAtIndex:index+1] CGPointValue];
    		if ([GameLayer lineIntersectsCircle:point1 :point2 :[planetLike position] :16.0f])
    		{

    			ParticleSystem *planetDeath = [ParticlePlanetDeath node];
    			planetDeath.texture = [[TextureMgr sharedTextureMgr] addImage:@"fire.pvr"];
    			planetDeath.position = [planetLike position];
    			[self addChild:planetDeath z:0 tag:2];

    			[spritesToDelete addObject:planetLike];

    			[self removeChild:planetLike cleanup:YES];

    		}

    	}
    }
    [objects removeObjectsInArray:spritesToDelete];
    [spritesToDelete removeAllObjects];

}

If I do not autorelease in the first function, the app works fine. If I do, then I try to access a dealloced object ([MatchObject position]).

What's wrong?!

flag

71% accept rate
Can you show the code for addChild and removeChild? – Philippe Leybaert Sep 14 at 20:36

3 Answers

vote up 0 vote down check

It sounds like you're referencing freed memory. When you actually release the memory, it crashes because your program referencs freed memory. When you don't release it using autorelease, it stil works because even though there's a memory leak the system doesn't notice it because since the object isn't actually freed so the reference to it doesn't cause a problem.

So, get out the magnifying glass and look over your code again, and start using the debugger ... have fun :)

link|flag
Thanks, found the problem in the chipmunk function. – unknown (google) Sep 14 at 20:43
1  
the chipmunk function? – Philippe Leybaert Sep 14 at 20:48
Chipmunk is a 2D physics library that's packaged with Cocos2d-iPhone, which the OP is using. – adurdin Sep 14 at 21:55
vote up 0 vote down

Any chance that you're doing something in the "removeChild" method that ends up releasing the object? There doen't appear to be anything wrong with the code that you posted...

link|flag
removeChild decrements the retain count, addChild increments it. Would that be a problem? – unknown (google) Sep 14 at 20:29
how? show code. Also show code for creating objects array. – jib Sep 14 at 20:56
vote up 1 vote down

Just a wild guess:

I suppose addChild is retaining the object and removeChild is releasing the object.

But what happens when removeChild doesn't find the object (i.e. if it's not a child)? Does it release the object too in that case? (which it shouldn't do)

link|flag

Your Answer

Get an OpenID
or

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