0

私はiPhoneで開発を始めたばかりで、ボタン(6つ)をUIAcceleratorで動かすことができました。それらが互いに衝突しているときに私が直面している問題。同じ方向に跳ね返るようにしたいのですが、これはボタンを 2 つしか使用しない場合に機能します。しかし、2 つ以上のボタンで複数の衝突が発生すると、それらが重なり合い、最終的に互いにマージされます。

デリゲート自体を設定するコードは次のとおりです。

UIAccelerometer *accel = [UIAccelerometer sharedAccelerometer];
accel.delegate = self;
accel.updateInterval = 1.0f/60.0f;

アクセラレータの委任方法:

- (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration{
delta.x = acceleration.x * 5;
delta.y = acceleration.y * -5;

self.firstButton.center = CGPointMake(self.firstButton.center.x + delta.x, self.firstButton.center.y + delta.y);
self.secondButton.center = CGPointMake(self.secondButton.center.x + delta.x, self.secondButton.center.y + delta.y);
self.thirdButton.center = CGPointMake(self.thirdButton.center.x + delta.x, self.thirdButton.center.y + delta.y);
self.fourthButton.center = CGPointMake(self.fourthButton.center.x + delta.x, self.fourthButton.center.y + delta.y);
self.fifthButton.center = CGPointMake(self.fifthButton.center.x + delta.x, self.fifthButton.center.y + delta.y);
self.sixthButton.center = CGPointMake(self.sixthButton.center.x + delta.x, self.sixthButton.center.y + delta.y);

[self updateMovingObjects:self.firstButton];
[self updateMovingObjects:self.secondButton];
[self updateMovingObjects:self.thirdButton];
[self updateMovingObjects:self.fourthButton];
[self updateMovingObjects:self.fifthButton];
[self updateMovingObjects:self.sixthButton];
}

updateMovingObjects:

- (void)updateMovingObjects:(UIButton *)button{
/*** DETECT COLLISIONS ***/

// Right screen
if(button.center.x < button.frame.size.width / 2){
    button.center = CGPointMake(button.frame.size.width / 2, button.center.y); 
}
// Left screen
if(button.center.x > 320 - button.frame.size.width / 2){
    button.center = CGPointMake(320 - button.frame.size.width / 2, button.center.y); 
}
// Top screen
if(button.center.y < button.frame.size.height / 2){
    button.center = CGPointMake(button.center.x, button.frame.size.height / 2); 
}
// Bottom screen
if(button.center.y > 480 - 20 - 43 - button.frame.size.height / 2){
    button.center = CGPointMake(button.center.x, 480 - 20 - 43 - button.frame.size.height / 2); 
}

// Detect collision with objects
for (UIView *anotherView in [self.view subviews]) {
    if (button == anotherView){
        continue;
    }
    if(CGRectIntersectsRect(button.frame, anotherView.frame)){
        float_t vec = sqrtf(powf(delta.x, 2.0)+powf(delta.y, 2.0));
        // collided from left or bottom
        if( (button.center.x + button.frame.size.width / 2 >= anotherView.center.x - anotherView.frame.size.width / 2 &&
             button.center.x + button.frame.size.width / 2 <= anotherView.center.x - anotherView.frame.size.width / 2 + 15)
           ||  (button.center.y - button.frame.size.height / 2 <= anotherView.center.y + anotherView.frame.size.height / 2 &&
                button.center.y - button.frame.size.height / 2 >= anotherView.center.y + anotherView.frame.size.height / 2 - 15) ){
               button.center = CGPointMake(button.center.x - vec, button.center.y + vec);
           }
        // collided from top or right
        else{
            button.center = CGPointMake(button.center.x + vec, button.center.y - vec);
        }
    }
}

/*** END DETECT COLLISIONS ***/
}

前もって感謝します。

編集:左、右、下、または上から衝突したかどうかを検出する関数を作成しました。そして、今でははるかにうまく機能しますが、それらを一度に移動させた場合、まだ重複の問題が残っています.私の推測では、時間が計算されていないため、重複しています:

- (BOOL)collidedFromLeft:(UIButton *)button{
for (UIView *anotherView in [self.view subviews]) {
    if (button == anotherView){
        continue;
    }
    if(CGRectIntersectsRect(button.frame, anotherView.frame)){
        if(button.center.x + button.frame.size.width / 2 - delta.x < anotherView.center.x - anotherView.frame.size.width / 2 &&
           button.center.x + button.frame.size.width / 2 >= anotherView.center.x - anotherView.frame.size.width / 2){
            return YES;
        }
    }
}
return NO;

}

- (BOOL)collidedFromTop:(UIButton *)button{
for (UIView *anotherView in [self.view subviews]) {
    if (button == anotherView){
        continue;
    }
    if(CGRectIntersectsRect(button.frame, anotherView.frame)){
        if(button.center.y + button.frame.size.height / 2 - delta.y < anotherView.center.y - anotherView.frame.size.height / 2 &&
           button.center.y + button.frame.size.height / 2 >= anotherView.center.y - anotherView.frame.size.height / 2){
            return YES;
        }
    }
}
return NO;

}

- (BOOL)collidedFromRight:(UIButton *)button{
for (UIView *anotherView in [self.view subviews]) {
    if (button == anotherView){
        continue;
    }
    if(CGRectIntersectsRect(button.frame, anotherView.frame)){
        if(button.center.x - button.frame.size.width / 2 - delta.x > anotherView.center.x + anotherView.frame.size.width / 2 &&
           button.center.x - button.frame.size.width / 2 <= anotherView.center.x + anotherView.frame.size.width / 2){
            return YES;
        }
    }
}
return NO;

}

- (BOOL)collidedFromBottom:(UIButton *)button{
for (UIView *anotherView in [self.view subviews]) {
    if (button == anotherView){
        continue;
    }
    if(CGRectIntersectsRect(button.frame, anotherView.frame)){
        if(button.center.y - button.frame.size.height / 2 - delta.y > anotherView.center.y + anotherView.frame.size.height / 2 &&
           button.center.x - button.frame.size.width / 2 <= anotherView.center.y + anotherView.frame.size.height / 2){
            return YES;
        }
    }
}
return NO;

}

次に、移動中にチェックします。

if([self collidedFromLeft:button]){
    button.center = CGPointMake(button.center.x - 20, button.center.y);
}
if([self collidedFromRight:button]){
    button.center = CGPointMake(button.center.x + 20, button.center.y);
}
if([self collidedFromTop:button]){
    button.center = CGPointMake(button.center.x, button.center.y - 20);
}
if([self collidedFromBottom:button]){
    button.center = CGPointMake(button.center.x, button.center.y + 20);
}
4

0 に答える 0