1. 程式人生 > >三消中檢測相同顏色,和開始時隨機換掉相同圖片

三消中檢測相同顏色,和開始時隨機換掉相同圖片

  將從精靈類中生成的圖片型別通過自定義事件傳入layer類, 在方法體中建立一個數組 將圖片全域性檢查, 發現相同型別的給它存入陣列,

   寫一個方法 將檢測方法體內的陣列傳入,將相同圖片隨機換取,直到沒有相同圖片.

var sif =this._cool()
if(sif != false)
this._sui(sif)

   _cool:function(){
        var arr= []
        for(var i = 0; i <GameData.W_NUM-2 ;i++){
            for(var j = 0; j <GameData
.H_NUM; j++){ if(this.cellArr[i][j].type == this.cellArr[i+1][j].type && this.cellArr[i][j].type == this.cellArr[i+2][j].type){ arr.push(cc.p(i, j ),cc.p(i+ 1, j ),cc.p(i +2, j )) } } } for(var i = 0; i <GameData
.W_NUM ;i++){ for(var j = 0; j < GameData.H_NUM-2; j++){ if(this.cellArr[i][j].type == this.cellArr[i][j+1].type && this.cellArr[i][j].type == this.cellArr[i][j+2].type){ arr.push(cc.p(i, j ),cc.p(i , j+1 ),cc.p(i , j+2 )) } } } if
(arr.length>0) return arr else return false }, //隨機轉換重複圖片 _sui:function(arr){ for(var index in arr){ this.cellArr[arr[index].x][arr[index].y]._init() } if(this._cool() != false){ this._sui(this._cool()) } }