1

私はウェブといくつかの昆虫を持っています。私はウェブを投げ、昆虫との衝突検出を行い、それらを破壊しています。衝突検出に bod2d を使用しました。

ワールドメソッド

-(void)createWorld
{

 // Define the gravity vector.
    b2Vec2 b_gravity;
    b_gravity.Set(0.0f, -9.8f);

 // Do we want to let bodies sleep?
 // This will speed up the physics simulation
    bool doSleep = true;

 // Construct a world object, which will hold and simulate the rigid bodies.
    world = new b2World(b_gravity);
    world->SetAllowSleeping(doSleep);

    world->SetContinuousPhysics(true);

}

ウェブの作成

-(void) createWeb
{
    freeBodySprite = [CCSprite spriteWithFile:@"web1.png"];
        [self addChild:freeBodySprite z:2 tag:TAG_WEB];

    CGPoint startPos = CGPointMake(100, 320/1.25);

    bodyDef.type = b2_staticBody;
    bodyDef.position = [self toMeters:startPos];
    bodyDef.userData = freeBodySprite;

    float radiusInMeters = ((freeBodySprite.contentSize.width * freeBodySprite.scale/PTM_RATIO) * 1.0f);
    shape.m_radius = radiusInMeters;

    fixtureDef.shape = &shape;
    fixtureDef.density = 0.01f;
    fixtureDef.friction = 0.1f;
    fixtureDef.restitution = 0.1f;

    circularObstacleBody = world->CreateBody(&bodyDef);
    stoneFixture = circularObstacleBody->CreateFixture(&fixtureDef);
        freeBody = circularObstacleBody;
}

スプライトシートで昆虫アニメーションを作成し、そのスプライト用に b2body を作成しました

-(b2Body *) createMovingBoxObstacle
{


    //set this to avoid updating this object in the tick schedule
        _ants.userData = (void *)YES;

    b2BodyDef bodyDef_Ant;
    bodyDef_Ant.type = b2_dynamicBody;
    CGPoint startPos = ccp(520,winSize.height/7.6);
    bodyDef_Ant.position = [self toMeters:startPos];
    bodyDef_Ant.userData = _ants;

    b2PolygonShape dynamicBox;
    float tileWidth = ((_ants.contentSize.width * _ants.scale/PTM_RATIO) * 0.5f);
    float tileHeight = ((_ants.contentSize.height * _ants.scale/PTM_RATIO) * 0.5f);
    dynamicBox.SetAsBox(tileWidth, tileHeight);

    b2FixtureDef fixtureDef_Ant;
    fixtureDef_Ant.shape = &dynamicBox;
    fixtureDef_Ant.friction = 0.7;
    fixtureDef_Ant.density = 0.1f;
    fixtureDef_Ant.restitution = 0.7;


    staticBody = world->CreateBody(&bodyDef_Ant);
    staticBody->CreateFixture(&fixtureDef_Ant);

       VAMovingObstacle* moveableObject = [[VAMovingObstacle alloc] init];
       moveableObject.startPoint = ccp(520,winSize.height/7.6);
       moveableObject.endPoint = ccp(-50,winSize.height/7.6);
       moveableObject.transitionTime = 20.0;
       moveableObject.breakTime = 1.0;

    moveableObject.obstacleSprite = _ants;
    moveableObject.physicalBody = staticBody;
    [moveableObject startMovement];

    if (!movingObstacles) {
        movingObstacles = [[NSMutableArray alloc] init];
    }
    [movingObstacles addObject:moveableObject];
    [moveableObject release];
    return staticBody;
}

VAMovingObstacle は、b2body とともにスプライトが左から右に移動する (runaction) のを支援するクラスです。

これが私の連絡先リスナーのEndContactメソッドです

void ContactListener::EndContact(b2Contact* contact)
{
    b2Body* bodyA = contact->GetFixtureA()->GetBody();
    b2Body* bodyB = contact->GetFixtureB()->GetBody();

    if (bodyA->GetUserData() != NULL && bodyB->GetUserData() != NULL) {
        CCSprite *spriteA = (CCSprite *) bodyA->GetUserData();
        CCSprite *spriteB = (CCSprite *) bodyB->GetUserData();


        if (spriteA.tag == TAG_WEB && spriteB.tag >= TAG_ANT) {

        }

        else if (spriteA.tag >= TAG_ANT && spriteB.tag == TAG_WEB) {

            [spriteA removeFromParentAndCleanup:YES];
            [[HelloWorldLayer sharedLevel] WebCollisionWithInsect:bodyA];
        }
    }
}

衝突が発生するたびに EndContact メソッドが WebCollisionWithInsect:bodyA を呼び出す

-(void) WebCollisionWithInsect:(b2Body*) bodyT{
            world->DestroyBody(bodyT);
}

world->DestroyBody(bodyT) 行でエラーが発生します

アサーションに失敗しました: (IsLocked() == false)、関数 DestroyBody、ファイル /Users/libs/Box2D/Dynamics/b2World.cpp、134 行目。

私が間違っていることを考えてください。?

編集 しました この行を EndContact に追加しました

destroyCollisionDetectionBody = objBody;
didInsectCollideWithWeb = YES;

破壊したい体の参照を保持します。チェックの場合、ティックメソッド内で体を破壊できるようになりました。これらの行をティックメソッドに追加しました

if(didInsectCollideWithWeb)
    {
        [self unschedule:@selector(tick:)];
        [freeBodySprite removeFromParentAndCleanup:YES]; // this is my web
        world->DestroyBody(destroyCollisionDetectionBody);
        world->DestroyBody(freeBody);
        [self createWeb];
        [self schedule:@selector(tick:)];
        didInsectCollideWithWeb = NO;

    }

しかし、今の問題は、私が自分のウェブ、つまりフリーボディを破壊しているときです。私はそれを再現することはできません。[self createWeb]; を呼び出して以前に行っていたように。

4

1 に答える 1