You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
Java
43 lines
1.1 KiB
Java
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
public abstract class Deck {
|
|
private List<Card> deck = new ArrayList<Card>();
|
|
|
|
public Deck() {
|
|
for (Suits suit : Suits.values()) {
|
|
for (Faces face : Faces.values())
|
|
deck.add(new Card(suit.getSuit(), face.getFace()));
|
|
}
|
|
}
|
|
|
|
public List<Player> dealCards(int numOfPlayers) {
|
|
int noOfCards = (deck.size() / numOfPlayers) + 1;
|
|
List<Player> allPlayers = new ArrayList<Player>();
|
|
|
|
for (int i = 0; i < numOfPlayers; i++) {
|
|
Hand playerHand = new Hand();
|
|
while (playerHand.getListOfCards().size() < noOfCards && deck.size() > 0) {
|
|
Card indexCard = deck.get(0);
|
|
playerHand.addCard(indexCard);
|
|
dealACard(indexCard);
|
|
}
|
|
allPlayers.add(new Player("Player " + i, playerHand));
|
|
}
|
|
return allPlayers;
|
|
}
|
|
|
|
public void dealACard(Card card) {
|
|
deck.remove(card);
|
|
}
|
|
|
|
public void shuffle() {
|
|
Collections.shuffle(deck);
|
|
}
|
|
|
|
public List<Card> getDeck() {
|
|
return deck;
|
|
}
|
|
}
|