iOS 8如何防止Spritekit帧速率下降

时间:2014-10-28 01:28:01

标签: ios objective-c timer sprite-kit frame-rate

在我创建的游戏中,我创建了一个游戏模式,玩家可以在30秒内尽可能多地击中目标。我在 - (void)update:(CFTimeInterval)currentTime方法中添加了一个30秒的倒数计时器。当倒计时开始时,帧速率显着下降,并且只要对象与目标发生碰撞,就会使用99%的cpu。当计时器未运行时,不会发生这种情况。还有另一种方法可以添加倒数计时器吗?如果没有,我怎样才能减少CPU使用率并保持帧速率不变?我正在使用Xcode 6.1,代码如下。这也是iOS 8的问题。在iOS 7.1上运行正常。

-(void)update:(CFTimeInterval)currentTime {
/* Called before each frame is rendered */
//reset counter if starting
int highscoret = [[NSUserDefaults standardUserDefaults] integerForKey: @"highScoret"];    
if (startGamePlay){
startTime = currentTime;
startGamePlay = NO;
}
countDown.text = [NSString stringWithFormat:@"Start!"];

int countDownInt = 30.0 -(int)(currentTime-startTime);
if(countDownInt>0){ //if counting down to 0 show counter
countDown.text = [NSString stringWithFormat:@"%i", countDownInt];
}else if(countDownInt==0) { //if not show message, dismiss, whatever you need to do.
countDown.text=@"Time's Up!";

self.highScoret.text = [NSString stringWithFormat:@"%d Baskets",highscoret];
SKScene *endGameScene = [[GameOverT alloc] initWithSize:self.size];
SKTransition *reveal = [SKTransition fadeWithDuration:0.5];
[self.view presentScene:endGameScene transition:reveal];
[self saveScore2];

if (self.points > highscoret) {
    self.highScoret.text = [NSString stringWithFormat:@"%d Points",highscoret];
    [self saveScore];
    self.points = 0;
    self.scoreLabel.text = [NSString stringWithFormat:@"%d Points",_points];
}

else {
    self.points = 0;
    self.scoreLabel.text = [NSString stringWithFormat:@"%d Points",_points];
    self.highScoret.text = [NSString stringWithFormat:@"%d Points",highscoret];
}


}
}

这是其他相关代码

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
/* Called when a touch begins */
for (UITouch *touch in touches) {
CGPoint location = [touch locationInNode:self];
if (CGRectContainsPoint(countDown.frame, location)){
    startGamePlay = YES;
    self.baskett = 0;
    [self reset];
}
}

UITouch * touch = [touches anyObject];
CGPoint location = [touch locationInNode:self];

SKSpriteNode * object = [SKSpriteNode spriteNodeWithImageNamed:@"object.png"];
object.position = self.object2.position;

object.physicsBody = [SKPhysicsBody bodyWithCircleOfRadius:ball.size.width/2];
object.physicsBody.dynamic = YES;
object.physicsBody.categoryBitMask = objectCategory;
object.physicsBody.contactTestBitMask = targetCategory;
object.physicsBody.collisionBitMask = 0;
object.physicsBody.usesPreciseCollisionDetection = YES;
CGPoint offset = rwSub(location, object.position);

if (offset.y <= 0) return;

[self addChild:object];

CGPoint direction = rwNormalize(offset);

CGPoint shootAmount = rwMult(direction, 1000);

CGPoint realDest = rwAdd(shootAmount, object.position);

float velocity = 200/1.0;
float realMoveDuration = self.size.width / velocity;
SKAction * actionMove = [SKAction moveTo:realDest duration:realMoveDuration];
SKAction * actionMoveDone = [SKAction removeFromParent];
[object runAction:[SKAction sequence:@[actionMove, actionMoveDone]]];
}

-(void)object:(SKSpriteNode *) object didCollideWithTarget:(SKSpriteNode *) target {
[object removeFromParent];

[[self scene] runAction:[SKAction playSoundFileNamed:@"effect2.wav" waitForCompletion:NO]];
self.points++;
self.scoreLabel.text = [NSString stringWithFormat:@"%d Points",_points];

if (self.points == 3) {
[self obstacle];
}

}

1 个答案:

答案 0 :(得分:1)

更新函数中的计时器是一个坏主意,使用waitForDuration的skaction,这可能会解决你的问题

SKAction *updateTime= [SKAction sequence:@[
                                                ///fire function after one second
                                               [SKAction waitForDuration:1.0f],
                                               [SKAction performSelector:@selector(callFunction)
                                                                onTarget:self]

                                               ]];
     //where 30 is number of time you want’s to call your function
    [self runAction:[SKAction repeatAction:updateTime count:30] ];




-(void) callFunction
{

   //what ever you want to do
}