-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathControllerGameBoard.java
More file actions
44 lines (38 loc) · 956 Bytes
/
ControllerGameBoard.java
File metadata and controls
44 lines (38 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package edu.sdccd.cisc191;
/**
* Manages the game rules and logic
*/
public class ControllerGameBoard
{
protected ModelGameBoard modelGameBoard;
private boolean gameOver;
public ControllerGameBoard()
{
this.modelGameBoard = new ModelGameBoard();
}
public boolean fishWin()
{
boolean fishWin = modelGameBoard.getGuessesRemaining() == 0 && modelGameBoard.getFishRemaining() > 0;
if(fishWin) {
gameOver = true;
}
return fishWin;
}
public boolean playerWins()
{
boolean playerWins = modelGameBoard.getFishRemaining() == 0;
if(playerWins) {
gameOver = true;
}
return playerWins;
}
public boolean makeGuess(int row, int col) {
if(!gameOver) {
return modelGameBoard.makeGuess(row, col);
}
return false;
}
public boolean isGameOver() {
return gameOver;
}
}