0

我有两个带有对象的数组。例子:

var boxes = [],
    coins = [],
    k = 0;

boxes.push({
    x: 300,
    y: 350,
    width: 500,
    height: 500
});

for (k; k < 30; k++) {
    coins.push({
        x: Math.floor(Math.random() * (10 - 4) + 4) * 100,
        y: Math.floor(Math.random() * (4 - 1) + 1) * 100,
        width:25,
        height:25
    });
}

之后我for用来画那些东西。问题是有时硬币会装在盒子里。如何检查硬币是否在盒子范围内?我正在考虑计算方盒和硬币,但我不知道如何完成。

var i = 0,
    j = 0;

for (i; i < coins.length; i++) {
    for (j; j < boxes.length; j++) {

        if (boxes[j].x + boxes[j].width /* something */ coins[i].x + coins[i].width && boxes[j].y + boxes[j].height /* something */ coins[i].y + coins[i].height) {
            /* do nothing */
        } else { 
            ctx.fillRect(coins[i].x, coins[i].y, coins[i].width, coins[i].height);
        }

    }
}

有人知道如何完成吗?或者也许还有其他方法?我只能使用纯 JavaScript。

谢谢你的帮助。

4

1 回答 1

3

这是获得成功的if 条件

if (
    (boxes[j].x < (coins[i].x + coins[i].width) &&  (boxes[j].x + boxes[j].width) > coins[i].x) &&
    (boxes[j].y < (coins[i].y + coins[i].height) &&  (boxes[j].y + boxes[j].height) > coins[i].y)
) {
    /* HIT - Do nothing */
} else {
    /* No Hit - Draw the coin */
}

我没有测试它,但我确定它有效......


编辑:

顺便说一句,我注意到您没有在循环中重新设置ijvar for,您至少应该在第二个循环(j)中这样做,否则循环将不起作用。

for (i = 0; i < coins.length; i++) {
    for (j = 0; j < boxes.length; j++) {
于 2013-08-19T15:26:10.937 回答