Add board bg
This commit is contained in:
parent
cf931bc928
commit
919746e58e
5 changed files with 41 additions and 14 deletions
|
@ -34,7 +34,7 @@ public class MainWindowController implements IObserver {
|
|||
|
||||
private int squareSize=100;
|
||||
private int squarePadding=10;
|
||||
private int[] boardPosition={40,0};
|
||||
private int[] boardPosition={30,0};
|
||||
private int fontSize=60;
|
||||
|
||||
|
||||
|
@ -108,10 +108,14 @@ public class MainWindowController implements IObserver {
|
|||
else{
|
||||
this.score.setText("Score : " + this.model.getScore());
|
||||
}
|
||||
int[][] board=this.model.getBoard();
|
||||
|
||||
GraphicsContext gc = boardCanvas.getGraphicsContext2D();
|
||||
gc.clearRect(0,0,500,500);
|
||||
int[][] board=this.model.getBoard();
|
||||
|
||||
gc.setFill(Color.rgb(187,173,160));
|
||||
gc.fillRect(this.boardPosition[0],this.boardPosition[1], ((this.squareSize+squarePadding)*board.length)+squarePadding, ((this.squareSize+squarePadding)*board[0].length)+squarePadding);
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -162,14 +166,11 @@ public class MainWindowController implements IObserver {
|
|||
|
||||
|
||||
int x=this.boardPosition[0] + (j*this.squareSize);
|
||||
int y=this.boardPosition[1] + (i*this.squareSize);
|
||||
x+=(j+1)*squarePadding;
|
||||
|
||||
int y=this.boardPosition[1] + (i*this.squareSize);
|
||||
y+=(i+1)*squarePadding;
|
||||
|
||||
if(j>0){
|
||||
x+=j*squarePadding;
|
||||
}
|
||||
if(i>0){
|
||||
y+=i*squarePadding;
|
||||
}
|
||||
|
||||
gc.fillRect(x,y, this.squareSize, this.squareSize);
|
||||
|
||||
|
@ -194,7 +195,7 @@ public class MainWindowController implements IObserver {
|
|||
}
|
||||
|
||||
gc.setFont(new Font(localFontSize));
|
||||
gc.fillText(strValue, x + (this.squareSize / 2) - ((localFontSize/3)+strValue.length()*localFontSize/5) , y + (this.squareSize / 2) + (localFontSize /3));
|
||||
gc.fillText(strValue, x + (this.squareSize / 2) - ((localFontSize/4)+strValue.length()*localFontSize/5) , y + (this.squareSize / 2) + (localFontSize /3));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -11,7 +11,8 @@ public class Board implements IModel{
|
|||
|
||||
private int[][] board;
|
||||
private Random rand = new Random();
|
||||
private LineAlgorithm lineAlgorithm;
|
||||
private LineAlgorithm lineAlgorithm=new LineAlgorithm();
|
||||
|
||||
|
||||
|
||||
public Board(int sizeX, int sizeY){
|
||||
|
@ -111,7 +112,7 @@ public class Board implements IModel{
|
|||
index=rand.nextInt(choices.size()-1 +1) + 0;
|
||||
}
|
||||
Integer[] xy=(Integer[])choices.toArray()[index];
|
||||
int twoOrFour=rand.nextInt(3-0 +1) + 0;
|
||||
int twoOrFour=rand.nextInt(5-0 +1) + 0;
|
||||
switch (twoOrFour){
|
||||
case 0:
|
||||
this.board[xy[0]][xy[1]]=4;
|
||||
|
@ -141,6 +142,11 @@ public class Board implements IModel{
|
|||
return this.getCloneOfBoard();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getScore() {
|
||||
return this.lineAlgorithm.getScore();
|
||||
}
|
||||
|
||||
|
||||
public boolean isLoosed() {
|
||||
int[][] copyBoard=this.getCloneOfBoard();
|
||||
|
@ -164,6 +170,8 @@ public class Board implements IModel{
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
private int[][] getCloneOfBoard(){
|
||||
int[][] copyBoard=new int[this.board.length][this.board[0].length];
|
||||
for(int i=0;i<this.board.length;i++){
|
||||
|
|
|
@ -5,4 +5,5 @@ package model;
|
|||
*/
|
||||
public interface IModel {
|
||||
int[][] getBoard();
|
||||
int getScore();
|
||||
}
|
||||
|
|
|
@ -7,7 +7,9 @@ public class LineAlgorithm {
|
|||
|
||||
|
||||
|
||||
public static int[] mergeRight(int[] line){
|
||||
private int score=0;
|
||||
|
||||
public int[] mergeRight(int[] line){
|
||||
|
||||
line=gravityRight(line);
|
||||
|
||||
|
@ -19,6 +21,7 @@ public class LineAlgorithm {
|
|||
line[i]=a+b;
|
||||
line[i-1]=-1;
|
||||
i--;
|
||||
this.score+=(a+b);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -88,4 +91,9 @@ public class LineAlgorithm {
|
|||
System.out.println("\n----------");
|
||||
|
||||
}
|
||||
|
||||
public int getScore() {
|
||||
return score;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -11,10 +11,19 @@
|
|||
xmlns:fx="http://javafx.com/fxml" prefWidth="800" prefHeight="800" >
|
||||
|
||||
<top>
|
||||
<Text fx:id="score"/>
|
||||
</top>
|
||||
<center>
|
||||
<Canvas fx:id="boardCanvas" height="500" width="500" />
|
||||
</center>
|
||||
<bottom>
|
||||
<GridPane alignment="CENTER">
|
||||
<padding><Insets top="25" right="25" bottom="50" left="25"/></padding>
|
||||
<Button fx:id="restartButton" text="Restart" onAction="#restartGame" GridPane.rowIndex="0" GridPane.columnIndex="0"/>
|
||||
|
||||
</GridPane>
|
||||
|
||||
</bottom>
|
||||
|
||||
|
||||
</BorderPane>
|
Loading…
Add table
Reference in a new issue