没有调用SpriteKit didBeginContact

时间:2014-12-16 15:37:42

标签: ios objective-c sprite-kit collision

我希望你可以提供帮助,让一个街区移动,它会跳跃以避开障碍并收集硬币。 它与障碍物的碰撞正常工作,以下gameOver正常工作。

-(void)didBeginContact:(SKPhysicsContact *)contact
{
    if ([contact.bodyA.node.name  isEqualToString:@"coins"] || [contact.bodyB.node.name  isEqualToString:@"coins"]) {
        [self coinCollected];   //THIS IS NOT WORKING
        NSLog(@"contacted"); //THIS IS NOT WORKING
    }
    else if ([contact.bodyA.node.name  isEqualToString:@"ground"] || [contact.bodyB.node.name  isEqualToString:@"ground"]) {
        [hero land];
    }
    else {
        NSLog (@"dead");
        [self gameOver];
            [self runAction:[SKAction playSoundFileNamed:@"gameover.wav" waitForCompletion:NO]];
    }
}

我的PMWorldGenenerator文件如下所示:

#import "PMWorldGenerator.h"
@interface PMWorldGenerator ()
@property double currentGroundX;
@property double currentObstacleX;
@property double coinX;
@property SKNode *world;

@end


@implementation PMWorldGenerator

static const uint32_t obstacleCategory = 0x1 << 1;
static const uint32_t groundCategory = 0x1 << 2;
static const uint32_t coinCategory = 0x1 << 3;

+ (id)generatorWithWorld:(SKNode *)world {
    PMWorldGenerator *generator = [PMWorldGenerator node];
    generator.currentGroundX = 0;
    generator.currentObstacleX  = 400;
    generator.coinX = 50;
    generator.world = world;
    return generator;
}

 -(void)populate
{
    for (int i = 0; i <3; i++)
        [self generate];
}


-(void)generate
{
    SKSpriteNode *ground = [SKSpriteNode spriteNodeWithColor:[UIColor greenColor] size:CGSizeMake(self.scene.frame.size.width, self.scene.frame.size.height/2.7)];
        ground.name = @"ground";
    ground.position = CGPointMake(self.currentGroundX, -self.scene.frame.size.height/2 + ground.frame.size.height/2);
    ground.physicsBody = [SKPhysicsBody bodyWithRectangleOfSize:ground.size];
    ground.physicsBody.categoryBitMask = groundCategory;
    ground.physicsBody.dynamic = NO;
    [self.world addChild:ground];
    self.currentGroundX += ground.frame.size.width;

    SKSpriteNode *obstacle = [SKSpriteNode spriteNodeWithColor:[UIColor redColor] size:CGSizeMake(10,10)];
        obstacle.name = @"obstacle";
    obstacle.position = CGPointMake(self.currentObstacleX/5, ground.position.y + ground.frame.size.height/2 + obstacle.frame.size.height/2 + 5);
    obstacle.physicsBody = [SKPhysicsBody bodyWithRectangleOfSize:obstacle.size];
    obstacle.physicsBody.dynamic = NO;
    obstacle.physicsBody.categoryBitMask = obstacleCategory;
    [self.world addChild:obstacle];
    self.currentObstacleX += 550 ;

    SKSpriteNode *coins = [SKSpriteNode spriteNodeWithColor:[UIColor yellowColor] size:CGSizeMake(4, 4)];
    coins.name = @"coins";
    coins.position = CGPointMake(self.coinX+80, ground.position.y + ground.frame.size.height/2 + obstacle.frame.size.height/2 + 25);
    coins.physicsBody.categoryBitMask = coinCategory;
    coins.physicsBody.dynamic = YES;
    SKAction *revolution = [SKAction rotateByAngle:M_PI_4*10 duration:3];
    SKAction *repeatRotate = [SKAction repeatActionForever:revolution];
    [coins runAction:repeatRotate];
    [self.world addChild:coins];
    self.coinX += 550;

}

最后是我的PMHero文件:

#import "PMHero.h"
@interface PMHero ()
@end


@implementation PMHero
static const uint32_t heroCategory = 0x1 << 0;
static const uint32_t obstacleCategory = 0x1 << 1;
static const uint32_t groundCategory = 0x1 << 2;
static const uint32_t coinCategory = 0x1 << 3;


+(id)hero
{
    PMHero *hero = [PMHero spriteNodeWithColor:[UIColor redColor] size:CGSizeMake(12,12)];
    hero.name = @"hero";
    hero.physicsBody = [SKPhysicsBody bodyWithRectangleOfSize:hero.size];
    hero.physicsBody.categoryBitMask = heroCategory;
    hero.physicsBody.contactTestBitMask = obstacleCategory | groundCategory | coinCategory;
    return hero;
}

我完成了我为"coins"的障碍和基础所做的工作,但它没有检测到我didBeginContact

中与它们的任何碰撞

1 个答案:

答案 0 :(得分:1)

你还没有添加你的物理身体硬币

SKSpriteNode *coins = [SKSpriteNode spriteNodeWithColor:[UIColor yellowColor] size:CGSizeMake(4, 4)];
coins.name = @"coins";
coins.position = CGPointMake(self.coinX+80, ground.position.y + ground.frame.size.height/2 + obstacle.frame.size.height/2 + 25);

coins.physicsBody = [SKPhysicsBody bodyWith...//need code here

coins.physicsBody.categoryBitMask = coinCategory;
coins.physicsBody.dynamic = NO;
coins.physicsBody.collisionBitMask = 0;
SKAction *revolution = [SKAction rotateByAngle:M_PI_4*10 duration:3];
SKAction *repeatRotate = [SKAction repeatActionForever:revolution];
[coins runAction:repeatRotate];
[self.world addChild:coins];
相关问题