3

这是当两个球碰撞时将球的颜色变为红色的代码。我快到了,但我似乎没有找到故障,因为一个球没有改变颜色。请帮帮我!

 //generate a random number within a range
    function randomXToY(minVal,maxVal,floatVal)
    {
      var randVal = minVal+(Math.random()*(maxVal-minVal));
      return typeof floatVal=='undefined'?Math.round(randVal):randVal.toFixed(floatVal);
    }

    // The Ball class
    Ball = (function() {

      // constructor
      function Ball(x,y,radius,color){
        this.center = {x:x, y:y};  
        this.radius = radius;               
        this.color = color;
        this.dx = 2;               
        this.dy = 2;        
        this.boundaryHeight = $('#ground').height();
        this.boundaryWidth = $('#ground').width();

        this.dom  = $('<p class="circle"></p>').appendTo('#ground');

        // the rectange div a circle
        this.dom.width(radius*2);
        this.dom.height(radius*2);
        this.dom.css({'border-radius':radius,background:color});

        this.placeAtCenter(x,y);         
      }

      // Place the ball at center x, y
      Ball.prototype.placeAtCenter = function(x,y){
        this.dom.css({top: Math.round(y- this.radius), left: Math.round(x - this.radius)});
        this.center.x = Math.round(x);        
        this.center.y = Math.round(y);             
      };

      Ball.prototype.setColor = function(color) {
        if(color) {
          this.dom.css('background',color);
        } else {
          this.dom.css('background',this.color);
        }           
      };

      // move and bounce the ball
      Ball.prototype.move = function(){
        var diameter = this.radius * 2;                                               
        var radius = this.radius;  
        if (this.center.x - radius < 0 || this.center.x + radius > this.boundaryWidth ) {
          this.dx = -this.dx;
        }
        if (this.center.y - radius < 0 || this.center.y  + radius > this.boundaryHeight ) {
          this.dy = -this.dy;
        }
        this.placeAtCenter(this.center.x + this.dx ,this.center.y +this.dy);

      };



      return Ball;
    })();

    var number_of_balls = 5;
    var  balls = [];   
      var x; 
    var y;
    $('document').ready(function(){
      for (i = 0; i < number_of_balls; i++) { 
        var boundaryHeight = $('#ground').height();
        var boundaryWidth = $('#ground').width();
         y = randomXToY(30,boundaryHeight - 50);
         x = randomXToY(30,boundaryWidth - 50);
        var radius = randomXToY(15,30);
        balls.push(new Ball(x,y,radius, '#'+Math.floor(Math.random()*16777215).toString(16))); 
      }
      loop(); 
      check();

    });

    check = function(){
      for (var i = 0; i < balls.length; i++){

      for(var j=0;j<balls.length;j++){
        if (i!=j) {
          if (Math.pow(balls[j].center.x - balls[i].center.x, 2) + Math.pow(balls[j].center.y - balls[i].center.y, 2) <= Math.pow(balls[i].radius + balls[j].radius, 2)) {
            console.log(true);
            balls[j].setColor('red');
            balls[i].setColor('red');
          } else {
            balls[j].setColor(balls[j].color);

          } 
        }

     }}

       setTimeout(check,8);  
    };

    loop = function(){
      for (var i = 0; i < balls.length; i++){
        balls[i].move();
      }

      setTimeout(loop, 8);    
    };

这是 jsbin:http: //jsbin.com/imofat/790/edit

4

2 回答 2

3

球都在碰撞;碰撞的公式是正确的,即:

(dx * dx) + (dy * dy) <= sum of the circles' radii

问题在于,由于 JavaScript 的单线程特性以及重置颜色的else部分,有时屏幕不会更新以反映新颜色。if

例如,ball[0]与 碰撞时ball[1],将ball[0]的颜色设置redif即可。但是,如果ball[0] 在内循环的ball[2]一次迭代( JavaScript 的单线程特性),在这种情况下你永远看不到颜色。j=2 ball[0]red

所以,你有两个选择。1)当发生碰撞时,它要么break内部循环之外(如果你不需要测试每隔一个碰撞);2)标记哪些球已经碰撞,并且只重置循环中以前从未碰撞过的那些球的颜色,使用Array,例如:

var collisions = [];
for (var i = 0; i < balls.length; i++) {
  for (var j = 0; j < balls.length; j++) {
    if (i!=j) {
      if (Math.pow(balls[j].center.x - balls[i].center.x, 2) + Math.pow(balls[j].center.y - balls[i].center.y, 2) <= Math.pow(balls[i].radius + balls[j].radius, 2)) {
        collisions[i] = true;
        balls[i].setColor('red');
      } else {
        if (!collisions[i]) {
          balls[i].setColor(balls[i].color);
        }
      } 
    }
  }
}

此外,第二个循环可以简化为从 开始i + 1而不是0. 这样,您不仅可以减少碰撞测试的次数,还可以删除i != j测试。

演示

于 2012-09-04T19:34:39.177 回答
0

如果你想让红色在碰撞发生后保持不变,你需要设置小球的颜色:

Ball.prototype.setColor = function(color) {        
    if(color) {
      this.color = color;  // The ball's color is now this value. 
      this.dom.css('background',color);
    } else {
      this.dom.css('background',this.color); // so when this is called, the ball will be that color going forward.
    }           
};
于 2012-09-04T19:39:49.483 回答