簡體   English   中英

Cocos2d 旋轉觸摸移動問題

[英]Cocos2d rotation on touches moved problem

我有一個像精靈一樣的長矛。 它的旋轉由 touchesMoved 方法決定。 每當用戶滑動手指時,它就會指向該觸摸。 這是我的方法:

- (void)ccTouchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {

    UITouch* touch = [touches anyObject];
    CGPoint location = [touch locationInView: [touch view]];


    float angleRadians = atanf((float)location.y / (float)location.x);
    float angleDegrees = CC_RADIANS_TO_DEGREES(angleRadians);

    spear.rotation = -1 * angleDegrees;

}

這有點工作,但只能從 0 到 45 度。 它相反。 所以當我從手指向下移動到頂部時,它順時針旋轉(它應該跟隨手指的方向並逆時針旋轉)。 從 45 到 90,它工作正常(反向點擊移動),但前提是我在屏幕的上對角線開始觸摸。

我究竟做錯了什么? 謝謝

#define PTM_RATIO 32

- (void)ccTouchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{

    for( UITouch *touch in touches ) {

        CGPoint location = [touch locationInView: [touch view]];

        location = [[CCDirector sharedDirector] convertToGL: location];

        b2Vec2 locationWorld = b2Vec2(location.x/PTM_RATIO, location.y/PTM_RATIO);

        spriteBody->SetTransform(locationWorld,spriteBody->GetAngle());
    }
}

-(void) tick: (ccTime) dt
{

    //It is recommended that a fixed time step is used with Box2D for stability
    //of the simulation, however, we are using a variable time step here.
    //You need to make an informed choice, the following URL is useful
    //http://gafferongames.com/game-physics/fix-your-timestep/

    int32 velocityIterations = 8;
    int32 positionIterations = 1;

    // Instruct the world to perform a single step of simulation. It is
    // generally best to keep the time step and iterations fixed.
    m_world->Step(dt, velocityIterations, positionIterations);

    //  for (int i = 0; i < (int)birds.size(); i++)
    //      birds[i]->render();

    //Iterate over the bodies in the physics world
    for (b2Body* b = m_world->GetBodyList(); b; b = b->GetNext())
    {
        if (b->GetUserData() != NULL) {
            //Synchronize the AtlasSprites position and rotation with the corresponding body
            CCSprite *myActor = (CCSprite*)b->GetUserData();
            myActor.position = CGPointMake( b->GetPosition().x * PTM_RATIO, b->GetPosition().y * PTM_RATIO);
            myActor.rotation = -1 * CC_RADIANS_TO_DEGREES(b->GetAngle());
        }   
    }
}

弄清楚出了什么問題。 我需要將觸摸得到的 CGPoint 更改為 GL 點,如下所示:

CGPoint location = [touch locationInView: [touch view]];

location = [[CCDirector sharedDirector] convertToGL: location];

傻我。 以前應該考慮過這個。

CGPoint touchLocation = [touch locationInView: [touch view]];
touchLocation = [[CCDirector sharedDirector] convertToGL:touchLocation];
touchLocation = [self convertToNodeSpace:touchLocation];    
GPoint diff = ccpSub(touchLocation, _player.position);

//rotate to face the touch
CGPoint diff = ccpSub(_player.position, touchLocation);
float angleRadians = atanf((float)diff.y / (float)diff.x);
float angleDegrees = CC_RADIANS_TO_DEGREES(angleRadians);
float cocosAngle = -1 * angleDegrees;

if(diff.x < 0)
{
            cocosAngle += 180;
}

id actionRotateTo = [CCRotateTo actionWithDuration:0.1 angle:cocosAngle];
[_player runAction:actionRotateTo];

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM