summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/jrummikub/control/GameControl.java34
-rw-r--r--src/jrummikub/control/TurnControl.java34
-rw-r--r--src/jrummikub/control/TurnTimer.java5
3 files changed, 73 insertions, 0 deletions
diff --git a/src/jrummikub/control/GameControl.java b/src/jrummikub/control/GameControl.java
new file mode 100644
index 0000000..3b9d4bb
--- /dev/null
+++ b/src/jrummikub/control/GameControl.java
@@ -0,0 +1,34 @@
+package jrummikub.control;
+
+import jrummikub.model.GameState;
+import jrummikub.view.IView;
+
+public class GameControl {
+ private GameState gameState;
+ private IView view;
+
+ public GameControl(GameState gameState, IView view) {
+ this.gameState = gameState;
+ this.view = view;
+ }
+
+ private void endOfTurn() {
+
+ }
+
+ private void ruleCheck() {
+
+ }
+
+ private void resetTable() {
+
+ }
+
+ private void preparePlayerTurn() {
+
+ }
+
+ private void dealStone() {
+
+ }
+}
diff --git a/src/jrummikub/control/TurnControl.java b/src/jrummikub/control/TurnControl.java
new file mode 100644
index 0000000..9bedfae
--- /dev/null
+++ b/src/jrummikub/control/TurnControl.java
@@ -0,0 +1,34 @@
+package jrummikub.control;
+
+
+import jrummikub.model.Hand;
+import jrummikub.model.Table;
+import jrummikub.util.Event;
+import jrummikub.util.IEvent;
+import jrummikub.view.IView;
+
+public class TurnControl {
+ private Hand hand;
+ private Table table;
+ private TurnTimer timer;
+ private IView view;
+ private Event endOfTurnEvent = new Event();
+
+ public TurnControl(Hand hand, Table table, IView view) {
+ this.hand = hand;
+ this.table = table;
+ this.view = view;
+ }
+
+ private void sortByValue() {
+
+ }
+
+ private void sortByColor() {
+
+ }
+
+ public IEvent getEndOfTurnEvent() {
+ return endOfTurnEvent;
+ }
+}
diff --git a/src/jrummikub/control/TurnTimer.java b/src/jrummikub/control/TurnTimer.java
new file mode 100644
index 0000000..701e892
--- /dev/null
+++ b/src/jrummikub/control/TurnTimer.java
@@ -0,0 +1,5 @@
+package jrummikub.control;
+
+public class TurnTimer {
+
+}