summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/Hand.java
blob: 6e30a32dc6ee355eb4b66ae92bd9f9af960ace83 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
package jrummikub.model;

import static jrummikub.model.StoneTray.Direction.LEFT;
import static jrummikub.model.StoneTray.Direction.RIGHT;

import java.util.Arrays;
import java.util.Comparator;
import java.util.TreeMap;

import jrummikub.util.Pair;

/** Class managing a {@link Player}'s {@link Stone}s */
public class Hand extends StoneTray<Stone> implements IHand {
	/**
	 * The width of the hand
	 */
	public final static int WIDTH = 14;

	private GameSettings settings;

	/**
	 * Create a new empty hand with given game settings
	 * 
	 * @param settings
	 *            the game settings
	 */
	public Hand(GameSettings settings) {
		this.settings = settings;
	}

	@Override
	public int getFreeRowSpace(int row) {
		int count = 0;
		for (Pair<Stone, Position> entry : this) {
			if (entry.getSecond().getY() == row) {
				count++;
			}
		}
		return WIDTH - count;
	}

	@Override
	public int getRowCount() {
		int rows = 0;

		for (Pair<Stone, Position> entry : this) {
			if (entry.getSecond().getY() > rows) {
				rows = (int) entry.getSecond().getY();
			}
		}

		return rows + 1;
	}

	@Override
	protected Pair<Position, Direction> fixInvalidDrop(Stone stone,
			Position pos, Direction dir) {
		float x = pos.getX();
		float y = pos.getY();

		if (x >= 0 && x <= WIDTH - 1) {
			return null;
		}
		if (x < 0) {
			return new Pair<Position, Direction>(new Position(0, y), RIGHT);
		} else {
			if (getFreeRowSpace((int) y) == 0) {
				return new Pair<Position, Direction>(new Position(0, y + 1),
						RIGHT);
			} else {
				return new Pair<Position, Direction>(
						new Position(WIDTH - 1, y), LEFT);
			}
		}
	}

	public int getStonePoints() {
		int points = 0;

		for (Pair<Stone, Position> entry : this) {
			if (entry.getFirst().isJoker()) {
				points += settings.getJokerPoints();
			} else {
				points += entry.getFirst().getValue();
			}
		}

		return points;
	}

	private final static Comparator<Pair<Integer, StoneColor>> comparator = new Comparator<Pair<Integer, StoneColor>>() {

		@Override
		public int compare(Pair<Integer, StoneColor> o1,
				Pair<Integer, StoneColor> o2) {
			int firstComparison = o1.getFirst().compareTo(o2.getFirst());
			if (firstComparison != 0) {
				return -firstComparison;
			} else {
				return o1.getSecond().compareTo(o2.getSecond());
			}
		}
	};

	@Override
	public boolean isInitialMeldPossible() {
		Pair<TreeMap<Pair<Integer, StoneColor>, Integer>, Integer> stoneCounts = countStones();
		
		return findSetsWithTotalPoints(settings.getInitialMeldThreshold(),
				stoneCounts.getFirst(), stoneCounts.getSecond());
	}

	private Pair<TreeMap<Pair<Integer, StoneColor>, Integer>, Integer> countStones() {
		int jokerCount = 0;
		TreeMap<Pair<Integer, StoneColor>, Integer> stoneCounts = new TreeMap<Pair<Integer, StoneColor>, Integer>(
				comparator);
		
		
		for (Pair<Stone, Position> entry : this) {
			if (entry.getFirst().isJoker()) {
				jokerCount++;
			} else {
				Pair<Integer, StoneColor> key = new Pair<Integer, StoneColor>(
						entry.getFirst().getValue(), entry.getFirst()
								.getColor());

				incrementStoneCount(stoneCounts, key);
			}
		}
		return new Pair<TreeMap<Pair<Integer, StoneColor>, Integer>, Integer>(stoneCounts, jokerCount);
	}

	private void incrementStoneCount(
			TreeMap<Pair<Integer, StoneColor>, Integer> stones,
			Pair<Integer, StoneColor> stone) {
		if (stones.containsKey(stone)) {
			stones.put(stone, stones.get(stone) + 1);
		} else {
			stones.put(stone, 1);
		}
	}

	private void decrementStoneCount(
			TreeMap<Pair<Integer, StoneColor>, Integer> stones,
			Pair<Integer, StoneColor> stone) {
		int count = stones.get(stone);
		count--;

		if (count == 0) {
			stones.remove(stone);
		} else {
			stones.put(stone, count);
		}
	}

	@SuppressWarnings("unchecked")
	private boolean findSetsWithTotalPoints(int pointsMissing,
			TreeMap<Pair<Integer, StoneColor>, Integer> stoneCounts,
			int jokerCount) {

		if (pointsMissing <= 0) {
			return true;
		}

		stoneCounts = (TreeMap<Pair<Integer, StoneColor>, Integer>) stoneCounts
				.clone();

		for (int value = 13; value >= 1; value--) {
			for (StoneColor color : StoneColor.values()) {
				Pair<Integer, StoneColor> stone = new Pair<Integer, StoneColor>(
						value, color);

				if (stoneCounts.containsKey(stone)) {
					decrementStoneCount(stoneCounts, stone);

					if (findRunsWithTotalPoints(pointsMissing - value,
							stoneCounts, jokerCount, stone, 1))
						return true;
					if (findGroupsWithTotalPoints(pointsMissing - value,
							stoneCounts, jokerCount, stone, 1))
						return true;
				}

				if (jokerCount > 0) {
					if (findRunsWithTotalPoints(pointsMissing - value,
							stoneCounts, jokerCount - 1, stone, 1))
						return true;
					if (findGroupsWithTotalPoints(pointsMissing - value,
							stoneCounts, jokerCount - 1, stone, 1))
						return true;
				}
			}
		}

		return false;
	}

	private StoneColor getNextColor(StoneColor color) {
		int index = Arrays.binarySearch(StoneColor.values(), color) + 1;
		if (index >= StoneColor.values().length) {
			return null;
		}
		return StoneColor.values()[index];
	}

	private boolean findGroupsWithTotalPoints(int pointsMissing,
			TreeMap<Pair<Integer, StoneColor>, Integer> stoneCounts,
			int jokerCount, Pair<Integer, StoneColor> stone, int groupSize) {

		StoneColor nextColor = getNextColor(stone.getSecond());
		Pair<Integer, StoneColor> nextStone = new Pair<Integer, StoneColor>(
				stone.getFirst(), nextColor);

		if (nextColor != null) {
			if (stoneCounts.containsKey(nextStone)) {
				decrementStoneCount(stoneCounts, nextStone);
				if (findGroupsWithTotalPoints(pointsMissing - stone.getFirst(),
						stoneCounts, jokerCount, nextStone, groupSize + 1))
					return true;
				incrementStoneCount(stoneCounts, nextStone);
			}
			if (jokerCount > 0) {
				if (findGroupsWithTotalPoints(pointsMissing - stone.getFirst(),
						stoneCounts, jokerCount - 1, nextStone, groupSize + 1))
					return true;
			}
			if (findGroupsWithTotalPoints(pointsMissing, stoneCounts,
					jokerCount, nextStone, groupSize))
				return true;
		}

		if (groupSize >= 3) {
			if (findSetsWithTotalPoints(pointsMissing, stoneCounts, jokerCount))
				return true;
		}
		return false;
	}

	private boolean findRunsWithTotalPoints(int pointsMissing,
			TreeMap<Pair<Integer, StoneColor>, Integer> stoneCounts,
			int jokerCount, Pair<Integer, StoneColor> stone, int runLength) {

		Pair<Integer, StoneColor> nextStone = null;
		if (stone.getFirst() > 1) {
			int nextValue = stone.getFirst() - 1;
			nextStone = new Pair<Integer, StoneColor>(nextValue,
					stone.getSecond());

			if (stoneCounts.containsKey(nextStone)) {
				decrementStoneCount(stoneCounts, nextStone);
				if (findRunsWithTotalPoints(pointsMissing - nextValue,
						stoneCounts, jokerCount, nextStone, runLength + 1))
					return true;
				incrementStoneCount(stoneCounts, nextStone);

			}
			if (jokerCount > 0) {
				if (findRunsWithTotalPoints(pointsMissing - nextValue,
						stoneCounts, jokerCount - 1, nextStone, runLength + 1))
					return true;
			}
		}

		if (runLength >= 3) {
			if (findSetsWithTotalPoints(pointsMissing, stoneCounts, jokerCount))
				return true;
		}
		return false;
	}

	@Override
	public int getIdenticalStoneCount() {
		Pair<TreeMap<Pair<Integer, StoneColor>, Integer>, Integer> stoneCounts = countStones();
		int pairCount = 0;
		
		for(int count : stoneCounts.getFirst().values()) {
			pairCount += count / 2;
		}
		
		return pairCount;
	}
}