From 919746e58e22c4039ef2dd520b25054e791466c7 Mon Sep 17 00:00:00 2001 From: loic Date: Thu, 22 Sep 2016 22:14:50 +0200 Subject: [PATCH] Add board bg --- .../java/controller/MainWindowController.java | 21 ++++++++++--------- src/main/java/model/Board.java | 12 +++++++++-- src/main/java/model/IModel.java | 1 + src/main/java/model/LineAlgorithm.java | 10 ++++++++- src/main/resources/JavafxView/MainWindow.fxml | 11 +++++++++- 5 files changed, 41 insertions(+), 14 deletions(-) diff --git a/src/main/java/controller/MainWindowController.java b/src/main/java/controller/MainWindowController.java index e92af36..36b0293 100644 --- a/src/main/java/controller/MainWindowController.java +++ b/src/main/java/controller/MainWindowController.java @@ -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)); } diff --git a/src/main/java/model/Board.java b/src/main/java/model/Board.java index 87d8ef7..4d8f9b8 100644 --- a/src/main/java/model/Board.java +++ b/src/main/java/model/Board.java @@ -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 + xmlns:fx="http://javafx.com/fxml" prefWidth="800" prefHeight="800" > +
+ + + +