summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/control/TurnControl.java
blob: 417c7b421b6004a378d019aa94dace084f0c6fd7 (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
package jrummikub.control;

import jrummikub.model.IHand;
import jrummikub.model.ITable;
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();
	IListener endOfTurnListener;

	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() {

		endOfTurnListener = new IListener() {

			@Override
			public void handle() {
				endOfTurn();
			}
		};
		timer.getTimeRunOutEvent().add(endOfTurnListener);
		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();
		view.getPlayerPanel().getEndTurnEvent().remove(endOfTurnListener);
	}

	public IEvent getEndOfTurnEvent() {
		return endOfTurnEvent;
	}
}