1

触摸屏幕时我正在创建新的精灵/身体:

-(void) addNewSpriteAtPosition:(CGPoint)pos
{
    b2BodyDef bodyDef;
    bodyDef.type = b2_dynamicBody;
    bodyDef.position=[Helper toMeters:pos];
    b2Body* body = world->CreateBody(&bodyDef);

    b2CircleShape circle;
    circle.m_radius = 30/PTM_RATIO;

    // Define the dynamic body fixture.
    b2FixtureDef fixtureDef;
    fixtureDef.shape=&circle;
    fixtureDef.density=0.7f;
    fixtureDef.friction=0.3f;
    fixtureDef.restitution = 0.5;
    body-> CreateFixture(&fixtureDef);

    PhysicsSprite* sprite = [PhysicsSprite spriteWithFile:@"circle.png"];
    [self addChild:sprite];
    [sprite setPhysicsBody:body];
    body->SetUserData((__bridge void*)sprite);
}

这是我的定位助手:

+(b2Vec2) toMeters:(CGPoint)point
{
    return b2Vec2(point.x / PTM_RATIO, point.y / PTM_RATIO);
}

PhysicsSprite 是与 Box2D 一起使用的典型方法,但我将包含相关方法:

-(CGAffineTransform) nodeToParentTransform
{
    b2Vec2 pos = physicsBody->GetPosition();

    float x = pos.x * PTM_RATIO;
    float y = pos.y * PTM_RATIO;

    if (ignoreAnchorPointForPosition_)
    {
        x += anchorPointInPoints_.x;
        y += anchorPointInPoints_.y;
    }

    float radians = physicsBody->GetAngle();
    float c = cosf(radians);
    float s = sinf(radians);

    if (!CGPointEqualToPoint(anchorPointInPoints_, CGPointZero))
    {
        x += c * -anchorPointInPoints_.x + -s * -anchorPointInPoints_.y;
        y += s * -anchorPointInPoints_.x + c * -anchorPointInPoints_.y;
    }

    self.position = CGPointMake(x, y);

    // Rot, Translate Matrix
    transform_ = CGAffineTransformMake(c, s, -s, c, x, y);
    return transform_;
}

现在,我有以下两个图像说明的两个问题,它们显示了精灵的调试绘制。视网膜和非视网膜版本:

视网膜

非视网膜

问题 #1 - 正如您在两幅图像中看到的,对象离 (0,0) 越远,精灵与物理体的偏移越远。

问题 #2 - 红色圆圈图像文件为 60x60(视网膜),白色圆圈为 30x30(非视网膜)。为什么它们在屏幕上的大小不同?Cocos2d 应该使用点,而不是像素,所以它们在屏幕上不应该是相同的大小吗?

4

1 回答 1

2

使用 contentSize,而不是硬编码大小。

circle.m_radius = sprite.contentSize.width*0.5f/PTM_RATIO;

这适用于所有 SD 和 Retina 模式。

您可以使用此样式在 box2d 和 cocos2d 位置之间进行同步:

body->SetTransform([self toB2Meters:sprite.position], 0.0f);    //box2d<---cocos2d

//OR
sprite.position = ccp(body->GetPosition().x * PTM_RATIO,
                     body->GetPosition().y * PTM_RATIO);  //box2d--->cocos2d
于 2013-03-04T18:25:38.573 回答