Add 2 and 4

This commit is contained in:
loic 2016-09-22 20:09:07 +02:00
parent 5446859dee
commit d794981f82
2 changed files with 10 additions and 3 deletions

View file

@ -88,12 +88,19 @@ public class Board implements IModel{
if(choices.size()>0){
int index=0;
if(choices.size()>1){
index=rand.nextInt(choices.size()-1) + 0;
index=rand.nextInt(choices.size()-1 +1) + 0;
}
Integer[] xy=(Integer[])choices.toArray()[index];
int twoOrFour=rand.nextInt(3-0 +1) + 0;
switch (twoOrFour){
case 0:
this.board[xy[0]][xy[1]]=4;
break;
default:
this.board[xy[0]][xy[1]]=2;
}
}
}
private boolean boardsIsEquals(int[][] board1, int[][] board2){
if(board1.length!=board1.length){