blob: 840b0e9cf705af4dbfd0c3c566bf9eae55f57c3b (
plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
package jrummikub.control;
import java.util.ArrayList;
import java.util.List;
import jrummikub.model.IHand;
import jrummikub.model.ITable;
import jrummikub.util.Connection;
import jrummikub.util.Event;
import jrummikub.util.IEvent;
import jrummikub.util.IListener;
import jrummikub.view.IView;
public class TurnControl {
private IHand hand;
private ITable table;
private ITurnTimer timer;
private IView view;
private Event endOfTurnEvent = new Event();
List<Connection> connections = new ArrayList<Connection>();
public TurnControl(IHand hand, ITable table, IView view) {
this.hand = hand;
this.table = table;
this.view = view;
this.timer = new TurnTimer(view);
}
/** Test only constructor **/
TurnControl(IHand hand, ITable table, IView view, ITurnTimer testTimer) {
this.hand = hand;
this.table = table;
this.view = view;
this.timer = testTimer;
}
public void startTurn() {
IListener endOfTurnListener = new IListener() {
@Override
public void handle() {
endOfTurn();
}
};
connections.add(timer.getTimeRunOutEvent().add(endOfTurnListener));
connections.add(view.getPlayerPanel().getEndTurnEvent().add(endOfTurnListener));
view.getPlayerPanel().getHandPanel().setStones(hand.clone());
view.enableStartTurnPanel(false);
timer.startTimer();
}
private void sortByValue() {
}
private void sortByColor() {
}
private void endOfTurn() {
timer.stopTimer();
endOfTurnEvent.emit();
for (Connection c : connections) {
c.remove();
}
}
public IEvent getEndOfTurnEvent() {
return endOfTurnEvent;
}
}
|