summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/control/turn/TurnControlFactory.java
blob: 7c5077d1c23a31501c5aa01d787460442ad06f68 (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
package jrummikub.control.turn;

import jrummikub.model.PlayerSettings;

/**
 * Creates a turn control for the active player, regarding if layer is human or
 * computer
 * 
 */
public abstract class TurnControlFactory {
	/**
	 * Creates a new turn control instance
	 * 
	 * @return the turn control
	 */
	public abstract ITurnControl create();

	/**
	 * returns the turn control factory for the specified type
	 * 
	 * @param type
	 *          Human or Computer
	 * @return TurnControlFactory for the player kind
	 */
	static public TurnControlFactory getFactory(PlayerSettings.Type type) {
		switch (type) {
			case HUMAN:
				return HumanTurnControl.getFactory();
			case COMPUTER:
				return AIControl.getFactory();
		}
		return null;
	}
}