旋转最多三次

来源:2-5 左移、右移、旋转、坠落-

qq_婉轉_0

2018-05-24 22:28

//  旋转
Square.prototype.canRotate = function (isValid) {
    let d = (this.dire + 1) % 4;
    let test = [
        [0, 0, 0, 0],
        [0, 0, 0, 0],
        [0, 0, 0, 0],
        [0, 0, 0, 0]
    ];
    for (let i = 0; i < this.data.length; i++) {
        for (let j = 0; j < this.data[0].length; j++) {
            test[i][j] = this.rotates[d][i][j];
        }
    }
    return isValid(this.origin, test);
};
Square.prototype._rotate = function (num) {
    if (!num) {
        num = 1;
    }
    this.dir = (this.dir + num) % 4;
    this.dire += 1;
    for (let i = 0; i < this.data.length; i++) {
        for (let j = 0; j < this.data[0].length; j++) {
            this.data[i][j] = this.rotates[this.dire][i][j];
        }
    }
};

https://img.mukewang.com/5b06cbfe0001dcb504870088.jpg

写回答 关注

1回答

  • qq_婉轉_0
    2018-05-24 22:45:15

    已经解决

基于websocket的火拼俄罗斯(单机版)

前端大牛带你实现单机版俄罗斯方块!

31677 学习 · 106 问题

查看课程

相似问题