summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/StoneHeap.java
blob: bb6470e58930452f6a6ecdf3e1d8d75ce560db5a (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
package jrummikub.model;

import java.util.ArrayList;
import java.util.EnumSet;
import java.util.List;
import java.util.Random;

public class StoneHeap {
	List<Stone> heap;
	Random generator = new Random();

	public StoneHeap() {
		heap = new ArrayList<Stone>();
		for (int i = 1; i <= 13; i++) {
			for (int j = 0; j < 2; j++) {
				for (StoneColor c : EnumSet.allOf(StoneColor.class)) {
					heap.add(new Stone(i, c, false));
				}
			}
		}
		// Joker
		heap.add(new Stone(0, StoneColor.BLACK, true));
		heap.add(new Stone(0, StoneColor.ORANGE, true));
	}

	public Stone drawStone() {
		return heap.remove(generator.nextInt(heap.size()));
	}
	
	public List<Stone> drawStones(int number) {
		List<Stone> drawnStones = new ArrayList<Stone>();
		for (int i=0; i<number; i++){
			drawnStones.add(drawStone());
		}
		return drawnStones;
	}
}