0

我正在尝试使用以下代码向我的精灵添加形状,它们位于 NSArray 中:

theSprites = [[NSMutableArray alloc] init];

CCSprite *sprite1 = [CCSprite spriteWithSpriteFrameName:@"sprite1"];
sprite1.position = ccp(winSize.width/2, sprite1.contentSize.height/2);
[self addChild:sprite1 z:3];
sprite1Path=CGPathCreateMutable();
CGPathMoveToPoint(sprite1Path, NULL, 0, 286);
CGPathAddLineToPoint(sprite1Path, NULL, 0, 0);
CGPathAddLineToPoint(sprite1Path, NULL, 768, 0);
CGPathAddLineToPoint(sprite1Path, NULL, 768, 208);
CGPathAddLineToPoint(sprite1Path, NULL, 356, 258);
CGPathCloseSubpath(sprite1Path);
[theSprites addObject:sprite1];

CCSprite *sprite2 = [CCSprite spriteWithSpriteFrameName:@"sprite2"];
sprite2.position = ccp(winSize.width/2, sprite2.contentSize.height/2);
[self addChild:sprite2 z:4];
sprite2Path=CGPathCreateMutable();
CGPathMoveToPoint(sprite2Path, NULL, 0, 254);
CGPathAddLineToPoint(sprite2Path, NULL, 0, 0);
CGPathAddLineToPoint(sprite2Path, NULL, 768, 0);
CGPathAddLineToPoint(sprite2Path, NULL, 768, 144);
CGPathAddLineToPoint(sprite2Path, NULL, 494, 168);
CGPathAddLineToPoint(sprite2Path, NULL, 204, 212);
CGPathCloseSubpath(sprite2Path);
[theSprites addObject:sprite2];

然后我试图指定只有精灵是可移动的。我在 cocos2d 教程之一中创建了一个函数。

- (void)selectSprite:(CGPoint)touchLocation {
CCSprite *touchSprite = nil;
for (CCSprite *sprite in theSprites) {
  if (CGRectContainsPoint(sprite.boundingBox, touchLocation)) {            
    touchSprite = sprite;
    }  }  }

现在我是堆栈!而且我不明白如何将 CGRectContainsPoint 更改为 CGPathContainsPoint ......我不知道如何用一个语句指定两个形状......或创建 if () if () 收缩......

4

1 回答 1

0

我看到两个问题。首先,您需要将路径附加到精灵。你应该继承CCSprite并给它一个boundingPath属性:

我的精灵.h

@interface MySprite : CCSprite

@property (nonatomic) CGPath shapePath;

@end

我的精灵

@implementation MySprite

@synthesize shapePath = _shapePath;

- (void)setShapePath:(CGPath)path {
    CGPathRetain(path);
    CGPathRelease(_shapePath);
    _shapePath = path;
}

- (void)dealloc {
    CGPathRelease(_shapePath);
    [super dealloc]; // if you're using ARC, omit this line
}

然后shapePath在创建精灵时设置属性:

MySprite *sprite1 = [MySprite spriteWithSpriteFrameName:@"sprite1"];
// ... blah blah blah all the stuff you did to init sprite1 and sprite1Path
CGPathCloseSubpath(sprite1Path);
sprite1.shapePath = sprite1Path;
[theSprites addObject:sprite1];

现在您可以像这样测试精灵中的触摸:

- (MySprite *)spriteAtPoint:(CGPoint)point {
    for (MySprite *sprite in theSprites) {
        CGPoint spriteOrigin = sprite.boundingBox.origin;
        CGPoint pointInSprite = CGPointMake(point.x - spriteOrigin.x, point.y - spriteOrigin.y);
        if (CGPathContainsPoint(sprite.shapePath, NULL, pointInSprite, false))
            return sprite;
        }
    }
}
于 2012-01-25T21:52:03.607 回答