StoneHeap-Klasse (getestet und alles)

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@8 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Ida Massow 2011-04-28 15:45:30 +02:00
parent f572598766
commit 10a338637d

View file

@ -0,0 +1,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;
}
}