diff options
Diffstat (limited to 'src/jrummikub/control/RoundControl.java')
-rw-r--r-- | src/jrummikub/control/RoundControl.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/jrummikub/control/RoundControl.java b/src/jrummikub/control/RoundControl.java index 4949e2b..231b860 100644 --- a/src/jrummikub/control/RoundControl.java +++ b/src/jrummikub/control/RoundControl.java @@ -81,7 +81,12 @@ public class RoundControl { if (clonedTable.isValid()) { gameState.setTable(clonedTable); - // TODO Win check + System.err.println(gameState.getActivePlayer().getName()); + System.err.println(gameState.getActivePlayer().getHand().getSize()); + if (gameState.getActivePlayer().getHand().getSize() == 0) { + win(); + return; + } } else { gameState.getGameHeap().putBack(tableDiff); dealPenalty(tableDiff.size()); @@ -127,4 +132,8 @@ public class RoundControl { for (int i = 0; i < count + 3; ++i) dealStone(); } + + private void win() { + view.enableWinPanel(true); + } } |