Objective-Cに関しては初心者なので、できるだけ簡単に答えてください。
これは、Xcode 4.5 で作成された Pong ゲームの m ファイルです。メソッド viewDidLoad ではタイマーです。私の問題は、間隔を変更することです(現在、フロートギャップ= 0.05)ので、ボールはどんどん速くなります..別の場所に新しいタイマーを作成し、繰り返しをYESに設定しないようにする必要があると思います. しかし、私はそれをどこに置き、フロートギャップをどうするかわかりません。
私の言いたいことを理解していただければ幸いです。
PongOne.m:
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
UITouch *touch = [[event allTouches] anyObject];
CGPoint location = [touch locationInView:touch.view];
paddle.center = CGPointMake(location.x, paddle.center.y);
}
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
[self touchesBegan:touches withEvent:event];
}
-(void)CPU {
ball.center = CGPointMake(ball.center.x + xgain, ball.center.y + ygain);
if (ball.center.x < 15)
xgain = abs(xgain);
if (ball.center.y < 15)
ygain = abs(ygain);
gap = gap + 0.01;
if (ball.center.x > 305)
xgain = -abs(xgain);
if (ball.center.y > 445){
score++;
if (score <= 2){
ball.center = CGPointMake(100, 100);
label1.text = [NSString stringWithFormat:@"%d", score];
} else {
[timer invalidate];
timer = nil;
[self performSegueWithIdentifier:@"byta1" sender:self];
}
}
if (CGRectIntersectsRect(ball.frame, paddle.frame))
ygain = -abs(ygain);
if (CGRectIntersectsRect(ball.frame, paddle2.frame))
ygain = abs(ygain);
paddle2.center = CGPointMake(ball.center.x, paddle2.center.y);
}
- (void)viewDidLoad {
[super viewDidLoad];
timer = [NSTimer scheduledTimerWithTimeInterval:gap target: self selector:@selector(CPU) userInfo:nil repeats:YES];
xgain = 10;
ygain = 10;
}